/* ═══════════════════════════════════════════════════════════
   Cook'Art Brand Storefront — Premium CSS Design System v2
   Visual-first, carousel-driven, high-conversion design.
   ═══════════════════════════════════════════════════════════ */

:root {
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --font-display: 'Outfit', var(--font-sans);
    
    /* Luxury Red, White and Black Palette */
    --background: #ffffff;
    --bg-alt: #f8f9fb;
    --bg-dark: #0b0f19;
    --card-bg: #ffffff;
    --card-dark: #111827;
    
    --text-primary: #0f172a;
    --text-secondary: #475569;
    --text-muted: #94a3b8;
    --text-light: #f3f4f6;
    
    /* Vibrant Accent Colors */
    --accent: #e11d48;
    --accent-hover: #be123c;
    --accent-glow: rgba(225, 29, 72, 0.08);
    --accent-gradient: linear-gradient(135deg, #e11d48 0%, #be123c 100%);
    --dark-gradient: linear-gradient(180deg, #111827 0%, #030712 100%);
    
    --border-color: rgba(15, 23, 42, 0.06);
    --border-glow: rgba(225, 29, 72, 0.15);
    
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    
    --transition-fast: 0.2s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-smooth: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    
    --nav-height: 80px;
    --nav-height-shrunk: 64px;
    
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.08);
    --shadow-xl: 0 30px 80px rgba(0, 0, 0, 0.12);
}

/* ═══════════════════════════════════════════════════════════
   SITE LOADER — Premium cookart reveal
   ═══════════════════════════════════════════════════════════ */
#site-loader {
    position: fixed;
    inset: 0;
    background: #07090f;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    animation: ldr-safety 6s forwards;
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
                transform  0.8s cubic-bezier(0.16, 1, 0.3, 1),
                visibility 0.8s;
}

/* Subtle radial glow behind the logo */
#site-loader::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 50% at 50% 50%,
        rgba(225, 29, 72, 0.07) 0%,
        transparent 70%);
    pointer-events: none;
}

@keyframes ldr-safety {
    0%, 85% { opacity: 1; visibility: visible; transform: translateY(0); }
    100%     { opacity: 0; visibility: hidden;  transform: translateY(-18px); }
}

#site-loader.ldr-out {
    opacity: 0;
    visibility: hidden;
    transform: translateY(-18px);
    animation: none;
}

/* ── Loader inner stack ── */
.loader-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    user-select: none;
}

/* ── Wordmark row ── */
.loader-wordmark {
    position: relative;
    display: flex;
    align-items: baseline;
    padding-bottom: 18px;
}

.ldr-cook {
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: clamp(3.4rem, 11vw, 6rem);
    font-weight: 900;
    letter-spacing: -0.04em;
    line-height: 1;
    color: #e11d48;
    display: inline-block;
}

.ldr-art {
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: clamp(3.4rem, 11vw, 6rem);
    font-weight: 900;
    letter-spacing: -0.04em;
    line-height: 1;
    color: #ffffff;
    display: inline-block;
}

.ldr-cursor {
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: clamp(3.4rem, 11vw, 6rem);
    color: #e11d48;
    font-weight: 200;
    line-height: 1;
    margin-left: 4px;
    display: inline-block;
    animation: ldr-blink 0.6s step-end infinite;
    transition: opacity 0.15s;
    align-self: baseline;
}

.ldr-cursor.hidden {
    opacity: 0;
    animation: none;
}

@keyframes ldr-blink {
    from, to { opacity: 1; }
    50%       { opacity: 0; }
}

/* ── Red underline that draws itself ── */
.loader-line {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    height: 1.5px;
    width: 0;
    background: linear-gradient(90deg, transparent, #e11d48 30%, #e11d48 70%, transparent);
    border-radius: 1px;
    transition: width 0.55s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 0 12px rgba(225, 29, 72, 0.5);
}

.loader-line.show {
    width: 100%;
}

/* ── Script signature ── */
.loader-signature {
    font-family: 'Great Vibes', 'Dancing Script', cursive;
    font-size: clamp(1.8rem, 5vw, 2.6rem);
    color: rgba(255, 255, 255, 0.82);
    letter-spacing: 0.02em;
    margin-top: 20px;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
    text-shadow: 0 2px 20px rgba(255, 255, 255, 0.08);
}

.loader-signature.show {
    opacity: 1;
    transform: translateY(0);
}

/* ── Micro tagline ── */
.loader-tagline {
    font-family: 'Inter', -apple-system, sans-serif;
    font-size: clamp(0.55rem, 1.5vw, 0.68rem);
    font-weight: 400;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.25);
    margin-top: 14px;
    opacity: 0;
    transform: translateY(6px);
    transition: opacity 0.6s ease,
                transform 0.6s ease;
}

.loader-tagline.show {
    opacity: 1;
    transform: translateY(0);
}

/* ─── Base Reset ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; color-scheme: light; }

body {
    background-color: var(--background);
    color: var(--text-primary);
    font-family: var(--font-sans);
    line-height: 1.6;
    overflow-x: hidden;
    padding-top: var(--nav-height);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a { color: inherit; text-decoration: none; transition: var(--transition-fast); }
button, input, select, textarea { background: none; border: none; font: inherit; color: inherit; }

/* ─── Typography ─── */
h1, h2, h3, h4 {
    font-family: var(--font-display);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.03em;
}

p { font-size: 0.95rem; }

/* ─── Layout ─── */
.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 24px;
}

.section-header {
    max-width: 680px;
    margin: 0 auto 56px auto;
    text-align: center;
}

.section-header h2 {
    font-size: clamp(2rem, 4.5vw, 2.8rem);
    margin-bottom: 16px;
    color: var(--text-primary);
    font-weight: 900;
}

.section-header p {
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.65;
}

/* Section Label Pill */
.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--accent);
    background: rgba(225, 29, 72, 0.06);
    border: 1px solid rgba(225, 29, 72, 0.12);
    padding: 6px 16px;
    border-radius: 20px;
    margin-bottom: 20px;
}

.section-label i {
    width: 14px;
    height: 14px;
}

.section-label-dark {
    color: rgba(255, 255, 255, 0.7);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
}

/* Section CTA Row */
.section-cta {
    text-align: center;
    margin-top: 48px;
}

/* Gradient text */
.gradient-text {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ─── Scroll Reveal Animation ─── */
[data-reveal] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-reveal].revealed {
    opacity: 1;
    transform: translateY(0);
}

/* ─── Buttons ─── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-weight: 700;
    border-radius: 40px;
    cursor: pointer;
    transition: var(--transition-smooth);
    white-space: nowrap;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--accent-gradient);
    color: #ffffff;
    box-shadow: 0 4px 20px rgba(225, 29, 72, 0.25);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 35px rgba(225, 29, 72, 0.4);
}

.btn-primary:active { transform: translateY(0); }

.btn-secondary {
    background: rgba(15, 23, 42, 0.03);
    border: 1.5px solid var(--border-color);
    color: var(--text-primary);
}

.btn-secondary:hover {
    background: rgba(15, 23, 42, 0.06);
    border-color: rgba(15, 23, 42, 0.15);
    transform: translateY(-2px);
}

.btn-block { display: flex; width: 100%; }
.btn-sm { padding: 10px 22px; font-size: 0.88rem; min-height: 40px; }
.btn-lg { padding: 16px 36px; font-size: 1.02rem; min-height: 52px; }
.btn-on-dark { box-shadow: 0 4px 25px rgba(225, 29, 72, 0.35); }

/* Prevent icon SVGs from eating clicks */
.btn svg, .btn i { pointer-events: none; flex-shrink: 0; }

/* ═══════════════════════════════════════════════════════════
   HEADER / NAVBAR
   ═══════════════════════════════════════════════════════════ */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--nav-height);
    background: rgba(255, 255, 255, 0.82);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    transition: var(--transition-smooth);
}

.main-header.scrolled {
    height: var(--nav-height-shrunk);
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.04);
}

.header-container {
    max-width: 1200px;
    height: 100%;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

/* Brand Logo */
.logo {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 950;
    letter-spacing: -0.04em;
    display: flex;
    align-items: center;
}

.logo-cook { color: var(--accent); }
.logo-art { color: #0f172a; }

/* Premium thin icons */
.lucide {
    stroke-width: 1.5 !important;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 28px;
}

.nav-item {
    font-size: 0.88rem;
    color: var(--text-secondary);
    font-weight: 600;
    position: relative;
}

.nav-item::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    border-radius: 1px;
    transition: width 0.3s ease;
}

.nav-item:hover { color: var(--accent); }
.nav-item:hover::after { width: 100%; }

/* Smart Mega Menu Dropdown */
.has-dropdown {
    position: relative;
}

.dropdown-trigger {
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    font-size: 0.88rem;
    color: var(--text-secondary);
    font-weight: 600;
}

.dropdown-trigger:hover {
    color: var(--accent);
}

.dropdown-caret {
    width: 14px;
    height: 14px;
    transition: transform var(--transition-fast);
}

.has-dropdown:hover .dropdown-caret {
    transform: rotate(180deg);
}

.mega-menu {
    position: absolute;
    top: calc(100% + 20px);
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: #ffffff;
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    width: 700px;
    padding: 30px;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-smooth);
    z-index: 100;
    pointer-events: none;
    border: 1px solid rgba(0,0,0,0.05);
}

.has-dropdown:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
    pointer-events: auto;
}

/* Caret pointing up */
.mega-menu::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid #ffffff;
    filter: drop-shadow(0 -2px 2px rgba(0,0,0,0.02));
}

.mega-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border-color);
}

.mega-title {
    display: block;
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--text-muted);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.mega-subtitle {
    display: block;
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--text-primary);
}

.mega-see-all {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 4px;
    transition: color var(--transition-fast);
}

.mega-see-all svg {
    width: 16px;
    height: 16px;
}

.mega-see-all:hover {
    color: var(--accent);
}

.mega-menu-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.mega-product-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px 12px;
    background: #ffffff;
    border-radius: var(--radius-md);
    border: 1.5px solid transparent;
    transition: var(--transition-smooth);
}

.mega-product-card:hover {
    background: #f8fafc;
    border-color: var(--accent);
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.08);
    transform: translateY(-2px);
}

.mega-img-container {
    width: 100px;
    height: 100px;
    margin-bottom: 16px;
    background: var(--bg-alt);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
}

.mega-img-container img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.mega-product-card h4 {
    font-size: 0.95rem;
    font-weight: 750;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.mega-product-card p {
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.mega-price {
    font-size: 0.8rem;
    font-weight: 750;
    color: var(--accent);
    background: rgba(220, 38, 38, 0.08);
    padding: 4px 12px;
    border-radius: 20px;
}

/* Smart Search Bar */
.search-bar-wrapper {
    position: relative;
    width: 100%;
    max-width: 220px;
}

.search-input-container {
    display: flex;
    align-items: center;
    background: var(--bg-alt);
    border: 1.5px solid transparent;
    border-radius: 24px;
    padding: 8px 16px;
    width: 100%;
    transition: var(--transition-fast);
}

.search-input-container:focus-within {
    background: #ffffff;
    border-color: var(--accent);
    box-shadow: 0 0 0 4px rgba(225, 29, 72, 0.06);
}

.search-input-container input {
    width: 100%;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-primary);
}

.search-input-container input::placeholder { color: var(--text-muted); }

.search-icon {
    width: 16px;
    height: 16px;
    color: var(--text-muted);
    margin-left: 6px;
    flex-shrink: 0;
}

/* Search suggestions dropdown */
.search-suggestions {
    position: absolute;
    top: 48px;
    right: 0;
    width: 320px;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    z-index: 1010;
    padding: 16px;
    display: none;
    transform: translateY(10px);
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.search-suggestions.show {
    display: block;
    transform: translateY(0);
    opacity: 1;
}

.suggestions-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.group-title {
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--text-muted);
    letter-spacing: 0.05em;
    margin-bottom: 4px;
}

.suggestion-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-primary);
    padding: 10px 12px;
    border-radius: 10px;
    transition: var(--transition-fast);
}

.suggestion-item:hover {
    background: var(--bg-alt);
    color: var(--accent);
}

.item-color { width: 8px; height: 8px; border-radius: 50%; }
.item-color.color-black { background-color: #1e293b; }
.item-color.color-brown { background-color: #7c2d12; }
.item-color.color-grey { background-color: #64748b; }

/* ═══════════════════════════════════════════════════════════
   SECTION 1: HERO
   ═══════════════════════════════════════════════════════════ */
.hero-section {
    position: relative;
    padding: 80px 24px 100px;
    overflow: hidden;
}

.hero-bg-gradient {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 75% 15%, rgba(225, 29, 72, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 20% 80%, rgba(225, 29, 72, 0.03) 0%, transparent 40%);
    z-index: 0;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.hero-badge {
    background: rgba(225, 29, 72, 0.06);
    color: var(--accent);
    border: 1px solid rgba(225, 29, 72, 0.12);
    font-size: 0.82rem;
    font-weight: 750;
    padding: 8px 18px;
    border-radius: 24px;
    letter-spacing: 0.01em;
    margin-bottom: 28px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.hero-badge i { width: 14px; height: 14px; }

.hero-title {
    font-size: clamp(2.8rem, 6vw, 4.2rem);
    line-height: 1.08;
    margin-bottom: 24px;
    letter-spacing: -0.04em;
    color: var(--text-primary);
}

.hero-description {
    color: var(--text-secondary);
    font-size: 1.12rem;
    line-height: 1.7;
    margin-bottom: 24px;
    max-width: 560px;
}

.target-audiences-row {
    display: flex;
    gap: 10px;
    margin-bottom: 28px;
    flex-wrap: wrap;
}

.audience-pill {
    background: #ffffff;
    border: 1.5px solid var(--border-color);
    border-radius: 24px;
    padding: 8px 18px;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-fast);
}

.audience-pill:hover {
    border-color: var(--accent);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.audience-pill i { width: 14px; height: 14px; color: var(--accent); }

.hero-price-tag {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 32px;
    background: #ffffff;
    border: 1.5px solid var(--border-color);
    padding: 14px 28px;
    border-radius: 40px;
    box-shadow: var(--shadow-sm);
}

.price-old {
    text-decoration: line-through;
    color: var(--text-muted);
    font-size: 1rem;
    font-weight: 500;
}

.price-current {
    font-family: var(--font-display);
    font-size: 1.85rem;
    font-weight: 900;
    color: var(--accent);
}

.price-promo {
    background: var(--accent);
    color: white;
    font-size: 0.72rem;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: 10px;
}

.hero-ctas {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.hero-social-proof {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text-secondary);
}

.hero-social-proof .stars {
    display: flex;
    gap: 2px;
    color: #f59e0b;
}

.hero-social-proof .stars i {
    width: 14px;
    height: 14px;
    fill: #f59e0b;
}

.hero-image-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-bg-glow {
    position: absolute;
    width: 90%;
    height: 90%;
    background: radial-gradient(circle, rgba(225, 29, 72, 0.1) 0%, transparent 70%);
    filter: blur(50px);
    z-index: -1;
}

.hero-main-image {
    width: 100%;
    max-width: 480px;
    height: auto;
    object-fit: contain;
    border-radius: var(--radius-lg);
    filter: drop-shadow(0 25px 50px rgba(0,0,0,0.1));
    animation: hero-float 4s ease-in-out infinite;
}

@keyframes hero-float {
    0%, 100% { transform: translateY(0px) rotate(1deg); }
    50% { transform: translateY(-12px) rotate(-0.5deg); }
}

/* ─── Trust Bar ─── */
.trust-bar {
    background: var(--bg-alt);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    padding: 32px 24px;
}

.trust-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.trust-feature {
    display: flex;
    align-items: center;
    gap: 16px;
}

.trust-feature i {
    width: 44px;
    height: 44px;
    color: var(--accent);
    background: rgba(225, 29, 72, 0.05);
    border: 1px solid rgba(225, 29, 72, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.trust-feature h4 {
    font-size: 0.95rem;
    font-weight: 750;
    margin-bottom: 2px;
}

.trust-feature p {
    color: var(--text-secondary);
    font-size: 0.82rem;
}

/* ═══════════════════════════════════════════════════════════
   SECTION 2: ENGAGEMENT — Visual Carousel
   ═══════════════════════════════════════════════════════════ */
.engagement-section {
    background: #ffffff;
}

.engagement-carousel {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-xl);
    background: var(--bg-alt);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-lg);
}

.carousel-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.carousel-slide {
    min-width: 100%;
    position: relative;
    overflow: hidden;
}

.slide-image-wrapper {
    width: 100%;
    aspect-ratio: 21 / 9;
    overflow: hidden;
    position: relative;
}

.slide-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.carousel-slide:hover .slide-image-wrapper img {
    transform: scale(1.04);
}

.slide-gradient-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 30%, rgba(0, 0, 0, 0.65) 100%);
    z-index: 1;
}

.slide-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px 48px;
    z-index: 2;
    color: white;
}

.slide-icon-badge {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.slide-icon-badge i {
    width: 22px;
    height: 22px;
}

.slide-content h3 {
    font-size: 1.8rem;
    font-weight: 900;
    margin-bottom: 8px;
    letter-spacing: -0.02em;
}

.slide-content p {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
    max-width: 480px;
}

/* Carousel Controls */
.carousel-controls {
    position: absolute;
    bottom: 24px;
    right: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 10;
}

.carousel-btn {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-fast);
}

.carousel-btn:hover {
    background: white;
    color: var(--accent);
    transform: scale(1.1);
}

.carousel-btn i {
    width: 18px;
    height: 18px;
}

.carousel-dots {
    display: flex;
    gap: 6px;
}

.carousel-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: var(--transition-fast);
}

.carousel-dot.active {
    width: 24px;
    border-radius: 4px;
    background: white;
}

/* ═══════════════════════════════════════════════════════════
   SECTION 3: PRODUCT LOOP (Marquee + Typing Title)
   ═══════════════════════════════════════════════════════════ */
.loop-section {
    background: var(--bg-alt);
    padding: 80px 0;
}

.loop-section .section-header {
    padding: 0 24px;
}

.typing-title-container {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: clamp(2rem, 4.5vw, 2.8rem);
    font-weight: 900;
    color: var(--text-primary);
    white-space: nowrap;
}

.typing-word {
    color: var(--accent);
    margin-left: 10px;
    font-weight: 950;
}

.typing-cursor {
    margin-left: 4px;
    font-weight: 200;
    color: var(--accent);
    animation: blink-cursor 0.8s step-end infinite;
}

@keyframes blink-cursor {
    from, to { color: transparent; }
    50% { color: var(--accent); }
}

.marquee-wrapper {
    overflow: hidden;
    width: 100%;
    position: relative;
    padding: 30px 0;
    mask-image: linear-gradient(to right, transparent, white 10%, white 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, white 10%, white 90%, transparent);
}

.marquee-track {
    display: flex;
    width: max-content;
    animation: marquee 18s linear infinite;
    gap: 24px;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.marquee-card {
    width: 300px;
    background: #ffffff;
    border: 1.5px solid var(--border-color);
    border-radius: var(--radius-lg);
    overflow: hidden;
    flex-shrink: 0;
    cursor: pointer;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-sm);
}

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

.marquee-image-container {
    width: 100%;
    aspect-ratio: 1/1;
    overflow: hidden;
    background: var(--bg-alt);
}

.marquee-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.marquee-card:hover .marquee-image-container img {
    transform: scale(1.06);
}

.marquee-card-body {
    padding: 20px 24px 24px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.marquee-card h3 {
    font-size: 1.1rem;
    font-weight: 750;
    color: var(--text-primary);
}

.marquee-price {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 850;
    color: var(--accent);
}

.marquee-cta {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--text-secondary);
    margin-top: 4px;
    transition: var(--transition-fast);
}

.marquee-card:hover .marquee-cta {
    color: var(--accent);
}

/* ═══════════════════════════════════════════════════════════
   SECTION 4: BUNDLES
   ═══════════════════════════════════════════════════════════ */
.bundles-section {
    background: #ffffff;
}

.bundles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.bundle-card {
    background: #ffffff;
    border: 1.5px solid var(--border-color);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    position: relative;
    box-shadow: var(--shadow-sm);
}

.bundle-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--accent);
}

.bundle-card.popular-bundle {
    border-color: var(--accent);
    box-shadow: 0 10px 40px rgba(225, 29, 72, 0.08);
}

.bundle-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--accent-gradient);
    color: white;
    font-size: 0.72rem;
    font-weight: 800;
    padding: 6px 14px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 6px;
    z-index: 10;
}

.bundle-badge i { width: 12px; height: 12px; }

.bundle-image {
    width: 100%;
    aspect-ratio: 1/1;
    overflow: hidden;
    background: var(--bg-alt);
}

.bundle-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.bundle-card:hover .bundle-image img {
    transform: scale(1.04);
}

.bundle-content {
    padding: 28px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.bundle-content h3 {
    font-size: 1.25rem;
    margin-bottom: 6px;
    color: var(--text-primary);
}

.bundle-spec {
    color: var(--text-secondary);
    font-size: 0.88rem;
    margin-bottom: 14px;
}

.bundle-tech-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 20px;
}

.bundle-tech-badges span {
    font-size: 0.72rem;
    font-weight: 700;
    background: var(--bg-alt);
    border: 1px solid var(--border-color);
    padding: 4px 10px;
    border-radius: 6px;
    color: var(--text-secondary);
}

.bundle-price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    border-top: 1px dashed rgba(15, 23, 42, 0.08);
    padding-top: 18px;
}

.bundle-prices {
    display: flex;
    flex-direction: column;
}

.price-original {
    text-decoration: line-through;
    color: var(--text-muted);
    font-size: 0.85rem;
    font-weight: 500;
}

.price-discount {
    font-family: var(--font-display);
    font-size: 1.45rem;
    font-weight: 900;
    color: var(--accent);
}

.livraison-gratuite-badge {
    color: #10b981;
    background: rgba(16, 185, 129, 0.08);
    font-size: 0.72rem;
    font-weight: 800;
    padding: 6px 12px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 4px;
}

/* ═══════════════════════════════════════════════════════════
   SECTION 5: REVIEWS
   ═══════════════════════════════════════════════════════════ */
.reviews-section {
    background: var(--bg-alt);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.review-card {
    background: #ffffff;
    border: 1.5px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 32px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-sm);
}

.review-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 18px;
}

.review-user-info h4 {
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--text-primary);
}

.user-role {
    font-size: 0.76rem;
    font-weight: 600;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 3px;
}

.user-role i { width: 12px; height: 12px; color: var(--accent); }

.review-rating { display: flex; gap: 2px; color: #f59e0b; }
.review-rating i { width: 14px; height: 14px; }
.review-rating i.fill { fill: #f59e0b; }

.review-text {
    font-size: 0.92rem;
    color: var(--text-secondary);
    line-height: 1.65;
    font-style: italic;
    margin-bottom: 20px;
    flex-grow: 1;
}

.verified-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.72rem;
    font-weight: 800;
    color: #10b981;
    background: rgba(16, 185, 129, 0.08);
    padding: 5px 12px;
    border-radius: 8px;
    align-self: flex-start;
}

.verified-badge i { width: 12px; height: 12px; }

/* ═══════════════════════════════════════════════════════════
   SECTION 6: VIDEO WALL
   ═══════════════════════════════════════════════════════════ */
.video-loop-section {
    background: #ffffff;
}

.video-wall-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.video-card-wrapper {
    background: #ffffff;
    border: 1.5px solid var(--border-color);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
}

.video-card-wrapper:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent);
}

.video-container {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    background: #000;
    overflow: hidden;
}

.video-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.85;
    transition: var(--transition-smooth);
}

.video-card-wrapper:hover video {
    opacity: 1;
    transform: scale(1.03);
}

.video-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(0, 0, 0, 0.65) 100%);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 16px;
    color: white;
    z-index: 5;
}

.btn-play-pause {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-fast);
    align-self: flex-start;
}

.btn-play-pause:hover {
    background: white;
    color: var(--accent);
    transform: scale(1.1);
}

.btn-play-pause i { width: 18px; height: 18px; fill: currentColor; }

.video-overlay span {
    font-size: 0.92rem;
    font-weight: 750;
}

/* ═══════════════════════════════════════════════════════════
   SECTION 7: FAQ ACCORDION (Dark)
   ═══════════════════════════════════════════════════════════ */
.faq-accordion-section {
    background: var(--bg-dark);
    color: white;
}

.faq-accordion-section .section-header h2 { color: white; }
.faq-accordion-section .section-header p { color: var(--text-muted); }

.accordion-container {
    max-width: 760px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.accordion-item {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition-smooth);
}

.accordion-item:hover {
    border-color: rgba(225, 29, 72, 0.2);
}

.accordion-trigger {
    width: 100%;
    padding: 22px 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    text-align: left;
    font-size: 1.02rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.9);
    transition: var(--transition-fast);
}

.accordion-trigger:hover { color: var(--accent); }

.accordion-arrow {
    width: 18px;
    height: 18px;
    color: var(--text-muted);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    flex-shrink: 0;
}

.accordion-trigger:hover .accordion-arrow { color: var(--accent); }

.accordion-item.active { border-color: var(--accent); background: rgba(225, 29, 72, 0.04); }
.accordion-item.active .accordion-arrow { transform: rotate(180deg); color: var(--accent); }

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.accordion-content-inner {
    padding: 0 28px 22px 28px;
    border-top: 1px dashed rgba(255, 255, 255, 0.06);
}

.accordion-content-inner p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.7;
    padding-top: 14px;
}

/* ─── Social Wall ─── */
.social-wall-section { background: var(--bg-alt); }

.social-channels {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.channel-card {
    background: #ffffff;
    border: 1.5px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 32px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-sm);
}

.channel-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent);
}

.channel-card i {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.channel-card h4 {
    font-weight: 750;
    color: var(--text-primary);
}

.channel-card span {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

/* ═══════════════════════════════════════════════════════════
   FOOTER (Screenshot Layout)
   ═══════════════════════════════════════════════════════════ */
.main-footer {
    background: #0f172a;
    padding: 60px 0 30px;
    position: relative;
    color: white;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.footer-top-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
}

.footer-brand {
    max-width: 250px;
}

.footer-brand .logo {
    font-size: 1.8rem;
    color: white;
    margin-bottom: 15px;
    display: inline-block;
}
.footer-brand .logo-art { color: white; }

.footer-brand p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    line-height: 1.5;
}

.footer-links-grid {
    display: flex;
    gap: 60px;
    flex: 1;
    justify-content: center;
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-col h4, .footer-social-col h4 {
    color: white;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.footer-col a {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
    transition: var(--transition-fast);
}

.footer-col a:hover {
    color: white;
}

.footer-social-col {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.social-icons {
    display: flex;
    gap: 12px;
}

.social-icons a {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: var(--transition-fast);
}

.social-icons a svg {
    width: 18px;
    height: 18px;
}

.social-icons a:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.3);
}

/* Pill Navigation */
.footer-pill-nav-container {
    display: flex;
    justify-content: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 40px;
}

.footer-pill-nav {
    display: flex;
    align-items: center;
    gap: 24px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 40px;
    padding: 8px 8px 8px 24px;
}

.footer-pill-nav a {
    color: white;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: var(--transition-fast);
}

.footer-pill-nav a:hover {
    color: rgba(255, 255, 255, 0.7);
}

.footer-pill-nav .btn-top {
    background: #60a5fa;
    color: #0f172a;
    padding: 8px 16px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 6px;
}
.footer-pill-nav .btn-top:hover {
    background: #93c5fd;
    color: #0f172a;
}
.footer-pill-nav .btn-top svg {
    width: 14px;
    height: 14px;
    stroke-width: 2.5;
}

/* Footer Bottom (Copyright) */
.footer-bottom {
    display: flex;
    justify-content: center;
    padding-top: 20px;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.35);
}
.made-with {
    margin-left: 10px;
    color: rgba(255, 255, 255, 0.5);
}
.heart-icon-small {
    color: var(--accent);
    width: 12px;
    height: 12px;
    fill: var(--accent);
    display: inline-block;
    vertical-align: middle;
}

/* ═══════════════════════════════════════════════════════════
   CHECKOUT PAGE STYLES
   ═══════════════════════════════════════════════════════════ */

/* Main page wrapper — gives breathing room below the fixed nav */
.checkout-main {
    padding: 48px 24px 80px;
}

@media (max-width: 1024px) {
    .checkout-main { padding: 36px 24px 80px; }
}

.checkout-landing-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 50px;
    align-items: start;
}

.product-info-panel-premium { background: transparent; padding: 0; }

.product-stack-gallery {
    margin-bottom: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stack-container {
    position: relative;
    width: 100%;
    max-width: 440px;
    height: 290px;
    margin-bottom: 24px;
}

.stack-card {
    position: absolute;
    width: 70%;
    aspect-ratio: 1/1;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: white;
    border: 1px solid var(--border-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.stack-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.stack-card.card-center {
    left: 15%;
    z-index: 3;
    transform: scale(1);
    opacity: 1;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.08);
}

.stack-card.card-left {
    left: -5%;
    z-index: 1;
    transform: scale(0.8);
    opacity: 0.6;
    filter: blur(1px);
}

.stack-card.card-right {
    left: 35%;
    z-index: 1;
    transform: scale(0.8);
    opacity: 0.6;
    filter: blur(1px);
}

.stack-indicators {
    display: flex;
    gap: 8px;
    margin-top: 10px;
}

.stack-indicators .dot {
    width: 20px;
    height: 6px;
    border-radius: 3px;
    background: var(--text-muted);
    opacity: 0.5;
    cursor: pointer;
    transition: var(--transition-fast);
}

.stack-indicators .dot.active {
    width: 32px;
    background: var(--accent);
    opacity: 1;
}

.premium-trust-row {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 24px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin-bottom: 24px;
    box-shadow: var(--shadow-sm);
}

.trust-metric {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.trust-metric strong {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 850;
    color: var(--text-primary);
}

.trust-metric span {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin-top: 3px;
}

.trust-divider {
    width: 1px;
    height: 35px;
    background-color: var(--border-color);
}

.premium-alert-banner {
    background: rgba(225, 29, 72, 0.04);
    border: 1px solid rgba(225, 29, 72, 0.1);
    border-radius: var(--radius-md);
    padding: 18px 24px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 40px;
}

.premium-alert-banner .heart-icon {
    width: 20px;
    height: 20px;
    color: var(--accent);
    fill: var(--accent);
    flex-shrink: 0;
}

.premium-alert-banner p {
    font-size: 0.85rem;
    font-weight: 600;
    line-height: 1.5;
    color: var(--accent);
}

.tech-specs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.tech-card { display: flex; gap: 16px; }

.tech-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(225, 29, 72, 0.05);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.tech-icon i { width: 18px; height: 18px; }

.tech-card h4 {
    font-size: 0.95rem;
    font-weight: 750;
    margin-bottom: 4px;
}

.tech-card p {
    color: var(--text-secondary);
    font-size: 0.85rem;
    line-height: 1.5;
}

/* Back button in checkout header */
.btn-back {
    font-size: 0.88rem;
    padding: 8px 18px;
    min-height: 36px;
}

@media (max-width: 480px) {
    .back-label { display: none; }
}

/* Product details section */
.product-details-content {
    margin-bottom: 32px;
}

.product-details-content h2 {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 24px;
    line-height: 1.3;
}

.checkout-card-right {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.packages-selector-container {
    background: #ffffff;
    border: 1.5px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 30px;
    box-shadow: var(--shadow-md);
}

.selector-title {
    font-size: 1.25rem;
    font-weight: 850;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.packages-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.package-option-card {
    border: 2px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 24px;
    display: flex;
    align-items: center;
    cursor: pointer;
    transition: var(--transition-smooth);
    position: relative;
    background: #ffffff;
}

.package-option-card:hover { border-color: rgba(15, 23, 42, 0.15); }

.package-option-card.active {
    background: var(--bg-dark);
    border-color: var(--bg-dark);
    color: white;
    box-shadow: 0 10px 25px rgba(11, 15, 25, 0.15);
}

.package-badge-popular {
    position: absolute;
    top: -12px;
    left: 24px;
    background: var(--accent-gradient);
    color: white;
    font-size: 0.65rem;
    font-weight: 900;
    padding: 4px 12px;
    border-radius: 20px;
    z-index: 10;
}

.package-radio-col { width: 32px; flex-shrink: 0; }

.radio-outer {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    border: 2px solid var(--text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

.package-option-card.active .radio-outer { border-color: var(--accent); }

.radio-inner {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--accent);
    transform: scale(0);
    transition: var(--transition-fast);
}

.package-option-card.active .radio-inner { transform: scale(1); }

.package-details-col {
    flex-grow: 1;
    padding: 0 16px 0 8px;
}

.package-details-col h4 { font-size: 1.15rem; font-weight: 750; margin-bottom: 2px; }
.package-details-col p { font-size: 0.85rem; color: var(--text-secondary); }
.package-option-card.active .package-details-col p { color: var(--text-muted); }

.package-price-col {
    text-align: right;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.price-old-line {
    text-decoration: line-through;
    color: var(--text-muted);
    font-size: 0.82rem;
    font-weight: 500;
}

.price-active-tag {
    font-family: var(--font-display);
    font-size: 1.45rem;
    font-weight: 900;
    color: var(--accent);
    line-height: 1.1;
    margin-bottom: 2px;
}

.package-option-card.active .price-active-tag { color: white; }

.save-tag {
    background: rgba(225, 29, 72, 0.08);
    color: var(--accent);
    font-size: 0.65rem;
    font-weight: 850;
    padding: 3px 8px;
    border-radius: 6px;
}

.package-option-card.active .save-tag { background: var(--accent); color: white; }

.premium-form-panel {
    background: #ffffff;
    border: 1.5px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-md);
}

.form-group-styled { margin-bottom: 16px; }

.input-container-styled { position: relative; width: 100%; }

.input-container-styled input,
.input-container-styled select,
.input-container-styled textarea {
    width: 100%;
    padding: 16px 48px 16px 20px;
    border: 1.5px solid var(--border-color);
    border-radius: var(--radius-md);
    background: #ffffff;
    color: var(--text-primary);
    font-size: 0.95rem;
    font-weight: 600;
    transition: var(--transition-fast);
    text-align: right;
    direction: rtl;
}

.input-container-styled select { text-align-last: right; appearance: none; }

.input-container-styled input:focus,
.input-container-styled select:focus,
.input-container-styled textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 4px rgba(225, 29, 72, 0.06);
}

.input-icon-right {
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    color: var(--text-secondary);
    pointer-events: none;
}

.textarea-icon { top: 24px; transform: none; }

.upsell-card-container {
    margin: 24px 0;
    background: rgba(16, 185, 129, 0.02);
    border: 2px dashed #10b981;
    border-radius: var(--radius-md);
    padding: 18px 20px;
    transition: var(--transition-fast);
}

.upsell-card-container:hover { background: rgba(16, 185, 129, 0.05); }

.upsell-label-card {
    display: flex;
    align-items: center;
    cursor: pointer;
    width: 100%;
}

.upsell-checkbox-wrapper {
    margin-right: 14px;
    position: relative;
    display: flex;
    align-items: center;
}

.upsell-checkbox-wrapper input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.custom-checkbox {
    display: inline-block;
    width: 22px;
    height: 22px;
    background-color: #ffffff;
    border: 2px solid var(--text-muted);
    border-radius: 6px;
    position: relative;
    transition: var(--transition-fast);
}

.upsell-checkbox-wrapper input:checked ~ .custom-checkbox {
    background-color: #10b981;
    border-color: #10b981;
}

.custom-checkbox::after {
    content: "";
    position: absolute;
    display: none;
    left: 7px;
    top: 3px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.upsell-checkbox-wrapper input:checked ~ .custom-checkbox::after { display: block; }

.upsell-img-wrapper {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(16, 185, 129, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 14px;
    flex-shrink: 0;
}

.upsell-icon-tool { width: 20px; height: 20px; color: #10b981; }

.upsell-text-wrapper { flex-grow: 1; }
.upsell-text-wrapper strong { font-size: 0.95rem; font-weight: 750; display: block; color: var(--text-primary); }
.upsell-text-wrapper p { font-size: 0.8rem; color: var(--text-secondary); margin-top: 2px; }

.premium-total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 20px 0 24px;
    border-top: 1px solid var(--border-color);
    padding-top: 20px;
}

.total-label { font-size: 1.15rem; font-weight: 800; color: var(--text-primary); }

.total-price {
    font-family: var(--font-display);
    font-size: 1.95rem;
    font-weight: 950;
    color: var(--text-primary);
}

.btn-order-submit {
    border-radius: var(--radius-md) !important;
    background: var(--bg-dark);
    color: white;
    font-size: 1.15rem;
    padding: 18px 30px;
    box-shadow: 0 10px 30px rgba(11, 15, 25, 0.15);
}

.btn-order-submit:hover {
    transform: translateY(-2px);
    background: #000000;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.25);
}

/* ─── Order Success Panel ─── */
.order-success-premium {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 48px 32px;
    gap: 16px;
}

.success-icon-wrapper {
    position: relative;
    width: 80px;
    height: 80px;
    margin-bottom: 8px;
}

.icon-sparkles {
    width: 80px;
    height: 80px;
    color: #f59e0b;
    opacity: 0.3;
}

.success-check {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--accent-gradient);
    box-shadow: 0 10px 30px rgba(225, 29, 72, 0.25);
}

.success-check i {
    width: 36px;
    height: 36px;
    color: white;
    stroke-width: 3;
}

.order-success-premium h3 {
    font-size: 1.75rem;
    font-weight: 900;
    color: var(--text-primary);
}

.order-success-premium > p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    max-width: 380px;
}

.order-number-box {
    background: var(--bg-alt);
    border: 1.5px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 16px 28px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    width: 100%;
    max-width: 280px;
}

.order-number-box span {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.order-number-box strong {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 900;
    color: var(--accent);
}

/* Floating Sticky Bar */
.floating-sticky-bar {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translate(-50%, 150px);
    width: calc(100% - 48px);
    max-width: 600px;
    height: 76px;
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid var(--border-color);
    border-radius: 38px;
    box-shadow: var(--shadow-xl);
    z-index: 999;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    overflow: hidden;
}

.floating-sticky-bar.show { transform: translate(-50%, 0); }

.sticky-bar-content {
    height: 100%;
    padding: 0 12px 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.sticky-info-col { display: flex; align-items: center; gap: 14px; }

.sticky-thumb-wrapper {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    overflow: hidden;
    border: 1px solid var(--border-color);
    background: white;
}

.sticky-thumb-wrapper img { width: 100%; height: 100%; object-fit: cover; }

.sticky-text-wrapper h4 { font-size: 0.95rem; font-weight: 800; color: var(--text-primary); }

.sticky-prices { display: flex; align-items: center; gap: 8px; margin-top: 1px; }

.sticky-price-old { text-decoration: line-through; color: var(--text-muted); font-size: 0.72rem; font-weight: 500; }

.sticky-price-new {
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 850;
    color: var(--accent);
}

.btn-sticky-order {
    padding: 12px 24px !important;
    font-size: 0.88rem !important;
    border-radius: 24px !important;
}

/* Toast */
.toast {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translate(-50%, 50px);
    background: #0f172a;
    color: white;
    padding: 14px 28px;
    border-radius: 40px;
    font-size: 0.9rem;
    font-weight: 700;
    box-shadow: var(--shadow-xl);
    z-index: 1100;
    opacity: 0;
    pointer-events: none;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.toast.show { transform: translate(-50%, 0); opacity: 1; }
.toast.error { background: #ef4444; }

/* Spin animation for loader icon */
@keyframes spin { to { transform: rotate(360deg); } }
.spin { animation: spin 1s linear infinite; }

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE — Tablet
   ═══════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
    .checkout-landing-container { grid-template-columns: 1fr; gap: 45px; }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 32px;
    }
    
    .hero-content { align-items: center; }
    .hero-ctas { justify-content: center; flex-wrap: wrap; }
    .hero-price-tag { margin-left: auto; margin-right: auto; }
    .target-audiences-row { justify-content: center; }
    .footer-container { grid-template-columns: 1fr; gap: 50px; }
    .search-bar-wrapper { max-width: 180px; }
    
    .slide-content { padding: 28px 32px; }
    .slide-content h3 { font-size: 1.4rem; }
    
    .bundles-grid { gap: 20px; }
    .reviews-grid { gap: 20px; }
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE — Mobile (≤768px)
   Horizontal scroll carousels for all 3-item grids.
   ═══════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
    /* ─── Global Mobile Spacing ─── */
    body { padding-top: 64px; }
    body.menu-open { overflow: hidden; }

    .section-container { padding: 60px 16px; }

    .section-header { margin-bottom: 28px; }
    .section-header h2 { font-size: 1.65rem; letter-spacing: -0.02em; }
    .section-header p { font-size: 0.92rem; }
    .section-cta { margin-top: 28px; }
    .section-label { font-size: 0.7rem; padding: 5px 12px; margin-bottom: 14px; }

    /* ─── Header Mobile ─── */
    .main-header { height: 64px; }
    .main-header.scrolled { height: 56px; }

    .header-container { padding: 0 16px; gap: 10px; }

    .logo { font-size: 1.4rem; }

    .nav-links { display: none; }
    .search-bar-wrapper { display: none; }

    .btn-nav-cta { display: none; }

    .hamburger-btn { display: flex; }
    
    /* ─── Hero Mobile ─── */
    .hero-section { padding: 40px 16px 56px; }
    
    .hero-container { gap: 28px; }
    
    .hero-badge { 
        font-size: 0.72rem; 
        padding: 6px 14px; 
        margin-bottom: 18px; 
    }
    
    .hero-title {
        font-size: 2rem;
        letter-spacing: -0.03em;
        word-break: break-word;
        overflow-wrap: break-word;
    }
    
    .hero-description {
        font-size: 0.95rem;
        margin-bottom: 18px;
    }
    
    .target-audiences-row { gap: 8px; margin-bottom: 20px; }
    .audience-pill { font-size: 0.75rem; padding: 6px 12px; }
    
    .hero-price-tag {
        padding: 10px 18px;
        gap: 10px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .price-old { font-size: 0.88rem; }
    .price-current { font-size: 1.5rem; }
    
    .hero-ctas { gap: 10px; margin-bottom: 24px; }
    .hero-ctas .btn-lg {
        padding: 12px 24px;
        font-size: 0.88rem;
    }
    .hero-ctas .btn-secondary { display: none; }
    
    .hero-social-proof { font-size: 0.8rem; }
    
    .hero-main-image { max-width: 300px; }
    
    @keyframes hero-float {
        0%, 100% { transform: translateY(0); }
        50% { transform: translateY(-6px); }
    }
    
    /* ─── Trust Bar Mobile → Horizontal Scroll ─── */
    .trust-bar { padding: 20px 0; overflow: hidden; }
    
    .trust-container {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        gap: 0;
        padding: 0 16px;
        scrollbar-width: none;
    }
    
    .trust-container::-webkit-scrollbar { display: none; }
    
    .trust-feature {
        flex: 0 0 85%;
        scroll-snap-align: center;
        padding: 12px 16px;
        gap: 12px;
    }
    
    .trust-feature i { width: 38px; height: 38px; }
    .trust-feature h4 { font-size: 0.88rem; }
    .trust-feature p { font-size: 0.78rem; }
    
    /* ─── Engagement Carousel Mobile ─── */
    .engagement-carousel { border-radius: var(--radius-md); }
    
    .slide-image-wrapper { aspect-ratio: 4 / 3; }
    
    .slide-content { padding: 16px 20px; }
    .slide-content h3 { font-size: 1.1rem; margin-bottom: 4px; }
    .slide-content p { font-size: 0.82rem; }
    
    .slide-icon-badge {
        width: 36px;
        height: 36px;
        border-radius: 10px;
        margin-bottom: 10px;
    }
    .slide-icon-badge i { width: 16px; height: 16px; }
    
    .carousel-controls { bottom: 12px; right: 12px; gap: 8px; }
    .carousel-btn { width: 34px; height: 34px; }
    .carousel-btn i { width: 14px; height: 14px; }
    .carousel-dot { width: 6px; height: 6px; }
    .carousel-dot.active { width: 18px; }
    
    /* ─── Product Loop Mobile ─── */
    .loop-section { padding: 60px 0; }
    .loop-section .section-header { padding: 0 16px; }
    
    .typing-title-container {
        font-size: 1.35rem;
        white-space: normal;
        text-align: center;
        flex-wrap: wrap;
        justify-content: center;
        line-height: 1.3;
        padding: 0 16px;
    }
    
    .marquee-card { width: 260px; }
    .marquee-card-body { padding: 14px 18px 18px; }
    .marquee-card h3 { font-size: 0.95rem; }
    .marquee-price { font-size: 1.1rem; }
    
    /* ─── Bundles Mobile → Horizontal Scroll Carousel ─── */
    .bundles-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        gap: 14px;
        padding: 0 16px 12px;
        scrollbar-width: none;
    }
    
    .bundles-grid::-webkit-scrollbar { display: none; }
    
    .bundle-card {
        flex: 0 0 82%;
        scroll-snap-align: center;
    }
    
    .bundle-content { padding: 20px; }
    .bundle-content h3 { font-size: 1.1rem; }
    .bundle-spec { font-size: 0.82rem; margin-bottom: 10px; }
    .bundle-tech-badges { gap: 5px; margin-bottom: 14px; }
    .bundle-tech-badges span { font-size: 0.68rem; padding: 3px 8px; }
    .bundle-price-row { margin-bottom: 16px; padding-top: 14px; }
    .price-discount { font-size: 1.3rem; }
    .price-original { font-size: 0.8rem; }
    
    .bundle-card .btn { font-size: 0.85rem; padding: 12px 20px; }
    
    /* ─── Reviews Mobile → Horizontal Scroll Carousel ─── */
    .reviews-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        gap: 14px;
        padding: 0 16px 12px;
        scrollbar-width: none;
    }
    
    .reviews-grid::-webkit-scrollbar { display: none; }
    
    .review-card {
        flex: 0 0 85%;
        scroll-snap-align: center;
        padding: 24px;
    }
    
    .review-user-info h4 { font-size: 0.95rem; }
    .review-text { font-size: 0.85rem; margin-bottom: 14px; }
    
    /* ─── Videos Mobile → Horizontal Scroll Carousel ─── */
    .video-wall-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        gap: 14px;
        padding: 0 16px 12px;
        scrollbar-width: none;
    }
    
    .video-wall-grid::-webkit-scrollbar { display: none; }
    
    .video-card-wrapper {
        flex: 0 0 85%;
        scroll-snap-align: center;
    }
    
    /* ─── Social Channels Mobile → Horizontal Scroll ─── */
    .social-channels {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        gap: 12px;
        padding: 0 16px 12px;
        scrollbar-width: none;
    }
    
    .social-channels::-webkit-scrollbar { display: none; }
    
    .channel-card {
        flex: 0 0 70%;
        scroll-snap-align: center;
        padding: 24px;
    }
    
    /* ─── FAQ Mobile ─── */
    .accordion-trigger { padding: 18px 20px; font-size: 0.9rem; }
    .accordion-content-inner { padding: 0 20px 18px; }
    .accordion-content-inner p { font-size: 0.85rem; }
    
    /* ─── Footer Mobile ─── */
    .main-footer { padding: 50px 16px 30px; }
    .footer-container { gap: 40px; }
    .footer-links-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
    .footer-brand p { font-size: 0.85rem; }
    .footer-col h4 { font-size: 0.85rem; }
    .footer-col a { font-size: 0.8rem; }
    .footer-bottom { font-size: 0.75rem; padding-top: 20px; }
    
    /* ─── Checkout Mobile ─── */
    .checkout-main { padding: 20px 16px 110px; }

    .checkout-landing-container {
        gap: 24px;
        padding: 0;
    }

    .product-info-panel-premium { padding: 0; }

    /* Fix stack gallery — card-left was at -5% and overflowing */
    .stack-container {
        height: 240px;
        max-width: 100%;
        width: 100%;
        margin: 0 0 20px 0;
    }
    .stack-card.card-left  { left: 0%; }
    .stack-card.card-center { left: 15%; }
    .stack-card.card-right  { left: 30%; }

    /* Trust row — 3-col grid instead of horizontal scroll */
    .premium-trust-row {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 0;
        padding: 14px 12px;
        border-radius: var(--radius-md);
        margin-bottom: 18px;
        overflow-x: visible;
        scroll-snap-type: none;
    }
    .trust-metric { flex: none; padding: 4px; }
    .trust-metric strong { font-size: 0.85rem; }
    .trust-metric span { font-size: 0.68rem; }
    .trust-divider { display: none; }

    .premium-alert-banner {
        margin: 0 0 18px;
        flex-direction: row;
        align-items: flex-start;
        gap: 12px;
        padding: 14px 16px;
    }
    .premium-alert-banner p { font-size: 0.8rem; }

    .product-details-content { margin-bottom: 18px; }
    .product-details-content h2 { font-size: 1.15rem; margin-bottom: 12px; }
    .tech-specs-grid { grid-template-columns: 1fr; gap: 0; }
    .tech-card { padding: 12px 0; border-bottom: 1px solid var(--border-color); }
    .tech-card:last-child { border-bottom: none; padding-bottom: 0; }
    .tech-icon { width: 34px; height: 34px; }
    .tech-icon i { width: 15px; height: 15px; }
    .tech-card h4 { font-size: 0.88rem; }
    .tech-card p { font-size: 0.8rem; }

    /* Packages selector — vertical list, properly contained */
    .packages-selector-container {
        padding: 20px 16px;
        border-radius: var(--radius-lg);
        border: 1.5px solid var(--border-color);
        box-shadow: var(--shadow-sm);
        background: #ffffff;
    }
    .selector-title { font-size: 1rem; padding: 0; margin-bottom: 14px; }

    .packages-list {
        flex-direction: column;
        overflow-x: visible;
        scroll-snap-type: none;
        gap: 10px;
        padding: 0;
    }

    .package-option-card {
        flex: none;
        flex-direction: row;
        align-items: center;
        padding: 14px 14px;
        scroll-snap-align: none;
    }
    .package-radio-col { position: static; width: 26px; flex-shrink: 0; }
    .package-details-col { padding: 0 10px; margin-bottom: 0; width: auto; padding-right: 0; }
    .package-details-col h4 { font-size: 0.9rem; }
    .package-details-col p { font-size: 0.74rem; }
    .package-price-col { align-items: flex-end; flex-shrink: 0; }
    .price-active-tag { font-size: 1.1rem; }
    .price-old-line { font-size: 0.74rem; }
    .save-tag { font-size: 0.6rem; }
    .package-badge-popular { left: 14px; top: -9px; font-size: 0.58rem; }

    /* Form panel — clean contained card */
    .premium-form-panel {
        padding: 20px 16px;
        border-radius: var(--radius-lg);
        border: 1.5px solid var(--border-color);
    }

    .btn-order-submit { font-size: 0.95rem !important; padding: 16px 20px !important; }

    /* Floating sticky bar */
    .floating-sticky-bar { width: calc(100% - 24px); bottom: 12px; height: 70px; }
    .sticky-bar-content { padding: 0 8px 0 16px; }
    .sticky-text-wrapper h4 { font-size: 0.85rem; }
    .sticky-price-new { font-size: 0.9rem; }
    .btn-sticky-order { padding: 10px 14px !important; font-size: 0.82rem !important; }
    
    /* ─── Button sizes on mobile ─── */
    .btn { min-height: 48px; }
    .btn-lg { padding: 14px 28px; font-size: 0.95rem; }
    .section-cta .btn { width: 100%; max-width: 320px; }
    /* Disable hover transform on touch (prevents sticky hover state) */
    .btn:hover { transform: none !important; box-shadow: none !important; }
    .btn-primary:hover { box-shadow: 0 4px 20px rgba(225, 29, 72, 0.25) !important; }

    /* ─── Smart Footer Mobile ─── */
    .main-footer { padding: 40px 0 130px; } /* extra padding for home sticky CTA bar */
    .footer-top-row {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 40px;
    }
    .footer-links-grid {
        flex-direction: column;
        gap: 32px;
        align-items: center;
    }
    .footer-col { align-items: center; }
    .footer-social-col { align-items: center; }
    
    .footer-pill-nav-container { padding-top: 32px; }
    .footer-pill-nav {
        flex-wrap: wrap;
        justify-content: center;
        border-radius: 20px;
        padding: 16px;
        gap: 16px;
    }
    .footer-pill-nav .btn-top { width: 100%; justify-content: center; }
    .footer-bottom { flex-direction: column; align-items: center; gap: 8px; text-align: center; }
    .made-with { margin-left: 0; }
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE — Small Mobile (≤400px)
   ═══════════════════════════════════════════════════════════ */
@media (max-width: 400px) {
    .hero-title { font-size: 1.7rem; }
    .hero-description { font-size: 0.88rem; }
    .price-current { font-size: 1.35rem; }
    .hero-main-image { max-width: 240px; }
    
    .bundle-card { flex: 0 0 90%; }
    .review-card { flex: 0 0 92%; }
    .video-card-wrapper { flex: 0 0 92%; }
    .channel-card { flex: 0 0 80%; }
    .trust-feature { flex: 0 0 90%; }
    .trust-metric { flex: 0 0 65%; }
    .package-option-card { flex: 0 0 90%; }
    
    .typing-title-container { font-size: 1.15rem; }
    .marquee-card { width: 230px; }
}

/* ═══════════════════════════════════════════════════════════
   SECTION-SPECIFIC "GATE" STYLES
   Each section has a distinct background and custom elements
   to feel like entering a new visual gate / story chapter.
   ═══════════════════════════════════════════════════════════ */

/* --- 1. HERO (Deep Dark Slate Gate) --- */
.hero-section {
    background-color: #0b0f19;
    color: #ffffff;
    padding: 90px 24px 100px;
}

.hero-section .hero-title {
    color: #ffffff;
    letter-spacing: 0;
    line-height: 1.3;
}

.hero-section .hero-description {
    color: #94a3b8;
}

.hero-section .audience-pill {
    background: rgba(255, 255, 255, 0.03);
    border-color: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    box-shadow: none;
}

.hero-section .audience-pill:hover {
    border-color: var(--accent);
    background: rgba(225, 29, 72, 0.04);
}

.hero-section .hero-price-tag {
    background: rgba(255, 255, 255, 0.03);
    border-color: rgba(255, 255, 255, 0.08);
    box-shadow: none;
}

.hero-section .price-old {
    color: #64748b;
}

.hero-section .price-current {
    color: #ffffff;
}

.hero-section .btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
    color: #ffffff;
}

.hero-section .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
}

.hero-section .hero-social-proof {
    color: #94a3b8;
}

/* --- 2. TRUST FEATURE BAR (Crisp Pristine White Gate) --- */
.trust-bar {
    background: #ffffff;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

/* --- 3. ENGAGEMENT / PROMESSE (Soft Warm Grey Gate) --- */
.engagement-section {
    background: #f8fafc;
}

/* --- 4. GAMME / COLLECTION (Deep Dark Charcoal Gate) --- */
.loop-section {
    background: #0f172a;
    padding: 120px 0;
}

.loop-section .section-header h2 {
    color: #ffffff;
}

.loop-section .section-header p {
    color: #94a3b8;
}

.loop-section .marquee-card {
    background: #1e293b;
    border-color: rgba(255, 255, 255, 0.05);
}

.loop-section .marquee-card h3 {
    color: #ffffff;
}

.loop-section .marquee-cta {
    color: #94a3b8;
}

.loop-section .marquee-image-container {
    background: #0f172a;
}

/* --- 5. OFFRES / BUNDLES (Pristine White Gate) --- */
.bundles-section {
    background: #ffffff;
}

/* --- 6. AVIS / REVIEWS (Deep Burgundy Red Gate) --- */
.reviews-section {
    background: radial-gradient(circle at center, #2e0510 0%, #150105 100%);
    color: #ffffff;
}

.reviews-section .section-header h2 {
    color: #ffffff;
}

.reviews-section .section-header p {
    color: #f1f5f9;
}

.reviews-section .section-label {
    color: #fda4af;
    background: rgba(225, 29, 72, 0.15);
    border-color: rgba(225, 29, 72, 0.25);
}

.reviews-section .review-card {
    background: rgba(255, 255, 255, 0.03);
    border-color: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: none;
}

.reviews-section .review-card:hover {
    border-color: rgba(225, 29, 72, 0.5);
    box-shadow: 0 10px 30px rgba(225, 29, 72, 0.15);
}

.reviews-section .review-user-info h4 {
    color: #ffffff;
}

.reviews-section .user-role {
    color: #cbd5e1;
}

.reviews-section .review-text {
    color: #e2e8f0;
}

.reviews-section .verified-badge {
    color: #34d399;
    background: rgba(52, 211, 153, 0.1);
}

/* --- 7. VIDEOS (Pristine White Gate) --- */
.video-loop-section {
    background: #ffffff;
}

/* --- 8. FAQ (Deep Dark Charcoal Gate) --- */
.faq-accordion-section {
    background: #0b0f19;
    padding: 120px 0;
}

.faq-accordion-section .section-container {
    padding: 0 24px;
}

/* --- 9. SOCIAL WALL (Soft Warm Grey Gate) --- */
.social-wall-section {
    background: #f1f5f9;
}

/* --- 10. FOOTER (Deep Charcoal Slate Sign-off) --- */
.main-footer {
    background: #070a13;
}

/* --- Auto Layout Interactive Demo Showcase --- */
.autolayout-section {
    background: #f8fafc;
}

.autolayout-demo-container {
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.06);
    border-radius: var(--radius-xl);
    padding: 40px;
    box-shadow: var(--shadow-lg);
    max-width: 900px;
    margin: 0 auto;
}

.autolayout-controls {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 40px;
}

.autolayout-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
    min-height: 220px;
    align-items: center;
    transition: all 0.4s ease;
}

.demo-card {
    width: 220px;
    background: #f8fafc;
    border: 1.5px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 24px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease, border-color 0.3s ease;
    /* Spring animation for entry */
    animation: card-fade-in 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
    transform-origin: center center;
}

.demo-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: var(--shadow-md);
    border-color: var(--accent);
}

.demo-card-img {
    width: 90px;
    height: 90px;
    margin: 0 auto 16px auto;
    background: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    box-shadow: inset 0 2px 5px rgba(0,0,0,0.02);
    border: 1px solid var(--border-color);
}

.demo-card-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.demo-card h4 {
    font-size: 1.05rem;
    font-weight: 750;
    margin-bottom: 6px;
    color: var(--text-primary);
}

.demo-card p {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

/* Card entry animation */
@keyframes card-fade-in {
    from {
        opacity: 0;
        transform: scale(0.8) translateY(20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

/* ─── Hero Page-Load Entrance Animations ─── */
@keyframes hero-enter-up {
    from { opacity: 0; transform: translateY(44px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes hero-enter-down {
    from { opacity: 0; transform: translateY(-28px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes hero-enter-left {
    from { opacity: 0; transform: translateX(70px) scale(0.94); }
    to   { opacity: 1; transform: translateX(0) scale(1); }
}
@keyframes hero-enter-pop {
    0%   { opacity: 0; transform: scale(0.78); }
    60%  { transform: scale(1.04); }
    100% { opacity: 1; transform: scale(1); }
}

.hero-section .hero-badge {
    animation: hero-enter-down 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.05s both;
}
.hero-section .hero-title {
    font-family: 'Cairo', 'Inter', sans-serif;
    animation: hero-enter-up 0.75s cubic-bezier(0.16, 1, 0.3, 1) 0.2s both;
}
.hero-section .hero-description {
    animation: hero-enter-up 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.38s both;
}
.hero-section .target-audiences-row {
    animation: hero-enter-up 0.65s cubic-bezier(0.16, 1, 0.3, 1) 0.52s both;
}
.hero-section .hero-price-tag {
    animation: hero-enter-pop 0.65s cubic-bezier(0.34, 1.56, 0.64, 1) 0.66s both;
}
.hero-section .hero-ctas {
    animation: hero-enter-up 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.8s both;
}
.hero-section .hero-social-proof {
    animation: hero-enter-up 0.55s cubic-bezier(0.16, 1, 0.3, 1) 0.95s both;
}
.hero-section .hero-image-wrapper {
    animation: hero-enter-left 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.15s both;
}

/* Page Transition animation names for browser View Transitions */
::view-transition-old(root),
::view-transition-new(root) {
    animation-duration: 0.3s;
}

/* ═══════════════════════════════════════════════════════════
   MOBILE HAMBURGER BUTTON
   ═══════════════════════════════════════════════════════════ */
.hamburger-btn {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    width: 40px;
    height: 40px;
    flex-shrink: 0;
}

.hamburger-btn span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.2s;
    transform-origin: center;
}

.hamburger-btn.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger-btn.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger-btn.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ═══════════════════════════════════════════════════════════
   MOBILE NAV OVERLAY
   ═══════════════════════════════════════════════════════════ */
.mobile-nav-overlay {
    display: none;
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    z-index: 998;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    overflow-y: auto;
    padding: 24px 20px 40px;
}

.mobile-nav-overlay.open {
    transform: translateX(0);
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.mobile-nav-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    border-radius: 16px;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
    transition: background 0.2s, color 0.2s;
    min-height: 56px;
}

.mobile-nav-item:hover,
.mobile-nav-item:active {
    background: rgba(225, 29, 72, 0.05);
    color: var(--accent);
}

.mobile-nav-item i {
    width: 22px;
    height: 22px;
    color: var(--accent);
    flex-shrink: 0;
}

.mobile-nav-cta {
    margin-top: 20px;
    width: 100%;
    justify-content: center;
    padding: 16px !important;
    font-size: 1rem !important;
    border-radius: 16px !important;
}

@media (max-width: 768px) {
    .mobile-nav-overlay { display: block; }
}

/* ═══════════════════════════════════════════════════════════
   HOMEPAGE FLOATING STICKY CTA (mobile only)
   ═══════════════════════════════════════════════════════════ */
.home-sticky-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(11, 15, 25, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 12px 16px calc(12px + env(safe-area-inset-bottom, 0px));
    z-index: 997;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.home-sticky-cta.show {
    transform: translateY(0);
}

.home-sticky-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}

.home-sticky-info {
    display: flex;
    flex-direction: column;
    gap: 3px;
    min-width: 0;
}

.home-sticky-label {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.45);
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.home-sticky-prices {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.home-sticky-prices s {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.78rem;
    font-weight: 500;
}

.home-sticky-prices strong {
    color: #ffffff;
    font-size: 1.05rem;
    font-weight: 900;
    font-family: var(--font-display);
}

.home-sticky-badge {
    background: rgba(16, 185, 129, 0.15);
    color: #10b981;
    font-size: 0.65rem;
    font-weight: 800;
    padding: 3px 8px;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    gap: 3px;
    white-space: nowrap;
}

.home-sticky-badge i {
    width: 10px;
    height: 10px;
    pointer-events: none;
}

.home-sticky-cta .btn {
    flex-shrink: 0;
    white-space: nowrap;
    padding: 12px 20px;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .home-sticky-cta { display: block; }
}
