﻿/* 
 * Nulili Doll Rental Store - Main Stylesheet v2026
 * Modern, vibrant design with Hebrew RTL + 2026 refresh
 * Preserves brand colors, adds glassmorphism, mesh gradients, dark mode
 */

@import url('https://fonts.googleapis.com/css2?family=Heebo:wght@300;400;500;600;700;800;900&display=swap');

/* ==========================================================
   1. DESIGN TOKENS — :root 2026
   ========================================================== */
:root {
    /* Primary Colors — brand preserved, gently refreshed for 2026 vibrancy */
    --primary-blue: #00a8e8;
    --primary-blue-light: #38c1f5;
    --primary-blue-dark: #0077b6;
    --primary-pink: #ff006e;
    --primary-pink-light: #ff4d94;
    --primary-purple: #8338ec;
    --primary-purple-light: #9d6cf0;
    --primary-yellow: #ffbe0b;
    --primary-cyan: #00f5ff;

    /* Graduated neutrals — for light mode */
    --white: #ffffff;
    --light-gray: #f8f9fb;
    --gray: #6c757d;
    --gray-300: #e9ecef;
    --dark-gray: #1a1d23;
    --black: #000000;

    /* Gradients — refreshed with oklch-like depth */
    --gradient-1: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-2: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --gradient-3: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    --gradient-4: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
    --gradient-hero: linear-gradient(135deg, #667eea 0%, #764ba2 45%, #ff006e 100%);
    --gradient-mesh-1: radial-gradient(at 20% 30%, rgba(131,56,236,0.35) 0%, transparent 50%),
                       radial-gradient(at 85% 25%, rgba(255,0,110,0.28) 0%, transparent 50%),
                       radial-gradient(at 50% 85%, rgba(0,168,232,0.30) 0%, transparent 55%),
                       radial-gradient(at 10% 90%, rgba(255,190,11,0.18) 0%, transparent 40%);
    --gradient-border: linear-gradient(135deg, #667eea, #764ba2, #f093fb);

    /* Semantic */
    --success: #1db954;
    --warning: #ffb703;
    --danger: #ef476f;
    --info: #06b6d4;

    /* 2026 — New tokens required */
    --glass-bg: rgba(255,255,255,0.72);
    --glass-bg-strong: rgba(255,255,255,0.86);
    --glass-border: rgba(255,255,255,0.42);
    --glass-shadow: 0 8px 32px rgba(31,38,135,0.08), 0 1px 3px rgba(0,0,0,0.06);
    --blur: 16px;
    --blur-lg: 24px;
    --transition-spring: 0.55s cubic-bezier(0.34, 1.56, 0.64, 1);
    --ease-out-expo: cubic-bezier(0.16, 1, 0.30, 1);
    --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-xxl: 4rem;

    /* Radius */
    --radius-sm: 10px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --radius-full: 9999px;

    /* Shadows — layered soft 2026 */
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.07), 0 1px 2px rgba(0,0,0,0.07);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.08), 0 2px 8px rgba(0,0,0,0.06);
    --shadow-lg: 0 12px 32px rgba(0,0,0,0.12), 0 4px 16px rgba(0,0,0,0.08);
    --shadow-glow: 0 0 28px rgba(102,126,234,0.35);
    --shadow-glow-pink: 0 0 28px rgba(255,0,110,0.30);

    /* Transitions */
    --transition-fast: 0.18s var(--ease-out-expo);
    --transition-normal: 0.32s var(--ease-out-expo);
    --transition-slow: 0.55s var(--ease-out-expo);

    /* Typography fluid helpers */
    --font-display: 'Heebo', system-ui, -apple-system, sans-serif;
    --content-max: 1200px;
}

/* ==========================================================
   2. DARK MODE — prefers-color-scheme
   ========================================================== */
@media (prefers-color-scheme: dark) {
    :root {
        --white: #1e1e24;
        --light-gray: #121214;
        --gray: #a1a1aa;
        --gray-300: #2a2a30;
        --dark-gray: #f4f4f5;
        --black: #ffffff;

        --glass-bg: rgba(24,24,28,0.62);
        --glass-bg-strong: rgba(30,30,35,0.82);
        --glass-border: rgba(255,255,255,0.08);
        --glass-shadow: 0 8px 32px rgba(0,0,0,0.45), 0 1px 0 rgba(255,255,255,0.04) inset;

        --shadow-sm: 0 1px 3px rgba(0,0,0,0.4);
        --shadow-md: 0 8px 24px rgba(0,0,0,0.45);
        --shadow-lg: 0 16px 48px rgba(0,0,0,0.55);
    }
    body {
        background: #0f0f12;
        color: #f4f4f5;
    }
    .doll-card,
    .card,
    .testimonial-card,
    .table {
        background: #1e1e24;
        border-color: rgba(255,255,255,0.06);
    }
    .table th { background: linear-gradient(135deg, #4a4a6a 0%, #5b3a7a 100%); }
    .form-control {
        background: #1a1a1f;
        border-color: #2a2a30;
        color: #f4f4f5;
    }
    .form-control:focus { border-color: var(--primary-blue); background: #1e1e26; }
    .info-box { background: linear-gradient(135deg, rgba(102,126,234,0.12) 0%, rgba(131,56,236,0.10) 100%); }
    .feature-item { background: linear-gradient(135deg, rgba(255,255,255,0.04) 0%, rgba(255,255,255,0.02) 100%); }
    .footer { background: #09090b; }
}

/* ==========================================================
   3. RESET + BASE
   ========================================================== */
* { margin: 0; padding: 0; box-sizing: border-box; }
*::before, *::after { box-sizing: border-box; }

html {
    direction: rtl;
    scroll-behavior: smooth;
    scrollbar-gutter: stable;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

body {
    font-family: var(--font-display);
    background: var(--light-gray);
    color: var(--dark-gray);
    line-height: 1.65;
    overflow-x: hidden;
}

::selection { background: rgba(131,56,236,0.22); }

/* Smooth scrollbar */
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-thumb { background: linear-gradient(var(--primary-purple), var(--primary-blue)); border-radius: 999px; border: 2px solid transparent; background-clip: content-box; }
::-webkit-scrollbar-track { background: transparent; }

/* ==========================================================
   4. ACCESSIBILITY — skip-to-content + focus-visible
   ========================================================== */
.skip-link {
    position: absolute;
    top: -100%;
    right: var(--spacing-sm);
    z-index: 9999;
    background: var(--primary-purple);
    color: #fff;
    padding: 0.7rem 1.2rem;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 0.95rem;
    box-shadow: var(--shadow-lg);
    text-decoration: none;
    transition: top 0.2s ease;
}
.skip-link:focus { top: 12px; }

/* High-contrast visible focus for keyboard users only */
:focus-visible {
    outline: 2.5px solid var(--primary-blue);
    outline-offset: 3px;
    border-radius: 4px;
}
a:focus-visible,
button:focus-visible,
.btn:focus-visible,
.form-control:focus-visible {
    outline: 2.5px solid var(--primary-purple);
    outline-offset: 2px;
    box-shadow: 0 0 0 4px rgba(131,56,236,0.18);
}
.nav a:focus-visible,
.hero-cta:focus-visible { outline-color: #fff; box-shadow: 0 0 0 4px rgba(255,255,255,0.5); }

/* Remove mouse focus ring but keep keyboard */
:focus:not(:focus-visible) { outline: none; box-shadow: none; }

/* ==========================================================
   5. TYPOGRAPHY — modern clamp()
   ========================================================== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: var(--spacing-sm);
    letter-spacing: -0.02em;
    font-family: var(--font-display);
}
h1 { font-size: clamp(2.2rem, 5vw + 0.6rem, 3.75rem); font-weight: 900; line-height: 1.05; }
h2 { font-size: clamp(1.75rem, 3.6vw + 0.5rem, 2.75rem); }
h3 { font-size: clamp(1.35rem, 2.4vw + 0.4rem, 2rem); }
h4 { font-size: clamp(1.15rem, 1.8vw + 0.4rem, 1.5rem); }
h5 { font-size: clamp(1.05rem, 1.4vw + 0.3rem, 1.25rem); }
h6 { font-size: 1rem; }

p { margin-bottom: var(--spacing-sm); color: inherit; }
p.lead { font-size: clamp(1.05rem, 1.5vw + 0.5rem, 1.35rem); line-height: 1.7; color: var(--gray); }

a { color: var(--primary-blue); text-decoration: none; transition: color var(--transition-fast); }
a:hover { color: var(--primary-purple); }

/* Section titles — gradient text with subtle fallback */
.section-title {
    text-align: center;
    margin-bottom: var(--spacing-xl);
    font-size: clamp(1.8rem, 4vw + 0.5rem, 2.85rem);
    font-weight: 900;
    letter-spacing: -0.03em;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}
.section-title::after {
    content: '';
    display: block;
    width: 56px; height: 4px;
    margin: 0.85rem auto 0;
    border-radius: 999px;
    background: var(--gradient-2);
    opacity: 0.9;
}

/* ==========================================================
   6. LAYOUT — container + container queries setup
   ========================================================== */
.container {
    max-width: var(--content-max);
    margin-inline: auto;
    padding-inline: var(--spacing-md);
    width: 100%;
}
@media (max-width: 768px) {
    .container { padding-inline: var(--spacing-sm); }
}

/* Enable container queries where supported */
.doll-grid, .features-grid, .testimonials-grid {
    container-type: inline-size;
    container-name: grid;
}

/* ==========================================================
   7. HEADER — Glassmorphism 2026
   ========================================================== */
.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 0.75rem 0;
    background: var(--glass-bg);
    backdrop-filter: blur(var(--blur)) saturate(180%);
    -webkit-backdrop-filter: blur(var(--blur)) saturate(180%);
    border-bottom: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow);
    transition: background var(--transition-normal), box-shadow var(--transition-normal), padding var(--transition-normal);
}
@supports not (backdrop-filter: blur(1px)) {
    .header { background: var(--glass-bg-strong); }
}
/* Subtle hairline glow at bottom */
.header::after {
    content: '';
    position: absolute;
    inset: auto 0 0 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(131,56,236,0.18), transparent);
    pointer-events: none;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--spacing-md);
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    min-width: 0;
}
.logo img { height: 52px; width: auto; object-fit: contain; filter: drop-shadow(0 2px 6px rgba(0,0,0,0.08)); }
.logo-text {
    font-size: clamp(1.35rem, 2vw + 0.5rem, 1.9rem);
    font-weight: 900;
    letter-spacing: -0.03em;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    white-space: nowrap;
}

.nav {
    display: flex;
    gap: 0.25rem;
    align-items: center;
}
.nav a {
    font-weight: 600;
    padding: 0.5rem 0.9rem;
    border-radius: var(--radius-full);
    transition: background var(--transition-fast), color var(--transition-fast), transform var(--transition-fast);
    position: relative;
    font-size: 0.96rem;
    letter-spacing: -0.01em;
}
.nav a:hover {
    background: var(--dark-gray);
    color: var(--white);
    transform: translateY(-1px);
}
@media (prefers-color-scheme: dark) {
    .nav a:hover { background: rgba(255,255,255,0.10); color: #fff; }
}
.nav a:active { transform: translateY(0); }

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
    border-radius: 10px;
    transition: background var(--transition-fast);
}
.nav-toggle span {
    width: 24px;
    height: 2.5px;
    background: var(--primary-purple);
    border-radius: 2px;
    transition: transform var(--transition-normal), opacity var(--transition-normal), background var(--transition-fast);
}
.nav.active .nav-toggle span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav.active .nav-toggle span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav.active .nav-toggle span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.contact-phone {
    background: var(--gradient-2);
    color: var(--white);
    padding: 0.55rem 1.15rem;
    border-radius: var(--radius-full);
    font-weight: 800;
    font-size: 0.98rem;
    box-shadow: 0 4px 16px rgba(245,87,108,0.32);
    transition: transform var(--transition-fast), box-shadow var(--transition-fast), filter var(--transition-fast);
    white-space: nowrap;
    letter-spacing: -0.01em;
}
.contact-phone:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(245,87,108,0.38); filter: brightness(1.05); color: #fff; }

.header-buttons { display: flex; align-items: center; gap: 0.65rem; }

.whatsapp-btn {
    width: 44px; height: 44px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.45rem;
    box-shadow: 0 4px 14px rgba(37,211,102,0.35);
    transition: transform var(--transition-spring), background var(--transition-fast), box-shadow var(--transition-fast);
    flex-shrink: 0;
}
.whatsapp-btn:hover { transform: scale(1.08) translateY(-1px); background: #20bd5a; box-shadow: 0 8px 22px rgba(37,211,102,0.42); color: #fff; }

@media (max-width: 900px) {
    .nav-toggle { display: flex; }
    .nav {
        position: fixed;
        top: 0; right: -100%;
        width: 78%; max-width: 340px;
        height: 100vh; height: 100dvh;
        background: var(--glass-bg-strong);
        backdrop-filter: blur(var(--blur-lg)) saturate(180%);
        -webkit-backdrop-filter: blur(var(--blur-lg)) saturate(180%);
        flex-direction: column; justify-content: center; gap: 0.5rem;
        box-shadow: -12px 0 40px rgba(0,0,0,0.12);
        border-left: 1px solid var(--glass-border);
        transition: right var(--transition-normal);
        padding: var(--spacing-xl);
    }
    .nav.active { right: 0; }
    .nav a { font-size: 1.15rem; padding: 0.85rem 1rem; width: 100%; text-align: center; }
    .header-content { gap: var(--spacing-sm); }
    .logo img { height: 46px; }
}

/* Header compact on scroll — class can be toggled via JS if desired */
.header.is-scrolled { padding: 0.45rem 0; box-shadow: 0 4px 24px rgba(0,0,0,0.08); }

/* ==========================================================
   8. HERO — Mesh gradient + subtle animations 2026
   ========================================================== */
.hero {
    position: relative;
    overflow: hidden;
    min-height: min(78vh, 760px);
    display: flex; align-items: center; justify-content: center;
    text-align: center;
    padding: var(--spacing-xxl) 0;
    color: #ffffff;
    background:
        var(--gradient-mesh-1),
        var(--gradient-hero);
    isolation: isolate;
}
/* כפיית לבן על כותרות ה-hero גם ב-dark mode — ללא פגיעה בכפתור */
.hero h1 { color: #ffffff !important; -webkit-text-fill-color: #ffffff !important; }
@media (prefers-color-scheme: dark) {
    .hero { color: #ffffff; }
    .hero h1 { color: #ffffff !important; -webkit-text-fill-color: #ffffff !important; }
}
/* Animated grain/mesh overlay */
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(800px 600px at 70% 20%, rgba(255,255,255,0.08), transparent 60%),
        radial-gradient(600px 500px at 20% 80%, rgba(255,255,255,0.06), transparent 60%);
    pointer-events: none;
    z-index: 0;
}
/* Bottom wave — softer */
.hero::after {
    content: '';
    position: absolute;
    inset: auto 0 0 0;
    height: 120px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 120'%3E%3Cpath fill='%23ffffff' fill-opacity='0.10' d='M0,64 C240,120 480,0 720,40 C960,80 1200,120 1440,64 L1440,120 L0,120 Z'/%3E%3C/svg%3E") no-repeat bottom;
    background-size: cover;
    pointer-events: none;
    z-index: 0;
}
@media (prefers-color-scheme: dark) {
    .hero::after { opacity: 0.6; }
    .hero { background:
        radial-gradient(at 20% 30%, rgba(131,56,236,0.22) 0%, transparent 50%),
        radial-gradient(at 85% 25%, rgba(255,0,110,0.18) 0%, transparent 50%),
        linear-gradient(135deg, #1a1240 0%, #2d1b4e 45%, #4a1430 100%);
    }
}

.hero-shapes { position: absolute; inset: 0; pointer-events: none; overflow: hidden; z-index: 0; }

.hero-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.16;
    filter: blur(0.2px);
    animation: float 7s ease-in-out infinite;
    will-change: transform;
}
.hero-shape:nth-child(1) {
    width: 110px; height: 110px;
    background: var(--primary-yellow);
    top: 12%; left: 9%;
    animation-delay: 0s;
    box-shadow: 0 0 40px rgba(255,190,11,0.45);
}
.hero-shape:nth-child(2) {
    width: 68px; height: 68px;
    background: var(--primary-pink);
    top: 18%; right: 14%;
    animation-delay: 1.2s;
    box-shadow: 0 0 30px rgba(255,0,110,0.45);
}
.hero-shape:nth-child(3) {
    width: 86px; height: 86px;
    background: var(--primary-cyan);
    bottom: 28%; left: 7%;
    animation-delay: 2.4s;
}
.hero-shape:nth-child(4) {
    width: 54px; height: 54px;
    background: var(--primary-yellow);
    bottom: 18%; right: 10%;
    animation-delay: 1.8s;
}
.hero-shape:nth-child(5) {
    width: 42px; height: 42px;
    background: rgba(255,255,255,0.95);
    top: 48%; left: 18%;
    animation-delay: 0.6s;
    opacity: 0.18;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg) scale(1); }
    50% { transform: translateY(-18px) rotate(6deg) scale(1.02); }
}

.hero-content { position: relative; z-index: 1; max-width: 920px; padding: 0 var(--spacing-md); }

.hero h1 {
    font-size: clamp(2.2rem, 4.2vw + 0.5rem, 3.6rem);
    margin-bottom: var(--spacing-md);
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff !important;
    /* שמח ובולט - זוהר לבן + צל כבד - שורה אחת בדסקטופ */
    text-shadow: 0 4px 24px rgba(0,0,0,0.45), 0 2px 4px rgba(0,0,0,0.35), 0 0 40px rgba(255,255,255,0.35);
    animation: fadeInUp 0.85s var(--ease-out-expo) both;
    line-height: 1.05;
    letter-spacing: -0.015em;
    font-weight: 900;
    filter: drop-shadow(0 2px 12px rgba(0,0,0,0.25));
    white-space: nowrap;
    text-wrap: nowrap;
}
.hero p {
    font-size: clamp(1.15rem, 2.2vw + 0.4rem, 1.65rem);
    margin-bottom: var(--spacing-lg);
    font-weight: 700;
    text-wrap: balance;
    animation: fadeInUp 0.95s var(--ease-out-expo) 0.12s both;
    /* pill שמח - רקע חצי שקוף עם בורדר זוהר */
    color: #fffbe6 !important;
    -webkit-text-fill-color: #fffbe6 !important;
    text-shadow: 0 2px 14px rgba(0,0,0,0.45), 0 1px 2px rgba(0,0,0,0.4);
    background: rgba(255,255,255,0.14);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 0.65rem 1.4rem;
    border-radius: 9999px;
    display: inline-block;
    border: 1.5px solid rgba(255,255,255,0.32);
    box-shadow: 0 4px 20px rgba(0,0,0,0.18), 0 0 30px rgba(255,255,255,0.15) inset;
    line-height: 1.4;
}

.hero-cta {
    display: inline-flex; align-items: center; gap: 0.6rem;
    background: #ffffff !important;
    color: #6d28d9 !important;
    -webkit-text-fill-color: #6d28d9 !important;
    padding: 0.95rem 2.2rem;
    border-radius: var(--radius-full);
    font-weight: 800;
    font-size: clamp(1.05rem, 1.8vw, 1.25rem);
    letter-spacing: -0.02em;
    box-shadow: 0 12px 32px rgba(0,0,0,0.18), 0 2px 8px rgba(0,0,0,0.10);
    transition: transform var(--transition-spring), box-shadow var(--transition-normal), background var(--transition-fast);
    animation: fadeInUp 1.05s var(--ease-out-expo) 0.22s both;
    position: relative;
    isolation: isolate;
    border: 2px solid transparent;
}
.hero-cta::before {
    content: '';
    position: absolute; inset: -1px;
    background: linear-gradient(135deg, #fff, #f8f9ff);
    border-radius: inherit;
    z-index: -1;
}
.hero-cta:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 18px 44px rgba(0,0,0,0.22), 0 6px 16px rgba(0,0,0,0.12);
    color: #6d28d9 !important;
    -webkit-text-fill-color: #6d28d9 !important;
}
.hero-cta:active { transform: translateY(-1px) scale(0.99); }

/* ==========================================================
   9. SECTIONS
   ========================================================== */
.section { padding: clamp(2.5rem, 6vw, 4.5rem) 0; position: relative; }
.section + .section { border-top: 1px solid rgba(0,0,0,0.04); }
@media (prefers-color-scheme: dark) { .section + .section { border-top-color: rgba(255,255,255,0.06); } }

/* ==========================================================
   10. DOLL GRID — Container queries + modern cards
   ========================================================== */
.doll-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: clamp(1rem, 2.2vw, 1.75rem);
    margin-bottom: var(--spacing-xl);
}

/* Container query — tighten spacing on narrow containers */
@container grid (max-width: 420px) {
    .doll-grid { grid-template-columns: 1fr; }
    .doll-image { height: 240px; }
}
@container grid (min-width: 760px) and (max-width: 980px) {
    .doll-grid { grid-template-columns: repeat(2, 1fr); }
}

/* FALLBACK for browsers without container queries */
@supports not (container-type: inline-size) {
    @media (max-width: 480px) { .doll-grid { grid-template-columns: 1fr; } }
}

.doll-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: transform var(--transition-spring), box-shadow var(--transition-normal), border-color var(--transition-fast);
    cursor: pointer;
    position: relative;
    border: 1px solid rgba(0,0,0,0.05);
    will-change: transform;
    transform: translateZ(0);
    contain: layout paint;
    isolation: isolate;
}
@media (prefers-color-scheme: dark) { .doll-card { border-color: rgba(255,255,255,0.06); } }

/* Gradient glow border on hover — 2026 lift + glow */
.doll-card::before {
    content: '';
    position: absolute; inset: 0;
    background: var(--gradient-border);
    opacity: 0;
    transition: opacity var(--transition-normal);
    z-index: 0;
    pointer-events: none;
}
.doll-card::after {
    content: '';
    position: absolute; inset: 1px;
    background: var(--white);
    border-radius: calc(var(--radius-lg) - 1px);
    z-index: 0;
    transition: background var(--transition-normal);
    pointer-events: none;
}
@media (prefers-color-scheme: dark) { .doll-card::after { background: #1e1e24; } }

.doll-card:hover {
    transform: translateY(-10px) scale(1.015);
    box-shadow:
        0 20px 44px rgba(0,0,0,0.12),
        0 8px 16px rgba(0,0,0,0.08),
        0 0 0 1px rgba(131,56,236,0.08),
        var(--shadow-glow);
    border-color: transparent;
}
.doll-card:hover::before { opacity: 1; }
.doll-card:active { transform: translateY(-4px) scale(0.99); transition-duration: 0.15s; }

/* Focus ring for cards (keyboard) */
.doll-card:focus-visible { outline: 3px solid var(--primary-purple); outline-offset: 2px; }

.doll-image {
    width: 100%; height: 300px;
    object-fit: cover;
    transition: transform 0.7s var(--ease-out-expo), scale 0.7s var(--ease-out-expo);
    will-change: transform;
    position: relative; z-index: 1;
    display: block;
    background: linear-gradient(135deg, #f1f3f9, #e9ecf5);
}
.doll-card:hover .doll-image { transform: scale(1.07); }
@media (prefers-color-scheme: dark) { .doll-image { background: #25252e; } }

.doll-info {
    padding: 1.15rem 1.25rem 1.25rem;
    position: relative; z-index: 1;
    background: transparent;
}
.doll-name {
    font-size: 1.28rem;
    font-weight: 800;
    color: var(--primary-purple);
    margin-bottom: 0.25rem;
    letter-spacing: -0.02em;
    line-height: 1.25;
}
@media (prefers-color-scheme: dark) { .doll-name { color: #c4a7ff; } }
.doll-character { font-size: 0.94rem; color: var(--gray); margin-bottom: 0.75rem; }

.doll-price {
    display: flex; justify-content: space-between; align-items: flex-end;
    margin-top: 0.85rem; padding-top: 0.85rem;
    border-top: 1px solid var(--gray-300);
    gap: 1rem;
}
@media (prefers-color-scheme: dark) { .doll-price { border-top-color: rgba(255,255,255,0.08); } }
.price-tag { font-size: 1.25rem; font-weight: 800; color: var(--primary-pink); letter-spacing: -0.02em; }
@media (prefers-color-scheme: dark) { .price-tag { color: #ff6b9d; } }
.price-label { font-size: 0.78rem; color: var(--gray); font-weight: 600; letter-spacing: 0.02em; text-transform: uppercase; }

/* ==========================================================
   11. BUTTONS — refined 2026
   ========================================================== */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
    padding: 0.65rem 1.25rem;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 0.96rem;
    letter-spacing: -0.01em;
    text-align: center;
    transition: transform var(--transition-spring), box-shadow var(--transition-normal), filter var(--transition-fast), background var(--transition-fast);
    border: none; cursor: pointer;
    font-family: var(--font-display);
    white-space: nowrap;
    will-change: transform;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0) scale(0.98); }

.btn-primary {
    background: var(--gradient-2);
    color: #fff;
    box-shadow: 0 4px 16px rgba(245,87,108,0.32);
}
.btn-primary:hover { box-shadow: 0 8px 24px rgba(245,87,108,0.40); filter: brightness(1.05); color: #fff; }

.btn-secondary {
    background: var(--gradient-3);
    color: #fff;
    box-shadow: 0 4px 16px rgba(0,168,232,0.30);
}
.btn-secondary:hover { box-shadow: 0 8px 24px rgba(0,168,232,0.36); color: #fff; }

.btn-success { background: var(--success); color: #fff; box-shadow: var(--shadow-sm); }
.btn-lg { padding: 0.85rem 1.85rem; font-size: 1.08rem; }
.btn:disabled, .btn[disabled] { opacity: 0.55; pointer-events: none; filter: grayscale(0.2); }

/* ==========================================================
   12. BADGES
   ========================================================== */
.badge {
    display: inline-flex; align-items: center; gap: 0.35rem;
    padding: 0.32rem 0.75rem;
    border-radius: var(--radius-full);
    font-size: 0.82rem; font-weight: 700;
    letter-spacing: 0.01em;
    line-height: 1;
    border: 1px solid transparent;
}
.badge-available { background: rgba(29,185,84,0.12); color: #1a9e48; border-color: rgba(29,185,84,0.18); }
.badge-unavailable { background: rgba(239,71,111,0.12); color: #d93a5d; border-color: rgba(239,71,111,0.18); }
.badge-pending { background: rgba(255,183,3,0.16); color: #9a6b00; border-color: rgba(255,183,3,0.22); }
.badge-confirmed { background: rgba(6,182,212,0.12); color: #0e8ea8; border-color: rgba(6,182,212,0.18); }
.badge-active { background: var(--primary-purple); color: #fff; }
.badge-returned { background: var(--gray); color: #fff; }
@media (prefers-color-scheme: dark) {
    .badge-available { background: rgba(29,185,84,0.18); color: #4ade80; }
    .badge-unavailable { background: rgba(239,71,111,0.18); color: #fb7185; }
}

/* ==========================================================
   13. FORMS
   ========================================================== */
.form-group { margin-bottom: var(--spacing-md); }
.form-label { display: block; font-weight: 650; margin-bottom: 0.45rem; color: #111111; font-size: 0.95rem; letter-spacing: -0.01em; }
@media (prefers-color-scheme: dark) { .form-label { color: #e4e4e7; } }

.form-control {
    width: 100%;
    padding: 0.78rem 1rem;
    border: 1.5px solid #cbd5e1;
    border-radius: var(--radius-md);
    font-family: var(--font-display);
    font-size: 1rem;
    background: #ffffff;
    color: #111111;
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast), background var(--transition-fast);
    appearance: none;
}
.form-control::placeholder { color: #64748b; }
.form-control:hover { border-color: #94a3b8; }
.form-control:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 4px rgba(0,168,232,0.12);
    background: #fff;
}
.form-control:invalid:not(:placeholder-shown) { border-color: var(--danger); box-shadow: 0 0 0 4px rgba(239,71,111,0.10); }
textarea.form-control { resize: vertical; min-height: 110px; line-height: 1.6; }

/* === FIX: קריאות - טקסט כהה על לבן (מותאם גם ל-dark mode) === */
.form-control, .form-control:focus, select.form-control, input.form-control, textarea.form-control {
    color: #111111;
    -webkit-text-fill-color: #111111;
}
.form-control option { color: #111111; background: #ffffff; }
select.form-control { color: #111111; background-color: #ffffff; font-weight: 600; }

/* סטטוס דרופדאון בדשבורד - קריא יותר (light) */
.table select.form-control {
    color: #111111;
    background: #ffffff;
    border: 1.5px solid #94a3b8;
    font-weight: 700;
    min-width: 130px;
}
.table select.form-control option { color: #111111; background: #ffffff; }

@media (prefers-color-scheme: dark) {
    .form-control, .form-control:focus, select.form-control, input.form-control, textarea.form-control {
        color: #f4f4f5 !important;
        -webkit-text-fill-color: #f4f4f5 !important;
        background: #1a1a1f !important;
        border-color: #3a3a42 !important;
    }
    .form-control option { color: #f4f4f5; background: #1a1a1f; }
    select.form-control { color: #f4f4f5 !important; background: #1a1a1f !important; }
    .table select.form-control {
        color: #f4f4f5 !important;
        background: #1a1a1f !important;
        border-color: #3a3a42 !important;
    }
    .table select.form-control option { color: #f4f4f5; background: #1a1a1f; }
    /* תיקון טבלאות - טקסט בהיר על רקע כהה */
    .table td, .table td strong, .table td span, .table td small, .table td a {
        color: #f4f4f5 !important;
    }
    .table td small { color: #cbd5e1 !important; }
    /* שורות פרטים (כתובת/הערות) */
    tr[style*="background: #f1f5f9"], tr[style*="background:#f1f5f9"] {
        background: #25252e !important;
    }
    tr[style*="background: #f1f5f9"] td, tr[style*="background: #f1f5f9"] td * {
        color: #f4f4f5 !important;
    }
    /* כל טקסט שהוגדר שחור/אפור ב-light - יהיה בהיר ב-dark */
    [style*="color: #111"], [style*="color:#111"], [style*="color: #333"], [style*="color:#333"] {
        color: #f4f4f5 !important;
    }
    small[style*="color: #333"], small[style*="color:#333"] {
        color: #cbd5e1 !important;
    }
}

/* ==========================================================
   14. CARDS
   ========================================================== */
.card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: clamp(1.25rem, 3vw, 1.9rem);
    box-shadow: var(--shadow-md);
    margin-bottom: var(--spacing-md);
    border: 1px solid rgba(0,0,0,0.04);
    transition: box-shadow var(--transition-normal), transform var(--transition-normal);
}
@media (prefers-color-scheme: dark) { .card { border-color: rgba(255,255,255,0.06); } }
.card:hover { box-shadow: var(--shadow-lg); }

.card-header {
    font-size: 1.35rem; font-weight: 800;
    margin-bottom: var(--spacing-md);
    padding-bottom: var(--spacing-sm);
    border-bottom: 2px solid var(--gray-300);
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.02em;
}

/* ==========================================================
   15. TABLE — scrollable on mobile
   ========================================================== */
.table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0,0,0,0.04);
}
/* Make tables horizontally scrollable on small screens */
@media (max-width: 700px) {
    .table { display: block; overflow-x: auto; -webkit-overflow-scrolling: touch; white-space: nowrap; }
}
.table th, .table td { padding: 0.85rem 1rem; text-align: right; border-bottom: 1px solid var(--gray-300); }
.table th { background: var(--gradient-1); color: #fff; font-weight: 750; font-size: 0.92rem; letter-spacing: -0.01em; }
.table tbody tr { transition: background var(--transition-fast); }
.table tbody tr:hover { background: rgba(102,126,234,0.06); }
@media (prefers-color-scheme: dark) { .table tbody tr:hover { background: rgba(255,255,255,0.04); } }

/* ==========================================================
   16. FOOTER
   ========================================================== */
.footer {
    background: #0f0f12;
    color: #e4e4e7;
    padding: clamp(2rem, 5vw, 3rem) 0;
    text-align: center;
    margin-top: var(--spacing-xxl);
    position: relative;
    overflow: hidden;
}
.footer::before {
    content: '';
    position: absolute; inset: 0 0 auto 0; height: 1px;
    background: linear-gradient(90deg, transparent, rgba(131,56,236,0.35), transparent);
}
.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
    text-align: right;
}
@media (max-width: 600px) { .footer-content { text-align: center; } }
.footer-section h3 { margin-bottom: var(--spacing-sm); color: var(--primary-cyan); font-size: 1.15rem; }
.footer-section a { color: #d4d4d8; transition: color var(--transition-fast); }
.footer-section a:hover { color: #fff; }
.footer-bottom { padding-top: var(--spacing-md); border-top: 1px solid rgba(255,255,255,0.08); color: #a1a1aa; font-size: 0.9rem; }

/* ==========================================================
   17. INFO BOX + ALERT
   ========================================================== */
.info-box {
    background: linear-gradient(135deg, rgba(102,126,234,0.08) 0%, rgba(118,75,162,0.08) 100%);
    border-right: 3px solid var(--primary-purple);
    padding: 1.15rem 1.25rem;
    border-radius: var(--radius-md);
    margin-bottom: var(--spacing-md);
    position: relative;
}
.alert { padding: 1rem 1.15rem; border-radius: var(--radius-md); margin-bottom: var(--spacing-md); font-weight: 500; line-height: 1.6; }
.alert-success { background: rgba(29,185,84,0.10); border-right: 3px solid var(--success); color: #15803d; }
.alert-danger { background: rgba(239,71,111,0.08); border-right: 3px solid var(--danger); color: #be123c; }
.alert-info { background: rgba(6,182,212,0.08); border-right: 3px solid var(--info); color: #0e7490; }
@media (prefers-color-scheme: dark) {
    .alert-success { background: rgba(29,185,84,0.14); color: #86efac; }
    .alert-danger { background: rgba(239,71,111,0.14); color: #fda4af; }
    .alert-info { background: rgba(6,182,212,0.14); color: #67e8f9; }
}

/* ==========================================================
   18. ANIMATIONS — refined + reduced-motion
   ========================================================== */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(22px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes pulseSoft {
    0%, 100% { transform: scale(1); box-shadow: 0 4px 16px rgba(245,87,108,0.32); }
    50% { transform: scale(1.03); box-shadow: 0 8px 24px rgba(245,87,108,0.42); }
}
.animate-pulse { animation: pulseSoft 2.2s ease-in-out infinite; }

/* Entrance reveal helper — can be used with IntersectionObserver */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity 0.6s var(--ease-out-expo), transform 0.6s var(--ease-out-expo); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ==========================================================
   19. FEATURES + TESTIMONIALS — modernized
   ========================================================== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
    gap: clamp(1rem, 2vw, 1.5rem);
    margin-bottom: var(--spacing-xl);
}
.feature-item {
    text-align: center;
    padding: 1.5rem 1.25rem;
    background: linear-gradient(135deg, rgba(102,126,234,0.05) 0%, rgba(118,75,162,0.05) 100%);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(102,126,234,0.08);
    transition: transform var(--transition-spring), box-shadow var(--transition-normal), border-color var(--transition-fast), background var(--transition-fast);
    will-change: transform;
}
.feature-item:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: rgba(102,126,234,0.14);
    background: linear-gradient(135deg, rgba(102,126,234,0.08) 0%, rgba(118,75,162,0.08) 100%);
}
.feature-icon {
    width: 68px; height: 68px;
    border-radius: 18px;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto var(--spacing-md);
    color: white; font-size: 1.65rem;
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}
.feature-item h3 { color: var(--primary-purple); margin-bottom: 0.35rem; font-size: 1.12rem; }
@media (prefers-color-scheme: dark) { .feature-item h3 { color: #c4a7ff; } }
.feature-item p { color: var(--gray); font-size: 0.94rem; margin: 0; line-height: 1.6; }

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
    gap: clamp(1rem, 2vw, 1.5rem);
}
.testimonial-card {
    background: var(--white);
    padding: 1.6rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    text-align: center;
    border: 1px solid rgba(0,0,0,0.04);
    transition: transform var(--transition-spring), box-shadow var(--transition-normal);
    will-change: transform;
}
.testimonial-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.testimonial-stars { font-size: 1.35rem; margin-bottom: var(--spacing-sm); letter-spacing: 0.08em; filter: saturate(1.2); }
.testimonial-text { font-size: 1.05rem; font-style: italic; color: var(--dark-gray); margin-bottom: var(--spacing-md); line-height: 1.75; text-wrap: balance; }
@media (prefers-color-scheme: dark) { .testimonial-text { color: #e4e4e7; } }
.testimonial-author { font-weight: 700; color: var(--primary-purple); margin: 0; font-size: 0.95rem; }
@media (prefers-color-scheme: dark) { .testimonial-author { color: #c4a7ff; } }

/* ==========================================================
   20. FLOATING WHATSAPP — 2026 polish
   ========================================================== */
.floating-whatsapp {
    position: fixed;
    bottom: 28px; left: 28px;
    width: 60px; height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: white; font-size: 1.9rem;
    box-shadow: 0 8px 24px rgba(37,211,102,0.38), 0 2px 8px rgba(0,0,0,0.12);
    z-index: 999;
    transition: transform var(--transition-spring), box-shadow var(--transition-normal), background var(--transition-fast);
    border: 1px solid rgba(255,255,255,0.22);
    will-change: transform;
}
.floating-whatsapp:hover { transform: scale(1.08) translateY(-2px); background: #20bd5a; box-shadow: 0 14px 32px rgba(37,211,102,0.46); color: #fff; }
.floating-whatsapp:active { transform: scale(0.96); }

/* ==========================================================
   21. REDUCED MOTION — accessibility
   ========================================================== */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    .hero-shape { animation: none !important; }
    .animate-pulse { animation: none !important; }
    .doll-card:hover, .feature-item:hover, .testimonial-card:hover, .btn:hover, .whatsapp-btn:hover, .floating-whatsapp:hover, .hero-cta:hover {
        transform: none !important;
    }
}

/* ==========================================================
   22. RESPONSIVE — mobile-first refinements + container queries
   ========================================================== */
@media (max-width: 768px) {
    .hero { min-height: 62vh; padding: 3rem 0; }
    .hero h1 { font-size: clamp(1.9rem, 7vw, 2.6rem); white-space: normal; text-wrap: balance; }
    .doll-grid { gap: var(--spacing-md); }
    .header-content { gap: 0.75rem; }
    .section { padding: 2.2rem 0; }
}

/* Very small phones */
@media (max-width: 380px) {
    .header-buttons { gap: 0.45rem; }
    .contact-phone { padding: 0.45rem 0.8rem; font-size: 0.88rem; }
    .whatsapp-btn { width: 40px; height: 40px; font-size: 1.25rem; }
    .doll-image { height: 260px; }
}

/* Container query fine-tuning for doll info density */
@container grid (max-width: 360px) {
    .doll-info { padding: 1rem; }
    .doll-name { font-size: 1.15rem; }
    .price-tag { font-size: 1.1rem; }
}

/* Large screens — breathing room */
@media (min-width: 1280px) {
    .hero h1 { font-size: 3.9rem; white-space: nowrap; }
    .container { max-width: 1240px; }
}

/* ==========================================================
   23. UTILITIES
   ========================================================== */
.text-center { text-align: center; }
.text-right { text-align: right; }
.text-left { text-align: left; }
.mt-1 { margin-top: var(--spacing-xs); }
.mt-2 { margin-top: var(--spacing-sm); }
.mt-3 { margin-top: var(--spacing-md); }
.mt-4 { margin-top: var(--spacing-lg); }
.mb-1 { margin-bottom: var(--spacing-xs); }
.mb-2 { margin-bottom: var(--spacing-sm); }
.mb-3 { margin-bottom: var(--spacing-md); }
.mb-4 { margin-bottom: var(--spacing-lg); }
.d-flex { display: flex; }
.justify-between { justify-content: space-between; }
.align-center { align-items: center; }
.gap-1 { gap: var(--spacing-xs); }
.gap-2 { gap: var(--spacing-sm); }
.gap-3 { gap: var(--spacing-md); }

/* Hide scrollbar for nav drawer when open — iOS fix */
.nav.active { overscroll-behavior: contain; }

/* ==========================================================
   24. ACCESSIBILITY TOOLBAR — סרגל נגישות 2026
   ========================================================== */
.a11y-toolbar-toggle {
    position: fixed;
    top: 110px;
    left: 0;
    z-index: 1001;
    width: 52px;
    height: 52px;
    background: #005a9c;
    color: #fff;
    border: none;
    border-radius: 0 12px 12px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    cursor: pointer;
    box-shadow: 2px 4px 16px rgba(0,0,0,0.22);
    transition: transform 0.2s ease, background 0.2s ease, left 0.3s ease;
}
.a11y-toolbar-toggle:hover { background: #004a80; transform: scale(1.05); }
.a11y-toolbar-toggle:focus-visible { outline: 3px solid #ffbe0b; outline-offset: 2px; }
.a11y-toolbar-toggle[aria-expanded="true"] { left: 300px; }

.a11y-toolbar {
    position: fixed;
    top: 110px;
    left: -320px;
    z-index: 1000;
    width: 300px;
    max-height: min(78vh, 560px);
    background: #ffffff;
    border-radius: 0 16px 16px 0;
    box-shadow: 4px 12px 40px rgba(0,0,0,0.18);
    border: 1px solid #e2e8f0;
    border-left: none;
    overflow: hidden;
    transition: left 0.35s cubic-bezier(0.16,1,0.3,1);
    display: flex;
    flex-direction: column;
}
.a11y-toolbar.is-open { left: 0; }
.a11y-toolbar-header {
    background: #005a9c;
    color: #fff;
    padding: 1rem 1.2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
}
.a11y-toolbar-header h2 { font-size: 1.1rem; margin: 0; font-weight: 800; letter-spacing: -0.01em; display: flex; align-items: center; gap: 0.5rem; }
.a11y-toolbar-close {
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.3);
    color: #fff;
    width: 32px;
    height: 32px;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}
.a11y-toolbar-close:hover { background: rgba(255,255,255,0.25); }
.a11y-toolbar-body {
    padding: 1rem;
    overflow-y: auto;
    display: grid;
    gap: 0.75rem;
    flex: 1;
}
.a11y-group { border: 1px solid #e2e8f0; border-radius: 12px; padding: 0.85rem; background: #f8fafc; }
.a11y-group-title { font-size: 0.85rem; font-weight: 800; color: #1e293b; margin-bottom: 0.6rem; display: flex; align-items: center; gap: 0.4rem; }
.a11y-controls { display: grid; grid-template-columns: 1fr 1fr; gap: 0.5rem; }
.a11y-btn {
    background: #ffffff;
    border: 1.5px solid #cbd5e1;
    color: #1e293b;
    padding: 0.6rem 0.5rem;
    border-radius: 10px;
    font-size: 0.88rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    transition: all 0.18s ease;
    line-height: 1.2;
    text-align: center;
    min-height: 64px;
    justify-content: center;
}
.a11y-btn:hover { border-color: #005a9c; background: #eff6ff; transform: translateY(-1px); }
.a11y-btn.is-active { background: #005a9c; color: #fff; border-color: #005a9c; box-shadow: 0 4px 12px rgba(0,90,156,0.25); }
.a11y-btn .a11y-icon { font-size: 1.35rem; }
.a11y-btn-reset {
    grid-column: 1 / -1;
    background: #ef4444;
    color: #fff;
    border-color: #dc2626;
    flex-direction: row;
    min-height: 44px;
}
.a11y-btn-reset:hover { background: #dc2626; color: #fff; }
.a11y-toolbar-footer {
    padding: 0.75rem 1rem;
    background: #f1f5f9;
    border-top: 1px solid #e2e8f0;
    font-size: 0.78rem;
    color: #475569;
    text-align: center;
    line-height: 1.4;
}
.a11y-toolbar-footer a { color: #005a9c; font-weight: 700; text-decoration: underline; }

/* Accessibility states */
html.a11y-large { font-size: 112.5%; }
html.a11y-xlarge { font-size: 125%; }
html.a11y-high-contrast, html.a11y-high-contrast body { background: #000 !important; color: #fff !important; }
html.a11y-high-contrast .header { background: #000 !important; border-bottom: 3px solid #ffff00 !important; }
html.a11y-high-contrast .card, html.a11y-high-contrast .doll-card, html.a11y-high-contrast .testimonial-card { background: #111 !important; color: #fff !important; border: 2px solid #ffff00 !important; }
html.a11y-high-contrast a, html.a11y-high-contrast .logo-text, html.a11y-high-contrast .section-title, html.a11y-high-contrast .card-header { color: #ffff00 !important; -webkit-text-fill-color: #ffff00 !important; background: none !important; }
html.a11y-high-contrast .btn { border: 2px solid #ffff00 !important; }
html.a11y-high-contrast .hero { background: #000 !important; }
html.a11y-high-contrast .hero h1, html.a11y-high-contrast .hero p { color: #ffff00 !important; -webkit-text-fill-color: #ffff00 !important; }
html.a11y-grayscale { filter: grayscale(1) !important; }
html.a11y-grayscale body { filter: none; }
html.a11y-underline a { text-decoration: underline !important; text-underline-offset: 3px !important; text-decoration-thickness: 2px !important; }
html.a11y-readable-font, html.a11y-readable-font body { font-family: 'Arial', 'Heebo', sans-serif !important; letter-spacing: 0.04em !important; line-height: 1.9 !important; }
html.a11y-no-animations *, html.a11y-no-animations *::before, html.a11y-no-animations *::after { animation: none !important; transition: none !important; }
@media (max-width: 640px) {
    .a11y-toolbar { width: min(300px, 90vw); left: -92vw; }
    .a11y-toolbar.is-open { left: 0; }
    .a11y-toolbar-toggle[aria-expanded="true"] { left: min(300px, 90vw); }
    .a11y-toolbar-toggle { top: 88px; width: 46px; height: 46px; font-size: 1.4rem; }
}

/* Print — clean */
@media print {
    .header, .floating-whatsapp, .hero-shapes, .nav-toggle, .a11y-toolbar, .a11y-toolbar-toggle { display: none !important; }
    body { background: #fff; color: #000; }
    .doll-card, .card { box-shadow: none; border: 1px solid #ddd; break-inside: avoid; }
}
