.hero-slider-wrapper {
    position: relative;
    overflow: hidden;
}

.hero-slide {
    width: 100%;
    min-height: 600px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 0.6s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 67px 47px;
}
@media (min-width: 1024px) {
    .hero-slide {
        max-height: 660px;
    }
}
.hero-slide.active {
    opacity: 1;
    position: relative;
    z-index: 1;
}

.hero-slide-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    max-width: 500px;
    padding-top: 120px;
    padding-bottom: 90px;
    gap: 220px;
}

.hero-slide-content section {
    display: flex;
    flex-direction: column;
    gap: 52px;
}

.hero-slide-content h1 {
    font-size: 94px;
    font-weight: 400;
    margin: 0;
}

.hero-slide-content h2 {
    padding-top: 20px;
    font-size: 24px;
    font-weight: 300;
    margin: 0;
}

.hero-btn {
    display: inline-block;
    padding: 10px 10px;
    max-width: 220px;
    font-size: 22px;
    color: #fff;
    background-color: #000;
    border-radius: 4px;
    text-align: center;
    text-decoration: none;
    transition: background 0.2s ease-in-out;
}
.hero-btn:hover {
    opacity: 0.85;
}

.hero-dots {
    position: absolute;
    bottom: 30px;
    left: 50px;
    display: flex;
    gap: 12px;
    z-index: 10;
}

.hero-dots .dot {
    width: 12px;
    height: 12px;
    background-color: #000;
    border-radius: 50%;
    opacity: 0.5;
    cursor: pointer;
    transition: opacity 0.3s ease-in-out;
}

.hero-dots .dot.active {
    opacity: 1;
    border: 2px solid white;
}


/*Promo Slider*/
.promo-marquee {
    width: 100%;
    overflow: hidden;
    background-color: #fff9b1;
    /*!*border-top: 1px solid #f0e68c;*!*/
    /*border-bottom: 1px solid #f0e68c;*/
    padding: 20px 0;
    box-sizing: border-box;
    position: relative;
}

.promo-track {
    display: flex;
    width: max-content;
    animation: scroll-marquee 20s linear infinite;
    gap: 60px;
}

.promo-item {
    font-size: 16px;
    font-weight: 500;
    color: #333;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 8px;
}

.promo-icon {
    font-size: 18px;
}
@keyframes scroll-marquee {
    0% {
        transform: translateX(0%);
    }
    100% {
        transform: translateX(-50%);
    }
}
/*Best Seller section*/
.best-seller {
    width: 100%;
    height: 100%;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    display: inline-flex;
    padding: 20px;
}
.BestSeller {
    align-self: stretch;
    text-align: center;
    color: #0C0C0C;
    font-size: 80px;
    font-weight: 500;
}
.best-seller-tagline {
    align-self: stretch;
    height: 53px;
    padding-top: 20px;
    text-align: center;
    color: #0C0C0C;
    font-size: 26px;
    font-weight: 400;
}
