/* ==========================================
   LYCIOUS — Premium Lychee Drink
   Design System & Styles
   ========================================== */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@400;500;600;700&family=Poppins:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,600;1,400&display=swap');

/* --- CSS Custom Properties --- */
:root {
    /* Brand Colors — Warm Craft Palette */
    --pink-50: #FFF8F5;
    --pink-100: #FDF0EA;
    --pink-200: #F7DED3;
    --pink-300: #EEC8B8;
    --pink-400: #DFA898;
    --pink-500: #C88870;
    --pink-600: #B36A52;
    --pink-700: #924E3B;
    --pink-800: #6F3428;
    --pink-900: #3D1A13;

    --brand-dark-red: #6f1b23;
    --brand-dark-red-hover: #500f17;
    --blush: #E8B4B8;
    --blush-light: #F5DCE0;
    --cream: #FDF7F2;
    --cream-dark: #F2E8E1;
    --warm-white: #FFFCF9;
    --wood-brown: #C4A882;
    --gold: #C8A96E;

    /* Typography */
    --font-display: 'Dubai';
    --font-heading: 'Calisto MT';
    --font-body: 'Poppins';

    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 2rem;
    --space-lg: 4rem;
    --space-xl: 6rem;
    --space-2xl: 8rem;

    /* Sizing */
    --max-width: 1200px;
    --nav-height: 80px;

    /* Transitions */
    --ease-out: cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --ease-spring: cubic-bezier(0.175, 0.885, 0.32, 1.275);

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(61, 26, 19, 0.06);
    --shadow-md: 0 8px 24px rgba(61, 26, 19, 0.1);
    --shadow-lg: 0 16px 48px rgba(61, 26, 19, 0.14);
    --shadow-glow: 0 0 40px rgba(111, 27, 35, 0.12);
}

/* --- Reset & Base --- */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    color: var(--pink-900);
    background: var(--cream);
    line-height: 1.7;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    display: block;
}

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

ul {
    list-style: none;
}

/* --- Utility --- */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--space-md);
}

.section-label {
    font-family: var(--font-body);
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--brand-dark-red);
    margin-bottom: var(--space-sm);
    display: inline-block;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 600;
    line-height: 1.2;
    color: var(--pink-900);
    margin-bottom: var(--space-md);
}

.section-title em {
    font-family: var(--font-display);
    font-style: normal;
    color: var(--brand-dark-red);
    font-size: 1.15em;
}

/* --- Reveal Animation Base --- */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 {
    transition-delay: 0.15s;
}

.reveal-delay-2 {
    transition-delay: 0.3s;
}

.reveal-delay-3 {
    transition-delay: 0.45s;
}

.reveal-delay-4 {
    transition-delay: 0.6s;
}

/* ==========================================
   NAVIGATION
   ========================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--nav-height);
    display: flex;
    align-items: center;
    transition: background 0.4s ease, box-shadow 0.4s ease, backdrop-filter 0.4s ease;
}

.navbar.scrolled {
    background: rgba(253, 247, 242, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: var(--shadow-sm);
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.nav-logo-stacked {
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 1;
    text-align: center;
    transition: transform 0.3s ease;
}

.nav-logo-stacked:hover {
    transform: scale(1.05);
}

.logo-svg {
    display: block;
    pointer-events: none;
}

.logo-svg--nav {
    height: 60px;
    width: auto;
    max-width: 150px;
}

.logo-svg--footer {
    height: 70px;
    width: 126px;
    display: block;
    filter: brightness(0) invert(1);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.nav-links a {
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    color: var(--brand-dark-red);
    position: relative;
    padding: 4px 0;
    transition: color 0.3s ease;
}

.nav-links a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background: var(--brand-dark-red);
    border-radius: 2px;
    transition: width 0.3s var(--ease-out);
}

.nav-links a:hover {
    color: var(--brand-dark-red-hover);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-cta {
    font-size: 0.85rem !important;
    font-weight: 600 !important;
    padding: 10px 28px !important;
    background: var(--brand-dark-red);
    color: white !important;
    border-radius: 50px;
    transition: all 0.3s var(--ease-out) !important;
    box-shadow: 0 4px 15px rgba(122, 33, 46, 0.3);
}

.nav-cta::after {
    display: none !important;
}

.nav-cta:hover {
    background: var(--brand-dark-red-hover) !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(122, 33, 46, 0.4) !important;
}

/* Hamburger */
.nav-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1001;
    background: none;
    border: none;
    padding: 8px;
}

.nav-hamburger span {
    width: 24px;
    height: 2px;
    background: var(--pink-800);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.nav-hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-hamburger.active span:nth-child(2) {
    opacity: 0;
}

.nav-hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Nav Right (lang toggle + hamburger) */
.nav-right {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Language Toggle */
.lang-toggle {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background: rgba(253, 247, 242, 0.7);
    border: 1px solid var(--blush);
    border-radius: 50px;
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--brand-dark-red);
    transition: all 0.3s var(--ease-out);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    user-select: none;
}

.lang-toggle:hover {
    background: rgba(253, 247, 242, 0.95);
    border-color: var(--blush);
    transform: translateY(-1px);
    box-shadow: var(--shadow-sm);
}

.lang-toggle:active {
    transform: translateY(0);
}

.lang-globe {
    display: block;
    transition: transform 0.3s var(--ease-spring);
}

.lang-toggle:hover .lang-globe {
    transform: scale(1.15);
}

.lang-code {
    letter-spacing: 1px;
}

.navbar.scrolled .lang-toggle {
    background: rgba(255, 255, 255, 0.8);
}

/* ==========================================
   HERO SECTION
   ========================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, var(--warm-white) 0%, var(--cream) 55%, var(--blush-light) 100%);
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.1;
    filter: saturate(0.4);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.05);
    z-index: 2;
}

.hero .container {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: var(--space-lg);
    min-height: 100vh;
    padding-top: var(--nav-height);
}

.hero-content {
    padding: var(--space-lg) 0;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(255, 255, 255, 0.85);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--brand-dark-red);
    backdrop-filter: blur(10px);
    margin-bottom: var(--space-md);
    border: 1px solid rgba(111, 27, 35, 0.15);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.hero-badge::before {
    content: '🍈';
    font-size: 1rem;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(3.5rem, 8vw, 6.5rem);
    font-weight: 700;
    color: var(--brand-dark-red);
    line-height: 1;
    margin-bottom: var(--space-sm);
}

.lycious-svg {
    height: clamp(80px, 15vw, 160px);
    width: auto;
    display: block;
    pointer-events: none;
}

.hero-subtitle {
    font-family: var(--font-heading);
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    font-weight: 400;
    color: var(--pink-800);
    margin-bottom: var(--space-xs);
    font-style: italic;
}

.hero-tagline {
    font-size: 1.05rem;
    color: var(--pink-800);
    margin-bottom: var(--space-md);
    max-width: 440px;
    line-height: 1.8;
    font-weight: 300;
}

.hero-actions {
    display: flex;
    gap: var(--space-sm);
    align-items: center;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 36px;
    border-radius: 50px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: all 0.3s var(--ease-out);
}

.btn-primary {
    background: var(--brand-dark-red);
    color: white;
    box-shadow: 0 8px 25px rgba(122, 33, 46, 0.35);
}

.btn-primary:hover {
    background: var(--brand-dark-red-hover);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(122, 33, 46, 0.45);
}

.btn-secondary {
    background: transparent;
    color: var(--pink-700);
    border: 2px solid var(--pink-400);
}

.btn-secondary:hover {
    background: var(--pink-100);
    border-color: var(--pink-600);
    transform: translateY(-2px);
}

/* Hero Image */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 480px;
    animation: float 6s ease-in-out infinite;
}

.hero-image-wrapper img,
.hero-image-wrapper video {
    width: 130%;
    border-radius: 20px;
    box-shadow: 0 24px 60px rgba(61, 26, 19, 0.18);
    display: block;
}

.hero-image-glow {
    position: absolute;
    inset: -20px;
    background: radial-gradient(ellipse, rgba(196, 168, 130, 0.2) 0%, transparent 70%);
    z-index: -1;
    border-radius: 50%;
    filter: blur(30px);
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    33% {
        transform: translateY(-12px) rotate(0.5deg);
    }

    66% {
        transform: translateY(-6px) rotate(-0.5deg);
    }
}

/* Scroll Indicator */
.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--brand-dark-red);
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 500;
    animation: bounce 2s ease-in-out infinite;
    opacity: 0.6;
}

.hero-scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--brand-dark-red), transparent);
}

@keyframes bounce {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(8px);
    }
}

/* ==========================================
   ABOUT SECTION
   ========================================== */
.about {
    padding: var(--space-2xl) 0;
    position: relative;
}

.about .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    align-items: center;
}

.about-image {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: transform 0.6s var(--ease-out);
}

.about-image:hover img {
    transform: scale(1.03);
}

.about-image::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 24px;
    border: 1px solid rgba(199, 91, 122, 0.1);
    pointer-events: none;
}

.about-text p {
    font-size: 1.05rem;
    color: var(--pink-800);
    margin-bottom: var(--space-sm);
    line-height: 1.9;
    font-weight: 300;
}

.about-text p strong {
    font-weight: 600;
    color: var(--pink-700);
}

.about-quote {
    font-family: var(--font-heading);
    font-size: 1.3rem !important;
    font-style: italic;
    color: var(--brand-dark-red) !important;
    border-left: 3px solid var(--blush);
    padding-left: var(--space-md);
    margin: var(--space-md) 0 !important;
    font-weight: 400 !important;
    opacity: 0.85;
}

.about-stats {
    display: flex;
    gap: var(--space-lg);
    margin-top: var(--space-md);
    padding-top: var(--space-md);
    border-top: 1px solid var(--cream-dark);
}

.about-stat {
    text-align: center;
}

.about-stat-number {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--brand-dark-red);
    line-height: 1;
}

.about-stat-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--wood-brown);
    margin-top: 4px;
}

/* ==========================================
   PRODUCT SECTION
   ========================================== */
.product {
    padding: var(--space-2xl) 0;
    position: relative;
    background: var(--cream-dark);
}

.product::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('images/pattern-bg.png');
    background-size: 600px;
    opacity: 0.08;
    pointer-events: none;
}

.product .container {
    position: relative;
    z-index: 1;
}

.product-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto var(--space-xl);
}

.product-header p {
    font-size: 1.1rem;
    color: var(--pink-700);
    font-weight: 300;
}

.product-showcase {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: var(--space-xl);
    align-items: center;
}

.product-image-card {
    position: relative;
    border-radius: 32px;
    overflow: hidden;
    background: white;
    padding: var(--space-md);
    box-shadow: var(--shadow-lg);
}

.product-image-card img {
    width: 100%;
    border-radius: 20px;
    object-fit: cover;
    aspect-ratio: 3/4;
}

.product-details h3 {
    font-family: var(--font-display);
    font-size: 2.5rem;
    color: var(--pink-800);
    margin-bottom: var(--space-xs);
}

.product-details>p {
    font-size: 1.05rem;
    color: var(--pink-600);
    font-weight: 300;
    margin-bottom: var(--space-md);
    line-height: 1.8;
}

/* Features Grid */
.product-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-sm);
    margin-bottom: var(--space-md);
}

.product-feature {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: var(--space-sm);
    background: var(--warm-white);
    border-radius: 16px;
    transition: all 0.3s var(--ease-out);
    border: 1px solid var(--cream-dark);
}

.product-feature:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: var(--blush);
}

.product-feature-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--cream), var(--cream-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.product-feature h4 {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--pink-800);
    margin-bottom: 2px;
}

.product-feature p {
    font-size: 0.8rem;
    color: var(--pink-500);
    font-weight: 300;
    line-height: 1.5;
}

/* Nutrition Table */
.nutrition-card {
    background: white;
    border-radius: 20px;
    padding: var(--space-md);
    border: 1px solid var(--pink-100);
}

.nutrition-card h4 {
    font-family: var(--font-body);
    font-size: 1.1rem;
    color: var(--pink-800);
    margin-bottom: var(--space-sm);
    padding-bottom: var(--space-xs);
    border-bottom: 2px solid var(--pink-200);
}

.nutrition-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid var(--pink-100);
    font-size: 0.9rem;
}

.nutrition-row:last-child {
    border-bottom: none;
}

.nutrition-row span:first-child {
    font-weight: 400;
    color: var(--pink-700);
}

.nutrition-row span:last-child {
    font-weight: 600;
    color: var(--pink-800);
}

/* ==========================================
   VALUES SECTION
   ========================================== */
.values {
    padding: var(--space-2xl) 0;
    text-align: center;
}

.values-header {
    max-width: 600px;
    margin: 0 auto var(--space-xl);
}

.values-header p {
    font-size: 1.1rem;
    color: var(--pink-700);
    font-weight: 300;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
}

.value-card {
    padding: var(--space-lg) var(--space-md);
    background: var(--warm-white);
    border-radius: 24px;
    border: 1px solid var(--cream-dark);
    transition: all 0.4s var(--ease-out);
    position: relative;
    overflow: hidden;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--blush), var(--brand-dark-red));
    transform: scaleX(0);
    transition: transform 0.4s var(--ease-out);
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--blush);
}

.value-card:hover::before {
    transform: scaleX(1);
}

.value-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto var(--space-sm);
    border-radius: 20px;
    background: linear-gradient(135deg, var(--cream), var(--cream-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    transition: transform 0.3s var(--ease-spring);
}

.value-card:hover .value-icon {
    transform: scale(1.1) rotate(5deg);
}

.value-card h3 {
    font-family: var(--font-body);
    font-size: 1.3rem;
    color: var(--brand-dark-red);
    margin-bottom: var(--space-xs);
}

.value-card p {
    font-size: 0.95rem;
    color: var(--pink-800);
    font-weight: 300;
    line-height: 1.7;
}

/* ==========================================
   ORDER SECTION
   ========================================== */
.order {
    padding: var(--space-2xl) 0;
    background:
        linear-gradient(135deg, rgba(111, 27, 35, 0.92) 0%, rgba(74, 15, 24, 0.96) 100%),
        url('images/sparkly-bg.png');
    background-size: cover;
    background-position: center;
    color: white;
}

.order .container {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: var(--space-xl);
    align-items: start;
}

.order-intro>p {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.78);
    font-weight: 300;
    line-height: 1.9;
    max-width: 480px;
}

.order .section-label,
.order .section-title,
.order .section-title em {
    color: white;
}

.order-steps {
    display: grid;
    gap: var(--space-sm);
    margin-top: var(--space-md);
}

.order-step {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-sm);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 18px;
}

.order-step span {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: white;
    color: var(--brand-dark-red);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.order-step p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    font-weight: 500;
}

.order-card {
    background: var(--warm-white);
    border: 1px solid var(--pink-100);
    border-radius: 28px;
    box-shadow: var(--shadow-lg);
    padding: var(--space-md);
}

.order-form {
    display: grid;
    gap: var(--space-sm);
}

.order-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-sm);
}

.order-form label {
    display: grid;
    gap: 6px;
    color: var(--pink-800);
    font-size: 0.88rem;
    font-weight: 600;
}

.order-form input,
.order-form select,
.order-form textarea {
    width: 100%;
    border: 1px solid var(--cream-dark);
    border-radius: 14px;
    background: white;
    color: var(--pink-900);
    font: inherit;
    font-size: 0.95rem;
    padding: 12px 14px;
    outline: none;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.order-form textarea {
    resize: vertical;
    min-height: 86px;
}

.order-form input:focus,
.order-form select:focus,
.order-form textarea:focus {
    border-color: var(--brand-dark-red);
    box-shadow: 0 0 0 3px rgba(111, 27, 35, 0.1);
}

.order-remember {
    display: flex !important;
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 10px !important;
    font-weight: 400 !important;
}

.order-remember input {
    width: 18px;
    height: 18px;
    accent-color: var(--brand-dark-red);
}

.order-summary {
    display: flex;
    justify-content: space-between;
    gap: var(--space-sm);
    padding: var(--space-sm);
    background: var(--pink-50);
    border: 1px solid var(--pink-100);
    border-radius: 18px;
}

.order-summary span {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--wood-brown);
    margin-bottom: 2px;
}

.order-summary strong {
    color: var(--brand-dark-red);
    font-size: 1.1rem;
}

.order-summary p {
    color: var(--pink-700);
    font-size: 0.85rem;
    line-height: 1.5;
    max-width: 260px;
}

.order-submit {
    justify-content: center;
}

.order-status {
    min-height: 24px;
    color: var(--brand-dark-red);
    font-size: 0.9rem;
    font-weight: 500;
}

.order-status.error {
    color: #a21d2d;
}

.order-status.success {
    color: #2f6b45;
}

/* ==========================================
   CTA SECTION
   ========================================== */
.cta {
    padding: var(--space-xl) 0;
}

.cta-card {
    background: linear-gradient(135deg, var(--brand-dark-red) 0%, #4a0f18 100%);
    border-radius: 32px;
    padding: var(--space-xl) var(--space-lg);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    animation: ctaShimmer 10s linear infinite;
}

@keyframes ctaShimmer {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.cta-card>* {
    position: relative;
    z-index: 1;
}

.cta-card h2 {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: white;
    margin-bottom: var(--space-sm);
}

.cta-card p {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.85);
    max-width: 500px;
    margin: 0 auto var(--space-md);
    font-weight: 300;
}

.btn-white {
    background: white;
    color: var(--pink-700);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.btn-white:hover {
    background: var(--pink-50);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
}

/* ==========================================
   FOOTER
   ========================================== */
.footer {
    background: var(--pink-900);
    color: rgba(255, 255, 255, 0.7);
    padding: var(--space-xl) 0 var(--space-md);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: var(--space-lg);
    margin-bottom: var(--space-lg);
}

.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 300px;
}

.footer-brand .nav-logo-stacked {
    width: 100%;
    margin-bottom: var(--space-sm);
    align-items: center;
}

.footer-brand p {
    font-size: 0.9rem;
    line-height: 1.8;
    max-width: 100%;
    text-align: center;
}

.footer h4 {
    font-family: var(--font-body);
    color: white;
    font-size: 1.05rem;
    margin-bottom: var(--space-sm);
}

.footer-links a {
    display: block;
    padding: 4px 0;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--pink-300);
}

.footer-contact p {
    font-size: 0.9rem;
    margin-bottom: 4px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: var(--space-md);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
}

.footer-social {
    display: flex;
    gap: var(--space-sm);
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--pink-600);
    color: white;
    transform: translateY(-3px);
}

/* ==========================================
   RESPONSIVE
   ========================================== */
@media (max-width: 1024px) {
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content {
        padding-top: var(--space-xl);
    }

    .hero-tagline {
        margin: 0 auto var(--space-md);
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-visual {
        display: flex;
        justify-content: center;
        margin-top: var(--space-lg);
    }

    .about .container {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }

    .about-image {
        order: -1;
    }

    .product-showcase {
        grid-template-columns: 1fr;
    }

    .order .container {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-md);
    }
}

@media (max-width: 768px) {
    .hero {
        min-height: auto;
    }

    .hero .container {
        min-height: auto;
        gap: var(--space-md);
        padding-top: calc(var(--nav-height) + var(--space-md));
        padding-bottom: var(--space-lg);
    }

    .hero-content {
        padding: 0;
    }

    .hero-badge {
        font-size: 0.68rem;
        letter-spacing: 0.8px;
        padding: 7px 16px;
        margin-bottom: var(--space-sm);
    }

    .hero-title {
        margin-bottom: var(--space-xs);
    }

    .lycious-svg {
        height: clamp(64px, 24vw, 96px);
        margin: 0 auto;
    }

    .hero-subtitle {
        font-size: 1.15rem;
    }

    .hero-tagline {
        font-size: 0.98rem;
        line-height: 1.65;
    }

    .hero-visual {
        margin-top: 0;
    }

    .hero-image-wrapper {
        max-width: min(330px, 82vw);
        animation: none;
    }

    .hero-image-wrapper img,
    .hero-image-wrapper video {
        width: 100%;
        border-radius: 16px;
        box-shadow: 0 16px 36px rgba(61, 26, 19, 0.16);
    }

    .hero-scroll {
        display: none;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 360px;
        height: 100vh;
        background: rgba(255, 245, 247, 0.97);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        gap: var(--space-md);
        transition: right 0.4s var(--ease-out);
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
    }

    .nav-links.active {
        right: 0;
    }

    body.menu-open {
        overflow: hidden;
    }

    .nav-links a {
        font-size: 1.2rem;
    }

    .nav-hamburger {
        display: flex;
    }

    .values-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .product-features {
        grid-template-columns: 1fr;
    }

    .order-form-grid {
        grid-template-columns: 1fr;
    }

    .order-summary {
        flex-direction: column;
    }

    .about-stats {
        flex-direction: column;
        gap: var(--space-sm);
    }

    .about-image img {
        height: 350px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        gap: var(--space-sm);
        text-align: center;
    }

    .cta-card {
        padding: var(--space-lg) var(--space-md);
        border-radius: 24px;
    }

    .hero-actions {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        justify-content: center;
        min-height: 48px;
        padding: 13px 20px;
    }
}

@media (max-width: 480px) {
    :root {
        --space-md: 1.5rem;
        --space-lg: 3rem;
        --space-xl: 4rem;
        --space-2xl: 5rem;
    }

    .hero-title {
        font-size: 3.5rem;
    }

    .container {
        padding: 0 1.25rem;
    }

    .logo-svg--nav {
        height: 52px;
        max-width: 112px;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
    }
}
