.hero-section {
    position: relative;
    width: 100%;
    height: calc(100vh - 110px);
    min-height: 740px;
    overflow: hidden;
    background: #f3efe9;
    isolation: isolate;
}

.hero-slides {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.9s ease, transform 5s ease;
    transform: scale(1.05);
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

.hero-media,
.hero-bg {
    width: 100%;
    height: 100%;
    display: block;
}

.hero-bg {
    object-fit: fill;
    object-position: center center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background:
        linear-gradient(to top, rgba(0, 0, 0, 0.28) 0%, rgba(0, 0, 0, 0.10) 45%, rgba(0, 0, 0, 0.05) 100%),
        linear-gradient(to right, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.02));
    pointer-events: none;
}

.hero-content {
    position: absolute;
    left: 50%;
    bottom: 88px;
    transform: translateX(-50%);
    z-index: 3;
    width: 100%;
    max-width: 1320px;
    padding: 0 26px;
    text-align: center;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 250px;
    height: 58px;
    padding: 0 34px;
    border: 1.5px solid rgba(255, 255, 255, 0.82);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.10);
    backdrop-filter: blur(8px);
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.35s ease;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
}

.hero-btn:hover {
    background: #ffffff;
    color: #111111;
    border-color: #ffffff;
    transform: translateY(-3px);
}

.hero-dots {
    position: absolute;
    left: 50%;
    bottom: 28px;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 4;
}

.hero-dot {
    width: 10px;
    height: 10px;
    border: none;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.45);
    cursor: pointer;
    transition: all 0.3s ease;
}

.hero-dot.active {
    width: 28px;
    background: #ffffff;
}

@media (max-width: 1200px) {
    .hero-section {
        min-height: 660px;
    }

    .hero-btn {
        min-width: 220px;
        height: 54px;
        font-size: 13px;
    }
}

@media (max-width: 768px) {
    .hero-section {
        height: auto;
        min-height: auto;
        aspect-ratio: 9 / 14;
    }

    .hero-overlay {
        background: linear-gradient(
            to bottom,
            rgba(0, 0, 0, 0.04) 0%,
            rgba(0, 0, 0, 0.14) 45%,
            rgba(0, 0, 0, 0.28) 100%
        );
    }

    .hero-content {
        bottom: 52px;
        padding: 0 16px;
    }

    .hero-btn {
        min-width: 220px;
        height: 48px;
        padding: 0 22px;
        font-size: 12px;
        letter-spacing: 1.5px;
        background: #ffffff;
        color: #111111;
        border: 1px solid #ffffff;
    }

    .hero-btn:hover {
        background: #111111;
        color: #ffffff;
        border-color: #111111;
        transform: none;
    }

    .hero-dots {
        bottom: 16px;
        gap: 8px;
    }

    .hero-dot {
        width: 8px;
        height: 8px;
    }

    .hero-dot.active {
        width: 22px;
    }
}

/* =========================
   VIDEO REELS SECTION
========================= */

.video-reels-section {
    position: relative;
    width: 100%;
    background: #fde8e8;
    padding: 52px 0 90px;
    overflow: hidden;
}

.video-reels-header {
    text-align: center;
    margin-bottom: 36px;
    padding: 0 18px;
}

.video-reels-header h2 {
    margin: 0 0 10px;
    font-size: clamp(32px, 4vw, 52px);
    line-height: 1.1;
    font-weight: 400;
    color: #000;
    font-family: "Cormorant Garamond", "Times New Roman", serif;
}

.video-reels-header p {
    margin: 0;
    font-size: clamp(17px, 2vw, 25px);
    color: #000;
    font-family: "Cormorant Garamond", "Times New Roman", serif;
}

.video-reels-viewport {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    padding: 0 26px;
}

.video-reels-track {
    display: flex;
    gap: 16px;
    transition: transform 0.45s ease;
    will-change: transform;
}

.video-reel-card {
    position: relative;
    display: block;
    flex: 0 0 calc((100% - 64px) / 4.5);
    aspect-ratio: 9 / 16;
    overflow: hidden;
    border-radius: 12px;
    border: 1px solid #dd9898;
    background: #f7dada;
    text-decoration: none;
    -webkit-tap-highlight-color: transparent;
}

.video-reel-card video {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    pointer-events: none;
}

.video-shop-btn {
    position: absolute;
    left: 50%;
    bottom: 22px;
    transform: translateX(-50%) translateY(14px);
    min-width: 140px;
    padding: 11px 22px;
    border-radius: 8px;
    background: #ffffff;
    color: #000;
    font-size: 15px;
    font-weight: 700;
    line-height: 1;
    text-align: center;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s ease;
    font-family: Arial, sans-serif;
}

.video-reel-card:hover .video-shop-btn {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.reel-nav {
    position: absolute;
    top: 58%;
    transform: translateY(-50%);
    z-index: 10;
    width: 44px;
    height: 44px;
    border: none;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.48);
    color: #fff;
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s ease;
}

.reel-nav:hover {
    background: rgba(0, 0, 0, 0.72);
}

.reel-prev {
    left: 14px;
}

.reel-next {
    right: 14px;
}

@media (max-width: 1200px) {
    .video-reel-card {
        flex-basis: calc((100% - 48px) / 3.5);
    }
}

@media (max-width: 991px) {
    .video-reels-viewport {
        padding: 0 22px;
    }

    .video-reel-card {
        flex-basis: calc((100% - 32px) / 2.5);
    }
}

@media (max-width: 600px) {
    .video-reels-section {
        padding: 44px 0 70px;
    }

    .video-reels-header {
        margin-bottom: 28px;
    }

    .video-reels-viewport {
        overflow-x: auto;
        overflow-y: hidden;
        padding: 0 16px;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
    }

    .video-reels-viewport::-webkit-scrollbar {
        display: none;
    }

    .video-reels-track {
        gap: 12px;
        transition: none;
        transform: none !important;
    }

    .video-reel-card {
        flex: 0 0 68%;
        scroll-snap-align: start;
        border-radius: 12px;
    }

    .video-shop-btn {
        opacity: 1;
        visibility: visible;
        transform: translateX(-50%);
        min-width: 130px;
        bottom: 18px;
        font-size: 13px;
        padding: 10px 18px;
    }

    .reel-nav {
        display: none;
    }
}