/* ============================================
   FOLLOWME.ID — SPORTY SERIES
   Main Stylesheet
   ============================================ */

/* --- Reset & Base --- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --blue-primary: #1565C0;
    --blue-light:   #42A5F5;
    --blue-dark:    #0D47A1;
    --blue-bg:      #E3F2FD;
    --blue-hero:    #BBDEFB;
    --white:        #FFFFFF;
    --off-white:    #F8FAFF;
    --gray-100:     #F5F5F5;
    --gray-200:     #EEEEEE;
    --gray-400:     #BDBDBD;
    --gray-600:     #757575;
    --gray-800:     #424242;
    --dark:         #1A1A2E;
    --text-primary: #1A1A2E;
    --text-muted:   #6B7280;

    --font-main:    'Inter', sans-serif;
    --font-display: 'Bebas Neue', sans-serif;

    --radius-sm:    6px;
    --radius-md:    12px;
    --radius-lg:    20px;
    --radius-xl:    32px;
    --radius-full:  9999px;

    --shadow-sm:    0 1px 3px rgba(0,0,0,.08);
    --shadow-md:    0 4px 16px rgba(0,0,0,.10);
    --shadow-lg:    0 8px 32px rgba(0,0,0,.14);
    --shadow-blue:  0 4px 20px rgba(21,101,192,.25);

    --transition:   .25s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    color: var(--text-primary);
    background: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0 24px;
    height: 64px;
    display: flex;
    align-items: center;
    background: rgba(255,255,255,.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(21,101,192,.08);
    transition: box-shadow var(--transition);
}

.navbar.scrolled {
    box-shadow: var(--shadow-md);
}

.nav-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-logo {
    flex-shrink: 0;
}

.logo-text {
    font-family: var(--font-display);
    font-size: 22px;
    letter-spacing: 1px;
    color: var(--blue-primary);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
    margin: 0 auto;
}

.nav-link {
    font-size: 14px;
    font-weight: 500;
    color: var(--gray-600);
    transition: color var(--transition);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--blue-primary);
    border-radius: var(--radius-full);
    transition: width var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: var(--blue-primary);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.btn-login {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-primary);
    padding: 8px 16px;
    border-radius: var(--radius-full);
    transition: color var(--transition);
}

.btn-login:hover {
    color: var(--blue-primary);
}

.btn-shop {
    font-size: 14px;
    font-weight: 600;
    color: var(--white);
    background: var(--blue-primary);
    padding: 9px 20px;
    border-radius: var(--radius-full);
    transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}

.btn-shop:hover {
    background: var(--blue-dark);
    transform: translateY(-1px);
    box-shadow: var(--shadow-blue);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    margin-left: auto;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    border-radius: var(--radius-full);
    transition: var(--transition);
}

/* ============================================
   HERO SECTION — redesigned with transparent PNG
   ============================================ */
.hero {
    min-height: 100vh;
    background: linear-gradient(150deg, #C8E6FA 0%, #A8D4F5 30%, #7BBFE8 65%, #5BA8D8 100%);
    display: flex;
    align-items: center;
    padding: 80px 0 0;
    position: relative;
    overflow: hidden;
}

/* ── Ambient glow blobs (via divs in HTML) ── */
.hero-glow {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

.hero-glow-1 {
    width: 700px;
    height: 700px;
    top: -200px;
    right: -100px;
    background: radial-gradient(circle, rgba(255,255,255,.28) 0%, rgba(100,180,255,.12) 50%, transparent 70%);
    filter: blur(30px);
    animation: glowPulse1 10s ease-in-out infinite;
}

.hero-glow-2 {
    width: 500px;
    height: 500px;
    bottom: -100px;
    left: -80px;
    background: radial-gradient(circle, rgba(21,101,192,.2) 0%, transparent 65%);
    filter: blur(40px);
    animation: glowPulse2 13s ease-in-out infinite;
}

.hero-glow-3 {
    width: 400px;
    height: 400px;
    top: 40%;
    left: 30%;
    background: radial-gradient(circle, rgba(255,255,255,.15) 0%, transparent 65%);
    filter: blur(50px);
    animation: glowPulse3 16s ease-in-out infinite;
}

@keyframes glowPulse1 {
    0%, 100% { transform: scale(1) translate(0,0);       opacity: .8; }
    50%       { transform: scale(1.1) translate(-30px,20px); opacity: 1; }
}
@keyframes glowPulse2 {
    0%, 100% { transform: scale(1) translate(0,0);       opacity: .7; }
    50%       { transform: scale(1.08) translate(20px,-30px); opacity: .9; }
}
@keyframes glowPulse3 {
    0%, 100% { transform: scale(1);    opacity: .5; }
    50%       { transform: scale(1.15); opacity: .8; }
}

/* Hero bottom fade */
.hero-bottom-fade {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 220px;
    background: linear-gradient(
        to bottom,
        transparent 0%,
        rgba(10, 30, 60, .55) 70%,
        rgba(10, 30, 60, .88) 100%
    );
    pointer-events: none;
    z-index: 3;
}

/* ── Two-column layout ── */
.hero-inner {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 48px;
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    align-items: center;
    gap: 40px;
    position: relative;
    z-index: 2;
}

/* ── Left: Text ── */
.hero-content {
    text-align: left;
}

.hero-eyebrow-logo {
    display: block;
    height: 22px;
    width: auto;
    margin-bottom: 20px;
    filter: drop-shadow(0 2px 8px rgba(0,0,0,.2));
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(64px, 7vw, 100px);
    line-height: .95;
    letter-spacing: 3px;
    margin-bottom: 20px;
}

.hero-title .line-white {
    color: #0D2B4E;
    display: block;
}

.hero-title .line-blue {
    color: var(--blue-primary);
    display: block;
    font-style: italic;
}

.hero-subtitle {
    font-size: 15px;
    color: #2C5282;
    max-width: 400px;
    margin-bottom: 32px;
    line-height: 1.75;
}

.hero-cta-row {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 32px;
}

.hero-link {
    font-size: 14px;
    font-weight: 600;
    color: var(--blue-dark);
    transition: letter-spacing var(--transition);
}

.hero-link:hover { letter-spacing: .5px; }

/* Info pills — gantikan floating badges */
.hero-pills {
    display: none; /* Diganti dengan badge melayang */
}

/* ── Right: Visual — transparent PNG bottle ── */
.hero-visual {
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    /* Extend to bottom of hero so bottles "stand" on the fade */
    height: 100%;
    min-height: 520px;
}

/* ── Floating badges — melayang di sekitar botol ── */
.badge-float {
    position: absolute;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,.95);
    border-radius: var(--radius-full);
    padding: 10px 18px 10px 10px;
    box-shadow:
        0 4px 16px rgba(21,101,192,.15),
        0 2px 6px rgba(0,0,0,.08);
    z-index: 5;
    transition: transform var(--transition);
}

.badge-float:hover {
    transform: translateY(-3px) scale(1.02);
}

/* Posisi badge di sekitar botol — organik, tidak kaku */
.bf-discount {
    top: -6%;       /* di atas gambar, tidak menutupi */
    left: -8%;
    animation: badgeDrift1 6s ease-in-out infinite;
}

.bf-special {
    top: 35%;
    right: -8%;
    animation: badgeDrift2 7s ease-in-out infinite;
}

.bf-bundle {
    bottom: 18%;
    left: -3%;
    animation: badgeDrift3 8s ease-in-out infinite;
}

@keyframes badgeDrift1 {
    0%, 100% { transform: translate(0, 0) rotate(-3deg); }
    50%       { transform: translate(-8px, -12px) rotate(-5deg); }
}

@keyframes badgeDrift2 {
    0%, 100% { transform: translate(0, 0) rotate(2deg); }
    50%       { transform: translate(10px, -10px) rotate(4deg); }
}

@keyframes badgeDrift3 {
    0%, 100% { transform: translate(0, 0) rotate(-2deg); }
    50%       { transform: translate(-6px, 8px) rotate(-4deg); }
}

.badge-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.badge-text {
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.badge-label {
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .5px;
    color: #546E7A;
}

.badge-value {
    font-size: 15px;
    font-weight: 700;
    color: #0D2B4E;
}

/* ── Bottle image — transparent PNG, menyatu dengan background ── */
.hero-bottle-wrap {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 580px;
    /* Float animation */
    animation: bottleFloat 6s ease-in-out infinite;
}

.hero-bottle-img {
    width: 100%;
    height: auto;
    display: block;
    /* drop-shadow agar botol punya kedalaman tanpa kotak */
    filter:
        drop-shadow(0 20px 40px rgba(10,40,100,.25))
        drop-shadow(0 4px 12px rgba(10,40,100,.15));
}

@keyframes bottleFloat {
    0%, 100% { transform: translateY(0px); }
    50%       { transform: translateY(-14px); }
}

/* ── Shared icon colors ── */
.bi-green  { background: linear-gradient(135deg, #43A047, #2E7D32); }
.bi-orange { background: linear-gradient(135deg, #FB8C00, #E65100); }
.bi-blue   { background: linear-gradient(135deg, #1E88E5, #0D47A1); }


/* ============================================
   VIDEO CONTENT SECTION
   ============================================ */
.video-content-section {
    position: relative;
    background: #0a1628;
    overflow: hidden;
}

/* Fade atas — menyambung dari hero */
.vcs-fade-top {
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 120px;
    background: linear-gradient(to bottom, rgba(10,30,60,.92) 0%, transparent 100%);
    z-index: 2;
    pointer-events: none;
}

/* Fade bawah — menyambung ke carousel */
.vcs-fade-bottom {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 120px;
    background: linear-gradient(to top, rgba(10,30,60,.92) 0%, transparent 100%);
    z-index: 2;
    pointer-events: none;
}

/* Divider gradasi antara dua row */
.vcs-row-divider {
    height: 2px;
    margin: 0 10%;
    background: linear-gradient(
        to right,
        transparent 0%,
        rgba(100,180,255,.25) 30%,
        rgba(100,180,255,.45) 50%,
        rgba(100,180,255,.25) 70%,
        transparent 100%
    );
}

/* Row layout */
.vcs-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    min-height: 520px;
    position: relative;
    z-index: 1;
}

/* Video wrap */
.vcs-video-wrap {
    position: relative;
    height: 520px;
    overflow: hidden;
}

.vcs-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(.85) brightness(.9);
}

/* Overlay gradient di sisi dalam video — menyatu dengan teks */
.vcs-row--left .vcs-video-wrap .vcs-video-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        transparent 50%,
        rgba(10,22,40,.85) 100%
    );
}

.vcs-row--right .vcs-video-wrap .vcs-video-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to left,
        transparent 50%,
        rgba(10,22,40,.85) 100%
    );
}

/* Text panel */
.vcs-text {
    padding: 60px 56px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.vcs-eyebrow {
    display: inline-block;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(100,180,255,.85);
    margin-bottom: 16px;
}

.vcs-title {
    font-family: var(--font-display);
    font-size: clamp(28px, 3.5vw, 46px);
    line-height: 1.05;
    letter-spacing: 2px;
    color: #ffffff;
    margin-bottom: 20px;
}

.vcs-desc {
    font-size: 14px;
    color: rgba(200,220,255,.75);
    line-height: 1.8;
    max-width: 420px;
    margin-bottom: 32px;
}

/* Stats row */
.vcs-stat-row {
    display: flex;
    gap: 32px;
}

.vcs-stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.vcs-stat-num {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1;
}

.vcs-stat-label {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: rgba(150,200,255,.65);
}

/* CTA link */
.vcs-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: rgba(100,180,255,.9);
    border-bottom: 1px solid rgba(100,180,255,.35);
    padding-bottom: 4px;
    transition: color .2s, border-color .2s;
    width: fit-content;
}

.vcs-cta:hover {
    color: #ffffff;
    border-color: rgba(255,255,255,.5);
}

/* Responsive */
@media (max-width: 768px) {
    .vcs-row {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .vcs-row--right {
        /* Video di bawah teks di mobile */
        direction: ltr;
    }

    .vcs-video-wrap {
        height: 280px;
    }

    .vcs-row--left .vcs-video-wrap .vcs-video-overlay {
        background: linear-gradient(to bottom, transparent 50%, rgba(10,22,40,.85) 100%);
    }

    .vcs-row--right .vcs-video-wrap .vcs-video-overlay {
        background: linear-gradient(to bottom, transparent 50%, rgba(10,22,40,.85) 100%);
    }

    .vcs-text {
        padding: 36px 24px;
    }

    .vcs-stat-row {
        gap: 20px;
    }

    .vcs-row-divider {
        margin: 0 5%;
    }
}

/* ============================================
   PRODUCT CAROUSEL SECTION
   ============================================ */
.carousel-section {
    padding: 64px 0 72px;
    overflow: hidden;
    position: relative;
    /* fallback bg kalau video belum load */
    background: #0D2B4E;
}

/* ── Smooth fade dari hero (biru muda) ke section ini (gelap) ── */
.carousel-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 80px;
    /* Sedikit fade di paling atas untuk menyambung dengan hero-bottom-fade */
    background: linear-gradient(
        to bottom,
        rgba(10, 30, 60, .85) 0%,
        transparent 100%
    );
    z-index: 1;
    pointer-events: none;
}

/* ── Video background ── */
.carousel-video-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

.carousel-bg-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    /* Slight desaturate so it doesn't compete with card colors */
    filter: saturate(.75) brightness(.85);
}

.carousel-video-overlay {
    position: absolute;
    inset: 0;
    /* Gradient: lebih gelap di atas (teks) dan bawah (card), transparan di tengah */
    background:
        linear-gradient(
            180deg,
            rgba(10, 30, 60, .72) 0%,
            rgba(10, 30, 60, .38) 35%,
            rgba(10, 30, 60, .38) 65%,
            rgba(10, 30, 60, .65) 100%
        );
}

/* Semua konten carousel harus di atas video */
.carousel-header,
.carousel-outer {
    position: relative;
    z-index: 2;
}

.carousel-header {
    text-align: center;
    padding: 0 24px;
    margin-bottom: 40px;
}

/* Teks header jadi putih karena background gelap */
.carousel-eyebrow {
    color: rgba(255,255,255,.7) !important;
    background: rgba(255,255,255,.12) !important;
}

.carousel-title {
    font-family: var(--font-display);
    font-size: clamp(28px, 4vw, 44px);
    letter-spacing: 2px;
    color: var(--white);
    margin-bottom: 10px;
    text-shadow: 0 2px 12px rgba(0,0,0,.3);
}

.carousel-sub {
    font-size: 14px;
    color: rgba(255,255,255,.7);
    max-width: 480px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Outer wrapper — clips the track, holds cloud edges */
.carousel-outer {
    position: relative;
    width: 100%;
    overflow: hidden;   /* clips belt so cards don't spill outside */
    cursor: grab;
    /* Padding atas agar glow botol tidak terpotong */
    padding-top: 20px;
}

.carousel-outer.is-dragging {
    cursor: grabbing;
}

/* ── Cloud fade edges ── */
.cloud-edge {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 160px;
    z-index: 10;
    pointer-events: none;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0;
}

.cloud-left  { left: 0; }
.cloud-right { right: 0; transform: scaleX(-1); }

/* Gradient fade overlay — dark to match video bg */
.cloud-left::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(10,30,60,.85) 0%, rgba(10,30,60,0) 100%);
    z-index: 1;
}
.cloud-right::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(10,30,60,.85) 0%, rgba(10,30,60,0) 100%);
    z-index: 1;
}

/* Puff shapes */
.cloud-puff {
    position: absolute;
    border-radius: 50%;
    background: rgba(255,255,255,.85);
    filter: blur(18px);
}

.cloud-left  .cp-1 { width: 100px; height: 80px;  top: 10%;  left: -20px; }
.cloud-left  .cp-2 { width: 130px; height: 100px; top: 35%;  left: -30px; }
.cloud-left  .cp-3 { width: 90px;  height: 70px;  bottom: 15%; left: -10px; }
.cloud-right .cp-1 { width: 100px; height: 80px;  top: 10%;  left: -20px; }
.cloud-right .cp-2 { width: 130px; height: 100px; top: 35%;  left: -30px; }
.cloud-right .cp-3 { width: 90px;  height: 70px;  bottom: 15%; left: -10px; }

/* ── Belt: JS controls translateX, CSS hanya transition-less movement ── */
.carousel-belt {
    display: flex;
    /* width ditentukan JS setelah render */
    will-change: transform;
    /* Tidak ada CSS animation — JS yang gerakkan */
}

/* Pause class ditambah JS saat hover/touch — handled in JS */

.carousel-track {
    display: flex;
    gap: 28px;
    padding: 20px 20px 32px;
    flex-shrink: 0;
    align-items: flex-end; /* botol "berdiri" di garis yang sama */
}

/* ── Carousel Card — floating bottle, no box ── */
.carousel-card {
    flex: 0 0 216px;    /* was 180px +20% */
    background: transparent;
    border-radius: 0;
    overflow: visible;
    box-shadow: none;
    transition: transform .35s ease;
    cursor: pointer;
    position: relative;
    user-select: none;
    -webkit-user-select: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 14px 18px;   /* was 0 12px 16px */
}

.carousel-card:hover {
    transform: translateY(-12px) scale(1.04);
    box-shadow: none;
}

/* Glow halo — warna unik tiap produk, muncul di bawah botol */
.cc-glow {
    position: absolute;
    bottom: 52px;
    left: 50%;
    transform: translateX(-50%);
    width: 230px;   /* was 160px — lebih lebar */
    height: 160px;  /* was 120px — lebih tinggi */
    pointer-events: none;
    z-index: 0;
    opacity: .95;   /* was .7 — lebih terlihat */
    transition: opacity .35s ease;
    filter: blur(12px); /* was 18px — kurang blur = lebih solid/terlihat */
}

.carousel-card:hover .cc-glow {
    opacity: 1;
    filter: blur(10px);
}

/* Botol PNG melayang */
.cc-bottle-wrap {
    position: relative;
    z-index: 2;
    width: 156px;   /* was 130px +20% */
    height: 240px;  /* was 200px +20% */
    display: flex;
    align-items: flex-end;
    justify-content: center;
    animation: bottleCarouselFloat 5s ease-in-out infinite;
}

/* Tiap botol punya timing berbeda agar tidak sinkron */
.carousel-card:nth-child(2) .cc-bottle-wrap { animation-delay: -1s; }
.carousel-card:nth-child(3) .cc-bottle-wrap { animation-delay: -2s; }
.carousel-card:nth-child(4) .cc-bottle-wrap { animation-delay: -3s; }
.carousel-card:nth-child(5) .cc-bottle-wrap { animation-delay: -4s; }

@keyframes bottleCarouselFloat {
    0%, 100% { transform: translateY(0px); }
    50%       { transform: translateY(-10px); }
}

.cc-bottle-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: bottom center;
    display: block;
    /* Drop shadow mengikuti kontur botol, bukan kotak */
    filter:
        drop-shadow(0 12px 24px rgba(0,0,0,.35))
        drop-shadow(0 4px 8px rgba(0,0,0,.2));
    transition: filter .35s ease;
}

.carousel-card:hover .cc-bottle-img {
    filter:
        drop-shadow(0 20px 36px rgba(0,0,0,.45))
        drop-shadow(0 6px 12px rgba(0,0,0,.25));
}

/* Divider line antara botol dan info */
.cc-info {
    width: 100%;
    padding: 12px 4px 0;
    text-align: center;
    position: relative;
    z-index: 2;
    border-top: 1px solid rgba(255,255,255,.15);
}

.cc-name {
    font-family: var(--font-display);
    font-size: 17px;    /* was 14px +20% */
    letter-spacing: 1.5px;
    color: #ffffff;
    margin-bottom: 2px;
    text-shadow: 0 1px 8px rgba(0,0,0,.4);
}

.cc-desc {
    font-size: 12px;    /* was 10px +20% */
    color: rgba(200, 225, 255, .75);
    margin-bottom: 8px;
    line-height: 1.4;
}

.cc-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.cc-price {
    font-size: 14px;    /* was 12px +20% */
    font-weight: 800;
    color: rgba(150, 210, 255, .95);
}

.cc-detail-hint {
    font-size: 12px;    /* was 10px +20% */
    font-weight: 600;
    color: rgba(255,255,255,.55);
    opacity: 1;
    transition: color .2s;
}

.carousel-card:hover .cc-detail-hint {
    color: rgba(255,255,255,.9);
}

/* Remove badge from product cards */
.product-badge { display: none; }
.cc-badge      { display: none; }

/* ============================================
   PRODUCT MODAL
   ============================================ */
.modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 2000;
    background: rgba(10, 20, 40, 0.55);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: opacity .3s ease, visibility .3s ease;
}

.modal-overlay.is-open {
    opacity: 1;
    visibility: visible;
}

.modal-box {
    background: var(--white);
    border-radius: 24px;
    width: 100%;
    max-width: 820px;
    max-height: 90vh;
    overflow-y: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    position: relative;
    box-shadow: 0 24px 80px rgba(0,0,0,.22);
    transform: translateY(24px) scale(.97);
    transition: transform .35s cubic-bezier(.34,1.56,.64,1);
    scrollbar-width: none;
}

.modal-box::-webkit-scrollbar { display: none; }

.modal-overlay.is-open .modal-box {
    transform: translateY(0) scale(1);
}

/* Close button */
.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    background: rgba(0,0,0,.07);
    color: var(--gray-600);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: background .2s, color .2s, transform .2s;
}

.modal-close:hover {
    background: var(--blue-primary);
    color: var(--white);
    transform: rotate(90deg);
}

/* Image panel */
.modal-image {
    position: relative;
    border-radius: 24px 0 0 24px;
    overflow: hidden;
    min-height: 360px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-img-cloud {
    position: absolute;
    border-radius: 50%;
    background: rgba(255,255,255,.6);
    filter: blur(28px);
    pointer-events: none;
}

.modal-img-cloud-tl {
    width: 160px;
    height: 130px;
    top: -30px;
    left: -30px;
}

.modal-img-cloud-br {
    width: 140px;
    height: 110px;
    bottom: -20px;
    right: -20px;
}

.modal-product-img {
    width: 72%;
    height: auto;
    object-fit: contain;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 12px 28px rgba(0,0,0,.2));
    animation: modalImgFloat 4s ease-in-out infinite;
}

@keyframes modalImgFloat {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-8px); }
}

/* Info panel */
.modal-info {
    padding: 40px 36px 36px;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.modal-name {
    font-family: var(--font-display);
    font-size: clamp(28px, 3.5vw, 42px);
    letter-spacing: 2px;
    color: var(--text-primary);
    margin-bottom: 10px;
    line-height: 1;
}

.modal-desc {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.75;
    margin-bottom: 22px;
}

.modal-notes-label {
    display: block;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gray-400);
    margin-bottom: 10px;
}

/* Scent notes table */
.modal-notes-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 22px;
    font-size: 13px;
}

.modal-notes-table thead th {
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--gray-400);
    padding: 0 10px 8px;
    text-align: left;
    border-bottom: 1px solid var(--gray-200);
}

.modal-notes-table thead th:first-child {
    width: 58px;
}

.modal-notes-table tbody tr {
    border-bottom: 1px solid rgba(0,0,0,.05);
}

.modal-notes-table tbody tr:last-child {
    border-bottom: none;
}

.modal-notes-table tbody td {
    padding: 9px 10px;
    vertical-align: top;
    line-height: 1.55;
    color: var(--text-primary);
}

/* Layer label cell */
.modal-layer-cell {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    white-space: nowrap;
    border-radius: 4px;
    padding: 9px 10px !important;
}

.modal-layer-cell.top    { color: #1976D2; }
.modal-layer-cell.heart  { color: #7B1FA2; }
.modal-layer-cell.base   { color: #2E7D32; }

.modal-meta {
    display: flex;
    gap: 28px;
    padding: 16px 18px;
    background: var(--off-white);
    border-radius: var(--radius-md);
    margin-bottom: 22px;
}

.modal-meta-item {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.modal-meta-label {
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--gray-400);
}

.modal-meta-val {
    font-size: 13px;
    font-weight: 700;
    color: var(--text-primary);
}

.modal-price-row {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin-bottom: 28px;
}

.modal-price-old {
    font-size: 13px;
    color: var(--gray-400);
    text-decoration: line-through;
}

.modal-price {
    font-family: var(--font-display);
    font-size: 34px;
    letter-spacing: 1px;
    color: var(--blue-primary);
}

.modal-actions {
    display: flex;
    gap: 12px;
    margin-top: auto;
    padding-top: 8px;
}

.modal-btn-close {
    flex: 1;
    padding: 13px 20px;
    background: var(--blue-primary);
    color: var(--white);
    border: none;
    border-radius: var(--radius-full);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: background .2s, transform .2s;
}

.modal-btn-close:hover {
    background: var(--blue-dark);
    transform: translateY(-1px);
}

/* Modal responsive */
@media (max-width: 640px) {
    .modal-box {
        grid-template-columns: 1fr;
        max-height: 92vh;
        border-radius: 20px;
    }

    .modal-image {
        border-radius: 20px 20px 0 0;
        min-height: 260px;
    }

    .modal-info {
        padding: 24px 24px 28px;
    }

    .modal-name {
        font-size: 28px;
    }
}

/* ============================================
   PRODUCTS SECTION — Animated smoke background
   ============================================ */
.products {
    padding: 60px 24px 80px;
    position: relative;
    overflow: hidden;
    /* Fallback bg kalau video belum load */
    background: #0a1628;
}

/* ── Video background ── */
.products-video-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

.products-bg-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Desaturasi + gelap sedikit agar tidak terlalu mencolok */
    filter: saturate(.7) brightness(.75);
}

.products-video-overlay {
    position: absolute;
    inset: 0;
    /* Gradient gelap dengan transparansi di tengah agar video terlihat */
    background: linear-gradient(
        160deg,
        rgba(10, 22, 40, .88) 0%,
        rgba(13, 34, 64, .75) 30%,
        rgba(15, 45, 85, .65) 50%,
        rgba(10, 30, 60, .80) 100%
    );
    z-index: 1;
}

/* ── Top fade: transisi dari carousel ── */
.products-top-fade {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(
        to bottom,
        rgba(10, 30, 60, .90) 0%,
        transparent 100%
    );
    z-index: 2;
    pointer-events: none;
}

/* ── Smoke layers — setiap layer adalah radial-gradient yang bergerak ── */
.products::before,
.products::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    mix-blend-mode: screen;
    z-index: 2;
}

/* Layer 1 — asap besar kiri */
.products::before {
    width: 700px;
    height: 500px;
    top: -100px;
    left: -150px;
    background: radial-gradient(ellipse at center,
        rgba(100, 180, 255, .18) 0%,
        rgba(60, 130, 220, .10) 40%,
        transparent 70%
    );
    filter: blur(40px);
    animation: smokeFloat1 14s ease-in-out infinite;
}

/* Layer 2 — asap besar kanan */
.products::after {
    width: 600px;
    height: 450px;
    bottom: -80px;
    right: -100px;
    background: radial-gradient(ellipse at center,
        rgba(180, 220, 255, .15) 0%,
        rgba(80, 150, 230, .08) 45%,
        transparent 70%
    );
    filter: blur(50px);
    animation: smokeFloat2 18s ease-in-out infinite;
}

/* Extra smoke blobs via injected divs — lihat HTML */
.smoke-blob {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    mix-blend-mode: screen;
    filter: blur(60px);
    z-index: 2;
}

.smoke-blob-1 {
    width: 400px;
    height: 300px;
    top: 30%;
    left: 20%;
    background: radial-gradient(ellipse,
        rgba(140, 200, 255, .12) 0%,
        transparent 65%
    );
    animation: smokeFloat3 20s ease-in-out infinite;
}

.smoke-blob-2 {
    width: 350px;
    height: 280px;
    top: 10%;
    right: 15%;
    background: radial-gradient(ellipse,
        rgba(200, 230, 255, .10) 0%,
        transparent 65%
    );
    animation: smokeFloat4 16s ease-in-out infinite;
}

.smoke-blob-3 {
    width: 500px;
    height: 350px;
    bottom: 5%;
    left: 35%;
    background: radial-gradient(ellipse,
        rgba(100, 160, 240, .13) 0%,
        transparent 65%
    );
    animation: smokeFloat5 22s ease-in-out infinite;
}

/* Keyframes — setiap blob bergerak dengan path berbeda agar terlihat organik */
@keyframes smokeFloat1 {
    0%   { transform: translate(0, 0)    scale(1);    opacity: .8; }
    25%  { transform: translate(60px, -40px) scale(1.1); opacity: 1; }
    50%  { transform: translate(30px, -80px) scale(.95); opacity: .7; }
    75%  { transform: translate(-40px, -50px) scale(1.05); opacity: .9; }
    100% { transform: translate(0, 0)    scale(1);    opacity: .8; }
}

@keyframes smokeFloat2 {
    0%   { transform: translate(0, 0)     scale(1);    opacity: .7; }
    30%  { transform: translate(-50px, 30px) scale(1.08); opacity: .9; }
    60%  { transform: translate(-20px, 60px) scale(.92); opacity: .6; }
    80%  { transform: translate(40px, 20px)  scale(1.04); opacity: .85; }
    100% { transform: translate(0, 0)     scale(1);    opacity: .7; }
}

@keyframes smokeFloat3 {
    0%   { transform: translate(0, 0)      scale(1);    opacity: .6; }
    20%  { transform: translate(40px, -60px) scale(1.12); opacity: .9; }
    50%  { transform: translate(-30px, -90px) scale(.9);  opacity: .5; }
    70%  { transform: translate(20px, -40px)  scale(1.06); opacity: .8; }
    100% { transform: translate(0, 0)      scale(1);    opacity: .6; }
}

@keyframes smokeFloat4 {
    0%   { transform: translate(0, 0)       scale(1);    opacity: .7; }
    35%  { transform: translate(-60px, 40px)  scale(1.1);  opacity: 1; }
    65%  { transform: translate(30px, 70px)   scale(.88);  opacity: .55; }
    100% { transform: translate(0, 0)       scale(1);    opacity: .7; }
}

@keyframes smokeFloat5 {
    0%   { transform: translate(0, 0)      scale(1);    opacity: .5; }
    40%  { transform: translate(50px, -50px) scale(1.15); opacity: .85; }
    70%  { transform: translate(-40px, -30px) scale(.93); opacity: .6; }
    100% { transform: translate(0, 0)      scale(1);    opacity: .5; }
}

/* Fade bawah products → CTA */
.products .products-grid::after {
    content: '';
    display: block;
    height: 1px; /* spacer only, fade handled by CTA gradient */
}

.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 48px;
    position: relative;
    z-index: 3;
}

.section-eyebrow {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(100, 180, 255, .95);
    margin-bottom: 12px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(28px, 4vw, 42px);
    letter-spacing: 1px;
    color: var(--white);
    margin-bottom: 12px;
}

.section-sub {
    font-size: 14px;
    color: rgba(255, 255, 255, .75);
    line-height: 1.7;
}

.products-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    position: relative;
    z-index: 3;
}

/* Product Card */
/* ============================================
   PRODUCT CARD — floating bottle (same concept as carousel)
   ============================================ */
.product-card {
    background: transparent;
    border-radius: 0;
    overflow: visible;
    box-shadow: none;
    transition: transform .35s ease;
    cursor: pointer;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 16px 20px;
}

.product-card:hover {
    transform: translateY(-14px) scale(1.03);
}

/* Glow halo — warna unik tiap produk */
.product-glow {
    position: absolute;
    bottom: 72px;
    left: 50%;
    transform: translateX(-50%);
    width: 260px;
    height: 180px;
    pointer-events: none;
    z-index: 0;
    opacity: .9;
    transition: opacity .35s ease;
    filter: blur(14px);
}

.product-card:hover .product-glow {
    opacity: 1;
    filter: blur(11px);
}

/* Botol PNG melayang */
.product-bottle-wrap {
    position: relative;
    z-index: 2;
    width: 180px;
    height: 280px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    animation: productBottleFloat 5s ease-in-out infinite;
}

/* Tiap botol punya delay berbeda agar tidak sinkron */
.product-card:nth-child(2) .product-bottle-wrap { animation-delay: -1.2s; }
.product-card:nth-child(3) .product-bottle-wrap { animation-delay: -2.4s; }
.product-card:nth-child(4) .product-bottle-wrap { animation-delay: -3.6s; }
.product-card:nth-child(5) .product-bottle-wrap { animation-delay: -4.8s; }

@keyframes productBottleFloat {
    0%, 100% { transform: translateY(0px); }
    50%       { transform: translateY(-12px); }
}

.product-bottle-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: bottom center;
    display: block;
    filter:
        drop-shadow(0 16px 32px rgba(0,0,0,.40))
        drop-shadow(0 4px 10px rgba(0,0,0,.25));
    transition: filter .35s ease;
}

.product-card:hover .product-bottle-img {
    filter:
        drop-shadow(0 24px 44px rgba(0,0,0,.50))
        drop-shadow(0 6px 14px rgba(0,0,0,.30));
}

/* Info di bawah botol */
.product-info {
    width: 100%;
    padding: 14px 4px 0;
    text-align: center;
    position: relative;
    z-index: 2;
    border-top: 1px solid rgba(255,255,255,.15);
}

.product-name {
    font-family: var(--font-display);
    font-size: 18px;
    letter-spacing: 1.5px;
    color: #ffffff;
    margin-bottom: 4px;
    text-shadow: 0 1px 8px rgba(0,0,0,.4);
}

.product-desc {
    font-size: 12px;
    color: rgba(200, 225, 255, .75);
    margin-bottom: 12px;
    line-height: 1.5;
}

.product-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.product-price {
    font-size: 14px;
    font-weight: 800;
    color: rgba(150, 210, 255, .95);
}

.product-price .original {
    font-size: 12px;
    font-weight: 400;
    color: rgba(255,255,255,.4);
    text-decoration: line-through;
    margin-right: 4px;
}

.product-detail-hint {
    font-size: 12px;
    font-weight: 600;
    color: rgba(255,255,255,.50);
    transition: color .2s;
}

.product-card:hover .product-detail-hint {
    color: rgba(255,255,255,.9);
}

/* ============================================
   MARKETPLACE SECTION
   ============================================ */
.marketplace-section {
    padding: 84px 24px 88px;
    background:
        linear-gradient(180deg, rgba(10, 22, 40, .10) 0%, rgba(248, 250, 255, 0) 120px),
        var(--off-white);
    position: relative;
    overflow: hidden;
}

.marketplace-section::before {
    content: '';
    position: absolute;
    top: -120px;
    left: 50%;
    width: min(920px, 92vw);
    height: 240px;
    transform: translateX(-50%);
    background: radial-gradient(ellipse at center, rgba(66, 165, 245, .18) 0%, transparent 70%);
    pointer-events: none;
}

.marketplace-inner {
    max-width: 1180px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.marketplace-copy {
    max-width: 620px;
    margin: 0 auto 36px;
    text-align: center;
}

.marketplace-eyebrow {
    color: var(--blue-primary);
}

.marketplace-title {
    font-family: var(--font-display);
    font-size: clamp(30px, 4.5vw, 50px);
    letter-spacing: 1.5px;
    line-height: 1.05;
    color: var(--text-primary);
    margin-bottom: 14px;
}

.marketplace-sub {
    font-size: 15px;
    line-height: 1.75;
    color: var(--text-muted);
}

.marketplace-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-bottom: 22px;
}

.marketplace-card {
    min-height: 230px;
    padding: 24px;
    border: 1px solid rgba(21, 101, 192, .12);
    border-radius: 8px;
    background: var(--white);
    box-shadow: 0 12px 34px rgba(26, 26, 46, .08);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.marketplace-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 42px rgba(26, 26, 46, .14);
    border-color: rgba(21, 101, 192, .24);
}

.marketplace-mark {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-family: var(--font-display);
    font-size: 24px;
    letter-spacing: 1px;
    color: var(--white);
    margin-bottom: 18px;
}

.marketplace-card--shopee .marketplace-mark {
    background: #EE4D2D;
}

.marketplace-card--tiktok .marketplace-mark {
    background: #111827;
}

.marketplace-card--tokopedia .marketplace-mark {
    background: #03AC0E;
}

.marketplace-label {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    color: var(--blue-primary);
    margin-bottom: 8px;
}

.marketplace-name {
    font-family: var(--font-display);
    font-size: 28px;
    letter-spacing: 1px;
    line-height: 1;
    color: var(--text-primary);
    margin-bottom: 10px;
}

.marketplace-desc {
    font-size: 13px;
    line-height: 1.65;
    color: var(--text-muted);
    margin-bottom: 24px;
}

.marketplace-action {
    margin-top: auto;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    color: var(--blue-primary);
}

.whatsapp-service {
    border-radius: 8px;
    background: linear-gradient(135deg, #0F5132 0%, #128C7E 48%, #25D366 100%);
    color: var(--white);
    padding: 26px 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    box-shadow: 0 16px 44px rgba(18, 140, 126, .24);
}

.whatsapp-copy {
    max-width: 720px;
}

.whatsapp-kicker {
    display: block;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255,255,255,.72);
    margin-bottom: 6px;
}

.whatsapp-copy strong {
    display: block;
    font-family: var(--font-display);
    font-size: 28px;
    letter-spacing: 1px;
    line-height: 1.05;
    margin-bottom: 6px;
}

.whatsapp-copy p {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255,255,255,.80);
}

.whatsapp-btn {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 26px;
    border-radius: var(--radius-full);
    background: var(--white);
    color: #0F5132;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    box-shadow: 0 8px 24px rgba(0,0,0,.18);
    transition: transform var(--transition), box-shadow var(--transition);
}

.whatsapp-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(0,0,0,.24);
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
    padding: 80px 24px;
    background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue-primary) 50%, #1976D2 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    /* Fade dari products (gelap) ke CTA (biru terang) */
    background: linear-gradient(
        to bottom,
        rgba(248, 250, 255, .88) 0%,
        transparent 100%
    );
    pointer-events: none;
    z-index: 1;
}

.cta-section::after {
    content: '';
    position: absolute;
    bottom: -40px;
    right: -40px;
    width: 300px;
    height: 300px;
    border: 60px solid rgba(255,255,255,.04);
    border-radius: 50%;
    pointer-events: none;
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 560px;
    margin: 0 auto;
}

.cta-title {
    font-family: var(--font-display);
    font-size: clamp(32px, 5vw, 52px);
    letter-spacing: 2px;
    color: var(--white);
    margin-bottom: 16px;
    line-height: 1.1;
}

.cta-title em {
    font-style: italic;
    color: var(--blue-light);
}

.cta-sub {
    font-size: 15px;
    color: rgba(255,255,255,.75);
    margin-bottom: 36px;
    line-height: 1.7;
}

.btn-cta {
    display: inline-block;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--blue-primary);
    background: var(--white);
    padding: 16px 40px;
    border-radius: var(--radius-full);
    transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
    box-shadow: 0 4px 24px rgba(0,0,0,.2);
}

.btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(0,0,0,.3);
    background: var(--blue-hero);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--dark);
    padding: 40px 24px;
    color: rgba(255,255,255,.6);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-logo {
    font-family: var(--font-display);
    font-size: 20px;
    letter-spacing: 1px;
    color: var(--white);
}

.footer-links {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.footer-links a {
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255,255,255,.5);
    transition: color var(--transition);
}

.footer-links a:hover {
    color: var(--white);
}

.footer-copy {
    font-size: 12px;
    color: rgba(255,255,255,.35);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .hero-inner {
        padding: 0 32px;
        gap: 40px;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .marketplace-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    /* Carousel — belt speed stays same, cloud edges shrink */
    .cloud-edge {
        width: 80px;
    }
}

@media (max-width: 768px) {
    /* Navbar */
    .nav-links,
    .nav-actions {
        display: none;
    }

    .nav-links.open {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 64px;
        left: 0;
        right: 0;
        background: var(--white);
        padding: 24px;
        gap: 20px;
        border-bottom: 1px solid var(--gray-200);
        box-shadow: var(--shadow-md);
        z-index: 999;
    }

    .nav-toggle {
        display: flex;
    }

    /* Hero: stack vertically */
    .hero {
        padding-top: 64px;
        padding-bottom: 0;
    }

    .hero-inner {
        grid-template-columns: 1fr;
        padding: 40px 24px 0;
        gap: 24px;
        text-align: center;
    }

    .hero-content {
        text-align: center;
    }

    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-cta-row {
        justify-content: center;
    }

    /* Badge melayang — adjust posisi untuk tablet */
    .badge-float {
        padding: 8px 14px 8px 8px;
        gap: 8px;
    }

    .bf-discount {
        top: -5%;
        left: 0%;
    }

    .bf-special {
        top: 30%;
        right: 0;
    }

    .bf-bundle {
        bottom: 15%;
        left: 0;
    }

    .badge-icon {
        width: 28px;
        height: 28px;
    }

    .badge-label {
        font-size: 9px;
    }

    .badge-value {
        font-size: 13px;
    }

    .hero-visual {
        padding-bottom: 0;
        min-height: 320px;
    }

    .hero-bottle-wrap {
        max-width: 340px;
        margin: 0 auto;
    }

    /* Carousel */
    .cloud-edge {
        display: none;
    }

    .carousel-card {
        flex: 0 0 180px;    /* was 150px +20% */
        padding: 0 10px 14px;
    }

    .cc-bottle-wrap {
        width: 132px;   /* was 110px +20% */
        height: 204px;  /* was 170px +20% */
    }

/* Products grid — 2 kolom di mobile agar user bisa lihat 4 produk sekaligus */
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
        max-width: 100%;
    }

    /* Product card mobile sizing */
    .product-bottle-wrap {
        width: 130px;
        height: 200px;
    }

    .product-glow {
        width: 190px;
        height: 130px;
    }

    .product-name {
        font-size: 15px;
    }

    .product-desc {
        font-size: 11px;
    }

    .marketplace-section {
        padding: 68px 20px 72px;
    }

    .marketplace-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .marketplace-card {
        min-height: auto;
        padding: 22px;
    }

    .whatsapp-service {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
        padding: 24px 20px;
    }

    .whatsapp-btn {
        width: 100%;
    }

    /* Footer */
    .footer-top {
        flex-direction: column;
        text-align: center;
    }

    .footer-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    /* Badge tetap tampil di mobile — ukuran lebih kecil */
    .badge-float {
        padding: 6px 12px 6px 6px;
        gap: 6px;
    }

    .bf-discount {
        top: -4%;
        left: -2%;
    }

    .bf-special {
        top: 28%;
        right: -3%;
    }

    .bf-bundle {
        bottom: 12%;
        left: -2%;
    }

    .badge-icon {
        width: 24px;
        height: 24px;
    }

    .badge-icon svg {
        width: 11px;
        height: 11px;
    }

    .badge-label {
        font-size: 8px;
        letter-spacing: .3px;
    }

    .badge-value {
        font-size: 11px;
    }

    .hero-bottle-wrap {
        max-width: 260px;
    }

    .carousel-card {
        flex: 0 0 156px;    /* was 130px +20% */
        padding: 0 7px 12px;
    }

    .cc-bottle-wrap {
        width: 114px;   /* was 95px +20% */
        height: 180px;  /* was 150px +20% */
    }

    .cc-name {
        font-size: 14px;    /* was 12px +20% */
    }

    .cc-desc {
        display: none;
    }

    /* Product card — mobile kecil */
    .product-bottle-wrap {
        width: 100px;
        height: 160px;
    }

    .product-glow {
        width: 150px;
        height: 100px;
    }

    .product-name {
        font-size: 13px;
        letter-spacing: 1px;
    }

    .product-desc {
        font-size: 10px;
    }

    .product-price {
        font-size: 12px;
    }

    .marketplace-title {
        font-size: 30px;
    }

    .marketplace-sub {
        font-size: 13px;
    }

    .marketplace-card {
        padding: 20px;
    }

    .marketplace-name {
        font-size: 24px;
    }

    .whatsapp-copy strong {
        font-size: 24px;
    }
}

/* ============================================
   UTILITY
   ============================================ */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap;
    border: 0;
}

/* ============================================
   PRODUCT DETAIL PAGE
   ============================================ */
.product-detail {
    padding-top: 80px;
    min-height: 100vh;
    background: var(--off-white);
}

.pd-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 40px 24px 80px;
}

.pd-back {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
    color: var(--blue-primary);
    margin-bottom: 32px;
    transition: gap var(--transition);
}

.pd-back:hover {
    gap: 10px;
}

.pd-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    margin-bottom: 80px;
}

.pd-image-wrap {
    border-radius: var(--radius-xl);
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.pd-bottle {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.pd-bottle-cap {
    width: 50px;
    height: 24px;
    border-radius: 6px 6px 0 0;
}

.pd-bottle-body {
    width: 100px;
    height: 200px;
    border-radius: 12px 12px 8px 8px;
    position: relative;
    overflow: hidden;
}

.pd-bottle-body::after {
    content: '';
    position: absolute;
    top: 0;
    left: 15%;
    width: 18%;
    height: 100%;
    background: rgba(255,255,255,.25);
    border-radius: 4px;
}

.pd-bottle-base {
    width: 116px;
    height: 14px;
    border-radius: 0 0 8px 8px;
    opacity: .7;
}

.pd-info {
    padding-top: 8px;
}

.pd-name {
    font-family: var(--font-display);
    font-size: clamp(40px, 5vw, 64px);
    letter-spacing: 2px;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.pd-tagline {
    font-size: 16px;
    font-weight: 600;
    color: var(--blue-primary);
    margin-bottom: 16px;
}

.pd-desc {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 28px;
}

.pd-notes h4 {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gray-600);
    margin-bottom: 12px;
}

.pd-notes-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 28px;
}

.pd-note {
    font-size: 12px;
    font-weight: 600;
    color: var(--blue-primary);
    background: rgba(21,101,192,.08);
    padding: 5px 12px;
    border-radius: var(--radius-full);
}

.pd-meta {
    display: flex;
    gap: 32px;
    margin-bottom: 28px;
    padding: 20px;
    background: var(--white);
    border-radius: var(--radius-md);
    border: 1px solid var(--gray-200);
}

.pd-meta-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.pd-meta-label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--gray-400);
}

.pd-meta-value {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
}

.pd-price-row {
    display: flex;
    align-items: baseline;
    gap: 12px;
    margin-bottom: 28px;
}

.pd-price-old {
    font-size: 14px;
    color: var(--gray-400);
    text-decoration: line-through;
}

.pd-price {
    font-family: var(--font-display);
    font-size: 36px;
    letter-spacing: 1px;
    color: var(--blue-primary);
}

.pd-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-pd-cart {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--white);
    background: var(--blue-primary);
    border: none;
    padding: 14px 32px;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}

.btn-pd-cart:hover {
    background: var(--blue-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-blue);
}

.btn-pd-back {
    font-size: 14px;
    font-weight: 600;
    color: var(--blue-primary);
    padding: 14px 24px;
    border-radius: var(--radius-full);
    border: 1.5px solid var(--blue-primary);
    transition: background var(--transition), color var(--transition);
}

.btn-pd-back:hover {
    background: var(--blue-primary);
    color: var(--white);
}

.pd-related {
    border-top: 1px solid var(--gray-200);
    padding-top: 48px;
}

.pd-related-title {
    font-family: var(--font-display);
    font-size: 28px;
    letter-spacing: 1px;
    color: var(--text-primary);
    margin-bottom: 32px;
}

.pd-related .products-grid {
    grid-template-columns: repeat(2, 1fr);
}

@media (max-width: 768px) {
    .pd-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .pd-image-wrap {
        max-width: 320px;
        margin: 0 auto;
    }

    .pd-related .products-grid {
        grid-template-columns: 1fr;
        max-width: 360px;
    }
}

/* ============================================
   PROMO PAGE
   ============================================ */
.promo-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.promo-card {
    border-radius: var(--radius-xl);
    overflow: hidden;
    min-height: 280px;
    display: flex;
    align-items: stretch;
    transition: transform var(--transition), box-shadow var(--transition);
}

.promo-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.promo-card--blue {
    background: linear-gradient(135deg, var(--blue-dark), var(--blue-primary));
}

.promo-card--dark {
    background: linear-gradient(135deg, #1A1A2E, #2D2D44);
}

.promo-card--light {
    background: var(--white);
    border: 1.5px solid var(--gray-200);
}

.promo-card-inner {
    padding: 36px 32px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
}

.promo-tag {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255,255,255,.6);
    margin-bottom: 12px;
}

.promo-title {
    font-family: var(--font-display);
    font-size: 36px;
    letter-spacing: 2px;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 12px;
}

.promo-sub {
    font-size: 13px;
    color: rgba(255,255,255,.65);
}

@media (max-width: 768px) {
    .promo-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }
}
