/* ===================================
   TOFFEE VODKA - LANDING PAGE STYLES
   =================================== */

/* CSS Variables */
:root {
    --color-bg: #000000;
    --color-bg-light: #0a0a0a;
    --color-bg-card: #111111;
    --color-toffee: #d4a574;
    --color-toffee-light: #e8c9a8;
    --color-toffee-dark: #b8875a;
    --color-gold: #c9a962;
    --color-cream: #ffffff;
    --color-text: #ffffff;
    --color-text-muted: #999999;
    --color-accent: #8b4513;
    
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Raleway', 'Segoe UI', sans-serif;
    
    --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Reset & Base - Use !important to override Divi */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px !important;
}

body,
body.et-tb,
body.et-tb-has-header,
#page-container,
.et_pb_section,
.et_pb_row,
.et_pb_column,
.et_pb_module,
.et_pb_code_inner {
    font-family: var(--font-body) !important;
    background-color: #000000 !important;
    color: #ffffff !important;
    line-height: 1.7;
}

body {
    overflow-x: hidden;
}

/* Typography - Override Divi */
h1, h2, h3, h4,
.et_pb_module h1, .et_pb_module h2, .et_pb_module h3, .et_pb_module h4 {
    font-family: 'Playfair Display', Georgia, serif !important;
    font-weight: 500 !important;
    line-height: 1.2 !important;
    color: #ffffff !important;
}

h2 {
    font-size: clamp(2rem, 5vw, 3.5rem) !important;
    margin-bottom: 1.5rem !important;
}

h3 {
    font-size: clamp(1.25rem, 3vw, 1.5rem) !important;
    margin-bottom: 0.75rem !important;
}

p,
.et_pb_module p {
    color: #999999 !important;
    font-weight: 300 !important;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-smooth);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Utility Classes */
.container {
    width: min(90%, 1200px);
    margin: 0 auto;
}

.section-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-toffee);
    margin-bottom: 1rem;
    position: relative;
    padding-left: 40px;
}

.section-tag::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 30px;
    height: 1px;
    background: var(--color-toffee);
}

.section-header {
    margin-bottom: 4rem;
}

.section-header.centered {
    text-align: center;
}

.section-header.centered .section-tag {
    padding-left: 0;
}

.section-header.centered .section-tag::before {
    display: none;
}

.section-subtitle {
    font-size: 1.1rem;
    max-width: 500px;
    margin: 0 auto;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.btn svg {
    width: 18px;
    height: 18px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-toffee) 0%, var(--color-toffee-dark) 100%);
    color: var(--color-bg);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(212, 165, 116, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--color-cream);
    border: 1px solid rgba(245, 239, 230, 0.3);
}

.btn-secondary:hover {
    border-color: var(--color-toffee);
    color: var(--color-toffee);
}

.btn-large {
    padding: 1.25rem 2.5rem;
    font-size: 1rem;
    width: 100%;
}

/* ===================================
   NAVIGATION
   =================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1.5rem 0;
    transition: var(--transition-smooth);
}

.navbar.scrolled {
    background: rgba(13, 11, 9, 0.95);
    backdrop-filter: blur(20px);
    padding: 1rem 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.nav-container {
    width: min(90%, 1200px);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: var(--color-toffee);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    list-style: none;
}

.nav-links a {
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--color-cream);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--color-toffee);
    transition: var(--transition-smooth);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-cta {
    background: var(--color-toffee);
    color: var(--color-bg) !important;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
}

.nav-cta::after {
    display: none !important;
}

.nav-cta:hover {
    background: var(--color-toffee-light);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-btn span {
    width: 25px;
    height: 2px;
    background: var(--color-cream);
    transition: var(--transition-smooth);
}

/* ===================================
   HERO SECTION
   =================================== */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    position: relative;
    overflow: hidden;
    padding: 120px 5% 80px;
    background-color: #000000 !important;
}

.hero-bg-image {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center right;
}

.hero-bg-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.7) 40%, rgba(0, 0, 0, 0.3) 70%, transparent 100%);
}

.hero-bg-pattern {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse at 20% 50%, rgba(212, 165, 116, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 80%, rgba(139, 69, 19, 0.1) 0%, transparent 40%);
    pointer-events: none;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    animation: fadeInUp 1s ease-out;
    max-width: 600px;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


.hero-title {
    margin-bottom: 1.5rem;
}

.title-line {
    display: block;
    font-size: clamp(3rem, 8vw, 6rem) !important;
    font-weight: 400 !important;
    line-height: 1 !important;
    color: #ffffff !important;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.title-line.accent {
    color: #d4a574 !important;
    font-style: italic;
    animation-delay: 0.4s;
}

.title-line.small {
    font-size: clamp(1.5rem, 4vw, 2.5rem) !important;
    color: #999999 !important;
    margin-top: 0.5rem;
    animation-delay: 0.5s;
}

.hero-tagline {
    font-size: 1.25rem;
    color: var(--color-text-muted);
    margin-bottom: 2.5rem;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 3rem;
    animation: fadeInUp 1s ease-out 0.7s both;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 500;
    color: var(--color-cream);
}

.stat-label {
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-text-muted);
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, transparent, var(--color-toffee), transparent);
}

.hero-cta {
    display: flex;
    gap: 1rem;
    animation: fadeInUp 1s ease-out 0.8s both;
}

.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeIn 1.2s ease-out 0.5s both;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.bottle-glow {
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(212, 165, 116, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(60px);
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

.bottle-img {
    position: relative;
    z-index: 2;
    max-height: 70vh;
    filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.5));
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}


/* ===================================
   HIGHLIGHTS SECTION
   =================================== */
.highlights {
    padding: 120px 0;
    background: #0a0a0a !important;
    position: relative;
}

.highlights::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--color-toffee), transparent);
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.highlight-card {
    background: #111111 !important;
    padding: 3rem 2rem;
    border-radius: 8px;
    text-align: center;
    border: 1px solid rgba(212, 165, 116, 0.1);
    transition: var(--transition-smooth);
}

.highlight-card:hover {
    transform: translateY(-10px);
    border-color: rgba(212, 165, 116, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.highlight-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.highlight-icon svg {
    width: 40px;
    height: 40px;
    color: var(--color-toffee);
}

.highlight-card h3 {
    color: var(--color-cream);
}

.highlight-card p {
    font-size: 0.95rem;
}

/* ===================================
   STORY SECTION
   =================================== */
.story {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 100vh;
}

.story-image {
    position: relative;
    overflow: hidden;
}

.story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.story-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, transparent 50%, #000000 100%);
}

.story-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px;
    background: #000000 !important;
}

.story-lead {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-style: italic;
    color: var(--color-toffee-light);
    margin-bottom: 2rem;
    line-height: 1.5;
}

.story-content p {
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.story-signature {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(212, 165, 116, 0.2);
}

.signature-name {
    display: block;
    font-family: 'Great Vibes', cursive !important;
    font-size: 2.5rem !important;
    color: #d4a574 !important;
    margin-bottom: 0.25rem;
}

.signature-title {
    display: block;
    font-size: 0.85rem;
    color: #999999 !important;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

/* ===================================
   SERVING SECTION
   =================================== */
.serving {
    padding: 120px 0;
    background: #0a0a0a !important;
}

.serving-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.serve-card {
    background: #000000 !important;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(212, 165, 116, 0.1);
    transition: var(--transition-smooth);
}

.serve-card:hover {
    transform: translateY(-8px);
    border-color: rgba(212, 165, 116, 0.3);
}

.serve-card.featured {
    border-color: var(--color-toffee);
}

.serve-image {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
}

.serve-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.serve-card:hover .serve-image img {
    transform: scale(1.05);
}

.serve-content {
    padding: 1.5rem;
    position: relative;
}

.serve-badge {
    position: absolute;
    top: -12px;
    left: 1.5rem;
    background: var(--color-toffee);
    color: var(--color-bg);
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.35rem 0.75rem;
    border-radius: 50px;
}

.serve-content h3 {
    color: var(--color-cream);
    font-size: 1.1rem;
}

.serve-content p {
    font-size: 0.9rem;
}

/* ===================================
   REVIEWS SECTION
   =================================== */
.reviews {
    padding: 100px 0;
    background: #000000 !important;
    text-align: center;
}

.reviews-header {
    margin-bottom: 4rem;
}

.stars {
    font-size: 2rem;
    color: var(--color-gold);
    letter-spacing: 0.25em;
    margin-bottom: 1rem;
}

.reviews-header p {
    font-size: 1.25rem;
    color: #ffffff !important;
}

.reviews-carousel {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.review-card {
    background: #111111 !important;
    padding: 2.5rem;
    border-radius: 12px;
    border: 1px solid rgba(212, 165, 116, 0.1);
    text-align: left;
}

.review-card p {
    font-size: 1.1rem;
    font-style: italic;
    color: #ffffff !important;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.reviewer {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.reviewer-name {
    font-weight: 600;
    color: var(--color-toffee);
}

.reviewer-location {
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

.google-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    margin-bottom: 1rem;
}

.google-badge span {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--color-cream);
}

.google-reviews-link {
    display: inline-block;
    margin-top: 2rem;
    color: var(--color-toffee);
    font-weight: 500;
    transition: var(--transition-smooth);
}

.google-reviews-link:hover {
    color: var(--color-toffee-light);
}

/* ===================================
   PURCHASE SECTION
   =================================== */
.purchase {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.purchase-bg {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse at 30% 50%, rgba(212, 165, 116, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 70%, rgba(139, 69, 19, 0.08) 0%, transparent 40%);
}

.purchase-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.purchase-image {
    display: flex;
    justify-content: center;
}

.purchase-image img {
    max-height: 600px;
    filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.4));
}

.purchase-content {
    background: #111111 !important;
    padding: 3rem;
    border-radius: 16px;
    border: 1px solid rgba(212, 165, 116, 0.15);
}

.purchase-description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.purchase-options {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.option-card {
    display: block;
    cursor: pointer;
}

.option-card input {
    display: none;
}

.option-content {
    background: #000000 !important;
    border: 2px solid rgba(212, 165, 116, 0.2);
    border-radius: 12px;
    padding: 1.25rem 1.5rem;
    transition: var(--transition-smooth);
    position: relative;
}

.option-card input:checked + .option-content {
    border-color: var(--color-toffee);
    background: rgba(212, 165, 116, 0.05);
}

.option-card:hover .option-content {
    border-color: rgba(212, 165, 116, 0.5);
}

.option-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.25rem;
}

.option-header h4 {
    font-family: var(--font-body) !important;
    font-weight: 600 !important;
    color: #ffffff !important;
}

.option-price {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--color-toffee);
}

.option-content p {
    font-size: 0.85rem;
}

.option-card.best-value .value-badge {
    position: absolute;
    top: -10px;
    right: 1rem;
    background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-toffee-dark) 100%);
    color: var(--color-bg);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 0.35rem 0.75rem;
    border-radius: 50px;
}

.subscription-offer {
    background: linear-gradient(135deg, rgba(212, 165, 116, 0.15) 0%, rgba(212, 165, 116, 0.05) 100%);
    border: 1px solid rgba(212, 165, 116, 0.3);
    border-radius: 12px;
    padding: 1.25rem;
    margin-bottom: 2rem;
    text-align: center;
}

.subscription-badge {
    display: inline-block;
    background: var(--color-toffee);
    color: var(--color-bg);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    margin-bottom: 0.75rem;
}

.subscription-offer p {
    font-size: 0.95rem;
    color: #ffffff !important;
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(212, 165, 116, 0.15);
}

.trust-badges .badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.trust-badges .badge svg {
    width: 20px;
    height: 20px;
    color: var(--color-toffee);
}

.trust-badges .badge span {
    font-size: 0.8rem;
    color: var(--color-text-muted);
}

/* ===================================
   FOOTER
   =================================== */
.footer {
    background: #0a0a0a !important;
    padding: 60px 0 30px;
    border-top: 1px solid rgba(212, 165, 116, 0.1);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 2rem;
}

.footer-brand .logo {
    margin-bottom: 0.5rem;
    display: inline-block;
}

.footer-brand p {
    font-size: 0.9rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #111111 !important;
    border-radius: 50%;
    color: #ffffff !important;
    transition: var(--transition-smooth);
}

.footer-social a:hover {
    background: var(--color-toffee);
    color: var(--color-bg);
    transform: translateY(-3px);
}

.footer-social svg {
    width: 18px;
    height: 18px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    font-size: 0.85rem;
}

.age-notice {
    color: var(--color-toffee) !important;
}

/* ===================================
   AGE VERIFICATION MODAL
   =================================== */
.age-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 1;
    transition: opacity 0.5s ease;
}

.age-modal.hidden {
    opacity: 0;
    pointer-events: none;
}

.age-modal-content {
    background: #ffffff !important;
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    max-width: 450px;
    width: 90%;
    border: none;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: modalIn 0.5s ease-out;
}

@keyframes modalIn {
    from {
        opacity: 0;
        transform: scale(0.9) translateY(20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.age-modal-header {
    margin-bottom: 2rem;
}

.age-logo {
    max-width: 200px;
    height: auto;
    margin: 0 auto 1.5rem;
}

.age-modal-header h2 {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
    color: #000000 !important;
}

.age-modal-header p {
    color: #555555 !important;
}

.age-modal-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.age-modal-buttons .btn {
    width: 100%;
}

.btn-age-primary {
    background: #000000 !important;
    color: #ffffff !important;
    border: none;
}

.btn-age-primary:hover {
    background: #333333 !important;
}

.btn-age-secondary {
    background: transparent !important;
    color: #000000 !important;
    border: 1px solid rgba(0, 0, 0, 0.3) !important;
}

.btn-age-secondary:hover {
    border-color: #000000 !important;
    background: rgba(0, 0, 0, 0.05) !important;
}

.age-legal {
    font-size: 0.75rem;
    color: #888888 !important;
}

/* ===================================
   RESPONSIVE STYLES
   =================================== */
@media (max-width: 1024px) {
    .hero {
        text-align: center;
        align-items: center;
        padding-top: 120px;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-bg-image::after {
        background: linear-gradient(to bottom, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.7) 50%, rgba(0, 0, 0, 0.85) 100%);
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-cta {
        justify-content: center;
        flex-wrap: wrap;
    }

    .highlights-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }

    .story {
        grid-template-columns: 1fr;
    }

    .story-image {
        height: 50vh;
    }

    .story-image::after {
        background: linear-gradient(to bottom, transparent 50%, #000000 100%);
    }

    .story-content {
        padding: 60px 5%;
    }

    .serving-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .reviews-carousel {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }

    .purchase-wrapper {
        grid-template-columns: 1fr;
    }

    .purchase-image img {
        max-height: 400px;
    }

    .footer-content {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }

    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: #000000;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links a {
        font-size: 1.5rem;
    }

    .mobile-menu-btn {
        display: flex;
        z-index: 1001;
    }

    .mobile-menu-btn.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .mobile-menu-btn.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-btn.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    .title-line {
        font-size: clamp(2.5rem, 12vw, 4rem);
    }

    .hero-stats {
        gap: 1rem;
    }

    .stat-number {
        font-size: 1.5rem;
    }

    .serving-grid {
        grid-template-columns: 1fr;
    }

    .purchase-content {
        padding: 2rem 1.5rem;
    }

    .trust-badges {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    html {
        font-size: 14px;
    }

    .section-tag {
        padding-left: 0;
    }

    .section-tag::before {
        display: none;
    }

    .hero-cta {
        flex-direction: column;
    }

    .hero-cta .btn {
        width: 100%;
    }

    .scroll-indicator {
        display: none;
    }
}
