.home-container {
    padding-bottom: 5rem;
    background-color: transparent;
}

/* Hero Section: 3/4 Banner, 1/4 Coupon */
.hero-section {
    display: flex;
    width: 100%;
    min-height: 60vh;
    background-color: #ffffff;
    overflow: hidden;
}

.hero-banner {
    flex: 3;
    position: relative;
    overflow: hidden;
}

.banner-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
    transition: transform 10s linear;
}

.hero-banner:hover .banner-img {
    transform: scale(1.1);
}

.banner-content {
    position: absolute;
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
    color: #333333;
    max-width: 500px;
}

.banner-content h2 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    line-height: 1.1;
}

.banner-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #8A2BE2;
    color: #000;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.hero-btn:hover {
    background-color: #333333;
    transform: translateY(-3px);
}

.coupon-area {
    flex: 1;
    background: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    border-left: 1px solid #333;
}

.coupon-card {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px dashed #8A2BE2;
    padding: 2.5rem 1.5rem;
    text-align: center;
    border-radius: 8px;
    width: 100%;
    transition: all 0.3s ease;
}

.coupon-card:hover {
    background-color: rgba(255, 255, 255, 0.08);
    transform: scale(1.02);
}

.coupon-label {
    color: #8A2BE2;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 1rem;
}

.coupon-discount {
    font-size: 2.5rem;
    color: #333333;
    margin-bottom: 0.5rem;
}

.coupon-text {
    color: #aaa;
    font-size: 0.95rem;
    margin-bottom: 2rem;
}

.coupon-code-box {
    background-color: #333333;
    color: #000;
    padding: 0.8rem 1.5rem;
    font-weight: 700;
    font-size: 1.2rem;
    letter-spacing: 3px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.2s ease;
    border-radius: 4px;
}

.coupon-code-box:active {
    transform: scale(0.95);
}

.tap-text {
    color: #666;
    font-size: 0.8rem;
    margin-top: 1rem;
    font-style: italic;
}

@media (max-width: 992px) {
    .hero-section {
        flex-direction: column;
        min-height: auto;
    }

    .hero-banner {
        flex: none;
        width: 100%;
        height: 400px;
        /* Fixed height for mobile banner */
    }

    .coupon-area {
        flex: none;
        width: 100%;
        border-left: none;
        border-top: 1px solid #333;
    }

    .banner-content {
        left: 5%;
        max-width: 90%;
    }

    .banner-content h2 {
        font-size: 2.5rem;
    }
}

@media (max-width: 576px) {
    .hero-banner {
        height: 350px;
    }

    .banner-content h2 {
        font-size: 1.8rem;
    }

    .banner-content p {
        font-size: 1rem;
    }

    .hero-btn {
        padding: 0.8rem 1.8rem;
        font-size: 0.9rem;
    }

    .section-title {
        font-size: 1.8rem;
        margin-bottom: 2.5rem;
    }
}


/* Highlights/Offers Section */
.highlights-section {
    padding: 4rem 5%;
    background-color: transparent;
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.highlight-item {
    position: relative;
    height: 400px;
    overflow: hidden;
    border-radius: 12px;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.highlight-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.2, 1, 0.3, 1);
}

.highlight-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.2) 50%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2rem;
    transition: all 0.4s ease;
}

.highlight-item:hover .highlight-img {
    transform: scale(1.1);
}

.highlight-item:hover .highlight-overlay {
    background: linear-gradient(to top, rgba(166, 12, 55, 0.8) 0%, rgba(0, 0, 0, 0.4) 100%);
}

.highlight-subtitle {
    color: #8A2BE2;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 3px;
    margin-bottom: 0.5rem;
}

.highlight-item:hover .highlight-subtitle {
    color: #333333;
}

.highlight-title {
    color: #333333;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.highlight-link {
    color: #333333;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    border-bottom: 2px solid #8A2BE2;
    padding-bottom: 5px;
    align-self: flex-start;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.highlight-item:hover .highlight-link {
    border-color: #333333;
    transform: translateX(8px);
}

.shop-by-category {
    max-width: 1400px;
    margin: 0 auto;
    padding: 6rem 5%;
    text-align: center;
}

.section-title {
    font-size: 2.5rem;
    font-family: inherit;
    font-weight: 500;
    margin-bottom: 4rem;
    color: #1a1a1a;
    letter-spacing: 1px;
}

.category-grid {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 2rem;
    flex-wrap: wrap;
}

.category-card {
    flex: 1;
    min-width: 250px;
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    transition: transform 0.3s ease;
    text-decoration: none;
}

.category-card:hover {
    transform: translateY(-10px);
}

.category-image-wrapper {
    width: 280px;
    height: 380px;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 2rem;
    border: 1px solid #8A2BE2;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
    background-color: #333333;
    transition: all 0.3s ease;
}

.category-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.category-card:hover .category-image-wrapper img {
    transform: scale(1.1);
}

.category-name {
    font-size: 1.25rem;
    font-family: inherit;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0;
}

@media (max-width: 992px) {
    .category-grid {
        justify-content: center;
        gap: 3rem;
    }

    .category-image-wrapper {
        width: 240px;
        height: 320px;
    }
}

@media (max-width: 576px) {
    .section-title {
        font-size: 2rem;
        margin-bottom: 3rem;
    }

    .category-image-wrapper {
        width: 100%;
        max-width: 300px;
        height: 400px;
    }
}

/* ── PROMO CAROUSEL ── */
.promo-carousel-section {
    background: transparent;
    padding: 5rem 5%;
    overflow: hidden;
}

.promo-carousel-header {
    text-align: center;
    margin-bottom: 3rem;
}

.promo-section-label {
    font-size: 0.85rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #b59b5a;
    margin-bottom: 0.5rem;
}

.promo-section-title {
    font-size: 2.5rem;
    font-weight: 500;
    color: #111;
}

/* Slide container */
.promo-carousel-track {
    position: relative;
    max-width: 1300px;
    margin: 0 auto;
    min-height: 480px;
}

/* Individual slide */
.promo-slide {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    gap: 4rem;
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.6s ease, transform 0.6s ease;
    pointer-events: none;
}

.promo-slide--active {
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
    position: relative;
}

/* Reverse layout (image on right) */
.promo-slide--reverse {
    flex-direction: row-reverse;
}

/* Image side */
.promo-slide__img-wrap {
    flex: 1;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
    aspect-ratio: 4 / 3;
}

.promo-slide__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.promo-slide--active .promo-slide__img {
    transform: scale(1.04);
}

.promo-slide__badge {
    position: absolute;
    top: 1.25rem;
    left: 1.25rem;
    background: #b59b5a;
    color: #333333;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 0.35rem 0.9rem;
    border-radius: 50px;
}

/* Text side */
.promo-slide__content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.promo-slide__eyebrow {
    font-size: 0.8rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #b59b5a;
    margin: 0;
}

.promo-slide__title {
    font-size: 2.6rem;
    font-weight: 600;
    color: #111;
    line-height: 1.15;
    margin: 0;
}

.promo-slide__subtitle {
    font-size: 1.05rem;
    color: #666;
    line-height: 1.7;
    max-width: 440px;
    margin: 0;
}

.promo-slide__btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.9rem 2.2rem;
    background: #111;
    color: #333333;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 50px;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.promo-slide__btn:hover {
    background: #b59b5a;
    transform: translateX(4px);
}

/* Controls */
.promo-carousel-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    margin-top: 3rem;
}

.promo-ctrl-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1.5px solid #ddd;
    background: #fff;
    cursor: pointer;
    font-size: 1.1rem;
    color: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.promo-ctrl-btn:hover {
    background: #111;
    color: #333333;
    border-color: #111;
    transform: scale(1.1);
}

.promo-dots {
    display: flex;
    gap: 0.6rem;
}

.promo-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    background: #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.promo-dot--active {
    background: #b59b5a;
    transform: scale(1.3);
}

/* Responsive */
@media (max-width: 768px) {
    .promo-slide {
        flex-direction: column !important;
        gap: 2rem;
    }

    .promo-slide__img-wrap {
        width: 100%;
        aspect-ratio: 16 / 9;
    }

    .promo-slide__title {
        font-size: 1.8rem;
    }

    .promo-carousel-track {
        min-height: auto;
    }

    .promo-section-title {
        font-size: 1.8rem;
    }
}

/* ── TESTIMONIALS CAROUSEL ── */
.testimonials-section {
    padding: 6rem 5%;
    background-color: transparent;
    overflow: hidden;
}

.label-style {
    font-size: 0.85rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #b59b5a;
    margin-bottom: 0.5rem;
}

.title-style {
    font-size: 2.5rem;
    font-weight: 500;
    color: #111;
}

.testimonials-carousel-container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.testimonials-wrapper {
    position: relative;
    min-height: 250px;
}

.testimonial-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transform: translateX(50px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-slide--active {
    position: relative;
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.testimonial-card {
    background: #fff;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.05);
    border: 1px solid #eee;
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    margin-bottom: 1.5rem;
}

.user-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: #333333;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    border: 3px solid #fff;
    box-shadow: 0 0 0 2px #e6683c;
}

.user-info {
    display: flex;
    flex-direction: column;
}

.user-name {
    font-weight: 700;
    color: #111;
    font-size: 1rem;
}

.user-handle {
    font-size: 0.85rem;
    color: #888;
}

.insta-icon {
    color: #cc2366;
    font-size: 1.4rem;
}

.rating {
    display: flex;
    gap: 0.3rem;
    margin-bottom: 1rem;
}

.rating .bi-star-fill {
    font-size: 0.9rem;
    color: #eee;
}

.rating .bi-star-fill.active {
    color: #ffc107;
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #444;
    font-style: italic;
    margin: 0;
    font-weight: 400;
}

.testi-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 2.5rem;
}

.testi-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ddd;
    border: none;
    padding: 0;
    cursor: pointer;
    transition: all 0.3s;
}

.testi-dot--active {
    width: 25px;
    border-radius: 10px;
    background: #b59b5a;
}

@media (max-width: 768px) {
    .testimonials-section {
        padding: 4rem 1.5rem;
    }

    .title-style {
        font-size: 1.8rem;
    }

    .testimonial-card {
        padding: 1.5rem;
    }

    .testimonial-text {
        font-size: 1rem;
    }
}

font-size: 1.8rem;
}

.testimonial-card {
    padding: 1.5rem;
}

.testimonial-text {
    font-size: 1rem;
}
}

/* ========================================= */
/*       PREMIUM TESTIMONIALS OVERRIDE       */
/* ========================================= */

.testimonials-section.dark-theme {
    background-color: #0d1b2a;
    position: relative;
}

.testimonials-section.dark-theme::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(166, 12, 55, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.testimonials-section.dark-theme .title-style {
    color: #f8f9fa;
    font-family: 'Playfair Display', serif;
}

.testimonials-section.dark-theme .label-style {
    color: #8A2BE2;
}

.testimonials-section.dark-theme .testimonial-card {
    background: #112240;
    border: 1px solid rgba(166, 12, 55, 0.2);
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.3);
    padding: 3rem;
}

.testimonials-section.dark-theme .testimonial-text {
    color: #e2e8f0;
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    line-height: 1.8;
}

.testimonials-section.dark-theme .user-name {
    color: #8A2BE2;
    font-size: 1.1rem;
    font-weight: 600;
}

.testimonials-section.dark-theme .user-handle {
    color: #a0aec0;
}

.testimonials-section.dark-theme .rating i {
    color: #8A2BE2;
}

.testimonials-section.dark-theme .testi-dot {
    background-color: rgba(255, 255, 255, 0.2);
}

.testimonials-section.dark-theme .testi-dot--active {
    background-color: #8A2BE2;
    transform: scale(1.3);
}

.testimonials-section.dark-theme .insta-icon { color: #8A2BE2; font-size: 1.5rem; }

@media (max-width: 768px) {
    .testimonials-section.dark-theme .testimonial-card {
        padding: 2rem;
    }
    .testimonials-section.dark-theme .testimonial-text {
        font-size: 1.1rem;
    }
}


