/* Anna Joan Electronic Limited — Stylesheet */

:root {
    --gold: #f4a017;
    --gold-dark: #d4880f;
    --bg: #0d1b2a;
    --bg-card: #1a2a3a;
    --bg-card-hover: #1f3347;
    --text: #ffffff;
    --text-muted: #94a3b8;
    --text-dim: #64748b;
    --whatsapp: #25D366;
    --whatsapp-dark: #1da851;
    --border: #2d3f50;
    --green: #10b981;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* ── TICKER ───────────────────────────────── */
.ticker-bar {
    background: var(--gold);
    height: 36px;
    display: flex;
    align-items: center;
    overflow: hidden;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.ticker-label {
    background: #000;
    color: var(--gold);
    padding: 0 14px;
    height: 100%;
    display: flex;
    align-items: center;
    font-size: 11px;
    font-weight: 800;
    white-space: nowrap;
    flex-shrink: 0;
    letter-spacing: 1px;
}

.ticker-wrap { flex: 1; overflow: hidden; }

.ticker-content {
    display: flex;
    gap: 48px;
    animation: ticker 35s linear infinite;
    white-space: nowrap;
    font-size: 12px;
    font-weight: 600;
    color: #000;
}

.ticker-content:hover { animation-play-state: paused; }
.ticker-item { display: flex; align-items: center; gap: 8px; }
.ticker-up { color: #166534; }
.ticker-down { color: #991b1b; }
.ticker-sep { color: rgba(0,0,0,0.3); }

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

/* ── NAVBAR ───────────────────────────────── */
.navbar {
    background: rgba(13,27,42,0.97);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 36px;
    z-index: 999;
}

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

.nav-logo { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.logo-icon { font-size: 24px; }
.logo-main { font-size: 16px; font-weight: 800; color: var(--gold); letter-spacing: 1px; }
.logo-sub { font-size: 10px; color: var(--text-muted); }

.nav-links { display: flex; gap: 28px; align-items: center; }
.nav-links a { color: var(--text-muted); text-decoration: none; font-size: 14px; font-weight: 500; transition: color 0.2s; }
.nav-links a:hover { color: var(--gold); }

.nav-actions { display: flex; align-items: center; gap: 12px; }

.btn-whatsapp {
    background: var(--whatsapp);
    color: #fff;
    border: none;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: background 0.2s, transform 0.1s;
}
.btn-whatsapp:hover { background: var(--whatsapp-dark); transform: translateY(-1px); }
.btn-whatsapp.large { padding: 15px 28px; font-size: 15px; border-radius: 10px; }

.hamburger { display: none; background: none; border: none; color: var(--text); font-size: 22px; cursor: pointer; padding: 4px; }

/* ── LANGUAGE SWITCHER ────────────────────── */
.lang-switcher { position: relative; flex-shrink: 0; }

.lang-btn {
    background: transparent;
    border: 1px solid var(--border);
    color: var(--text-muted);
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 4px;
    transition: border-color 0.2s, color 0.2s;
    white-space: nowrap;
}
.lang-btn:hover { border-color: var(--gold); color: var(--gold); }

.lang-menu {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 6px;
    min-width: 150px;
    z-index: 1001;
    box-shadow: 0 8px 32px rgba(0,0,0,0.4);
}
.lang-menu.open { display: flex; flex-direction: column; }

.lang-menu button {
    background: none;
    border: none;
    color: var(--text-muted);
    padding: 9px 12px;
    border-radius: 7px;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    text-align: left;
    transition: background 0.15s, color 0.15s;
    font-family: inherit;
}
.lang-menu button:hover { background: rgba(244,160,23,0.1); color: var(--gold); }

[dir="rtl"] .lang-menu { right: auto; left: 0; }
[dir="rtl"] .lang-menu button { text-align: right; }

/* ── HERO ─────────────────────────────────── */
.hero { min-height: 90vh; position: relative; display: flex; align-items: center; overflow: hidden; }

.hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 75% 50%, rgba(244,160,23,0.12) 0%, transparent 65%),
        radial-gradient(ellipse at 15% 80%, rgba(37,211,102,0.06) 0%, transparent 50%);
}

.hero-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    width: 100%;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(244,160,23,0.12);
    border: 1px solid rgba(244,160,23,0.3);
    color: var(--gold);
    padding: 6px 14px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 20px;
}

.hero-title { font-size: clamp(30px, 4.5vw, 50px); font-weight: 800; line-height: 1.15; margin-bottom: 20px; }
.hero-highlight { color: var(--gold); }

.hero-subtitle { font-size: 16px; color: var(--text-muted); line-height: 1.75; margin-bottom: 32px; }

.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 40px; }

.btn-primary {
    background: var(--gold);
    color: #000;
    border: none;
    padding: 14px 22px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s;
}
.btn-primary:hover { background: var(--gold-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(244,160,23,0.3); }
.btn-primary.large { padding: 15px 32px; font-size: 16px; }

.btn-secondary {
    background: transparent;
    color: var(--text);
    border: 1px solid var(--border);
    padding: 14px 22px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s;
}
.btn-secondary:hover { border-color: var(--gold); color: var(--gold); }

.hero-stats { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; padding-top: 28px; border-top: 1px solid var(--border); }
.stat { text-align: center; }
.stat-num { display: block; font-size: 22px; font-weight: 800; color: var(--gold); }
.stat-label { font-size: 11px; color: var(--text-muted); }

/* Chat preview */
.chat-widget-preview {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 18px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.25s, box-shadow 0.25s;
    max-width: 380px;
    margin: 0 auto;
}
.chat-widget-preview:hover { transform: translateY(-6px); box-shadow: 0 24px 64px rgba(0,0,0,0.5); }

.chat-header {
    background: var(--gold);
    padding: 14px 16px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.chat-avatar {
    width: 38px; height: 38px;
    border-radius: 50%;
    background: rgba(0,0,0,0.2);
    display: flex; align-items: center; justify-content: center;
    font-weight: 800; font-size: 16px; color: #fff; flex-shrink: 0;
}
.chat-info { flex: 1; }
.chat-name { font-weight: 700; font-size: 15px; color: #000; }
.chat-status { font-size: 12px; color: rgba(0,0,0,0.65); display: flex; align-items: center; gap: 4px; }
.status-dot { width: 7px; height: 7px; background: #166534; border-radius: 50%; animation: pulse 2s infinite; }
.chat-lang { font-size: 11px; background: rgba(0,0,0,0.15); padding: 3px 9px; border-radius: 100px; color: #000; font-weight: 600; }

@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:0.4} }

.chat-messages { padding: 16px; display: flex; flex-direction: column; gap: 10px; min-height: 180px; }
.chat-msg { padding: 10px 13px; border-radius: 12px; font-size: 13px; line-height: 1.55; max-width: 86%; }
.chat-msg.bot { background: rgba(244,160,23,0.1); border: 1px solid rgba(244,160,23,0.2); align-self: flex-start; border-bottom-left-radius: 4px; }
.chat-msg.user { background: var(--whatsapp); color: #fff; align-self: flex-end; border-bottom-right-radius: 4px; }
.chat-msg.typing-reply { animation: fadeUp 0.4s ease 1.2s both; }

@keyframes fadeUp { from{opacity:0;transform:translateY(8px)} to{opacity:1;transform:translateY(0)} }

.chat-input-preview { border-top: 1px solid var(--border); padding: 12px 16px; display: flex; align-items: center; gap: 10px; }
.chat-input-preview span { flex: 1; color: var(--text-dim); font-size: 13px; }
.chat-input-preview button { background: var(--gold); color: #000; border: none; padding: 6px 14px; border-radius: 8px; font-size: 12px; font-weight: 700; cursor: pointer; }

/* ── SECTIONS ─────────────────────────────── */
.section { padding: 80px 0; }
.section-dark { background: rgba(0,0,0,0.3); }

.section-header { text-align: center; margin-bottom: 48px; }
.section-badge {
    display: inline-block;
    background: rgba(244,160,23,0.12);
    border: 1px solid rgba(244,160,23,0.3);
    color: var(--gold);
    padding: 4px 13px;
    border-radius: 100px;
    font-size: 11px;
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
}
.section-header h2 { font-size: clamp(22px, 3.5vw, 34px); font-weight: 800; margin-bottom: 12px; }
.section-header p { color: var(--text-muted); font-size: 16px; max-width: 580px; margin: 0 auto; }

/* ── PRICES ───────────────────────────────── */
.price-filters { display: flex; gap: 8px; justify-content: center; margin-bottom: 32px; flex-wrap: wrap; }

.filter-btn {
    background: transparent;
    border: 1px solid var(--border);
    color: var(--text-muted);
    padding: 8px 20px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
}
.filter-btn.active, .filter-btn:hover { background: var(--gold); border-color: var(--gold); color: #000; font-weight: 700; }

.price-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(275px,1fr)); gap: 16px; margin-bottom: 24px; }

.price-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 20px;
    cursor: pointer;
    transition: all 0.2s;
}
.price-card:hover { border-color: var(--gold); background: var(--bg-card-hover); transform: translateY(-3px); box-shadow: 0 8px 30px rgba(0,0,0,0.3); }

.price-card-top { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 16px; }
.price-model { font-size: 15px; font-weight: 700; }
.price-storage { font-size: 12px; color: var(--text-muted); margin-top: 3px; }

.price-badge { font-size: 11px; padding: 3px 9px; border-radius: 100px; font-weight: 700; white-space: nowrap; }
.badge-hot   { background: rgba(239,68,68,0.15);  color: #ef4444; }
.badge-new   { background: rgba(16,185,129,0.15); color: #10b981; }
.badge-pop   { background: rgba(244,160,23,0.15); color: var(--gold); }

.price-grades { display: flex; flex-direction: column; gap: 0; }
.grade-row { display: flex; justify-content: space-between; align-items: center; padding: 7px 0; border-bottom: 1px solid rgba(255,255,255,0.05); }
.grade-row:last-child { border-bottom: none; }
.grade-label { display: flex; align-items: center; gap: 7px; font-size: 13px; color: var(--text-muted); }
.grade-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.dot-a { background: #10b981; }
.dot-b { background: #f59e0b; }
.dot-c { background: #6b7280; }
.grade-price { font-weight: 700; font-size: 14px; color: var(--gold); }

.price-foot { display: flex; justify-content: space-between; align-items: center; margin-top: 14px; }
.price-updated { font-size: 11px; color: var(--text-dim); }
.price-cta-link { font-size: 12px; color: var(--whatsapp); font-weight: 600; }

/* storage rows inside price cards */
.price-storages { display: flex; flex-direction: column; gap: 0; }
.storage-row { display: flex; justify-content: space-between; align-items: center; padding: 7px 0; border-bottom: 1px solid rgba(255,255,255,0.05); }
.storage-row:last-child { border-bottom: none; }
.storage-size { font-size: 13px; color: var(--text-muted); }
.storage-price { font-weight: 700; font-size: 14px; color: var(--gold); }

/* full price table section */
.full-price-section { margin-top: 48px; }

.full-price-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}
.full-price-header h3 { font-size: 18px; font-weight: 700; }

.search-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 8px 14px;
    flex: 1;
    max-width: 320px;
}
.search-icon { font-size: 16px; }
.search-wrap input {
    background: none;
    border: none;
    outline: none;
    color: var(--text);
    font-size: 14px;
    font-family: inherit;
    width: 100%;
}
.search-wrap input::placeholder { color: var(--text-dim); }

.table-brand-filters { display: flex; gap: 8px; margin-bottom: 16px; flex-wrap: wrap; }
.table-filter-btn {
    background: transparent;
    border: 1px solid var(--border);
    color: var(--text-muted);
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
}
.table-filter-btn.active,
.table-filter-btn:hover { background: var(--gold); border-color: var(--gold); color: #000; font-weight: 700; }

.price-table-wrap {
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    overflow-x: auto;
}

.price-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.price-table thead tr { background: var(--bg-card); }
.price-table th {
    text-align: left;
    padding: 12px 16px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: var(--text-muted);
    border-bottom: 1px solid var(--border);
    white-space: nowrap;
}
.price-table tbody tr { border-bottom: 1px solid rgba(255,255,255,0.04); transition: background 0.15s; }
.price-table tbody tr:last-child { border-bottom: none; }
.price-table tbody tr:hover { background: rgba(244,160,23,0.04); }
.price-table td { padding: 11px 16px; vertical-align: middle; }

.td-model { font-weight: 600; color: var(--text); }
.td-storage { color: var(--text-muted); font-size: 13px; }
.td-price { white-space: nowrap; }
.table-price { font-weight: 700; color: var(--gold); font-size: 15px; }
.table-tbd { color: var(--text-dim); font-size: 13px; }
.td-action { white-space: nowrap; }
.table-ask {
    display: inline-block;
    background: rgba(37,211,102,0.12);
    color: var(--whatsapp);
    border: 1px solid rgba(37,211,102,0.3);
    padding: 4px 12px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
}
.table-ask:hover { background: var(--whatsapp); color: #fff; }

.table-note { font-size: 12px; color: var(--text-dim); margin-top: 12px; text-align: center; }

.price-note {
    text-align: center;
    padding: 16px 20px;
    background: rgba(244,160,23,0.05);
    border: 1px solid rgba(244,160,23,0.15);
    border-radius: 8px;
    font-size: 14px;
    color: var(--text-muted);
}
.price-note a { color: var(--gold); text-decoration: none; font-weight: 600; }
.price-note a:hover { text-decoration: underline; }

/* ── FEATURES ─────────────────────────────── */
.features-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(310px,1fr)); gap: 20px; }

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 28px;
    transition: all 0.2s;
}
.feature-card:hover { border-color: rgba(244,160,23,0.35); transform: translateY(-3px); }
.feature-icon { font-size: 32px; margin-bottom: 16px; }
.feature-card h3 { font-size: 17px; font-weight: 700; margin-bottom: 8px; }
.feature-card p { color: var(--text-muted); font-size: 14px; line-height: 1.7; }

/* ── STORE ────────────────────────────────── */
.store-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }

.store-detail { display: flex; gap: 16px; margin-bottom: 24px; }
.store-icon { font-size: 22px; flex-shrink: 0; padding-top: 2px; }
.store-detail strong { display: block; font-size: 13px; font-weight: 700; color: var(--gold); margin-bottom: 5px; text-transform: uppercase; letter-spacing: 0.5px; }
.store-detail p { font-size: 14px; color: var(--text-muted); line-height: 1.65; }

.btn-map {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    border: 1px solid var(--gold);
    color: var(--gold);
    padding: 11px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.2s;
    margin-top: 4px;
}
.btn-map:hover { background: var(--gold); color: #000; }

.store-map {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    min-height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.map-placeholder { text-align: center; padding: 40px 32px; }
.map-pin { font-size: 48px; margin-bottom: 14px; }
.map-placeholder p { color: var(--text-muted); margin: 4px 0; font-size: 14px; }
.map-placeholder strong { color: var(--text); }
.map-link { display: inline-block; margin-top: 18px; color: var(--gold); text-decoration: none; font-weight: 600; font-size: 14px; }
.map-link:hover { text-decoration: underline; }

/* ── REVIEWS ──────────────────────────────── */
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(290px,1fr)); gap: 16px; margin-bottom: 52px; }

.review-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: 12px; padding: 20px; transition: transform 0.2s; }
.review-card:hover { transform: translateY(-3px); }

.review-header { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.review-avatar {
    width: 44px; height: 44px;
    border-radius: 50%;
    background: var(--gold);
    display: flex; align-items: center; justify-content: center;
    font-weight: 800; font-size: 17px; color: #000; flex-shrink: 0;
}
.review-name { font-weight: 700; font-size: 15px; }
.review-country { font-size: 13px; color: var(--text-muted); }

.review-purchase {
    display: inline-block;
    font-size: 12px;
    background: rgba(244,160,23,0.1);
    color: var(--gold);
    padding: 4px 10px;
    border-radius: 100px;
    margin-bottom: 10px;
    font-weight: 500;
}
.review-stars { color: var(--gold); font-size: 14px; margin-bottom: 8px; }
.review-text { font-size: 14px; color: var(--text-muted); line-height: 1.65; }
.review-date { font-size: 11px; color: var(--text-dim); margin-top: 10px; }

.review-form-wrapper {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 36px;
    max-width: 680px;
    margin: 0 auto;
}
.review-form-wrapper h3 { font-size: 20px; font-weight: 700; margin-bottom: 8px; }
.review-form-wrapper > p { color: var(--text-muted); font-size: 14px; margin-bottom: 24px; }

.review-form { display: flex; flex-direction: column; gap: 12px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

.review-form input,
.review-form textarea {
    background: var(--bg);
    border: 1px solid var(--border);
    color: var(--text);
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 14px;
    font-family: inherit;
    width: 100%;
    transition: border-color 0.2s;
    resize: vertical;
}
.review-form input:focus,
.review-form textarea:focus { outline: none; border-color: var(--gold); }
.review-form input::placeholder,
.review-form textarea::placeholder { color: var(--text-dim); }

.btn-submit {
    background: var(--gold);
    color: #000;
    border: none;
    padding: 14px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s;
}
.btn-submit:hover { background: var(--gold-dark); transform: translateY(-1px); }

.form-success {
    text-align: center;
    padding: 18px;
    background: rgba(16,185,129,0.1);
    border: 1px solid rgba(16,185,129,0.3);
    border-radius: 8px;
    color: #10b981;
    font-weight: 600;
    margin-top: 12px;
}

/* ── CTA BANNER ───────────────────────────── */
.cta-banner {
    background: linear-gradient(135deg, rgba(244,160,23,0.12) 0%, rgba(244,160,23,0.04) 100%);
    border-top: 1px solid rgba(244,160,23,0.2);
    border-bottom: 1px solid rgba(244,160,23,0.2);
    padding: 80px 20px;
    text-align: center;
}
.cta-banner h2 { font-size: clamp(22px, 3.5vw, 34px); font-weight: 800; margin-bottom: 12px; }
.cta-banner p { color: var(--text-muted); font-size: 16px; margin-bottom: 32px; }
.cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ── FOOTER ───────────────────────────────── */
.footer { background: rgba(0,0,0,0.5); border-top: 1px solid var(--border); padding: 60px 0 0; }

.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1.5fr; gap: 40px; padding-bottom: 40px; }
.footer-brand p { color: var(--text-muted); font-size: 14px; line-height: 1.7; }

.footer-links, .footer-contact { display: flex; flex-direction: column; }
.footer-links h4, .footer-contact h4 {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-dim);
    margin-bottom: 16px;
}
.footer-links a { color: var(--text-muted); text-decoration: none; font-size: 14px; padding: 4px 0; transition: color 0.2s; }
.footer-links a:hover { color: var(--gold); }
.footer-contact p { color: var(--text-muted); font-size: 14px; padding: 3px 0; line-height: 1.6; }

.footer-bottom {
    border-top: 1px solid var(--border);
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}
.footer-bottom p { color: var(--text-dim); font-size: 12px; }

/* ── FLOATING WHATSAPP ────────────────────── */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    background: var(--whatsapp);
    color: #fff;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(37,211,102,0.45);
    z-index: 997;
    transition: all 0.2s;
}
.whatsapp-float:hover { background: var(--whatsapp-dark); transform: scale(1.12); box-shadow: 0 6px 28px rgba(37,211,102,0.55); }

/* ── RESPONSIVE ───────────────────────────── */
@media (max-width: 1024px) {
    .hero-container { grid-template-columns: 1fr; text-align: center; }
    .hero-chat-preview { display: none; }
    .hero-cta { justify-content: center; }
    .hero-stats { grid-template-columns: repeat(4,1fr); }
    .store-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .nav-links { display: none; }
    .nav-links.open {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 100px;
        left: 0; right: 0;
        background: var(--bg);
        padding: 20px 24px;
        border-bottom: 1px solid var(--border);
        z-index: 998;
        gap: 16px;
    }
    .hamburger { display: block; }
    .hero-stats { grid-template-columns: repeat(2,1fr); }
    .form-row { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .features-grid { grid-template-columns: 1fr; }
    .cta-buttons { flex-direction: column; align-items: center; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .review-form-wrapper { padding: 24px 18px; }
}

@media (max-width: 480px) {
    .hero-stats { grid-template-columns: repeat(2,1fr); }
    .ticker-label { display: none; }
    .price-grid { grid-template-columns: 1fr; }
    .reviews-grid { grid-template-columns: 1fr; }
}

/* ── ANNA CHAT MODAL ─────────────────────────────────────────────────────── */
#anna-chat-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 10000;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.6);
}
#anna-chat-modal.open { display: flex; }

#anna-chat-box {
    width: 540px;
    max-width: calc(100vw - 24px);
    height: 680px;
    max-height: calc(100vh - 40px);
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 24px 80px rgba(0,0,0,0.5);
}

#anna-chat-header {
    background: #0d1b2a;
    padding: 16px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-shrink: 0;
}
.anna-hdr-info { display: flex; align-items: center; gap: 12px; }
.anna-hdr-avatar {
    width: 40px; height: 40px;
    background: var(--gold);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-weight: 700; color: #0d1b2a; font-size: 18px;
}
.anna-hdr-name { color: #fff; font-weight: 700; font-size: 16px; }
.anna-hdr-status { color: #86efac; font-size: 12px; margin-top: 2px; }
.anna-close-btn {
    background: rgba(255,255,255,0.15);
    border: none; border-radius: 50%;
    width: 30px; height: 30px;
    color: #fff; font-size: 16px;
    cursor: pointer; display: flex; align-items: center; justify-content: center;
    transition: background 0.2s;
}
.anna-close-btn:hover { background: rgba(255,255,255,0.3); }

#anna-messages {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    background: #f8fafc;
}
.anna-msg {
    max-width: 78%;
    padding: 11px 15px;
    border-radius: 16px;
    font-size: 14px;
    line-height: 1.55;
    word-break: break-word;
}
.anna-msg.bot {
    background: #fff;
    color: #1e293b;
    align-self: flex-start;
    border: 1px solid #e2e8f0;
    border-bottom-left-radius: 4px;
}
.anna-msg.user {
    background: #0d1b2a;
    color: #ffffff;
    align-self: flex-end;
    border-bottom-right-radius: 4px;
}
.anna-msg.typing { color: #94a3b8; font-style: italic; }

#anna-input-row {
    display: flex;
    align-items: flex-end;
    gap: 10px;
    padding: 14px 16px;
    border-top: 1px solid #e2e8f0;
    background: #fff;
    flex-shrink: 0;
}
#anna-input {
    flex: 1;
    border: 1.5px solid #cbd5e1;
    border-radius: 12px;
    padding: 10px 14px;
    font-size: 14px;
    font-family: inherit;
    resize: none;
    outline: none;
    max-height: 120px;
    overflow-y: auto;
    line-height: 1.4;
    color: #1e293b;
    background: #fff;
}
#anna-input:focus { border-color: var(--gold); }
#anna-send-btn {
    background: var(--gold);
    border: none;
    border-radius: 12px;
    width: 42px; height: 42px;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    color: #0d1b2a;
    flex-shrink: 0;
    transition: background 0.2s;
}
#anna-send-btn:hover { background: var(--gold-dark); }
#anna-send-btn:disabled { opacity: 0.5; cursor: not-allowed; }

@media (max-width: 600px) {
    #anna-chat-modal { padding: 0; align-items: flex-end; }
    #anna-chat-box {
        width: 100vw;
        border-radius: 0;
        /* dvh tracks the visual viewport (shrinks when keyboard opens) */
        height: 100dvh;
        max-height: 100dvh;
        /* fallback for older iOS Safari */
        height: -webkit-fill-available;
    }
    #anna-messages { -webkit-overflow-scrolling: touch; }
}
