/* ============================================
   GetOTTs v2 — Clean White + Green Theme
   Inspired by Crafin / modern e-commerce
   ============================================ */

:root {
    --white: #ffffff;
    --off-white: #f9fbfa;
    --gray-50: #f4f7f5;
    --gray-100: #e8eee9;
    --gray-200: #d1dbd4;
    --gray-300: #a5b5aa;
    --gray-400: #7a8e82;
    --gray-500: #566660;
    --gray-600: #3b4840;
    --gray-700: #263029;
    --gray-800: #161d18;
    --gray-900: #0d1410;

    --green-50: #edfaf3;
    --green-100: #d0f5e4;
    --green-200: #9fead0;
    --green-300: #5dd9ae;
    --green-400: #25c991;
    --green-500: #0aad78;
    --green-600: #068059;
    --green-700: #04634a;

    --red-500: #e84040;
    --orange-500: #f6a124;
    --blue-500: #3b82f6;

    --font-body: 'DM Sans', system-ui, -apple-system, sans-serif;
    --font-heading: 'Plus Jakarta Sans', 'DM Sans', system-ui, sans-serif;

    /* Refined shadow system — more depth, less flat */
    --shadow-xs: 0 1px 2px rgba(0,0,0,.04);
    --shadow-sm: 0 2px 4px rgba(0,0,0,.05), 0 1px 2px rgba(0,0,0,.03);
    --shadow-md: 0 4px 12px rgba(0,0,0,.06), 0 2px 4px rgba(0,0,0,.04);
    --shadow-lg: 0 12px 28px rgba(0,0,0,.07), 0 4px 8px rgba(0,0,0,.04);
    --shadow-xl: 0 24px 48px rgba(0,0,0,.09), 0 8px 16px rgba(0,0,0,.05);
    --shadow-card: 0 2px 8px rgba(22,29,24,.06), 0 0 0 1px rgba(22,29,24,.04);
    --shadow-card-hover: 0 16px 40px rgba(22,29,24,.1), 0 0 0 1px rgba(6,128,89,.15);

    --radius: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --radius-full: 999px;

    --container: 1240px;
    --transition: all .22s cubic-bezier(.4,0,.2,1);
}

/* -- reset -- */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
    font-family: var(--font-body);
    color: var(--gray-700);
    background: var(--white);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    letter-spacing: .01em;
    overflow-x: hidden;
}
a { text-decoration:none; color:inherit; }
button { border:none; background:none; cursor:pointer; font-family:inherit; color:inherit; }
img { max-width:100%; }
ul { list-style:none; }

.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
}

/* -- common -- */
.text-green { color: var(--green-600); }

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 26px;
    border-radius: var(--radius-full);
    font-size: .875rem;
    font-weight: 600;
    transition: var(--transition);
    white-space: nowrap;
    letter-spacing: .01em;
}
.btn-primary {
    background: var(--green-600);
    color: white;
    box-shadow: 0 1px 2px rgba(6,128,89,.2), 0 4px 12px rgba(6,128,89,.18);
}
.btn-primary:hover {
    background: var(--green-700);
    box-shadow: 0 1px 2px rgba(6,128,89,.25), 0 6px 18px rgba(6,128,89,.25);
    transform: translateY(-1px);
}
.btn-primary:active { transform: translateY(0); }
.btn-outline {
    border: 1.5px solid var(--gray-200);
    color: var(--gray-700);
    background: white;
}
.btn-outline:hover {
    border-color: var(--green-400);
    color: var(--green-700);
    background: var(--green-50);
}
.btn-ghost {
    color: var(--gray-500);
    background: transparent;
}
.btn-ghost:hover { color: var(--gray-800); background: var(--gray-50); }
.w-full { width: 100%; justify-content: center; }

.bg-gray { background: var(--gray-50); }

/* ================================================
   TOP BAR
   ================================================ */
.top-bar {
    background: var(--gray-800);
    color: var(--gray-300);
    font-size: .78rem;
    padding: 7px 0;
}
.top-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}
.top-bar-left strong { color: var(--green-400); }
.top-bar-right {
    display: flex;
    gap: 6px;
    align-items: center;
}
.top-bar-right a { color: var(--gray-300); transition: color .15s; }
.top-bar-right a:hover { color: white; }
.top-bar .sep { opacity: .3; }

/* ================================================
   HEADER
   ================================================ */
.header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255,255,255,.94);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid rgba(22,29,24,.07);
    padding: 0;
    transition: box-shadow .2s;
}
.header.scrolled {
    box-shadow: 0 1px 12px rgba(22,29,24,.06);
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    height: 64px;
}

/* logo */
.logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    text-decoration: none;
}
.logo img {
    display: block;
    flex-shrink: 0;
    height: 36px;
    width: auto;
}
.logo-mark {
    width: 36px;
    height: 36px;
    background: var(--green-600);
    color: white;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: .85rem;
    letter-spacing: -.5px;
}
.logo-name {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.25rem;
    color: var(--gray-800);
    line-height: 1;
    transform: translateY(1px); /* Optical alignment adjustment */
}

/* nav */
.main-nav {
    display: flex;
    gap: 4px;
}
.main-nav-link {
    padding: 8px 14px;
    font-size: .88rem;
    font-weight: 500;
    color: var(--gray-500);
    border-radius: var(--radius);
    transition: all .15s;
}
.main-nav-link:hover {
    color: var(--gray-800);
    background: var(--gray-50);
}
.main-nav-link.highlight {
    color: var(--green-700);
    font-weight: 600;
}

/* search */
.header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}
.search-box {
    position: relative;
    display: flex;
    align-items: center;
    gap: 6px;
    background: var(--gray-50);
    border: 1px solid var(--gray-100);
    border-radius: var(--radius-full);
    padding: 6px 14px;
    width: 220px;
    transition: all .2s;
}
.search-box:focus-within {
    border-color: var(--green-400);
    box-shadow: 0 0 0 3px rgba(16,185,129,.1);
    background: white;
}
.search-box svg { width: 16px; height: 16px; color: var(--gray-400); flex-shrink: 0; }
.search-box input {
    border: none;
    background: none;
    outline: none;
    font-size: .85rem;
    width: 100%;
    color: var(--gray-700);
}
.search-box input::placeholder { color: var(--gray-300); }
.search-dropdown {
    position: absolute;
    top: calc(100% + 6px);
    left: 0; right: 0;
    background: white;
    border: 1px solid var(--gray-100);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    display: none;
    z-index: 50;
    overflow: hidden;
}
.search-dropdown.open { display: block; }
.search-dropdown .sd-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    cursor: pointer;
    font-size: .85rem;
    transition: background .1s;
}
.search-dropdown .sd-item:hover { background: var(--gray-50); }
.search-dropdown .sd-emoji { font-size: 1.3rem; }
.search-dropdown .sd-price { color: var(--gray-400); font-size: .78rem; }

.header-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 7px 16px;
    font-size: .85rem;
    font-weight: 500;
    color: var(--gray-600);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-full);
    transition: all .15s;
}
.header-btn:hover { border-color: var(--green-400); color: var(--green-700); }
.header-btn svg { width: 16px; height: 16px; }

.cart-btn {
    position: relative;
    display: flex;
    align-items: center;
    padding: 7px;
    border-radius: var(--radius-full);
    transition: background .15s;
}
.cart-btn:hover { background: var(--gray-50); }
.cart-btn svg { width: 20px; height: 20px; color: var(--gray-600); }
.cart-btn .badge {
    position: absolute;
    top:-2px; right:-3px;
    width: 17px; height: 17px;
    background: var(--green-500);
    color: white;
    font-size: .6rem;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-toggle {
    display: none;
    padding: 6px;
}
.mobile-toggle svg { width: 22px; height: 22px; }

/* ================================================
   HERO — Full-bleed Video Background
   ================================================ */
.hero {
    position: relative;
    padding: 0;
    background: var(--gray-900);
    overflow: hidden;
    min-height: 520px;
    display: flex;
    align-items: center;
}
/* Hero Video — Supabase CDN */
.hero-bg-video {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 1;
    transform: scale(1.08);
    transition: opacity .4s ease;
}
.hero-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to right,
        rgba(15,20,16, 1) 0%,
        rgba(15,20,16, 1) 35%,
        rgba(15,20,16, .7) 50%,
        rgba(15,20,16, .2) 70%,
        transparent 90%
    );
    z-index: 2;
}
.hero-content {
    position: relative;
    z-index: 3;
    padding: 80px 0;
    max-width: var(--container);
    width: 100%;
    margin: 0 auto;
    padding-left: 24px;
    padding-right: 24px;
}
.hero-content h1,
.hero-content .hero-pill,
.hero-content .hero-desc,
.hero-content .hero-actions,
.hero-content .hero-stats {
    max-width: 520px;
}

.hero-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 16px;
    background: rgba(255,255,255,.12);
    color: var(--green-300);
    border: 1px solid rgba(255,255,255,.15);
    border-radius: var(--radius-full);
    font-size: .82rem;
    font-weight: 600;
    margin-bottom: 20px;
    backdrop-filter: blur(8px);
}
.hero-pill svg { width: 14px; height: 14px; }

.hero h1 {
    font-family: var(--font-heading);
    font-size: clamp(2.4rem, 4vw, 3.2rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -.6px;
    color: white;
    margin-bottom: 18px;
    text-shadow: 0 2px 16px rgba(0,0,0,.25);
}
.hero-highlight {
    color: var(--green-400);
    position: relative;
}
.hero-desc {
    font-size: 1.05rem;
    color: rgba(255,255,255,.72);
    max-width: 500px;
    margin-bottom: 32px;
    line-height: 1.75;
    font-weight: 400;
}
.hero-actions {
    display: flex;
    gap: 12px;
    margin-bottom: 36px;
    flex-wrap: wrap;
}
.hero-outline-btn {
    border-color: rgba(255,255,255,.25) !important;
    color: white !important;
    background: rgba(255,255,255,.06) !important;
    backdrop-filter: blur(6px);
}
.hero-outline-btn:hover {
    border-color: var(--green-400) !important;
    background: rgba(255,255,255,.1) !important;
    color: var(--green-300) !important;
}
.hero-stats {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}
.hero-stats .stat { text-align: center; }
.hero-stats .stat strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 800;
    color: white;
}
.hero-stats .stat span {
    font-size: .78rem;
    color: rgba(255,255,255,.5);
}
.hero-stats .v-line {
    width: 1px;
    height: 32px;
    background: rgba(255,255,255,.15);
}

.section-video-banner {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.section-bg-video {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    transform: scale(1.12);
    transform-origin: top center;
    transition: opacity .4s ease;
}

/* Generic YouTube background class */
.yt-bg {
    border: none;
    pointer-events: none;
}
.section-video-overlay {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    padding: 20px;
    background: rgba(0,0,0,.35);
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(2px);
}
.section-video-overlay h2 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 8px;
    text-shadow: 0 2px 8px rgba(0,0,0,.3);
}
.section-video-overlay p {
    font-size: 1rem;
    opacity: .9;
    text-shadow: 0 1px 4px rgba(0,0,0,.3);
}
.combo-video-banner {
    height: 200px;
}
.trust-video-section {
    padding: 0;
}
.trust-video-banner {
    height: 280px;
    border-radius: 0;
}
.trust-overlay {
    background: rgba(0,0,0,.45);
}
.trust-overlay .btn {
    box-shadow: 0 4px 14px rgba(5,150,105,.4);
}

/* ================================================
   PAYMENT STRIP
   ================================================ */
.payment-strip {
    border-top: 1px solid var(--gray-100);
    border-bottom: 1px solid var(--gray-100);
    padding: 14px 0;
    background: var(--gray-50);
}
.payments-inner {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}
.pay-text { font-size: .8rem; color: var(--gray-400); font-weight: 500; white-space: nowrap; }
.pay-items { display: flex; gap: 6px; flex-wrap: wrap; }
.pay-chip {
    padding: 3px 12px;
    background: white;
    border: 1px solid var(--gray-200);
    border-radius: 6px;
    font-size: .72rem;
    font-weight: 600;
    color: var(--gray-500);
}

/* ================================================
   HOW IT WORKS
   ================================================ */
.how-section {
    padding: 48px 0;
    border-bottom: 1px solid var(--gray-100);
}
.how-grid {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 12px;
}
.how-step {
    text-align: center;
    padding: 20px;
    max-width: 260px;
}
.how-num {
    width: 36px; height: 36px;
    background: var(--green-100);
    color: var(--green-700);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: .9rem;
    margin-bottom: 12px;
}
.how-step h3 {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--gray-800);
}
.how-step p {
    font-size: .85rem;
    color: var(--gray-400);
    line-height: 1.6;
}
.how-arrow {
    display: flex;
    align-items: center;
    padding-top: 30px;
    color: var(--gray-300);
}
.how-arrow svg { width: 20px; height: 20px; }

/* ================================================
   PRODUCT SECTIONS
   ================================================ */
.products-section {
    padding: 72px 0;
}
.section-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 36px;
    gap: 16px;
    flex-wrap: wrap;
}
.section-top h2 {
    font-family: var(--font-heading);
    font-size: 1.65rem;
    font-weight: 800;
    color: var(--gray-800);
    letter-spacing: -.3px;
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}
.section-top h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 32px;
    height: 3px;
    background: var(--green-500);
    border-radius: 99px;
}
.section-sub {
    color: var(--gray-400);
    font-size: .88rem;
    margin-top: 6px;
    line-height: 1.5;
}
.section-badge {
    padding: 5px 14px;
    background: var(--orange-500);
    color: white;
    border-radius: var(--radius-full);
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .02em;
    white-space: nowrap;
}

/* plan switch */
.plan-switch {
    display: flex;
    gap: 4px;
    background: var(--gray-50);
    border: 1px solid var(--gray-100);
    border-radius: var(--radius-full);
    padding: 3px;
}
.ps-btn {
    padding: 7px 16px;
    font-size: .82rem;
    font-weight: 500;
    border-radius: var(--radius-full);
    color: var(--gray-500);
    transition: all .2s;
}
.ps-btn.active {
    background: white;
    color: var(--gray-800);
    box-shadow: var(--shadow-sm);
    font-weight: 600;
}

/* product grid */
.product-row {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(268px, 1fr));
    gap: 20px;
}

/* product card */
.p-card {
    background: white;
    border: 1px solid transparent;
    border-radius: var(--radius-lg);
    padding: 22px;
    transition: var(--transition);
    position: relative;
    box-shadow: var(--shadow-card);
}
.p-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, rgba(6,128,89,.04) 0%, transparent 60%);
    opacity: 0;
    transition: opacity .3s;
    pointer-events: none;
}
.p-card:hover {
    box-shadow: var(--shadow-card-hover);
    transform: translateY(-4px);
}
.p-card:hover::before { opacity: 1; }

.p-card-top {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 16px;
    padding-right: 56px; /* space for absolute-positioned badge */
}
.p-emoji {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.7rem;
    background: linear-gradient(135deg, var(--gray-50) 0%, white 100%);
    border-radius: 14px;
    flex-shrink: 0;
    box-shadow: 0 2px 6px rgba(22,29,24,.08);
    border: 1px solid var(--gray-100);
    overflow: hidden;
    transition: transform .2s;
}
.p-card:hover .p-emoji { transform: scale(1.06) rotate(-2deg); }
.p-info { flex: 1; min-width: 0; }
.p-name {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: .95rem;
    color: var(--gray-800);
    letter-spacing: -.1px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.p-type { font-size: .76rem; color: var(--gray-400); margin-top: 1px; }

.p-badge {
    position: absolute;
    top: 14px;
    right: 14px;
    padding: 3px 10px;
    background: var(--red-500);
    color: white;
    border-radius: var(--radius-full);
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .04em;
    text-transform: uppercase;
}
.p-badge.hot {
    background: linear-gradient(135deg, #f97316, #f59e0b);
}

.p-features {
    margin-bottom: 16px;
}
.p-features li {
    font-size: .8rem;
    color: var(--gray-500);
    padding: 3.5px 0;
    display: flex;
    align-items: center;
    gap: 7px;
    line-height: 1.4;
}
.p-features li::before {
    content: '';
    width: 16px;
    height: 16px;
    min-width: 16px;
    border-radius: 50%;
    background: var(--green-100);
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 24 24' fill='none' stroke='%23059669' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 10px;
}

/* Variant selectors on product cards */
.v-selector {
    display: flex;
    gap: 4px;
    margin-bottom: 8px;
    flex-wrap: wrap;
}
.v-pill {
    padding: 4px 10px;
    font-size: .7rem;
    font-weight: 600;
    font-family: var(--font-body);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-full);
    background: white;
    color: var(--gray-500);
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
    letter-spacing: .01em;
}
.v-pill:hover {
    border-color: var(--green-400);
    color: var(--green-700);
}
.v-pill.active {
    background: var(--green-600);
    color: white;
    border-color: var(--green-600);
    box-shadow: 0 2px 6px rgba(6,128,89,.2);
}
.v-access { margin-bottom: 6px; }
.v-quality { margin-bottom: 6px; }
.v-duration { margin-bottom: 10px; }

/* Cart qty buttons */
.cart-item-qty {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: .85rem;
    font-weight: 600;
    color: var(--gray-700);
}
.qty-btn {
    width: 22px; height: 22px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 50%;
    border: 1px solid var(--gray-200);
    background: var(--gray-50);
    color: var(--gray-600);
    font-size: .8rem;
    cursor: pointer;
    font-family: var(--font-body);
    transition: all .15s;
}
.qty-btn:hover {
    background: var(--green-100);
    border-color: var(--green-400);
    color: var(--green-700);
}

.p-stock {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: .72rem;
    font-weight: 600;
    margin-bottom: 12px;
}
.p-stock.good { color: var(--green-600); }
.p-stock.low { color: var(--orange-500); }
.p-stock-dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: currentColor;
}

.p-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 14px;
    border-top: 1px solid var(--gray-100);
    margin-top: 4px;
}
.p-price-old {
    font-size: .76rem;
    color: var(--gray-300);
    text-decoration: line-through;
    letter-spacing: .01em;
}
.p-price {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--gray-800);
    letter-spacing: -.3px;
}
.p-price small {
    font-size: .72rem;
    font-weight: 500;
    color: var(--gray-400);
    letter-spacing: 0;
}
.buy-btn {
    padding: 9px 20px;
    background: var(--green-600);
    color: white;
    border-radius: var(--radius-full);
    font-size: .8rem;
    font-weight: 600;
    transition: var(--transition);
    letter-spacing: .01em;
    box-shadow: 0 2px 8px rgba(6,128,89,.2);
}
.buy-btn:hover {
    background: var(--green-700);
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(6,128,89,.28);
}
.buy-btn:active { transform: translateY(0); }
.cart-add-btn {
    width: 36px; height: 36px;
    display: flex; align-items: center; justify-content: center;
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-full);
    color: var(--gray-500);
    transition: var(--transition);
}
.cart-add-btn:hover {
    background: var(--green-50);
    color: var(--green-600);
    border-color: var(--green-200);
    transform: scale(1.08);
}
.cart-add-btn svg { width: 15px; height: 15px; }

@keyframes bounceCart { 0%,100% { transform: scale(1); } 50% { transform: scale(1.3); } }
.badge.bounce { animation: bounceCart .3s ease; }

/* ================================================
   COMBO BUILDER
   ================================================ */
.combo-section {
    padding: 56px 0;
    background: var(--green-50);
    border-top: 1px solid var(--green-100);
    border-bottom: 1px solid var(--green-100);
}
.combo-header {
    margin-bottom: 28px;
}
.combo-header h2 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--gray-800);
}
.combo-header p {
    color: var(--gray-500);
    font-size: .9rem;
    margin-top: 4px;
}
.combo-grid {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 24px;
    align-items: start;
}
.combo-picker {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
    gap: 10px;
}
.cp-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 14px 8px;
    background: white;
    border: 2px solid var(--gray-100);
    border-radius: var(--radius);
    cursor: pointer;
    text-align: center;
    transition: all .15s;
}
.cp-card:hover { border-color: var(--gray-300); }
.cp-card.picked {
    border-color: var(--green-500);
    background: var(--green-50);
}
.cp-emoji { font-size: 1.6rem; }
.cp-name { font-size: .82rem; font-weight: 600; color: var(--gray-700); }
.cp-price { font-size: .72rem; color: var(--gray-400); }

.combo-receipt {
    background: white;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 24px;
    position: sticky;
    top: 80px;
}
.combo-receipt h3 {
    font-family: var(--font-heading);
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--gray-800);
}
.combo-empty {
    color: var(--gray-400);
    font-size: .85rem;
    text-align: center;
    padding: 24px 0;
}
.combo-items .ci-row {
    display: flex;
    justify-content: space-between;
    padding: 6px 0;
    font-size: .85rem;
    border-bottom: 1px solid var(--gray-50);
}
.combo-totals { margin-top: 16px; }
.ct-row {
    display: flex;
    justify-content: space-between;
    padding: 6px 0;
    font-size: .88rem;
    color: var(--gray-500);
}
.ct-row.green { color: var(--green-600); font-weight: 600; }
.ct-row.total {
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--gray-800);
    border-top: 1px solid var(--gray-200);
    padding-top: 10px;
    margin-top: 6px;
}

/* ================================================
   STATUS
   ================================================ */
.status-section {
    padding: 56px 0;
}
.status-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 10px;
}
.s-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    background: var(--gray-50);
    border: 1px solid var(--gray-100);
    border-radius: var(--radius);
    font-size: .85rem;
    font-weight: 500;
}
.s-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
}
.s-dot.online { background: var(--green-500); box-shadow: 0 0 6px rgba(16,185,129,.4); }
.s-dot.checking { background: var(--orange-500); }
.s-dot.offline { background: var(--red-500); }
.s-name { flex: 1; color: var(--gray-600); }
.s-status { font-size: .72rem; color: var(--gray-400); font-weight: 600; }

/* ================================================
   REVIEWS
   ================================================ */
.reviews-section {
    padding: 56px 0;
}
.reviews-section h2 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 28px;
    color: var(--gray-800);
}
.review-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 16px;
}
.r-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 26px;
    box-shadow: var(--shadow-card);
    transition: var(--transition);
}
.r-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-3px);
}
.r-stars { color: #f6a124; font-size: .9rem; margin-bottom: 12px; letter-spacing: 3px; }
.r-text {
    font-size: .88rem;
    color: var(--gray-500);
    line-height: 1.7;
    margin-bottom: 18px;
    font-style: italic;
}
.r-author {
    display: flex;
    align-items: center;
    gap: 10px;
}
.r-avatar {
    width: 36px; height: 36px;
    background: var(--green-100);
    color: var(--green-700);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: .85rem;
}
.r-meta strong { font-size: .85rem; display: block; color: var(--gray-700); }
.r-meta span { font-size: .75rem; color: var(--gray-400); }

/* ================================================
   FAQ
   ================================================ */
.faq-section {
    padding: 56px 0;
}
.faq-section h2 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 24px;
    color: var(--gray-800);
}
.faq-list {
    max-width: 720px;
}
.faq-item {
    border-bottom: 1px solid var(--gray-100);
}
.faq-q {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    font-size: .95rem;
    font-weight: 600;
    text-align: left;
    color: var(--gray-700);
}
.faq-q svg {
    width: 18px; height: 18px;
    color: var(--gray-400);
    transition: transform .2s;
    flex-shrink: 0;
}
.faq-item.open .faq-q svg { transform: rotate(45deg); }
.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s ease;
}
.faq-item.open .faq-a { max-height: 200px; }
.faq-a p {
    padding: 0 0 16px;
    font-size: .88rem;
    color: var(--gray-500);
    line-height: 1.7;
}

/* ================================================
   FOOTER
   ================================================ */
.footer {
    background: var(--gray-800);
    color: var(--gray-300);
    padding: 48px 0 0;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 36px;
    padding-bottom: 36px;
}
.brand-col p {
    font-size: .85rem;
    line-height: 1.6;
    margin-top: 12px;
    max-width: 260px;
    color: var(--gray-400);
}
.footer .logo-mark { background: var(--green-500); }
.footer .logo-name { color: white; }
.footer .logo {
    display: inline-flex !important;
    align-items: center;
    gap: 10px;
    padding: 0;
}
.social-row {
    display: flex;
    gap: 12px;
    margin-top: 16px;
}
.social-row a {
    width: 40px; height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,.06);
    border-radius: 10px;
    color: rgba(255,255,255,.6);
    transition: all .2s;
}
.social-row a svg {
    width: 20px;
    height: 20px;
}
.social-row a:hover {
    background: rgba(255,255,255,.12);
    color: white;
}
.social-row svg { width: 16px; height: 16px; color: var(--gray-400); }
.footer-col h4 {
    font-family: var(--font-heading);
    font-size: .9rem;
    font-weight: 700;
    color: white;
    margin-bottom: 14px;
}
.footer-col a {
    display: block;
    padding: 4px 0;
    font-size: .84rem;
    color: var(--gray-400);
    transition: color .15s;
}
.footer-col a:hover { color: white; }
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 0;
    border-top: 1px solid rgba(255,255,255,.08);
    font-size: .78rem;
    color: var(--gray-500);
    flex-wrap: wrap;
    gap: 8px;
}
.footer-pays {
    display: flex;
    gap: 6px;
}
.footer-pays span {
    padding: 2px 10px;
    background: rgba(255,255,255,.06);
    border-radius: 4px;
    font-size: .7rem;
    font-weight: 600;
}

/* ================================================
   CART DRAWER
   ================================================ */
.cart-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.4);
    z-index: 998;
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s;
}
.cart-overlay.open { opacity: 1; pointer-events: all; }

.cart-drawer {
    position: fixed;
    top: 0; right: -400px;
    width: 380px;
    max-width: 90vw;
    height: 100vh;
    background: white;
    z-index: 999;
    display: flex;
    flex-direction: column;
    box-shadow: -8px 0 30px rgba(0,0,0,.15);
    transition: right .3s ease;
}
.cart-drawer.open { right: 0; }

.cart-drawer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    border-bottom: 1px solid var(--gray-100);
}
.cart-drawer-header h3 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--gray-800);
}
.cart-close {
    width: 32px; height: 32px;
    display: flex; align-items: center; justify-content: center;
    background: var(--gray-50);
    border-radius: var(--radius);
    color: var(--gray-500);
    font-size: 1rem;
    transition: all .2s;
}
.cart-close:hover { background: var(--gray-100); color: var(--gray-800); }

.cart-drawer-body {
    flex: 1;
    overflow-y: auto;
    padding: 16px 24px;
}
.cart-empty {
    text-align: center;
    color: var(--gray-400);
    padding: 60px 0;
    font-size: .9rem;
}
.cart-empty a { color: var(--green-600); font-weight: 600; }

.cart-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 0;
    border-bottom: 1px solid var(--gray-50);
}
.cart-item-emoji { font-size: 1.6rem; }
.cart-item-info { flex: 1; }
.cart-item-name {
    font-weight: 600;
    font-size: .9rem;
    color: var(--gray-800);
}
.cart-item-plan {
    font-size: .75rem;
    color: var(--gray-400);
    text-transform: capitalize;
}
.cart-item-price {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: .95rem;
    color: var(--gray-800);
    white-space: nowrap;
}
.cart-item-remove {
    color: var(--gray-300);
    font-size: .8rem;
    transition: color .2s;
    padding: 4px;
}
.cart-item-remove:hover { color: #ef4444; }

.cart-drawer-footer {
    padding: 20px 24px;
    border-top: 1px solid var(--gray-100);
    background: var(--gray-50);
}
.cart-total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 14px;
}
.cart-total-row span { font-size: .9rem; color: var(--gray-500); }
.cart-total-row strong {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--gray-800);
}

/* ================================================
   WHATSAPP FLOAT
   ================================================ */
.wa-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 52px;
    height: 52px;
    background: #25d366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 14px rgba(37,211,102,.35);
    transition: all .2s;
    z-index: 90;
}
.wa-float:hover { transform: scale(1.1); box-shadow: 0 6px 20px rgba(37,211,102,.4); }

/* ================================================
   TOAST
   ================================================ */
.toast {
    position: fixed;
    bottom: 24px;
    left: 24px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 18px;
    background: white;
    border: 1px solid var(--gray-100);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    font-size: .82rem;
    z-index: 90;
    transform: translateX(-120%);
    transition: transform .4s ease;
}
.toast.show { transform: translateX(0); }
.toast-dot {
    width: 8px; height: 8px;
    background: var(--green-500);
    border-radius: 50%;
    flex-shrink: 0;
}
.toast-body { display: flex; flex-direction: column; }
.toast-body strong { font-size: .82rem; color: var(--gray-700); }
.toast-body span { font-size: .75rem; color: var(--gray-400); }

/* ================================================
   RESPONSIVE
   ================================================ */
@media (max-width: 900px) {
    .main-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0; right: 0;
        background: white;
        flex-direction: column;
        padding: 12px 20px 20px;
        box-shadow: var(--shadow-lg);
        border-top: 1px solid var(--gray-100);
        z-index: 100;
    }
    .main-nav.open { display: flex; }
    .main-nav-link {
        padding: 12px 16px;
        font-size: .95rem;
        border-radius: var(--radius);
    }
    .search-box { display: none; }
    .mobile-toggle { display: flex; }

    .hero { min-height: 460px; }
    .hero-content { text-align: center; padding: 60px 24px; }
    .hero-content h1,
    .hero-content .hero-pill,
    .hero-content .hero-desc,
    .hero-content .hero-actions,
    .hero-content .hero-stats {
        max-width: 100%;
    }
    .hero-desc { margin-left: auto; margin-right: auto; }
    .hero-actions { justify-content: center; }
    .hero-stats { justify-content: center; }

    /* Hero overlay: full cover on tablet so text is readable */
    .hero-overlay {
        background: linear-gradient(
            to bottom,
            rgba(15,20,16, .85) 0%,
            rgba(15,20,16, .6) 50%,
            rgba(15,20,16, .4) 100%
        );
    }

    .combo-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .section-video-banner { height: 180px; }

    /* Plan switch wrapping */
    .section-top { flex-direction: column; align-items: flex-start; }
    .plan-switch { align-self: flex-start; }
}

@media (max-width: 600px) {
    /* Header */
    .ck-header { padding: 0 12px; }
    .header-actions { gap: 6px; }
    .header-btn span { display: none; }
    .header-btn { padding: 7px 10px; }
    .top-bar-right { display: none; }
    .top-bar { font-size: .7rem; padding: 6px 12px; }

    /* Hero */
    .hero { min-height: auto; padding-top: 0; padding-bottom: 0; }
    .hero-content { padding: 36px 20px 40px; }
    .hero h1 { font-size: 1.55rem; line-height: 1.3; margin-bottom: 12px; }
    .hero-desc { font-size: .88rem; margin-bottom: 20px; line-height: 1.6; }
    .hero-pill { font-size: .7rem; padding: 4px 10px; margin-bottom: 12px; }
    .hero-actions { flex-direction: column; gap: 10px; width: 100%; }
    .hero-actions .btn { width: 100%; justify-content: center; padding: 14px 20px; font-size: .9rem; }
    .hero-stats { gap: 16px; }
    .hero-stats .stat strong { font-size: 1.1rem; }
    .hero-stats .stat span { font-size: .7rem; }

    /* Payment strip */
    .payments-inner { justify-content: center; gap: 8px; }
    .pay-text { width: 100%; text-align: center; }
    .pay-items { justify-content: center; }
    .pay-chip { font-size: .68rem; padding: 3px 8px; }

    /* How section */
    .how-grid { flex-direction: column; align-items: center; }
    .how-arrow { transform: rotate(90deg); }
    .how-step { padding: 12px 20px; }

    /* Video banners */
    .section-video-banner { height: 140px; border-radius: var(--radius); }
    .section-video-overlay h2 { font-size: 1.15rem; }
    .section-video-overlay p { font-size: .82rem; }
    .section-video-overlay { padding: 12px; }
    .trust-video-banner { height: 200px; }
    .combo-video-banner { height: 140px; }

    /* Section top */
    .section-top { gap: 10px; margin-bottom: 20px; }

    /* Plan switcher */
    .plan-switch { width: 100%; }
    .ps-btn { flex: 1; text-align: center; font-size: .76rem; padding: 8px 8px; }

    /* Product cards */
    .product-row { grid-template-columns: 1fr; gap: 14px; }
    .p-card { padding: 18px; }
    .p-name { font-size: .9rem; }

    /* Variant selector pills — touch-friendly */
    .v-selector { gap: 4px; flex-wrap: wrap; }
    .v-pill { min-height: 36px; min-width: 44px; font-size: .75rem; padding: 6px 10px; }

    /* Buy/cart buttons — touch-friendly */
    .buy-btn { min-height: 44px; padding: 10px 18px; font-size: .85rem; }
    .cart-add-btn { min-height: 44px; min-width: 44px; }

    /* Combo */
    .combo-grid { gap: 16px; }
    .combo-receipt { padding: 18px; }
    .cp-card { padding: 10px 14px; }

    /* Reviews */
    .review-grid { grid-template-columns: 1fr; }

    /* FAQ */
    .faq-q { padding: 16px; font-size: .9rem; }
    .faq-a { padding: 0 16px 16px; }

    /* Footer */
    .footer-grid { grid-template-columns: 1fr; gap: 24px; }
    .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
    .footer-pays { justify-content: center; }

    /* Cart drawer — full width on mobile */
    .cart-drawer { width: 100%; max-width: 100%; }

    /* Toast — bottom center, above WhatsApp button */
    .toast { bottom: 85px; left: 12px; right: 12px; width: auto; transform: translateY(200%); }
    .toast.show { transform: translateY(0); }

    /* WhatsApp float — slightly smaller on mobile */
    .wa-float { width: 46px; height: 46px; bottom: 18px; right: 16px; }

    /* Status grid */
    .status-grid { grid-template-columns: 1fr 1fr; }
}

/* Extra small phones (iPhone SE, 320px) */
@media (max-width: 374px) {
    .hero h1 { font-size: 1.35rem; }
    .hero-desc { font-size: .82rem; }
    .hero-stats { gap: 10px; }
    .hero-stats .stat strong { font-size: 1rem; }
    .p-card { padding: 14px; }
    .p-bottom { flex-direction: column; gap: 10px; }
    .p-bottom .p-buttons { width: 100%; }
    .p-bottom .buy-btn { flex: 1; }
    .status-grid { grid-template-columns: 1fr; }
    .pay-chip { font-size: .62rem; }
}
