/* ============================================
   OneScript — WCAG Compliant, Clean Professional
   Light theme matching alphaboost.ca flow
   ============================================ */

:root {
    --primary: #1a6b3c;
    --primary-hover: #145530;
    --primary-light: #e6f4ec;
    --secondary: #c0392b;
    --secondary-hover: #a5311f;
    --secondary-light: #e74c3c;
    --accent-gold: #d4a017;
    --accent-gold-dark: #b8860b;

    /* RGB versions for rgba() usage */
    --primary-rgb: 26, 107, 60;
    --secondary-rgb: 192, 57, 43;

    /* Theme tint colors */
    --primary-lightest: #edf6f0;
    --badge-bg: #e8f5e9;
    --badge-bg2: #c8e6c9;
    --badge-border: #a5d6a7;
    --trust-hover-border: #d4edda;

    --bg-white: #ffffff;
    --bg-light: #f7f8f9;
    --bg-alt: #f0f3ef;

    --text-heading: #1a1a1a;
    --text-body: #333333;
    --text-muted: #555555;
    --text-light: #666666;

    --border: #d5d5d5;
    --border-light: #e8e8e8;

    --shadow-sm: 0 1px 4px rgba(0, 0, 0, .06);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, .08);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, .10);
    --shadow-card: 0 2px 12px rgba(0, 0, 0, .07);

    --radius: 8px;
    --radius-lg: 14px;
    --radius-pill: 50px;

    --transition: .25s ease;
    --font: Arial, Helvetica, "Segoe UI", sans-serif;
}

/* ── Reset ── */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x: hidden
}

body {
    font-family: var(--font);
    background: var(--bg-white);
    color: var(--text-body);
    line-height: 1.7;
    overflow-x: hidden
}

a {
    text-decoration: none;
    color: inherit
}

ul,
ol {
    list-style: none
}

img {
    max-width: 100%;
    height: auto;
    display: block
}

/* ── Focus for WCAG ── */
:focus-visible {
    outline: 3px solid var(--primary);
    outline-offset: 2px;
}

a:focus-visible,
button:focus-visible {
    outline: 3px solid var(--primary);
    outline-offset: 2px;
}

/* ── Skip Link (WCAG) ── */
.skip-link {
    position: absolute;
    top: -100%;
    left: 16px;
    background: var(--primary);
    color: #fff;
    padding: 10px 20px;
    border-radius: var(--radius);
    font-weight: 700;
    z-index: 9999;
    transition: top .2s;
}

.skip-link:focus {
    top: 10px;
}

/* ── Utility ── */
.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px
}

.text-center {
    text-align: center
}

.section-tag {
    display: inline-block;
    padding: 5px 16px;
    background: var(--primary-light);
    color: var(--primary);
    border-radius: var(--radius-pill);
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 14px
}

.section-title {
    font-size: 1.9rem;
    font-weight: 800;
    color: var(--text-heading);
    line-height: 1.3;
    margin-bottom: 10px
}

.section-title .hl {
    color: var(--primary)
}

.section-desc {
    font-size: 1rem;
    color: var(--text-light);
    max-width: 640px;
    margin: 0 auto 36px;
    line-height: 1.7
}

/* ── SVG Icon containers ── */
.icon-circle {
    width: 48px;
    height: 48px;
    min-width: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--primary-light)
}

.icon-circle svg {
    width: 22px;
    height: 22px;
    fill: var(--primary);
    flex-shrink: 0
}

.icon-circle-lg {
    width: 56px;
    height: 56px;
    min-width: 56px
}

.icon-circle-lg svg {
    width: 26px;
    height: 26px
}

/* ── Buttons ── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 11px 26px;
    border-radius: var(--radius);
    font-family: var(--font);
    font-size: .88rem;
    font-weight: 700;
    cursor: pointer;
    border: none;
    transition: var(--transition)
}

.btn-primary {
    background: linear-gradient(180deg, #f5c518 0%, #e6a800 100%);
    color: #1a1a1a;
    font-weight: 800;
    padding: 10px 24px;
    border: 2px solid #c8960a;
    box-shadow: 0 3px 14px rgba(230, 168, 0, .35);
    letter-spacing: .5px;
    text-transform: uppercase;
    font-size: .82rem;
    animation: navBtnPulse 2s infinite
}

@keyframes navBtnPulse {

    0%,
    100% {
        box-shadow: 0 3px 14px rgba(230, 168, 0, .35)
    }

    50% {
        box-shadow: 0 3px 24px rgba(230, 168, 0, .6)
    }
}

.btn-primary:hover,
.btn-primary:focus-visible {
    background: linear-gradient(180deg, #ffd740 0%, #f5c518 100%);
    box-shadow: 0 5px 24px rgba(230, 168, 0, .5);
    transform: translateY(-1px)
}

.btn-outline {
    background: #fff;
    color: var(--primary);
    border: 2px solid var(--primary)
}

.btn-outline:hover,
.btn-outline:focus-visible {
    background: var(--primary);
    color: #fff
}

.btn-cta {
    background: var(--secondary);
    color: #fff;
    padding: 14px 32px;
    font-size: .95rem
}

.btn-cta:hover,
.btn-cta:focus-visible {
    background: var(--secondary-hover)
}

.btn-lg {
    padding: 14px 36px;
    font-size: 1rem
}

/* ── Scroll Reveal ── */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .6s ease, transform .6s ease
}

.reveal.revealed {
    opacity: 1;
    transform: translateY(0)
}

.rl {
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity .6s ease, transform .6s ease
}

.rr {
    opacity: 0;
    transform: translateX(30px);
    transition: opacity .6s ease, transform .6s ease
}

.rl.revealed,
.rr.revealed {
    opacity: 1;
    transform: translateX(0)
}

.stagger .reveal:nth-child(1) {
    transition-delay: .05s
}

.stagger .reveal:nth-child(2) {
    transition-delay: .1s
}

.stagger .reveal:nth-child(3) {
    transition-delay: .15s
}

.stagger .reveal:nth-child(4) {
    transition-delay: .2s
}

.stagger .reveal:nth-child(5) {
    transition-delay: .25s
}

.stagger .reveal:nth-child(6) {
    transition-delay: .3s
}

.stagger .reveal:nth-child(7) {
    transition-delay: .35s
}

.stagger .reveal:nth-child(8) {
    transition-delay: .4s
}

/* HEADER */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, .98);
    backdrop-filter: blur(8px);
    transition: var(--transition)
}

/* Default Header Style */
.site-header.header-default {
    background: rgba(255, 255, 255, .97);
    border-bottom: 1px solid var(--border-light);
}

.site-header.header-default.scrolled {
    box-shadow: var(--shadow-sm)
}

.site-header.header-default .logo {
    color: var(--primary);
}

.site-header.header-default .nav-links a {
    color: var(--text-body);
}

.site-header.header-default .nav-links a:hover {
    color: var(--primary);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 62px
}

.logo {
    font-size: 1.4rem;
    font-weight: 900;
    transition: var(--transition)
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 26px
}

.nav-links a {
    font-size: .85rem;
    font-weight: 600;
    transition: var(--transition)
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 4px
}

.mobile-toggle span {
    display: block;
    width: 24px;
    height: 2.5px;
    border-radius: 2px;
    transition: var(--transition)
}

.site-header.header-default .mobile-toggle span {
    background: var(--text-heading);
}

.mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px)
}

.mobile-toggle.active span:nth-child(2) {
    opacity: 0
}

.mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px)
}

/* HERO */
.hero {
    background: linear-gradient(145deg, var(--primary-lightest) 0%, #fff 50%, #fdfaf2 100%);
    padding: 100px 0 50px
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 36px;
    align-items: center
}

.hero-content {
    max-width: 540px
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 16px;
    background: linear-gradient(135deg, var(--badge-bg), var(--badge-bg2));
    border: 1px solid var(--badge-border);
    border-radius: var(--radius-pill);
    font-size: .78rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 16px;
    position: relative;
    overflow: hidden
}

.hero-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .5), transparent);
    animation: badgeShimmer 3s infinite
}

@keyframes badgeShimmer {
    0% {
        left: -100%
    }

    100% {
        left: 200%
    }
}

.hero-title {
    font-size: clamp(2rem);
    font-weight: 900;
    color: var(--text-heading);
    line-height: 1.15;
    margin-bottom: 14px;
}

.hero-title .hl {
    color: var(--primary)
}

.hero-desc {
    font-size: 1rem;
    color: var(--text-body);
    line-height: 1.7;
    margin-bottom: 10px
}

.hero-highlights {
    margin: 16px 0 24px
}

.hero-highlights li {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 5px 0;
    font-size: .92rem;
    font-weight: 600;
    color: var(--text-heading)
}

.hero-highlights li svg {
    width: 20px;
    height: 20px;
    fill: #fff;
    background: var(--primary);
    border-radius: 50%;
    padding: 3px;
    flex-shrink: 0
}

.hero-cta {
    margin-bottom: 24px
}

.hero-cta .btn-cta {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 50%, #FF8C00 100%);
    color: #1a1a1a;
    padding: 20px 48px;
    font-size: 1.2rem;
    font-weight: 900;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    border: 3px solid #FF8C00;
    border-radius: 50px;
    box-shadow: 0 8px 24px rgba(255, 165, 0, .4), 0 0 40px rgba(255, 215, 0, .2);
    animation: ctaPulse 2s infinite;
    position: relative;
    overflow: hidden;
}

.hero-cta .btn-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .4), transparent);
    animation: btnShimmer 3s infinite;
}

.hero-cta .btn-cta:hover,
.hero-cta .btn-cta:focus-visible {
    background: linear-gradient(135deg, #FFE44D 0%, #FFB84D 50%, #FF9933 100%);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 14px 40px rgba(255, 165, 0, .6), 0 0 60px rgba(255, 215, 0, .5);
    border-color: #FF7700;
}

@keyframes btnShimmer {
    0% {
        left: -100%
    }
    100% {
        left: 200%
    }
}

@keyframes ctaPulse {

    0%,
    100% {
        box-shadow: 0 8px 24px rgba(255, 165, 0, .4), 0 0 40px rgba(255, 215, 0, .2);
        transform: scale(1);
    }

    50% {
        box-shadow: 0 12px 36px rgba(255, 165, 0, .6), 0 0 60px rgba(255, 215, 0, .4);
        transform: scale(1.03);
    }
}

.hero-stats {
    display: flex;
    gap: 0
}

.hero-stats>div {
    flex: 1;
    padding: 12px 16px;
    background: rgba(255, 255, 255, .7);
    border: 1px solid #e8e8e8;
    text-align: center
}

.hero-stats>div:first-child {
    border-radius: 10px 0 0 10px
}

.hero-stats>div:last-child {
    border-radius: 0 10px 10px 0
}

.hero-stats>div:not(:last-child) {
    border-right: none
}

.hero-stat-val {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--primary)
}

.hero-stat-lbl {
    font-size: .7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: .5px
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative
}

.hero-visual::before {
    content: '';
    position: absolute;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(var(--primary-rgb), .1) 0%, rgba(var(--primary-rgb), .03) 50%, transparent 70%);
    z-index: 0
}

.hero-img {
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 1;
    animation: heroFloat 4s ease-in-out infinite
}

@keyframes heroFloat {

    0%,
    100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-12px)
    }
}

.hero-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 8px 24px rgba(0, 0, 0, .12))
}

/* TRUST BADGES — Clean Soft Design */
.trust {
    padding: 50px 0;
    background: linear-gradient(180deg, #f8faf9 0%, #fff 100%);
    border-top: 1px solid #eaeaea;
    border-bottom: 1px solid #eaeaea
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px
}

.trust-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 28px 18px 22px;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 14px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, .04);
    transition: all .3s ease
}

.trust-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, .08);
    border-color: var(--trust-hover-border)
}

.trust-card h4 {
    font-size: .92rem;
    font-weight: 700;
    color: var(--text-heading);
    margin: 0 0 4px
}

.trust-card p {
    font-size: .78rem;
    color: var(--text-muted);
    line-height: 1.5
}

.trust-badge-img {
    width: 130px;
    height: 130px;
    margin-bottom: 8px;
    transition: transform .3s ease
}

.trust-card:hover .trust-badge-img {
    transform: scale(1.05)
}

.trust-badge-img img {
    width: 100%;
    height: 100%;
    object-fit: contain
}

/* ABOUT */
.about {
    padding: 64px 0;
    background: var(--bg-white)
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center
}

.about-img img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md)
}

.about-text h2 {
    font-size: 1.7rem;
    font-weight: 800;
    color: var(--text-heading);
    margin-bottom: 14px;
    line-height: 1.25
}

.about-text h2 .hl {
    color: var(--primary)
}

.about-text p {
    color: var(--text-body);
    font-size: .92rem;
    margin-bottom: 10px;
    line-height: 1.7
}

/* HOW IT WORKS */
.how {
    padding: 64px 0;
    background: var(--bg-alt)
}

.how-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
    margin-top: 36px
}

.how-text p {
    color: var(--text-body);
    font-size: .92rem;
    line-height: 1.8;
    margin-bottom: 12px
}

.how-img {
    display: flex;
    justify-content: center
}

.how-img img {
    max-width: 100%;
    border-radius: var(--radius-lg)
}

/* WHY CHOOSE - Product Showcase Cards */
.why-choose {
    padding: 64px 0;
    background: linear-gradient(180deg, #f8faf9 0%, #fff 100%);
}

.feature-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 36px;
    align-items: end;
}

.feature-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 24px 24px 28px;
    background: #fff;
    border: 2px solid #e8e8e8;
    border-radius: 20px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, .06);
    transition: all .4s ease;
    position: relative;
    overflow: visible;
}

.feature-card-header {
    width: 100%;
    margin-bottom: 12px;
}

.feature-bottles {
    font-size: 1.3rem;
    font-weight: 900;
    color: #1a1a1a;
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.feature-supply {
    font-size: .82rem;
    color: var(--text-muted);
    font-weight: 600;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(var(--primary-rgb), .12);
    border-color: var(--primary);
}

.featured-card {
    border-color: var(--primary);
    border-width: 3px;
    transform: scale(1.05);
    box-shadow: 0 8px 28px rgba(var(--primary-rgb), .15);
}

.featured-card:hover {
    transform: scale(1.05) translateY(-8px);
}

.feature-premium-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--secondary), var(--secondary-light));
    color: #fff;
    padding: 6px 20px;
    border-radius: 20px;
    font-size: .7rem;
    font-weight: 900;
    letter-spacing: 1px;
    box-shadow: 0 4px 12px rgba(var(--secondary-rgb), .3);
}

.feature-card-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: linear-gradient(135deg, rgba(var(--primary-rgb), .1), rgba(212, 160, 23, .1));
    border: 1px solid rgba(var(--primary-rgb), .2);
    border-radius: 50px;
    margin-bottom: 12px;
    transition: all .3s ease;
}

.feature-card:hover .feature-card-badge {
    background: linear-gradient(135deg, rgba(var(--primary-rgb), .15), rgba(212, 160, 23, .15));
    transform: scale(1.05);
}

.feature-card-badge svg {
    width: 20px;
    height: 20px;
    stroke: var(--primary);
    stroke-width: 2.5;
}

.feature-card-badge span {
    font-size: .85rem;
    font-weight: 800;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: .5px;
}

.feature-card-img {
    width: 100%;
    max-width: 200px;
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    position: relative;
    transition: transform .4s ease;
}

.feature-card-img::before {
    content: '';
    position: absolute;
    width: 180px;
    height: 180px;
    background: radial-gradient(circle, rgba(var(--primary-rgb), .08), transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.feature-card:hover .feature-card-img {
    transform: scale(1.1);
}

.feature-card-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 8px 20px rgba(0, 0, 0, .12));
    position: relative;
    z-index: 1;
}

.feature-card h3 {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--text-heading);
    margin-bottom: 6px;
    line-height: 1.3;
}

.feature-card p {
    font-size: .88rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 0;
}

.feature-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 2px;
    margin: 14px 0 4px;
}

.feature-price .cur {
    font-size: 1.1rem;
    font-weight: 700;
    color: #333;
}

.feature-price .val {
    font-size: 2.8rem;
    font-weight: 900;
    color: #1a1a1a;
}

.feature-price .per {
    font-size: .85rem;
    font-weight: 500;
    color: var(--text-muted);
    margin-left: 2px;
}

.feature-shipping {
    font-size: .82rem;
    color: var(--text-muted);
    margin: 12px 0;
    font-weight: 600;
}

.feature-shipping.free-ship {
    color: #fff;
}

.feature-card .btn-gold {
    margin-top: 16px;
    margin-bottom: 12px;
}

.feature-total {
    font-size: .85rem;
    color: var(--text-body);
    font-weight: 600;
    margin-top: 8px;
}

.feature-total s {
    color: var(--text-muted);
    font-weight: 400;
    margin-right: 6px;
}

.feature-total strong {
    color: #1a1a1a;
    font-size: .95rem;
    font-weight: 800;
}

/* REVIEWS */
.reviews {
    padding: 64px 0;
    background: var(--bg-white)
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 36px
}

.review-card {
    padding: 24px;
    background: var(--bg-light);
    border: 1px solid var(--border-light);
    border-radius: var(--radius);
    transition: var(--transition)
}

.review-card:hover {
    box-shadow: var(--shadow-md)
}

.review-stars {
    margin-bottom: 10px;
    color: var(--accent-gold);
    font-size: .95rem;
    letter-spacing: 2px
}

.review-text {
    font-size: .88rem;
    color: var(--text-body);
    line-height: 1.7;
    margin-bottom: 14px;
    font-style: italic
}

.review-author {
    display: flex;
    align-items: center;
    gap: 10px
}

.review-avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: .8rem
}

.review-name {
    font-size: .82rem;
    font-weight: 700;
    color: var(--text-heading)
}

.review-loc {
    font-size: .72rem;
    color: var(--text-muted)
}

.review-verified {
    font-size: .7rem;
    color: var(--primary);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 3px
}

.review-verified svg {
    width: 12px;
    height: 12px;
    fill: var(--primary)
}

/* INGREDIENTS */
.ingredients {
    padding: 64px 0;
    background: var(--bg-alt)
}

.ing-intro {
    max-width: 800px;
    margin: 0 auto 32px;
    font-size: .92rem;
    color: var(--text-body);
    line-height: 1.7;
    text-align: center
}

.ing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px
}

.ing-card {
    padding: 20px 14px;
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius);
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow-sm)
}

.ing-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px)
}

.ing-card h4 {
    font-size: .88rem;
    font-weight: 700;
    color: var(--text-heading);
    margin: 10px 0 6px
}

.ing-card p {
    font-size: .78rem;
    color: var(--text-muted);
    line-height: 1.5
}

/* GUARANTEE */
.guarantee {
    padding: 56px 0;
    background: var(--bg-white)
}

.guarantee-card {
    display: flex;
    align-items: center;
    gap: 36px;
    padding: 36px;
    background: var(--bg-light);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card)
}

.guarantee-seal {
    width: 130px;
    min-width: 130px;
    height: 130px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, #f0c843, #d4a017);
    color: #fff;
    text-align: center;
    box-shadow: 0 4px 16px rgba(212, 160, 23, .35)
}

.guarantee-seal .g-days {
    font-size: 2.2rem;
    font-weight: 900;
    line-height: 1
}

.guarantee-seal .g-lbl {
    font-size: .6rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .5px
}

.guarantee-text h2 {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--text-heading);
    margin-bottom: 10px
}

.guarantee-text h2 .hl {
    color: var(--primary)
}

.guarantee-text p {
    color: var(--text-body);
    font-size: .9rem;
    line-height: 1.7;
    margin-bottom: 8px
}

/* BENEFITS */
.benefits {
    padding: 64px 0;
    background: var(--bg-alt)
}

.ben-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    margin-top: 36px
}

.ben-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px;
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius);
    transition: var(--transition)
}

.ben-item:hover {
    box-shadow: var(--shadow-sm)
}

.ben-check {
    width: 26px;
    height: 26px;
    min-width: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--primary);
    flex-shrink: 0
}

.ben-check svg {
    width: 14px;
    height: 14px;
    fill: #fff
}

.ben-item h4 {
    font-size: .88rem;
    font-weight: 700;
    color: var(--text-heading);
    margin-bottom: 2px
}

.ben-item p {
    font-size: .8rem;
    color: var(--text-muted);
    line-height: 1.5
}

/* PRICING — Concept Card Design */
.pricing {
    padding: 54px 0;
    background: #f0f0f0
}

.price-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 36px;
    align-items: end
}

.price-card {
    position: relative;
    padding: 0;
    background: var(--bg-white);
    border: 3px solid #222;
    border-radius: 16px;
    text-align: center;
    transition: var(--transition);
    overflow: hidden;
    display: flex;
    flex-direction: column
}

.price-card.featured {
    border-color: var(--secondary);
    box-shadow: 0 8px 40px rgba(var(--secondary-rgb), .18);
    transform: scale(1.06);
    z-index: 2
}

.price-card:hover {
    box-shadow: 0 12px 36px rgba(0, 0, 0, .14);
    transform: translateY(-6px)
}

.price-card.featured:hover {
    transform: scale(1.06) translateY(-6px)
}

/* Top bar */
.price-card-topbar {
    padding: 12px 16px;
    background: #1a1a1a;
    color: #fff;
    font-size: .95rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px
}

.topbar-red {
    background: var(--secondary)
}

/* Header with bottle info + image */
.price-card-header {
    padding: 18px 20px 12px;
    background: var(--bg-white);
    position: relative
}

.price-card.featured .price-card-header {
    background: linear-gradient(180deg, #fff5f5 0%, #fff 100%)
}

.price-bottles {
    font-size: 1.5rem;
    font-weight: 900;
    color: #1a1a1a;
    margin: 0 0 2px;
    letter-spacing: 1px
}

.price-card .supply {
    font-size: .82rem;
    color: var(--text-muted);
    margin-bottom: 10px;
    font-weight: 600
}

.price-card-img {
    width: 100%;
    height: 100%;
    margin: 0 auto 0;
    position: relative;
    z-index: 1
}

.price-card-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, .08))
}

/* SAVE badge */
.save-badge {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--secondary);
    color: #fff;
    font-size: .65rem;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    line-height: 1.15;
    box-shadow: 0 3px 10px rgba(var(--secondary-rgb), .35);
    z-index: 3
}

.save-badge-gold {
    background: linear-gradient(135deg, #d4a017, #b8860b);
    box-shadow: 0 3px 10px rgba(184, 134, 11, .35)
}

/* Card body */
.price-card-body {
    padding: 0px 22px 22px;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center
}

.price-amt {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 2px;
    margin-bottom: 2px
}

.price-amt .cur {
    font-size: 1.1rem;
    font-weight: 700;
    color: #333
}

.price-amt .val {
    font-size: 3rem;
    font-weight: 900;
    color: #1a1a1a
}

.price-per-inline {
    font-size: .85rem;
    font-weight: 500;
    color: var(--text-muted);
    margin-left: 2px
}

/* Shipping */
.price-shipping {
    font-size: .78rem;
    color: var(--text-muted);
    margin-bottom: 14px
}

.free-ship {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: #27ae60;
    color: #fff;
    padding: 4px 14px;
    border-radius: 20px;
    font-weight: 700;
    font-size: .75rem
}

.free-ship svg {
    fill: #fff
}

/* Gold button - Hero style havalı sarı */
.btn-gold {
    display: inline-block;
    padding: 14px 40px;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 50%, #FF8C00 100%);
    color: #1a1a1a;
    font-size: 1rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 3px solid #FF8C00;
    border-radius: 50px;
    cursor: pointer;
    transition: all .3s ease;
    text-decoration: none;
    box-shadow: 0 6px 20px rgba(255, 165, 0, .4), 0 0 30px rgba(255, 215, 0, .2);
    position: relative;
    overflow: hidden;
}

.btn-gold::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .3), transparent);
    animation: btnGoldShimmer 3s infinite;
}

@keyframes btnGoldShimmer {
    0% {
        left: -100%
    }
    100% {
        left: 200%
    }
}

.btn-gold:hover {
    background: linear-gradient(135deg, #FFE44D 0%, #FFB84D 50%, #FF9933 100%);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 30px rgba(255, 165, 0, .6), 0 0 50px rgba(255, 215, 0, .4);
    border-color: #FF7700;
}

.btn-gold-lg {
    padding: 16px 52px;
    font-size: 1.15rem;
    box-shadow: 0 8px 24px rgba(255, 165, 0, .5), 0 0 40px rgba(255, 215, 0, .3);
}

.btn-gold-lg:hover {
    box-shadow: 0 12px 36px rgba(255, 165, 0, .7), 0 0 60px rgba(255, 215, 0, .5);
}

/* Payment logos */
.payment-logos {
    margin: 12px 0 8px;
    display: flex;
    justify-content: center
}

.payment-logos img {
    height: 26px;
    width: auto;
    opacity: .85
}

/* Price total with strikethrough */
.price-total {
    font-size: .82rem;
    color: var(--text-body);
    font-weight: 600;
    margin-bottom: 0
}

.price-total s {
    color: var(--text-muted);
    font-weight: 400;
    margin-right: 4px
}

.price-total strong {
    color: #1a1a1a;
    font-size: .95rem
}

.price-feats li {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 5px 0;
    font-size: .82rem;
    color: var(--text-body);
    border-bottom: 1px solid var(--border-light)
}

.price-feats li:last-child {
    border-bottom: none
}

.price-feats li svg {
    width: 14px;
    height: 14px;
    fill: var(--primary);
    flex-shrink: 0
}

.price-card .btn {
    width: 100%;
    margin-top: 14px
}

/* SAFETY */
.safety {
    padding: 64px 0;
    background: var(--bg-alt)
}

.safety-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center
}

.safety-text h2 {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--text-heading);
    margin-bottom: 14px;
    line-height: 1.25
}

.safety-text h2 .hl {
    color: var(--primary)
}

.safety-text p {
    color: var(--text-body);
    font-size: .92rem;
    line-height: 1.7;
    margin-bottom: 10px
}

.safety-img img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md)
}

/* FINAL CTA */
.final-cta {
    padding: 64px 0;
    background: var(--bg-white)
}

.cta-card {
    padding: 44px 28px;
    background: linear-gradient(135deg, var(--primary-lightest), #fdfaf2);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    text-align: center
}

.cta-card h2 {
    font-size: 1.7rem;
    font-weight: 800;
    color: var(--text-heading);
    margin-bottom: 10px
}

.cta-card h2 .hl {
    color: var(--primary)
}

.cta-card p {
    color: var(--text-body);
    font-size: .95rem;
    margin-bottom: 20px;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7
}

/* FAQ */
.faq {
    padding: 64px 0;
    background: var(--bg-alt)
}

.faq-list {
    max-width: 740px;
    margin: 36px auto 0
}

.faq-item {
    margin-bottom: 8px;
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition)
}

.faq-item:hover {
    box-shadow: var(--shadow-sm)
}

.faq-item.active {
    border-color: var(--primary)
}

.faq-q {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 14px 18px;
    background: none;
    border: none;
    color: var(--text-heading);
    font-family: var(--font);
    font-size: .9rem;
    font-weight: 700;
    text-align: left;
    cursor: pointer;
    transition: var(--transition)
}

.faq-q:hover {
    color: var(--primary)
}

.faq-q svg {
    width: 20px;
    height: 20px;
    fill: var(--primary);
    flex-shrink: 0;
    transition: transform .3s ease
}

.faq-item.active .faq-q svg {
    transform: rotate(45deg)
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease
}

.faq-a-inner {
    padding: 0 18px 14px;
    font-size: .88rem;
    color: var(--text-body);
    line-height: 1.7
}

.faq-item.active .faq-a {
    max-height: 1000px
}

/* CTA REPEATER */
.cta-repeater {
    padding: 48px 0;
    background: linear-gradient(135deg, var(--primary-lightest), #fdfaf2);
}

.cta-repeater .btn-cta {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 50%, #FF8C00 100%);
    color: #1a1a1a;
    padding: 22px 52px;
    font-size: 1.25rem;
    font-weight: 900;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    border: 3px solid #FF8C00;
    border-radius: 50px;
    box-shadow: 0 8px 28px rgba(255, 165, 0, .45), 0 0 50px rgba(255, 215, 0, .25);
    animation: ctaPulse 2.5s infinite;
    position: relative;
    overflow: hidden;
}

.cta-repeater .btn-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .4), transparent);
    animation: btnShimmer 3s infinite;
}

.cta-repeater .btn-cta:hover {
    background: linear-gradient(135deg, #FFE44D 0%, #FFB84D 50%, #FF9933 100%);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 14px 40px rgba(255, 165, 0, .65), 0 0 70px rgba(255, 215, 0, .45);
    border-color: #FF7700;
}

/* STICKY PURCHASE BAR */
.mobile-sticky-bar {
    display: none; /* Hidden on desktop */
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    background: #fff;
    border-top: 2px solid var(--primary);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, .15);
    z-index: 999;
    padding: 14px 16px;
    transform: translateY(100%);
    transition: transform .4s ease;
    overflow: hidden;
}

.mobile-sticky-bar.visible {
    transform: translateY(0);
}

.sticky-bar-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    max-width: 1100px;
    margin: 0 auto;
}

.sticky-bar-left {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.sticky-bar-title {
    font-size: .85rem;
    font-weight: 800;
    color: var(--text-heading);
    line-height: 1;
}

.sticky-bar-price {
    font-size: 1.4rem;
    font-weight: 900;
    color: var(--primary);
    line-height: 1;
}

.sticky-bar-price span {
    font-size: .7rem;
    font-weight: 600;
    color: var(--text-muted);
}

.sticky-bar-total {
    font-size: .7rem;
    font-weight: 600;
    color: var(--text-body);
    margin-top: 2px;
}

.sticky-bar-total s {
    color: var(--text-muted);
    font-weight: 400;
    margin-right: 4px;
}

.sticky-bar-total strong {
    color: var(--primary);
    font-weight: 900;
}

.sticky-bar-right {
    display: flex;
    align-items: center;
    gap: 10px;
}

.sticky-bar-timer {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 6px 10px;
    background: linear-gradient(135deg, var(--secondary), var(--secondary-light));
    border-radius: 20px;
}

.sticky-bar-timer svg {
    width: 12px;
    height: 12px;
    stroke: #fff;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: .7;
        transform: scale(1.1);
    }
}

.sticky-bar-timer span {
    font-size: .75rem;
    font-weight: 900;
    color: #fff;
    letter-spacing: .3px;
}

.sticky-bar-btn {
    padding: 10px 24px;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 50%, #FF8C00 100%);
    color: #1a1a1a;
    font-size: .9rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .5px;
    border: 2px solid #FF8C00;
    border-radius: 50px;
    box-shadow: 0 4px 16px rgba(255, 165, 0, .4);
    white-space: nowrap;
}

/* SCROLL POPUP */
.scroll-popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    align-items: center;
    justify-content: center;
    padding: 16px;
    animation: fadeIn .3s ease;
    overflow-y: auto;
    overflow-x: hidden;
    box-sizing: border-box;
}

.scroll-popup.show {
    display: flex;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.popup-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, .7);
    backdrop-filter: blur(4px);
}

.popup-content {
    position: relative;
    background: #fff;
    border-radius: 24px;
    padding: 36px 28px 28px;
    max-width: 480px;
    width: 100%;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, .3);
    animation: slideUp .4s ease;
    box-sizing: border-box;
    margin: auto;
}

@keyframes slideUp {
    from {
        transform: translateY(30px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.popup-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    background: rgba(0, 0, 0, .05);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .3s ease;
}

.popup-close:hover {
    background: rgba(0, 0, 0, .1);
    transform: scale(1.1);
}

.popup-close svg {
    width: 20px;
    height: 20px;
    stroke: #333;
}

.popup-badge {
    display: inline-block;
    padding: 6px 20px;
    background: linear-gradient(135deg, var(--secondary), var(--secondary-light));
    color: #fff;
    font-size: .75rem;
    font-weight: 900;
    letter-spacing: 1px;
    border-radius: 20px;
    margin-bottom: 16px;
}

.popup-product {
    margin: 0 auto 20px;
    width: 150px;
    height: 160px;
}

.popup-product img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 8px 20px rgba(0, 0, 0, .15));
}

.popup-title {
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--text-heading);
    margin-bottom: 16px;
    line-height: 1.2;
}

.popup-price {
    background: linear-gradient(135deg, rgba(var(--primary-rgb), .05), rgba(212, 160, 23, .05));
    border: 2px solid var(--primary);
    border-radius: 16px;
    padding: 16px;
    margin-bottom: 16px;
}

.popup-price-label {
    font-size: .8rem;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: .5px;
    margin-bottom: 8px;
}

.popup-price-amount {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 8px;
}

.popup-old-price {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-muted);
    text-decoration: line-through;
}

.popup-new-price {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary);
    line-height: 1;
}

.popup-new-price small {
    font-size: .9rem;
    font-weight: 600;
    color: var(--text-muted);
}

.popup-save-badge {
    display: inline-block;
    padding: 4px 16px;
    background: linear-gradient(135deg, var(--secondary), var(--secondary-light));
    color: #fff;
    font-size: .75rem;
    font-weight: 900;
    border-radius: 20px;
    letter-spacing: .5px;
    margin-bottom: 8px;
}

.popup-total {
    font-size: .9rem;
    color: var(--text-body);
    font-weight: 600;
}

.popup-total s {
    color: var(--text-muted);
    font-weight: 400;
    margin-right: 6px;
}

.popup-total strong {
    color: var(--primary);
    font-size: 1.1rem;
    font-weight: 900;
}

.popup-text {
    font-size: .95rem;
    color: var(--text-body);
    margin-bottom: 20px;
    line-height: 1.6;
}

.popup-text strong {
    color: var(--primary);
    font-weight: 800;
}

.popup-features {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 24px;
    text-align: left;
}

.popup-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: .88rem;
    color: var(--text-body);
    font-weight: 600;
}

.popup-feature svg {
    width: 20px;
    height: 20px;
    fill: #fff;
    background: var(--primary);
    border-radius: 50%;
    padding: 3px;
    flex-shrink: 0;
}

.popup-cta {
    width: 100%;
    margin-bottom: 16px;
}

.popup-timer {
    font-size: .85rem;
    color: var(--text-muted);
    font-weight: 600;
}

.popup-timer span {
    color: var(--secondary);
    font-weight: 900;
}

/* FOOTER */

.site-footer {
    padding: 28px 0 !important;
    background: #000 !important;
    border-top: 1px solid #333 !important;
    text-align: center !important;
    color: #fff !important;
}

.footer-inner {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    flex-wrap: wrap !important;
    gap: 16px !important;
    text-align: center !important;
}

.footer-disclaimer {
    max-width: 900px !important;
    margin: 0 auto !important;
    padding-top: 14px !important;
    text-align: center !important;
    font-size: .75rem !important;
    color: #ffffff !important;
    line-height: 1.7 !important;
    border-top: none !important;
}

.footer-links {
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    gap: 18px !important;
}

.footer-links a {
    font-size: .8rem !important;
    color: #ffffff !important;
}

.footer-links a:hover {
    color: #fff !important;
    text-decoration: underline !important;
}

.footer-bottom {
    margin-top: 16px !important;
    padding-top: 14px !important;
    border-top: 1px solid #333 !important;
    text-align: center !important;
    font-size: .75rem !important;
    color: #ffffff !important;
}

/* RESPONSIVE — TABLET */
@media(max-width:1024px) {

    .hero-grid,
    .about-grid,
    .how-content,
    .safety-grid {
        grid-template-columns: 1fr;
        gap: 28px;
        text-align: center
    }

    /* Mobile: image first, text second */
    .hero-visual {
        order: -1
    }

    .hero-content {
        max-width: 100%
    }

    .hero-visual::before {
        width: 260px;
        height: 260px
    }

    .hero-img {
        width: 100%;
        height: 100%;
        margin: 0 auto
    }

    .hero-highlights {
        display: flex;
        flex-direction: column;
        align-items: center
    }

    .hero-cta {
        text-align: center
    }

    .hero-cta .btn-cta {
        width: 100%;
        max-width: 420px;
        display: block;
        margin: 0 auto;
        text-align: center;
        padding: 18px 40px;
        font-size: 1.1rem;
    }

    .hero-stats {
        justify-content: center;
        max-width: 400px;
        margin: 0 auto
    }

    .trust-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .trust-seal {
        width: 74px;
        height: 74px
    }

    .trust-seal svg {
        width: 30px;
        height: 30px
    }

    .feature-cards-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }

    .featured-card {
        transform: scale(1);
    }

    .featured-card:hover {
        transform: translateY(-6px);
    }

    .reviews-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .ing-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .price-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto
    }

    .price-card.featured {
        transform: scale(1)
    }

    .price-card.featured:hover {
        transform: translateY(-6px)
    }

    .save-badge {
        width: 52px;
        height: 52px;
        font-size: .6rem
    }

    .guarantee-card {
        flex-direction: column;
        text-align: center
    }

    .how-img img {
        max-width: 100%;
        margin: 0 auto
    }
}

/* RESPONSIVE — MOBILE */
@media(max-width:768px) {
    .container {
        padding: 0 16px
    }

    /* Show sticky bar on mobile only */
    .mobile-sticky-bar {
        display: block;
    }

    .nav-links {
        position: fixed;
        top: 62px;
        right: -100%;
        width: 260px;
        height: calc(100vh - 62px);
        background: #fff;
        flex-direction: column;
        justify-content: flex-start;
        gap: 22px;
        padding: 36px 24px;
        transition: right .3s ease;
        z-index: 999;
        border-left: 1px solid var(--border);
        box-shadow: -4px 0 20px rgba(0, 0, 0, .1);
        overflow-y: auto;
    }

    /* Prevent sticky bar from covering footer */
    .site-footer {
        margin-bottom: 80px;
        color: #ffffff;
    }

    .nav-links.open {
        right: 0
    }

    .nav-links a {
        font-size: 1rem
    }

    .mobile-toggle {
        display: flex;
        z-index: 1001
    }

    .hero {
        padding: 70px 0 20px
    }

    .hero-grid {
        gap: 14px
    }

    .hero-title {
        font-size: 2rem !important;
        font-weight: 900;
        color: var(--text-heading);
        line-height: 1.2;
        margin-bottom: 12px;
}

    .hero-desc {
        font-size: .82rem;
        margin-bottom: 6px;
        line-height: 1.4
    }

    .hero-badge {
        margin-bottom: 6px;
        padding: 5px 12px;
        font-size: .72rem
    }

    .hero-highlights li {
        padding: 3px 0;
        font-size: .82rem
    }

    .hero-cta .btn-cta {
        padding: 12px 24px;
        font-size: .9rem
    }

    .hero-cta .btn-cta {
        width: 100%;
        padding: 16px 28px;
        font-size: 1rem;
        letter-spacing: 0.3px;
    }

    .hero-stats>div {
        padding: 10px 8px
    }

    .hero-stat-val {
        font-size: 1.2rem
    }

    .hero-stat-lbl {
        font-size: .62rem
    }

    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px
    }

    .trust-card {
        padding: 16px 10px
    }

    /* === COMPACT MOBILE FEATURE CARDS (Why Choose) === */
    .feature-cards-grid {
        gap: 12px
    }

    .feature-card {
        padding: 16px;
        display: grid;
        grid-template-columns: 80px 1fr;
        grid-template-rows: auto auto auto auto;
        gap: 4px 14px;
        text-align: left
    }

    .feature-card-header {
        grid-column: 2;
        grid-row: 1;
        display: flex;
        align-items: center;
        gap: 8px;
        padding: 0;
        margin: 0
    }

    .feature-card-header .feature-bottles {
        font-size: 1rem;
        margin: 0
    }

    .feature-card-header .feature-supply {
        font-size: .7rem;
        color: #666;
        margin: 0
    }

    .feature-card-badge {
        grid-column: 2;
        grid-row: 2;
        padding: 4px 10px;
        display: inline-flex;
        width: fit-content
    }

    .feature-card-badge svg {
        width: 14px;
        height: 14px
    }

    .feature-card-badge span {
        font-size: .7rem
    }

    .feature-card-img {
        grid-column: 1;
        grid-row: 1 / 5;
        max-width: 80px;
        height: 90px;
        margin: 0;
        align-self: center
    }

    .feature-card-img::before {
        display: none
    }

    .feature-card h3 {
        grid-column: 2;
        grid-row: 3;
        font-size: .9rem;
        margin: 4px 0 0
    }

    .feature-card p {
        grid-column: 2;
        grid-row: 4;
        font-size: .75rem;
        margin: 0
    }

    .feature-card .feature-price {
        grid-column: 2;
        justify-content: flex-start
    }

    .feature-card .feature-shipping {
        grid-column: 2;
        text-align: left;
        font-size: .72rem
    }

    .feature-card .btn {
        grid-column: 1 / -1;
        margin-top: 8px;
        padding: 12px;
        font-size: .9rem
    }

    .feature-card .payment-logos {
        grid-column: 1 / -1
    }

    .feature-card .payment-logos img {
        height: 18px;
        width: auto
    }

    .feature-premium-badge {
        font-size: .6rem;
        padding: 4px 12px
    }

    .feature-premium-badge {
        font-size: .65rem;
        padding: 5px 16px;
    }

    .reviews-grid {
        grid-template-columns: 1fr
    }

    .ing-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px
    }

    .ben-grid {
        grid-template-columns: 1fr
    }

    .footer-inner {
        flex-direction: column;
        text-align: center
    }

    .footer-links {
        flex-wrap: wrap;
        justify-content: center
    }

    .section-title {
        font-size: 1.4rem
    }

    /* === COMPACT MOBILE PRICING CARDS (Competitor-style 2-col grid) === */
    .price-grid {
        grid-template-columns: 1fr;
        max-width: 100%;
        gap: 18px;
        margin-top: 20px
    }

    .price-card {
        display: grid;
        grid-template-columns: 1fr 1fr;
        border-width: 2px;
        border-radius: 12px;
        overflow: hidden
    }

    .price-card.featured {
        transform: none;
        border-width: 3px
    }

    .price-card.featured:hover {
        transform: none
    }

    .price-card:hover {
        transform: none;
        box-shadow: none
    }

    /* Topbar spans full width */
    .price-card-topbar {
        grid-column: 1 / -1;
        padding: 10px 16px;
        font-size: .85rem;
        letter-spacing: 2px
    }

    /* Dissolve header & body wrappers so children become grid items */
    .price-card-header,
    .price-card-body {
        display: contents
    }

    /* Row 2: bottle count (top-left) */
    .price-card-header .price-bottles {
        grid-column: 1;
        grid-row: 2;
        padding: 14px 0 0 16px;
        font-size: 1.4rem;
        font-weight: 900;
        margin: 0;
        align-self: end;
        letter-spacing: .5px
    }

    /* Row 3: supply text (below bottles, left) */
    .price-card .supply {
        grid-column: 1;
        grid-row: 3;
        padding: 0 0 0 16px;
        margin: 0;
        font-size: .85rem;
        align-self: start
    }

    /* Row 2-3: price (right, vertically centered across 2 rows) */
    .price-amt {
        grid-column: 2;
        grid-row: 2 / 4;
        align-self: center;
        justify-self: end;
        padding-right: 16px;
        justify-content: flex-end
    }

    .price-amt .cur {
        font-size: 1.3rem
    }

    .price-amt .val {
        font-size: 2.6rem
    }

    .price-amt .price-per-inline {
        font-size: .78rem
    }

    /* Row 4-5: product image (left, spans 2 rows) */
    .price-card-img {
        grid-column: 1;
        grid-row: 4 / 6;
        width: 130px;
        height: 140px;
        margin: 8px auto;
        justify-self: center
    }

    .price-card-img img {
        width: 130px;
        height: 140px
    }

    .save-badge {
        width: 50px;
        height: 50px;
        font-size: .55rem;
        top: auto;
        bottom: 5px;
        right: -5px
    }

    /* Row 4: shipping info (right, bottom-aligned) */
    .price-shipping {
        grid-column: 2;
        grid-row: 4;
        align-self: end;
        justify-self: center;
        margin: 0;
        padding: 0;
        font-size: .75rem;
        text-align: center
    }

    .price-shipping.free-ship {
        padding: 4px 10px;
        font-size: .72rem
    }

    /* Row 5: buy button (right, top-aligned) */
    .price-card .btn {
        grid-column: 2;
        grid-row: 5;
        align-self: start;
        justify-self: center;
        padding: 12px 22px;
        font-size: .9rem;
        font-weight: 900;
        white-space: nowrap;
        width: auto;
        margin: 6px 0 0
    }

    /* Row 6: payment logos (full width, centered) */
    .price-card .payment-logos {
        grid-column: 1 / -1;
        grid-row: 6;
        margin-top: 6px;
        padding-bottom: 12px;
        justify-content: center
    }

    .price-card .payment-logos img {
        height: 20px;
        width: auto
    }

    /* Row 7: total if exists */
    .price-total {
        grid-column: 1 / -1;
        grid-row: 7;
        font-size: .82rem;
        text-align: center;
        padding-bottom: 10px
    }
}

@media(max-width:480px) {
    .hero-title {
        font-size: 1.25rem
    }

    .section-title {
        font-size: 1.2rem
    }

    .hero-stats {
        flex-direction: row;
        flex-wrap: nowrap
    }

    .hero-stats>div {
        padding: 8px 6px
    }

    .hero-stat-val {
        font-size: 1rem
    }

    .hero-stat-lbl {
        font-size: .58rem
    }

    .trust-grid {
        grid-template-columns: 1fr 1fr;
        gap: 8px
    }

    .trust-card {
        padding: 12px 8px
    }

    .trust-badge-img {
        width: 70px;
        height: 70px;
        margin-bottom: 6px
    }

    .trust-card h4 {
        font-size: .75rem;
        margin: 0 0 2px
    }

    .trust-card p {
        font-size: .65rem;
        line-height: 1.35
    }

    .ing-grid {
        grid-template-columns: 1fr
    }

    .sticky-bar-content {
        gap: 8px;
        overflow: hidden;
    }

    .sticky-bar-left {
        min-width: 0;
        flex-shrink: 1;
        overflow: hidden;
    }

    .sticky-bar-title {
        font-size: .75rem;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .sticky-bar-price {
        font-size: 1.1rem;
    }

    .sticky-bar-right {
        gap: 6px;
        flex-shrink: 0;
    }

    .sticky-bar-timer {
        padding: 4px 7px;
    }

    .sticky-bar-timer svg {
        width: 10px;
        height: 10px;
    }

    .sticky-bar-timer span {
        font-size: .65rem;
    }

    .sticky-bar-btn {
        padding: 8px 14px;
        font-size: .8rem;
        white-space: nowrap;
    }

    .scroll-popup {
        padding: 8px;
    }

    .popup-content {
        padding: 18px 12px 16px;
        border-radius: 14px;
        max-width: 100%;
        transform: scale(0.75);
        transform-origin: center center;
    }

    .popup-close {
        top: 8px;
        right: 8px;
        width: 26px;
        height: 26px;
    }

    .popup-badge {
        font-size: .65rem;
        padding: 3px 8px;
        margin-bottom: 6px;
    }

    .popup-product {
        width: 90px;
        height: 95px;
        margin-bottom: 10px;
    }

    .popup-title {
        font-size: 1.1rem;
        margin-bottom: 10px;
    }

    .popup-price {
        padding: 10px;
        margin-bottom: 10px;
        border-radius: 10px;
    }

    .popup-price-label {
        font-size: .7rem;
        margin-bottom: 4px;
    }

    .popup-price-amount {
        gap: 8px;
        margin-bottom: 4px;
    }

    .popup-old-price {
        font-size: .9rem;
    }

    .popup-new-price {
        font-size: 1.4rem;
    }

    .popup-new-price small {
        font-size: .7rem;
    }

    .popup-save-badge {
        font-size: .65rem;
        padding: 2px 10px;
        margin-bottom: 4px;
    }

    .popup-total {
        font-size: .75rem;
    }

    .popup-total strong {
        font-size: .9rem;
    }

    .popup-text {
        font-size: .78rem;
        margin-bottom: 12px;
    }

    .popup-features {
        gap: 4px;
        margin-bottom: 14px;
    }

    .popup-feature {
        font-size: .72rem;
        gap: 6px;
    }

    .popup-feature svg {
        width: 16px;
        height: 16px;
    }

    .popup-cta {
        padding: 10px 20px;
        font-size: .85rem;
        margin-bottom: 10px;
    }

    .popup-cta.btn-gold-lg {
        padding: 10px 20px;
        font-size: .85rem;
    }

    .popup-timer {
        font-size: .72rem;
    }
}
/* ============================================
   HEADER STYLES - Dynamic Menu Designs
   ============================================ */

/* Transparent Header */
.site-header.header-transparent {
    background: rgba(255, 255, 255, 0.92) !important;
    backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(213, 213, 213, 0.3) !important;
}
.site-header.header-transparent.scrolled {
    background: rgba(255, 255, 255, 0.98) !important;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-light) !important;
    box-shadow: var(--shadow-sm);
}
.site-header.header-transparent .logo {
    color: var(--primary) !important;
}
.site-header.header-transparent .nav-links a {
    color: var(--text-body) !important;
}
.site-header.header-transparent .nav-links a:hover {
    color: var(--primary) !important;
}
.site-header.header-transparent .btn-primary {
    background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%) !important;
    color: white !important;
    font-weight: 800 !important;
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.4) !important;
    border: none !important;
}
.site-header.header-transparent .btn-primary:hover {
    background: linear-gradient(135deg, #e55a2b 0%, #e67935 100%) !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(255, 107, 53, 0.5) !important;
}
.site-header.header-transparent .mobile-toggle span {
    background: var(--text-heading) !important;
}

/* Dark Header */
.site-header.header-dark {
    background: #1a1a1a !important;
    border-bottom: 1px solid #333333 !important;
}
.site-header.header-dark .logo {
    color: #4ade80 !important;
}
.site-header.header-dark .nav-links a {
    color: #e5e7eb !important;
}
.site-header.header-dark .nav-links a:hover {
    color: #4ade80 !important;
}
.site-header.header-dark .btn-primary {
    background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%) !important;
    color: white !important;
    border: none !important;
    font-weight: 800 !important;
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.4) !important;
}
.site-header.header-dark .btn-primary:hover {
    background: linear-gradient(135deg, #e55a2b 0%, #e67935 100%) !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(255, 107, 53, 0.5) !important;
}
.site-header.header-dark .mobile-toggle span {
    background: #e5e7eb !important;
}

/* Minimal Header */
.site-header.header-minimal {
    background: white !important;
    border-bottom: 1px solid #f1f5f9 !important;
}
.site-header.header-minimal .header-inner {
    height: 50px;
}
.site-header.header-minimal .logo {
    font-size: 1.1rem;
    color: var(--primary);
}
.site-header.header-minimal .nav-links a {
    font-size: 0.9rem;
    color: var(--text-body);
}
.site-header.header-minimal .mobile-toggle span {
    background: var(--text-heading);
}

/* Bordered Header */
.site-header.header-bordered {
    background: white !important;
    border-bottom: 3px solid #e5e7eb !important;
}
.site-header.header-bordered.scrolled {
    border-bottom-color: var(--primary) !important;
}
.site-header.header-bordered .logo {
    color: var(--primary);
}
.site-header.header-bordered .nav-links a {
    color: var(--text-body);
}
.site-header.header-bordered .mobile-toggle span {
    background: var(--text-heading);
}

/* Mobile Menu Styles for Dynamic Headers */
@media (max-width: 768px) {
    /* Transparent Header Mobile */
    .site-header.header-transparent .nav-links {
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        border-top: 1px solid var(--border-light);
    }
    .site-header.header-transparent .nav-links a {
        color: var(--text-body);
    }
    .site-header.header-transparent .nav-links a:hover {
        color: var(--primary);
    }

    /* Dark Header Mobile */
    .site-header.header-dark .nav-links {
        background: #1a1a1a;
        border-top: 1px solid #333333;
    }
    .site-header.header-dark .nav-links a {
        color: #e5e7eb;
    }
    .site-header.header-dark .nav-links a:hover {
        color: #4ade80;
    }

    /* Minimal Header Mobile */
    .site-header.header-minimal .nav-links {
        background: white;
    }

    /* Bordered Header Mobile */
    .site-header.header-bordered .nav-links {
        background: white;
        border-top: 3px solid #e5e7eb;
    }
}

/* WCAG Focus States for All Header Styles */
.site-header.header-transparent a:focus-visible,
.site-header.header-transparent button:focus-visible {
    outline: 3px solid white;
    outline-offset: 2px;
}

.site-header.header-dark a:focus-visible,
.site-header.header-dark button:focus-visible {
    outline: 3px solid white;
    outline-offset: 2px;
}

.site-header.header-minimal a:focus-visible,
.site-header.header-minimal button:focus-visible {
    outline: 3px solid var(--primary);
    outline-offset: 2px;
}

.site-header.header-bordered a:focus-visible,
.site-header.header-bordered button:focus-visible {
    outline: 3px solid var(--primary);
    outline-offset: 2px;
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
    .site-header.header-transparent {
        background: white;
        border-bottom: 2px solid #000;
    }
    .site-header.header-transparent .logo,
    .site-header.header-transparent .nav-links a {
        color: #000;
        text-shadow: none;
    }
}


body footer.site-footer,
body .site-footer {
    background: #000 !important;
    background-color: #000 !important;
    color: #fff !important;
    text-align: center !important;
    padding: 28px 0 !important;
    border-top: 1px solid #333 !important;
}

body footer.site-footer *,
body .site-footer * {
    color: #fff !important;
}

body footer.site-footer .footer-inner,
body .site-footer .footer-inner {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    gap: 16px !important;
}

body footer.site-footer .footer-links,
body .site-footer .footer-links {
    display: flex !important;
    justify-content: center !important;
    flex-wrap: wrap !important;
    gap: 18px !important;
}

body footer.site-footer .footer-links a,
body .site-footer .footer-links a {
    color: #fff !important;
    text-decoration: none !important;
}

body footer.site-footer .footer-links a:hover,
body .site-footer .footer-links a:hover {
    color: #fff !important;
    text-decoration: underline !important;
}

body footer.site-footer .footer-disclaimer,
body .site-footer .footer-disclaimer,
body footer.site-footer .footer-bottom,
body .site-footer .footer-bottom {
    color: #fff !important;
    text-align: center !important;
}


.site-footer,
.site-footer p,
.site-footer a,
.site-footer span,
.site-footer div {
    color: #ffffff !important;
}


