/* Agrandir — Regular weight */
@font-face {
    font-family: 'Agrandir';
    src: url('https://db.onlinewebfonts.com/t/1dc7840abb13fcda12aa8d1cb21fb832.woff2') format('woff2'),
         url('https://db.onlinewebfonts.com/t/1dc7840abb13fcda12aa8d1cb21fb832.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

/* Agrandir Grand Heavy — for big display headlines */
@font-face {
    font-family: 'Agrandir';
    src: url('https://db.onlinewebfonts.com/t/eccf30d3af8a69bf0b97f01c6d46b8e2.woff2') format('woff2'),
         url('https://db.onlinewebfonts.com/t/eccf30d3af8a69bf0b97f01c6d46b8e2.woff') format('woff');
    font-weight: 700 900;
    font-style: normal;
    font-display: swap;
}

:root {
    --black: #000000;
    --white: #ffffff;
    --gray-light: #f5f5f5;
    --gray-border: #e0e0e0;
    --text-muted: #666666;
    --font-main: 'Outfit', sans-serif;
    --font-alt: 'Outfit', sans-serif;
    --header-height: 56px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--white);
    color: var(--black);
    font-family: var(--font-main);
    line-height: 1.6;
    overflow-x: hidden;
}

@keyframes pulse-discover {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.18);
    }
    50% {
        transform: scale(1.04);
        box-shadow: 0 0 0 12px rgba(0, 0, 0, 0);
    }
}

a {
    text-decoration: none;
    color: inherit;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

/* Header */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 40px;
    background: var(--white);
    border-bottom: 1px solid var(--gray-border);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.35s ease;
}

.header.header--hidden {
    transform: translateY(-100%);
    box-shadow: none;
}

.header.header--scrolled {
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.nav-left {
    display: flex;
    gap: 30px;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 0.05em;
}

.logo {
    order: -1;
}

.logo img {
    height: 40px;
    display: block;
}

.nav-right {
    display: flex;
    gap: 20px;
    align-items: center;
}

.icon-btn img {
    width: 20px;
    height: 20px;
}

.cart-btn {
    display: flex;
    align-items: center;
    gap: 5px;
    font-weight: 600;
}

/* Hero Section */
.hero {
    height: calc(100vh - var(--header-height));
    position: relative;
    background: #fff;
    overflow: hidden;
    font-family: 'Agrandir', sans-serif;
}

/* Video background – hidden on desktop, enabled in mobile media query below */
.hero-video-bg {
    display: none;
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: 1;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

.hero-video-overlay {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    /* Darker overlay for better text contrast */
    z-index: 2;
}

.hero-desktop {
    display: flex;
    flex-direction: row;
    height: 100%;
    width: 100%;
    position: relative;
    z-index: 3;
    color: #000;
}

.hero-text-grid {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding: 4vw 8% 0;
    text-align: center;
}

.brand-title {
    margin-bottom: clamp(16px, 2.5vw, 48px);
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.aura-title {
    font-size: clamp(51px, 9.9vw, 210px);
    font-weight: 800;
    line-height: 0.9;
    letter-spacing: -0.02em;
    display: block;
    margin: 0;
}

/* Specificity fix: .brand-title h1 (0,1,1) was overriding .laundry-subtitle (0,1,0) */
.brand-title h1 {
    font-size: clamp(12px, 1.65vw, 22px);
    line-height: 1;
    letter-spacing: 0.2em;
    font-weight: 700;
    text-transform: uppercase;
}

.laundry-subtitle {
    font-size: clamp(12px, 1.65vw, 22px);
    font-weight: 700;
    letter-spacing: 0.2em;
    margin-top: clamp(10px, 1.2vw, 22px);
    text-transform: uppercase;
}

.hero-details {
    max-width: 80%;
    /* Stay well within the 60% container */
    margin-top: clamp(14px, 2vw, 32px);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-details .subtitle {
    font-size: clamp(20px, 1.98vw, 26px);
    font-weight: 700;
    margin-bottom: clamp(15px, 2.5vh, 30px);
    letter-spacing: 0.02em;
}

.hero-details .description {
    font-size: clamp(16px, 1.6vw, 24px);
    line-height: 1.8;
    color: #444;
    font-weight: 400;
}

.features {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.feature-tag {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    font-weight: 500;
    border: 1px solid #eee;
    padding: 10px 24px;
    border-radius: 40px;
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
}

.feature-tag img {
    width: 14px;
    opacity: 0.7;
}

.hero-image-container {
    flex: 0 0 auto;
    height: 100%;
    padding: 0;
    background: transparent;
    display: flex;
    align-items: stretch;
}

.hero-image-container img {
    height: 100%;
    width: auto;
    display: block;
    object-fit: contain;
    object-position: right center;
}

.card-image {
    position: relative;
    background: transparent;
    /* No box background */
    height: 100%;
    flex: 1;
    /* Match the layout flex */
}

.bestseller-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--black);
    color: var(--white);
    font-size: 11px;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 10px;
    z-index: 10;
    /* Ensure it stays on top */
}

.carousel-viewport {
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.05);
    /* Subtle border instead of box */
    border-radius: 12px;
}

.carousel-track {
    display: flex;
    width: 300%;
    height: 100%;
    align-items: center;
    /* Vertical centering */
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    /* Even smoother */
}

.carousel-track img {
    width: 33.3333%;
    height: auto;
    /* Allow natural height */
    max-height: 100%;
    /* But constraint to viewport */
    object-fit: contain;
    /* Don't crop, center vertically */
    flex-shrink: 0;
    padding: 20px;
    /* Some breathing room */
}


/* Mobile hero — hidden on desktop, shown only in mobile media query */
.hero-mobile {
    display: none;
}

/* Section Navigation Arrows General Styles (Moved from hero-mobile) */
.scroll-discover {
    display: inline-block;
    padding: 12px 30px;
    border: 1px solid #fff;
    color: #fff;
    font-size: 13px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

@media (max-width: 968px) {
    .header {
        padding: 8px 20px;
        justify-content: center;
        /* Center content in header */
        position: sticky;
        top: 0;
    }

    .nav-left,
    .search-btn,
    .account-btn {
        display: none !important;
        /* Hide unnecessary mobile elements */
    }

    .logo {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }

    .nav-right {
        width: 100%;
        justify-content: flex-end;
    }

    .hero {
        height: auto;
        min-height: calc(100vh - var(--header-height));
        background: #fff;
        overflow: visible;
    }

    /* Video hidden on mobile — clean white background */
    .hero-video-bg,
    .hero-video-overlay {
        display: none;
    }

    .hero-desktop {
        display: none;
    }

    .hero-mobile {
        display: flex;
        min-height: calc(100vh - var(--header-height));
        background: #fff;
        color: #000;
        align-items: center;
        justify-content: center;
        text-align: center;
        padding-top: 0;
        padding-bottom: 5vh;
        position: relative;
        z-index: 3;
    }

    .mobile-brand-title {
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-bottom: clamp(70px, 22vh, 160px);
        width: 100%;
    }

    .mobile-aura-title {
        font-size: 24.2vw;
        font-weight: 800;
        line-height: 0.9;
        letter-spacing: -0.02em;
        display: block;
        color: #000;
    }

    .mobile-laundry-subtitle {
        font-size: 4.4vw;
        font-weight: 700;
        letter-spacing: 0.3em;
        margin-top: 10px;
        text-transform: uppercase;
        display: block;
        white-space: nowrap;
        color: #000;
    }

    .mobile-hero-subtitle {
        display: none;
    }

    .mobile-hero-description {
        display: none;
    }

    .scroll-discover {
        display: inline-block;
        padding: 15px 40px;
        background: #000;
        color: #fff;
        border-radius: 30px;
        font-size: 14px;
        font-weight: 600;
        letter-spacing: 0.05em;
        text-transform: uppercase;
        border: none;
        animation: pulse-discover 2.5s ease-in-out infinite;
    }

    .scroll-discover:active {
        animation-play-state: paused;
        transform: scale(0.95);
    }
}

/* Product Highlight Section */
.product-highlight {
    height: calc(100vh - var(--header-height));
    border-top: 1px solid var(--gray-border);
    display: flex;
    align-items: stretch;
    overflow: hidden;
}

.highlight-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: stretch;
    padding: 48px 60px;
}

.product-visual {
    flex: 1;
    background: transparent;
    border-radius: 0;
    display: flex;
    align-items: stretch;
    justify-content: center;
    overflow: hidden;
    min-height: 0;
}

.product-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    border-radius: 16px;
}

.product-buy-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 0;
    overflow: hidden;
}

.product-tag {
    font-size: clamp(28px, 3.5vw, 48px);
    font-weight: 800;
    color: var(--black);
    letter-spacing: -0.02em;
    margin-bottom: 0;
    display: block;
    text-transform: uppercase;
    line-height: 1.1;
}

.product-tagline {
    font-size: clamp(14px, 1.4vw, 18px);
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    line-height: 1.5;
    margin-bottom: 0;
}




.benefit {
    font-size: 14px;
    margin-bottom: 0;
    color: var(--text-muted);
    line-height: 1.5;
}

.quantity-options {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 0;
}

.quantity-card {
    border: 1px solid var(--gray-border);
    padding: 18px 22px;
    border-radius: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    cursor: pointer;
    background: white;
    position: relative;
}

.quantity-card:hover {
    border-color: var(--black);
}

.quantity-card.active {
    background: var(--black);
    color: var(--white);
    border-color: var(--black);
}

.card-left {
    display: flex;
    flex-direction: column;
}

.qty-text {
    font-size: 16px;
    font-weight: 600;
}

.qty-desc {
    font-size: 13px;
    opacity: 0.8;
    line-height: 1.3;
    margin-top: 3px;
}

.badge {
    background: #efefef;
    color: #000;
    font-size: 11px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 10px;
}

.quantity-card.active .badge {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
}

.price-section {
    margin-bottom: 0;
}

.current-price {
    font-size: 26px;
    font-weight: 700;
    display: block;
}

.unit-detail {
    font-size: 14px;
    color: var(--text-muted);
}

.buy-now-btn {
    width: 100%;
    background: var(--black);
    color: var(--white);
    padding: 14px;
    border-radius: 30px;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 10px;
    transition: background 0.3s;
}

.buy-now-btn:hover {
    background: #333;
}

.shipping-info {
    font-size: 12px;
    color: var(--text-muted);
}

/* Products Showcase Slider */
.products-showcase {
    padding: 60px 0;
    background: #fbfbfb;
    border-top: 1px solid var(--gray-border);
    position: relative;
    overflow: hidden;
    min-height: 90vh;
    display: flex;
    align-items: center;
}

.showcase-slider-viewport {
    width: 100%;
    position: relative;
    padding-left: 40px;
}

.showcase-slider-track {
    display: flex;
    gap: 60px;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    align-items: stretch;
    /* Stretch to match Baby Love's height */
    width: max-content;
}

.product-detail-card {
    background: white;
    border-radius: 20px;
    display: flex;
    overflow: hidden;
    /* Always leaves exactly ~60px for the coming-soon sliver:
       viewport - padding-left(40) - gap(60) - sliver(60) = viewport - 160 */
    width: calc(100vw - 160px);
    max-height: 80vh;
    flex-shrink: 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

/* Coming Soon Card Specifics */
.coming-soon-card {
    width: clamp(400px, 45vw, 650px);
    flex-direction: column;
    opacity: 0.6;
    transform: scale(0.95);
    transition: all 0.6s ease;
}

.coming-soon-card .card-image {
    flex: 1;
    /* Image expands to fill vertical space */
    width: 100%;
}

.coming-soon-card .card-info {
    flex: 0;
    padding: 40px;
    text-align: center;
}

.products-showcase.view-coming-soon .coming-soon-card {
    opacity: 1;
    transform: scale(1);
}

.products-showcase.view-coming-soon .product-detail-card:not(.coming-soon-card) {
    opacity: 0.4;
    transform: scale(0.98);
}

.blurred-preview {
    position: relative;
    width: 100%;
    height: 100%;
    background: #eee;
    overflow: hidden;
}

.blurred-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(25px);
    transform: scale(1.1);
}

.mystery-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
}

.question-mark {
    font-size: 100px;
    font-weight: 200;
    color: rgba(0, 0, 0, 0.3);
    font-family: 'Outfit', sans-serif;
}

.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.prev {
    left: 10px;
}

.next {
    right: 10px;
}

.card-info {
    flex: 1.2;
    padding: 60px;
    display: flex;
    flex-direction: column;
}

.buy-btn-small {
    align-self: flex-end;
    margin-top: auto;
    background: var(--black);
    color: var(--white);
    font-size: 13px;
    font-weight: 600;
    padding: 10px 22px;
    border-radius: 30px;
    letter-spacing: 0.03em;
    transition: background 0.25s;
    white-space: nowrap;
    border: none;
    cursor: pointer;
}

.buy-btn-small:hover {
    background: #333;
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.card-header h3 {
    font-size: clamp(28px, 3vw, 52px);
}

.card-price {
    display: none;
}

.product-story {
    font-size: clamp(15px, 1.4vw, 22px);
    line-height: 1.75;
    color: #333;
    margin-bottom: clamp(20px, 3vh, 40px);
}

.shipping-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: auto;
    padding-top: clamp(16px, 2vh, 28px);
}

.shipping-badges span {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: clamp(12px, 0.85vw, 14px);
    font-weight: 500;
    padding: 8px 16px;
    background: #f2f2f2;
    border-radius: 30px;
    color: #333;
}

.shipping-badges span img {
    width: 13px;
    opacity: 0.65;
}

/* Global Section Slider Nav */
.section-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    width: 60px;
    /* Slightly larger than inner carousel arrows */
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    z-index: 100;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.section-nav img {
    width: 30px;
    opacity: 0.8;
}

.section-nav.prev {
    left: 20px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-50%) translateX(-20px);
}

.section-nav.next {
    right: 20px;
}

.products-showcase.view-coming-soon .section-nav.prev {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(-50%) translateX(0);
}

.products-showcase.view-coming-soon .section-nav.next {
    opacity: 0;
    pointer-events: none;
    transform: translateY(-50%) translateX(20px);
}

.section-nav:hover {
    background: #fcfcfc;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

/* Footer */
.footer {
    background: var(--black);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-marquee {
    overflow: hidden;
    white-space: nowrap;
    display: flex;
    padding: 30px 0;
    border-top: 1px solid #333;
    border-bottom: 1px solid #333;
}

.footer-marquee span {
    font-size: clamp(60px, 12vw, 150px);
    font-weight: 800;
    margin-right: 50px;
    opacity: 1;
    letter-spacing: -0.05em;
    animation: marquee 50s linear infinite;
    display: inline-block;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-100%);
    }
}

.footer-info {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 40px 40px 32px;
    border-top: 1px solid #333;
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 6px;
    font-size: 13px;
    opacity: 0.7;
    line-height: 1.5;
}

.footer-col--right {
    text-align: right;
}

.footer-brand-name {
    font-weight: 600;
    opacity: 1;
    letter-spacing: 0.02em;
    margin-bottom: 2px;
}

.footer-col-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    opacity: 0.5;
    margin-bottom: 2px;
}

.footer-col a {
    color: inherit;
    text-decoration: none;
    opacity: 1;
    transition: opacity 0.2s;
}

.footer-col a:hover {
    opacity: 0.7;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    padding: 16px 40px;
    font-size: 12px;
    opacity: 0.4;
    border-top: 1px solid #333;
}

@media (max-width: 968px) {
    .footer-info {
        flex-direction: column;
        gap: 24px;
        padding: 32px 20px;
    }

    .footer-col--right {
        text-align: left;
    }
}

@media (max-width: 968px) {

    .highlight-container {
        flex-direction: column;
        padding: 20px;
    }

    .hero-text h1 {
        font-size: 40px;
    }

    .product-buy-info h2 {
        font-size: 36px;
    }
}

/* Mobile Showcase Responsiveness */
@media (max-width: 768px) {
    .products-showcase {
        padding: 40px 0;
        min-height: auto;
    }

    .showcase-slider-viewport {
        padding-left: 20px;
    }

    .showcase-slider-track {
        gap: 20px;
    }

    .product-detail-card {
        flex-direction: column;
        width: 85vw;
        max-height: none;
    }

    .card-info {
        padding: 30px 20px;
    }

    .card-info h3 {
        font-size: 26px;
    }

    .coming-soon-card {
        width: 75vw;
    }

    .section-nav {
        width: 50px;
        height: 50px;
    }

    .section-nav img {
        width: 24px;
    }

    .section-nav.next {
        right: 15px;
    }

    .section-nav.prev {
        left: 15px;
    }
}

/* Progress Bar */
.free-shipping-container-footer {
    padding-bottom: 25px;
    border-bottom: 1px solid #f5f5f5;
    margin-bottom: 20px;
}

.free-shipping-text {
    font-size: 13px;
    color: #888;
    margin-bottom: 12px;
    text-align: left;
}

.free-shipping-text strong,
.free-shipping-text b {
    color: #000;
    font-weight: 700;
}

.progress-bar-bg {
    height: 4px;
    background: #f0f0f0;
    border-radius: 2px;
    overflow: hidden;
}

.progress-bar-fill {
    height: 100%;
    width: 0%;
    background: #d4af37;
    /* Premium Gold/Bronze */
    transition: width 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.progress-bar-fill.success {
    background: #27ae60;
}

/* Sticky Pill Notification */
.sticky-pill {
    position: fixed;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    background: #000;
    color: #fff;
    padding: 12px 25px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 3000;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: top 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.sticky-pill.active {
    top: 40px;
}

.pill-icon {
    font-size: 16px;
}

/* Cart Drawer */
.cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.cart-overlay.active {
    opacity: 1;
    visibility: visible;
}

.cart-drawer {
    position: fixed;
    top: 0;
    right: -450px;
    width: 450px;
    height: 100%;
    background: #fff;
    z-index: 2001;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.05);
    transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
}

.cart-drawer.active {
    right: 0;
}

.cart-confetti-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 10;
}

.cart-header-drawer {
    padding: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: none;
    /* Removed border because bar is below */
}

.cart-title-row {
    display: flex;
    align-items: center;
    gap: 15px;
}

.cart-title-row h2 {
    font-size: 24px;
    letter-spacing: 0.05em;
}

.cart-count-badge {
    background: #eee;
    padding: 2px 10px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.close-cart img {
    width: 24px;
}

.cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 30px;
}

.cart-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #f9f9f9;
}

.item-img {
    width: 80px;
    height: 100px;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
}

.item-img img {
    max-width: 100%;
    max-height: 100%;
}

.item-info {
    flex: 1;
}

.item-title-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 5px;
}

.item-title-row h3 {
    font-size: 16px;
    font-weight: 600;
}

.item-price {
    font-weight: 600;
}

.item-variant {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 15px;
}

.item-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.qty-control {
    display: flex;
    background: #f5f5f5;
    border-radius: 4px;
    padding: 5px;
    gap: 15px;
    align-items: center;
}

.qty-control button {
    width: 20px;
    font-weight: 600;
}

.remove-item img {
    width: 16px;
    opacity: 0.5;
}

.cart-footer {
    padding: 30px;
    border-top: 1px solid #eee;
}

.footer-row {
    display: flex;
    justify-content: space-between;
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 10px;
}

.vat-info {
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 30px;
}

.checkout-btn {
    width: 100%;
    background: #000;
    color: #fff;
    padding: 18px;
    font-weight: 600;
    font-size: 16px;
    letter-spacing: 0.05em;
}

@media (max-width: 480px) {
    .cart-drawer {
        width: 100%;
        right: -100%;
    }
}

/* Product Highlight — Mobile */
@media (max-width: 968px) {
    .product-highlight {
        height: auto;
        min-height: unset;
        overflow: visible;
    }

    .highlight-container {
        flex-direction: column;
        padding: 24px 20px 40px;
        gap: 24px;
    }

    .product-visual {
        width: 100%;
        flex: none;
        height: 280px;
        background: #f8f8f8;
        border-radius: 16px;
        align-items: center;
        justify-content: center;
    }

    .product-visual img {
        width: auto;
        height: 100%;
        max-width: 100%;
        object-fit: contain;
        border-radius: 0;
    }

    .product-buy-info {
        overflow: visible;
        min-height: unset;
    }

    .product-tag {
        font-size: clamp(24px, 8vw, 36px);
    }
}

/* Products Showcase — Mobile */
@media (max-width: 968px) {
    .products-showcase {
        min-height: 0;
        height: auto;
        overflow: visible;
        padding: 32px 0 40px;
        align-items: flex-start;
    }

    .showcase-slider-viewport {
        overflow: hidden;
        padding-left: 20px;
    }

    /* Hide all arrows on mobile — swipe gesture handles navigation */
    .carousel-nav,
    .section-nav {
        display: none !important;
    }

    .showcase-slider-track {
        align-items: flex-start;
    }

    .product-detail-card {
        width: calc(100vw - 40px);
        max-height: unset;
        height: auto;
        flex-direction: column;
    }

    .card-image {
        height: 240px;
        flex: none;
        width: 100%;
    }

    .card-info {
        padding: 20px;
        flex: none;
        display: flex;
        flex-direction: column;
        gap: 0;
    }

    .card-header {
        margin-bottom: 8px;
    }

    .card-header h3 {
        font-size: 20px;
    }

    .product-story {
        font-size: 12px;
        line-height: 1.55;
        margin-bottom: 10px;
        display: -webkit-box;
        -webkit-line-clamp: 4;
        -webkit-box-orient: vertical;
        line-clamp: 4;
        overflow: hidden;
    }

    .shipping-badges {
        gap: 6px;
        padding-top: 10px;
    }

    .shipping-badges span {
        font-size: 11px;
        padding: 5px 11px;
    }

    .buy-btn-small {
        align-self: flex-end;
        margin-top: 0;
        padding: 9px 22px;
        font-size: 13px;
    }

    .section-nav {
        width: 44px;
        height: 44px;
    }

    .section-nav img {
        width: 22px;
    }
}