/* ============================================
   POISE EYECARE CLINIC - MAIN STYLESHEET
   Brand: Purple + Pink + White | Futuristic Luxury
   ============================================ */

/* ===== CSS VARIABLES ===== */
:root {
    /* New Primary Palette */
    --purple-deep:     #1a0066; /* Darker shade of #4300fa */
    --purple-mid:      #4300fa; /* Your New Primary */
    --purple-light:    #7b46ff; /* Tint of your primary */
    --purple-glow:     #cb98fa; /* Your New Accent */
    
    /* Supporting Accents */
    --pink-hot:        #cb98fa; 
    --pink-soft:       #e0c2ff; 
    --pink-pale:       #f5eeff;
    
    /* Neutrals */
    --white:           #ffffff;
    --off-white:       #f8f6ff;
    --dark:            #05001a;
    --dark-card:       #0d0033;
    --text-primary:    #0a002e;
    --text-muted:      #5c5775;

    /* Gradients using your new colors */
    --gradient-main:   linear-gradient(135deg, #4300fa, #cb98fa);
    --gradient-glow:   linear-gradient(135deg, #7b46ff, #cb98fa);
    --gradient-dark:   linear-gradient(135deg, #05001a, #1a0066);

    /* Shadows & Effects */
    --shadow-purple:   0 20px 60px rgba(67, 0, 250, 0.25);
    --shadow-pink:     0 20px 60px rgba(203, 152, 250, 0.2);
    --glow-purple:     0 0 30px rgba(67, 0, 250, 0.4);
    --glow-pink:       0 0 30px rgba(203, 152, 250, 0.4);
    
    --border-glass:    rgba(255, 255, 255, 0.1);
    --font-display:    'Cormorant Garamond', Georgia, serif;
    --font-body:       'DM Sans', sans-serif;
    --radius:          16px;
    --radius-lg:       24px;
    --radius-xl:       32px;
    --transition:      all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font-body);
    background: var(--off-white);
    color: var(--text-primary);
    overflow-x: hidden;
    line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ===== PRELOADER ===== */
#preloader {
    position: fixed;
    width: 100%;
    height: 100%;
     background: linear-gradient(135deg, #000000, #1a0a5a);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transform: scale(1.8);
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.preloader-inner {
    text-align: center;
}

.preloader-logo {
    width: 90px;
    height: auto;
    animation: pulseZoom 2s ease-in-out infinite;
}

.preloader-text {
    margin-top: 12px;
    font-size: 16px;
    font-weight: 500;
    color: #333;
    letter-spacing: 0.5px;
}
#preloader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

/* Subtle premium pulse animation */
@keyframes pulseZoom {
    0% {
        transform: scale(1);
        opacity: 0.9;
    }
    50% {
        transform: scale(1.08);
        opacity: 1;
    }
    100% {
        transform: scale(1);
        opacity: 0.9;
    }
}

/* ===== NAVIGATION ===== */
#navbar {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    padding: 0px 0;
    transition: var(--transition);
}
#navbar.scrolled {
    background: rgba(10,0,16,0.92);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-glass);
    padding: 0px 0;
    box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}
.nav-container {
    max-width: 1280px; margin: 0 auto;
    padding: 0 24px;
    display: flex; align-items: center; justify-content: space-between;
    gap: 16px;
}
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.logo-img {
    height: 90px;
    width: auto;
    object-fit: contain;
}

/* optional hover effect */
.logo:hover .logo-img {
    transform: scale(1.05);
}
.logo-accent { background: var(--gradient-main); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.nav-links {
    display: flex; align-items: center; gap: 8px;
}
.nav-link {
    color: rgba(255,255,255,0.75);
    font-size: 0.9rem; font-weight: 500;
    padding: 8px 14px;
    border-radius: 8px;
    transition: var(--transition);
}
.nav-link:hover, .nav-link.active { color: var(--white); background: rgba(255,255,255,0.1); }
.nav-cta {
    background: var(--gradient-main);
    color: var(--white) !important;
    padding: 10px 20px !important;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.85rem;
    box-shadow: 0 4px 20px rgba(168,85,247,0.4);
    transition: var(--transition);
}
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(168,85,247,0.6); }
.cart-btn {
    position: relative;
    background: none; border: none;
    color: var(--white); cursor: pointer;
    padding: 8px;
    transition: var(--transition);
}
.cart-btn:hover { color: var(--pink-soft); }
.cart-count {
    position: absolute; top: 0; right: 0;
    background: var(--pink-hot);
    color: white; font-size: 0.65rem; font-weight: 700;
    width: 18px; height: 18px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    line-height: 1;
}
.hamburger {
    display: none;
    flex-direction: column; gap: 5px;
    background: none; border: none; cursor: pointer;
    padding: 4px;
}
.hamburger span {
    display: block; width: 24px; height: 2px;
    background: var(--white);
    transition: var(--transition);
    border-radius: 2px;
}

/* ===== HERO SECTION ===== */
#hero {
    position: relative;
    min-height: 100vh;
    background: var(--gradient-dark);
    display: flex; align-items: center;
    overflow: hidden;
}
#heroCanvas {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    pointer-events: none;
}
.hero-particles {
    position: absolute; inset: 0;
    pointer-events: none;
}
.particle {
    position: absolute;
    border-radius: 50%;
    background: var(--purple-glow);
    animation: floatParticle linear infinite;
    opacity: 0;
}
@keyframes floatParticle {
    0% { transform: translateY(100vh) scale(0); opacity: 0; }
    10% { opacity: 0.6; }
    90% { opacity: 0.3; }
    100% { transform: translateY(-100px) scale(1); opacity: 0; }
}
.hero-content {
    position: relative; z-index: 2;
    max-width: 640px;
    padding: 120px 24px 80px 8%;
}
.hero-badge {
    display: inline-block;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.2);
    color: var(--pink-soft);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    margin-bottom: 28px;
    backdrop-filter: blur(10px);
    animation: fadeSlideDown 0.8s ease 0.2s both;
}
.hero-headline {
    font-family: var(--font-display);
    font-size: clamp(3rem, 7vw, 5.5rem);
    font-weight: 700;
    line-height: 1.05;
    color: var(--white);
    margin-bottom: 24px;
}
.hero-headline span { display: block; }
.line-1 { animation: fadeSlideUp 0.8s ease 0.4s both; }
.line-2 { animation: fadeSlideUp 0.8s ease 0.55s both; }
.line-3 { animation: fadeSlideUp 0.8s ease 0.7s both; }
.hero-headline em {
    font-style: italic;
    background: var(--gradient-glow);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero-subtext {
    color: rgba(255,255,255,0.7);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 36px;
    animation: fadeSlideUp 0.8s ease 0.85s both;
}
.hero-subtext strong { color: var(--pink-soft); font-weight: 600; }
.hero-actions {
    display: flex; gap: 16px; flex-wrap: wrap;
    margin-bottom: 48px;
    animation: fadeSlideUp 0.8s ease 1s both;
}
.hero-stats {
    display: flex; align-items: center; gap: 24px;
    animation: fadeSlideUp 0.8s ease 1.15s both;
}
.stat { text-align: center; }
.stat-num {
    display: block;
    font-family: var(--font-display);
    font-size: 2rem; font-weight: 700;
    color: var(--white);
}
.stat-label { font-size: 0.75rem; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 0.06em; }
.stat-divider { width: 1px; height: 40px; background: rgba(255,255,255,0.15); }
.hero-3d-container {
    position: absolute;
    right: 0; top: 50%;
    transform: translateY(-50%);
    width: 50%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}
#threeCanvas {
    width: 100% !important;
    height: 100% !important;
}
.hero-scroll-indicator {
    position: absolute;
    bottom: 32px; left: 8%;
    display: flex; align-items: center; gap: 12px;
    color: rgba(255,255,255,0.4);
    font-size: 0.75rem; letter-spacing: 0.1em;
    text-transform: uppercase;
    animation: fadeIn 1s ease 1.5s both;
}
.scroll-line {
    width: 40px; height: 1px;
    background: rgba(255,255,255,0.3);
    position: relative; overflow: hidden;
}
.scroll-line::after {
    content: '';
    position: absolute;
    width: 100%; height: 100%;
    background: var(--pink-soft);
    animation: scrollAnim 2s ease infinite;
}
@keyframes scrollAnim { 0% { transform: translateX(-100%); } 100% { transform: translateX(200%); } }

/* ===== BUTTONS ===== */
.btn-primary {
    display: inline-block;
    background: var(--gradient-main);
    color: var(--white);
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(168,85,247,0.4);
    border: none; cursor: pointer; font-family: var(--font-body);
}
.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(168,85,247,0.6);
}
.btn-secondary {
    display: inline-block;
    background: rgba(255,255,255,0.08);
    color: var(--white);
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600; font-size: 0.95rem;
    border: 1px solid rgba(255,255,255,0.25);
    backdrop-filter: blur(10px);
    transition: var(--transition);
    cursor: pointer; font-family: var(--font-body);
}
.btn-secondary:hover {
    background: rgba(255,255,255,0.15);
    border-color: var(--pink-soft);
    transform: translateY(-3px);
}
.btn-outline {
    display: inline-block;
    background: none;
    color: var(--purple-light);
    padding: 12px 28px;
    border-radius: 50px;
    border: 2px solid var(--purple-light);
    font-weight: 600; font-size: 0.9rem;
    transition: var(--transition);
    font-family: var(--font-body);
}
.btn-outline:hover {
    background: var(--gradient-main);
    border-color: transparent;
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-purple);
}

/* ===== MARQUEE STRIP ===== */
.marquee-strip {
    background: var(--gradient-main);
    padding: 14px 0;
    overflow: hidden;
}
.marquee-track {
    display: flex; gap: 40px;
    width: max-content;
    animation: marquee 30s linear infinite;
}
.marquee-track span {
    white-space: nowrap;
    color: var(--white);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}
.marquee-dot { color: rgba(255,255,255,0.5) !important; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ===== CONTAINER ===== */
.container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }

/* ===== SECTION HEADER ===== */
.section-label {
    display: inline-block;
    color: var(--pink-hot);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 12px;
    padding: 6px 14px;
    background: rgba(236,72,153,0.08);
    border-radius: 50px;
    border: 1px solid rgba(236,72,153,0.2);
}
.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.15;
    margin-bottom: 16px;
}
.section-title em {
    font-style: italic;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.section-subtitle {
    color: var(--text-muted);
    font-size: 1rem;
    max-width: 540px;
}
.section-header { margin-bottom: 56px; }

/* ===== ABOUT SECTION ===== */
.section-about { padding: 120px 0; background: var(--white); }
.about-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 80px; align-items: center;
}
.about-visual { position: relative; }
.about-img-frame {
    position: relative;
    background: var(--gradient-dark);
    border-radius: var(--radius-xl);
    padding: 40px;
    overflow: hidden;
    box-shadow: var(--shadow-purple);
}
.about-glow-orb {
    position: absolute;
    width: 200px; height: 200px;
    background: radial-gradient(circle, rgba(168,85,247,0.4), transparent);
    border-radius: 50%;
    top: -50px; right: -50px;
    pointer-events: none;
}
.about-eye-graphic svg { width: 100%; }
.about-badge-float {
    position: absolute;
    bottom: -20px; left: 30px;
    background: var(--white);
    border-radius: var(--radius);
    padding: 16px 24px;
    box-shadow: var(--shadow-purple);
    text-align: center;
    border: 1px solid rgba(139,92,246,0.1);
}
.badge-num {
    display: block;
    font-family: var(--font-display);
    font-size: 2rem; font-weight: 700;
    color: var(--purple-light);
}
.badge-label { font-size: 0.75rem; color: var(--text-muted); }
.about-content { padding-left: 20px; }
.about-text { color: var(--text-muted); margin-bottom: 16px; font-size: 1rem; line-height: 1.8; }
.about-pillars { margin: 32px 0; display: flex; flex-direction: column; gap: 20px; }
.pillar {
    display: flex; gap: 16px; align-items: flex-start;
}
.pillar-icon { font-size: 1.5rem; flex-shrink: 0; }
.pillar strong { display: block; color: var(--text-primary); font-size: 0.95rem; margin-bottom: 4px; }
.pillar p { color: var(--text-muted); font-size: 0.85rem; }

/* ===== SERVICES SECTION ===== */
.section-services { padding: 120px 0; background: var(--off-white); }
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.service-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    border: 1px solid rgba(0,0,0,0.06);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
}
.service-card.visible {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.6s ease, transform 0.6s ease, box-shadow 0.4s, border-color 0.4s;
}
.service-card::before {
    content: '';
    position: absolute; top: 0; left: 0;
    width: 100%; height: 3px;
    background: var(--gradient-main);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
}
.service-card:hover {
    transform: translateY(-8px) !important;
    box-shadow: var(--shadow-purple);
    border-color: rgba(139,92,246,0.2);
}
.service-card:hover::before { transform: scaleX(1); }
.service-icon { font-size: 2.2rem; margin-bottom: 20px; }
.service-card h3 {
    font-family: var(--font-display);
    font-size: 1.3rem; font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 12px;
}
.service-card p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.7; margin-bottom: 20px; }
.service-link {
    color: var(--purple-light);
    font-size: 0.85rem; font-weight: 600;
    transition: var(--transition);
}
.service-link:hover { color: var(--pink-hot); }
.featured-service { background: var(--gradient-dark); }
.featured-service h3, .featured-service p { color: rgba(255,255,255,0.85) !important; }
.featured-service .service-link { color: var(--pink-soft) !important; }
.free-badge {
    position: absolute; top: 20px; right: 20px;
    background: var(--pink-hot);
    color: white; font-size: 0.7rem; font-weight: 700;
    padding: 4px 10px; border-radius: 50px;
    letter-spacing: 0.05em;
}

/* ===== PRODUCTS SECTION ===== */
.section-products { padding: 120px 0; background: var(--white); }
.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 48px;
}
.product-card {
    background: var(--off-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.06);
    transition: var(--transition);
    cursor: pointer;
}
.product-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-purple);
}
.product-img-wrap {
    background: var(--gradient-dark);
    height: 200px;
    display: flex; align-items: center; justify-content: center;
    font-size: 4rem;
    position: relative;
    overflow: hidden;
}
.product-img-wrap img {
    width: 100%; height: 100%;
    object-fit: cover;
    position: absolute; inset: 0;
}
.product-info { padding: 20px; }
.product-category {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--pink-hot);
    font-weight: 600;
    margin-bottom: 6px;
}
.product-name {
    font-family: var(--font-display);
    font-size: 1.1rem; font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
}
.product-price {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--purple-light);
    margin-bottom: 14px;
}
.product-add-btn {
    width: 100%;
    background: var(--gradient-main);
    color: white;
    border: none; cursor: pointer;
    padding: 10px;
    border-radius: 50px;
    font-size: 0.85rem; font-weight: 600;
    font-family: var(--font-body);
    transition: var(--transition);
}
.product-add-btn:hover { opacity: 0.9; transform: scale(1.02); }
.product-skeleton {
    background: linear-gradient(90deg, #f0e6ff 25%, #f9f0ff 50%, #f0e6ff 75%);
    background-size: 200% 100%;
    animation: skeleton 1.5s infinite;
    border-radius: var(--radius-lg);
    height: 320px;
}
@keyframes skeleton { 0% { background-position: 200% 0; } 100% { background-position: -200% 0; } }
.products-cta { text-align: center; }

/* ===== WHY CHOOSE US ===== */
.section-why { padding: 120px 0; background: var(--off-white); }
.why-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 80px; align-items: center;
}
.why-points { margin: 32px 0; display: flex; flex-direction: column; gap: 24px; }
.why-point {
    display: flex; gap: 16px; align-items: flex-start;
}
.why-check {
    width: 28px; height: 28px;
    background: var(--gradient-main);
    color: white;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.75rem; font-weight: 700;
    flex-shrink: 0; margin-top: 2px;
}
.why-point strong { display: block; margin-bottom: 4px; font-size: 0.95rem; }
.why-point p { color: var(--text-muted); font-size: 0.88rem; }
.hours-card {
    background: var(--gradient-dark);
    border-radius: var(--radius-xl);
    padding: 40px;
    box-shadow: var(--shadow-purple);
}
.hours-header {
    display: flex; align-items: center; gap: 12px;
    margin-bottom: 28px;
}
.hours-icon { font-size: 1.8rem; }
.hours-header h3 {
    font-family: var(--font-display);
    font-size: 1.4rem; color: var(--white);
}
.hours-list { display: flex; flex-direction: column; gap: 16px; margin-bottom: 28px; }
.hours-row {
    display: flex; justify-content: space-between; align-items: center;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.hours-row:last-child { border-bottom: none; padding-bottom: 0; }
.hours-day { color: rgba(255,255,255,0.7); font-size: 0.9rem; }
.hours-time { color: var(--white); font-weight: 600; font-size: 0.9rem; }
.hours-time.special { color: var(--pink-soft); }
.hours-note {
    background: rgba(255,255,255,0.06);
    border-radius: var(--radius);
    padding: 14px 18px;
    color: rgba(255,255,255,0.7);
    font-size: 0.88rem;
    margin-bottom: 16px;
}
.hours-note a { color: var(--pink-soft); font-weight: 600; }
.open-status {
    text-align: center;
    padding: 10px;
    border-radius: var(--radius);
    font-size: 0.85rem; font-weight: 600;
}
.open-status.open { background: rgba(34,197,94,0.15); color: #4ade80; }
.open-status.closed { background: rgba(239,68,68,0.15); color: #f87171; }

/* ===== TESTIMONIALS ===== */
.section-testimonials { padding: 120px 0; background: var(--white); }
.testimonials-track {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    overflow: hidden;
}
.testimonial-card {
    background: var(--off-white);
    border-radius: var(--radius-lg);
    padding: 28px;
    border: 1px solid rgba(0,0,0,0.06);
    transition: var(--transition);
}
.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-purple);
    border-color: rgba(139,92,246,0.2);
}
.stars { color: var(--pink-hot); margin-bottom: 14px; letter-spacing: 2px; }
.testimonial-card > p {
    color: var(--text-muted);
    font-size: 0.9rem; line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}
.testimonial-author {
    display: flex; align-items: center; gap: 12px;
}
.author-avatar {
    width: 42px; height: 42px;
    background: var(--gradient-main);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: white; font-weight: 700; font-size: 1rem;
    flex-shrink: 0;
}
.testimonial-author strong { display: block; font-size: 0.9rem; }
.testimonial-author span { font-size: 0.75rem; color: var(--text-muted); }
.testimonials-nav { display: none; justify-content: center; gap: 12px; margin-top: 24px; }
.testi-btn {
    width: 40px; height: 40px;
    border-radius: 50%;
    border: 2px solid var(--purple-light);
    background: none;
    color: var(--purple-light);
    font-size: 1.1rem; cursor: pointer;
    transition: var(--transition);
}
.testi-btn:hover { background: var(--gradient-main); border-color: transparent; color: white; }

/* ===== CONTACT SECTION ===== */
.section-contact { padding: 120px 0; background: var(--off-white); }
.contact-grid {
    display: grid; grid-template-columns: 1fr 1.5fr;
    gap: 60px; align-items: start;
}
.contact-item {
    display: flex; gap: 16px; align-items: flex-start;
    margin-bottom: 28px;
}
.contact-icon { font-size: 1.5rem; flex-shrink: 0; }
.contact-item strong { display: block; color: var(--text-primary); font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 4px; }
.contact-item p { color: var(--text-muted); font-size: 0.9rem; }
.contact-item a { color: var(--purple-light); font-weight: 500; }
.contact-item a:hover { color: var(--pink-hot); }
.contact-socials { display: flex; gap: 12px; margin-bottom: 32px; }
.social-link {
    padding: 8px 18px;
    border: 1px solid rgba(0,0,0,0.12);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text-muted);
    transition: var(--transition);
}
.social-link:hover {
    background: var(--gradient-main);
    border-color: transparent;
    color: white;
}
.newsletter-box {
    background: var(--gradient-dark);
    border-radius: var(--radius-lg);
    padding: 28px;
}
.newsletter-box h4 {
    color: var(--white);
    font-family: var(--font-display);
    font-size: 1.2rem;
    margin-bottom: 6px;
}
.newsletter-box p { color: rgba(255,255,255,0.6); font-size: 0.85rem; margin-bottom: 16px; }
.newsletter-form { display: flex; gap: 8px; }
.newsletter-form input {
    flex: 1;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 50px;
    padding: 10px 18px;
    color: white; font-size: 0.85rem;
    font-family: var(--font-body);
}
.newsletter-form input::placeholder { color: rgba(255,255,255,0.4); }
.newsletter-form input:focus { outline: none; border-color: var(--pink-soft); }
.newsletter-form button {
    background: var(--gradient-main);
    color: white;
    border: none; cursor: pointer;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 0.85rem; font-weight: 600;
    font-family: var(--font-body);
    transition: var(--transition);
}
.newsletter-form button:hover { opacity: 0.9; }
#newsletterMsg { margin-top: 10px; font-size: 0.82rem; color: var(--pink-soft); }

/* ===== CTA STRIP ===== */
.cta-strip { background: var(--gradient-main); padding: 60px 0; }
.cta-strip-inner {
    display: flex; align-items: center; justify-content: space-between;
    gap: 24px; flex-wrap: wrap;
}
.cta-strip h3 {
    font-family: var(--font-display);
    font-size: 1.8rem; color: white;
    margin-bottom: 6px;
}
.cta-strip p { color: rgba(255,255,255,0.75); }
.cta-strip .btn-primary {
    background: white;
    color: var(--purple-mid);
    box-shadow: none;
    white-space: nowrap;
}
.cta-strip .btn-primary:hover { box-shadow: 0 8px 30px rgba(0,0,0,0.2); }

/* ===== FOOTER ===== */
#footer { background: var(--dark); padding: 80px 0 32px; }
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    margin-bottom: 32px;
}
.footer-logo {
    display: flex; align-items: center; gap: 10px;
    font-family: var(--font-display);
    font-size: 1.5rem; color: var(--white);
    margin-bottom: 16px;
}
.footer-brand p { color: rgba(255,255,255,0.5); font-size: 0.88rem; line-height: 1.7; }
.footer-links h4, .footer-services h4, .footer-contact h4 {
    color: var(--white);
    font-size: 0.85rem; text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 20px;
}
.footer-links ul, .footer-services ul {
    display: flex; flex-direction: column; gap: 10px;
}
.footer-links a, .footer-services a {
    color: rgba(255,255,255,0.5);
    font-size: 0.88rem;
    transition: var(--transition);
}
.footer-links a:hover, .footer-services a:hover { color: var(--pink-soft); }
.footer-contact p {
    color: rgba(255,255,255,0.5);
    font-size: 0.88rem; margin-bottom: 8px;
}
.footer-contact a { color: var(--pink-soft); }
.footer-bottom {
    display: flex; justify-content: space-between;
    align-items: center; gap: 16px; flex-wrap: wrap;
}
.footer-bottom p { color: rgba(255,255,255,0.3); font-size: 0.82rem; }

/* ===== CART SIDEBAR ===== */
.cart-overlay {
    position: fixed; inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 1998;
    opacity: 0; pointer-events: none;
    transition: var(--transition);
    backdrop-filter: blur(4px);
}
.cart-overlay.active { opacity: 1; pointer-events: all; }
.cart-sidebar {
    position: fixed; right: -400px; top: 0;
    width: 380px; height: 100vh;
    background: var(--white);
    z-index: 1999;
    padding: 24px;
    overflow-y: auto;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex; flex-direction: column;
    box-shadow: -10px 0 40px rgba(0,0,0,0.2);
}
.cart-sidebar.active { right: 0; }
.cart-header {
    display: flex; justify-content: space-between; align-items: center;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(0,0,0,0.08);
}
.cart-header h3 { font-family: var(--font-display); font-size: 1.4rem; }
.cart-close {
    background: none; border: none; cursor: pointer;
    font-size: 1.8rem; color: var(--text-muted);
    line-height: 1;
}
.cart-items-list { flex: 1; overflow-y: auto; }
.cart-item {
    display: flex; gap: 14px; align-items: center;
    padding: 14px 0;
    border-bottom: 1px solid rgba(0,0,0,0.06);
}
.cart-item-emoji { font-size: 2rem; width: 50px; text-align: center; }
.cart-item-details { flex: 1; }
.cart-item-details strong { display: block; font-size: 0.9rem; margin-bottom: 2px; }
.cart-item-details span { font-size: 0.8rem; color: var(--text-muted); }
.cart-item-remove {
    background: none; border: none; cursor: pointer;
    color: var(--text-muted); font-size: 1.1rem;
    padding: 4px;
    transition: var(--transition);
}
.cart-item-remove:hover { color: #ef4444; }
.cart-footer { border-top: 1px solid rgba(0,0,0,0.08); padding-top: 20px; }
.cart-total {
    display: flex; justify-content: space-between;
    font-weight: 700; font-size: 1.1rem;
    margin-bottom: 16px;
}
.cart-empty {
    text-align: center; padding: 40px 20px;
    color: var(--text-muted);
}
.cart-empty p { font-size: 2.5rem; margin-bottom: 12px; }

/* ===== ANIMATIONS ===== */
@keyframes fadeSlideDown { from { opacity: 0; transform: translateY(-20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeSlideUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .products-grid { grid-template-columns: repeat(2, 1fr); }
    .testimonials-track { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .testimonials-nav { display: flex; }
}
@media (max-width: 900px) {
    .about-grid, .why-grid, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .hero-3d-container { display: none; }
    .hero-content { max-width: 100%; padding: 120px 24px 80px; }
}
@media (max-width: 768px) {
    .nav-links { display: none; position: absolute; top: 100%; left: 0; right: 0; flex-direction: column; background: rgba(10,0,16,0.97); padding: 24px; gap: 8px; border-top: 1px solid var(--border-glass); }
    .nav-links.open { display: flex; }
    .hamburger { display: flex; }
    .services-grid { grid-template-columns: 1fr; }
    .products-grid { grid-template-columns: repeat(2, 1fr); }
    .testimonials-track { grid-template-columns: 1fr; }
    .hero-stats { flex-direction: column; gap: 12px; }
    .stat-divider { width: 40px; height: 1px; }
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .cta-strip-inner { text-align: center; justify-content: center; }
}
@media (max-width: 480px) {
    .products-grid { grid-template-columns: 1fr; }
    .hero-actions { flex-direction: column; }
    .newsletter-form { flex-direction: column; }
    .cart-sidebar { width: 100%; right: -100%; }
}