/* ========================================
   PIZZAS TOGO — ULTRA PREMIUM STYLES v1.0
   Mobile-First · Dark Theme · Premium Pizzeria
   Colors: Red #B71C1C, Gold #D4A843, Navy #0A1628
   ======================================== */
:root {
    --primary: #B71C1C;
    --primary-light: #EF5350;
    --primary-dark: #7F0000;
    --primary-glow: rgba(183,28,28,0.35);
    --accent: #D4A843;
    --accent-light: #F0CC71;
    --accent-dark: #A17C2A;
    --gold: #D4A843;
    --gold-light: #F0CC71;
    --gold-glow: rgba(212,168,67,0.25);
    --navy: #0A1628;
    --navy-light: #152238;
    --navy-deep: #060E1A;
    --bg-dark: #060E1A;
    --bg-card: #0C1829;
    --bg-card-hover: #122035;
    --bg-surface: #0E1C30;
    --bg-elevated: #142440;
    --text-white: #FFFFFF;
    --text-light: #D0D8E8;
    --text-gray: #8898B0;
    --text-muted: #506080;
    --success: #25D366;
    --danger: #E53935;
    --warning: #FF9800;
    --border: rgba(212,168,67,0.08);
    --border-light: rgba(212,168,67,0.15);
    --border-gold: rgba(212,168,67,0.25);
    --shadow-primary: rgba(183,28,28,0.28);
    --shadow-gold: rgba(212,168,67,0.18);
    --shadow-deep: rgba(0,0,0,0.65);
    --gradient-premium: linear-gradient(135deg, #B71C1C 0%, #7F0000 100%);
    --gradient-gold: linear-gradient(135deg, #D4A843, #F0CC71);
    --gradient-gold-dark: linear-gradient(135deg, #A17C2A, #D4A843);
    --gradient-card: linear-gradient(180deg, rgba(212,168,67,0.04), transparent);
    --gradient-royal: linear-gradient(135deg, #0A1628 0%, #152238 50%, #1A2D4A 100%);
    --gradient-fire: linear-gradient(135deg, #B71C1C, #E53935, #FF6F00);
    --font-display: 'Cinzel', serif;
    --font-body: 'Montserrat', sans-serif;
    --radius-sm: 12px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-full: 50px;
    --anim-fast: .2s;
    --anim-med: .35s;
    --anim-slow: .6s;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
    font-family: var(--font-body);
    background: var(--bg-dark);
    color: var(--text-light);
    line-height: 1.6;
    min-height: 100vh;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; outline: none; font-family: var(--font-body); }

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-dark); }
::-webkit-scrollbar-thumb { background: rgba(212,168,67,.4); border-radius: 3px; }

/* ════════════════════════════════════════
   WELCOME SCREEN
════════════════════════════════════════ */
.welcome-screen {
    position: fixed; inset: 0; z-index: 9999;
    display: flex; align-items: center; justify-content: center;
    background: radial-gradient(ellipse at 50% 30%, #0E1C30 0%, #060E1A 70%);
    overflow: hidden;
}
.welcome-overlay {
    position: absolute; inset: 0;
    background: 
        radial-gradient(circle at 30% 60%, rgba(183,28,28,.06) 0%, transparent 50%),
        radial-gradient(circle at 70% 30%, rgba(212,168,67,.05) 0%, transparent 50%);
}
.welcome-particles {
    position: absolute; inset: 0; overflow: hidden; pointer-events: none;
}
.welcome-particle {
    position: absolute; bottom: -20px;
    animation: floatUp 8s linear infinite;
    opacity: 0;
}
@keyframes floatUp {
    0%   { transform: translateY(0) rotate(0); opacity: 0; }
    10%  { opacity: .6; }
    90%  { opacity: .6; }
    100% { transform: translateY(-100vh) rotate(360deg); opacity: 0; }
}
.welcome-content {
    position: relative; z-index: 2;
    text-align: center; padding: 24px;
    max-width: 500px; width: 100%;
}
.welcome-logo-container {
    position: relative;
    width: 200px; height: 200px;
    margin: 0 auto 28px;
    display: flex; align-items: center; justify-content: center;
}
.welcome-logo-glow {
    position: absolute; inset: -20px;
    background: radial-gradient(circle, rgba(212,168,67,.18) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulseGlow 3s ease-in-out infinite;
}
@keyframes pulseGlow { 0%,100%{opacity:.5;transform:scale(1)} 50%{opacity:1;transform:scale(1.08)} }
.welcome-logo-ring {
    position: absolute; inset: -8px;
    border: 2px solid rgba(212,168,67,.2);
    border-radius: 50%;
    animation: rotateRing 12s linear infinite;
}
.welcome-logo-ring.ring2 {
    inset: -18px; border-color: rgba(183,28,28,.12);
    animation-duration: 18s; animation-direction: reverse;
}
@keyframes rotateRing { to { transform: rotate(360deg); } }
.welcome-logo-img {
    width: 160px; height: 160px;
    object-fit: contain;
    filter: drop-shadow(0 4px 24px rgba(212,168,67,.3));
    position: relative; z-index: 2;
    animation: floatLogo 4s ease-in-out infinite;
}
@keyframes floatLogo { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }

.welcome-title {
    font-family: var(--font-display);
    font-size: 36px; font-weight: 700;
    background: linear-gradient(135deg, #D4A843, #F0CC71, #D4A843);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 3px;
    margin-bottom: 6px;
    text-shadow: none;
}
.welcome-subtitle {
    font-size: 15px; color: var(--text-gray);
    font-weight: 400; letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 28px;
}
.welcome-btn {
    display: inline-flex; align-items: center; gap: 12px;
    padding: 16px 36px; border-radius: var(--radius-full);
    background: var(--gradient-premium);
    color: #fff; font-weight: 700; font-size: 15px;
    font-family: var(--font-body);
    box-shadow: 0 6px 28px rgba(183,28,28,.4);
    transition: all .3s; border: 1px solid rgba(212,168,67,.3);
    letter-spacing: .5px;
}
.welcome-btn:hover { transform: translateY(-2px); box-shadow: 0 10px 36px rgba(183,28,28,.5); }
.welcome-btn:active { transform: scale(.97); }

.welcome-divider {
    display: flex; align-items: center; gap: 14px;
    margin: 26px auto; max-width: 260px;
}
.divider-line { flex:1; height:1px; background: linear-gradient(90deg, transparent, rgba(212,168,67,.3), transparent); }
.divider-diamond { font-size: 18px; }

.welcome-prices {
    display: flex; gap: 12px; flex-wrap: wrap; justify-content: center;
}
.price-card-welcome {
    background: rgba(212,168,67,.05);
    border: 1px solid rgba(212,168,67,.12);
    border-radius: var(--radius-md); padding: 16px 20px;
    flex: 1; min-width: 160px; max-width: 220px;
    cursor: pointer; transition: all .3s;
}
.price-card-welcome:hover { border-color: rgba(212,168,67,.3); transform: translateY(-2px); }
.price-card-welcome.price-special { border-color: rgba(183,28,28,.3); background: rgba(183,28,28,.06); }
.price-badge {
    font-size: 10px; font-weight: 800; color: var(--primary-light);
    letter-spacing: 1px; margin-bottom: 4px;
}
.price-days { font-size: 12px; color: var(--text-gray); font-weight: 600; }
.price-amount { font-size: 22px; font-weight: 800; color: var(--accent-light); margin: 4px 0; }
.price-note { font-size: 11px; color: var(--text-muted); }

/* XL Logo for welcome screen */
.welcome-logo-xl {
    width: 320px; height: 320px;
    margin: 0 auto 20px;
}
.welcome-logo-img-xl {
    width: 280px; height: 280px;
}
@media (max-width: 420px) {
    .welcome-logo-xl { width: 260px; height: 260px; }
    .welcome-logo-img-xl { width: 230px; height: 230px; }
}
@media (min-width: 500px) {
    .welcome-logo-xl { width: 380px; height: 380px; }
    .welcome-logo-img-xl { width: 330px; height: 330px; }
}

/* Promo card styles */
.price-card-promo {
    max-width: 440px !important; min-width: 280px !important;
    text-align: center; padding: 20px 24px !important;
    background: linear-gradient(135deg, rgba(212,168,67,.06), rgba(183,28,28,.04)) !important;
    border-color: rgba(212,168,67,.2) !important;
}
.price-promo-line {
    font-size: 14px; font-weight: 700; color: #fff;
    margin: 8px 0 6px; display: flex; align-items: center; gap: 8px;
    justify-content: center;
}
.price-cta {
    margin-top: 10px; font-size: 12px; font-weight: 700;
    color: var(--accent-light); letter-spacing: .5px;
    display: flex; align-items: center; gap: 6px; justify-content: center;
    padding: 8px 16px; border-radius: var(--radius-full);
    background: rgba(212,168,67,.08); border: 1px solid rgba(212,168,67,.15);
    transition: all .3s;
}
.price-card-promo:hover .price-cta { background: rgba(212,168,67,.15); border-color: rgba(212,168,67,.3); }
.price-cta-small {
    margin-top: 8px; font-size: 10px; font-weight: 700;
    color: var(--accent-light); letter-spacing: .5px;
    display: flex; align-items: center; gap: 4px; justify-content: center;
    opacity: .7; transition: opacity .3s;
}
.price-card-welcome:hover .price-cta-small { opacity: 1; }

/* ════════════════════════════════════════
   MAIN APP & HEADER
════════════════════════════════════════ */
.main-app { display: none; }
.main-app.visible { display: block; animation: fadeInApp .5s ease; }
@keyframes fadeInApp { from{opacity:0;transform:translateY(10px)} to{opacity:1;transform:translateY(0)} }

.app-header {
    position: sticky; top: 0; z-index: 100;
    background: linear-gradient(180deg, var(--navy) 0%, rgba(10,22,40,.97) 100%);
    backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-gold);
    padding: 10px 16px;
    transition: transform .3s ease;
}
.app-header.hidden { transform: translateY(-100%); }
.header-inner { display: flex; align-items: center; justify-content: space-between; max-width: 1200px; margin: 0 auto; }
.header-brand { display: flex; align-items: center; gap: 10px; }
.header-logo-img { height: 44px; object-fit: contain; filter: drop-shadow(0 2px 8px rgba(212,168,67,.25)); }
.header-text { display: flex; flex-direction: column; }
.header-title {
    font-family: var(--font-display); font-size: 17px; font-weight: 700;
    background: linear-gradient(135deg, #D4A843, #F0CC71);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
    letter-spacing: 1.5px;
}
.header-tagline { font-size: 10px; color: var(--text-muted); font-weight: 500; letter-spacing: 1px; }
.header-actions-row { display: flex; align-items: center; gap: 10px; }
.btn-header-account {
    display: flex; align-items: center; gap: 6px;
    padding: 7px 14px; border-radius: var(--radius-full);
    background: transparent; border: 1.5px solid rgba(212,168,67,.2);
    color: var(--text-gray); font-size: 12px; font-weight: 600;
    font-family: var(--font-body); transition: all .3s;
}
.btn-header-account:hover { border-color: var(--accent); color: var(--accent-light); }
.cart-btn {
    position: relative; width: 42px; height: 42px;
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    background: rgba(183,28,28,.1); border: 1.5px solid rgba(183,28,28,.25);
    color: var(--primary-light); font-size: 17px;
    transition: all .3s;
}
.cart-btn:hover { background: rgba(183,28,28,.2); border-color: var(--primary); }
.cart-badge {
    position: absolute; top: -4px; right: -4px;
    min-width: 18px; height: 18px; border-radius: 50%;
    background: var(--gradient-premium); color: #fff;
    font-size: 10px; font-weight: 800;
    display: flex; align-items: center; justify-content: center;
    padding: 0 4px; border: 2px solid var(--navy);
}

/* ════════════════════════════════════════
   NAV DRAWER
════════════════════════════════════════ */
.nav-overlay {
    position: fixed; inset: 0; z-index: 998;
    background: rgba(0,0,0,.6); backdrop-filter: blur(4px);
    opacity: 0; pointer-events: none; transition: opacity .3s;
}
.nav-overlay.open { opacity: 1; pointer-events: auto; }
.nav-drawer {
    position: fixed; top: 0; left: -360px; z-index: 999;
    width: 340px; height: 100vh;
    background: linear-gradient(180deg, var(--navy-light) 0%, var(--navy) 100%);
    border-right: 1px solid var(--border-gold);
    transition: left .35s cubic-bezier(.4,0,.2,1);
    display: flex; flex-direction: column;
    overflow-y: auto;
}
.nav-drawer.open { left: 0; }
.nav-drawer-header {
    display: flex; align-items: center; justify-content: space-between;
    padding: 18px 20px; border-bottom: 1px solid var(--border-gold);
    background: rgba(212,168,67,.04);
}
.nav-drawer-links { flex: 1; padding: 12px 0; overflow-y: auto; }
.nav-drawer-links a {
    display: flex; align-items: center; gap: 12px;
    padding: 13px 24px; font-size: 16px; font-weight: 500;
    color: var(--text-light); transition: all .2s;
}
.nav-drawer-links a:hover { background: rgba(212,168,67,.06); color: var(--accent-light); }
.nav-drawer-links a i { width: 22px; text-align: center; color: var(--accent); font-size: 15px; }
.nav-divider { height: 1px; background: var(--border-light); margin: 8px 20px; }
.nav-drawer-footer {
    padding: 16px 20px; border-top: 1px solid var(--border);
    font-size: 11px; color: var(--text-muted); text-align: center;
}
/* Nav category submenu */
.nav-cat-section { margin: 0; }
.nav-cat-header {
    display: flex; align-items: center; justify-content: space-between;
    padding: 10px 24px; cursor: pointer; font-weight: 600; font-size: 15px;
    color: var(--text-light); transition: all .2s;
}
.nav-cat-header:hover { background: rgba(212,168,67,.06); color: var(--accent-light); }
.nav-cat-header i.cat-arrow { font-size: 11px; color: var(--text-muted); transition: transform .3s; }
.nav-cat-header.open i.cat-arrow { transform: rotate(90deg); color: var(--accent); }
.nav-cat-items {
    max-height: 0; overflow: hidden; transition: max-height .35s ease;
    background: rgba(0,0,0,.15);
}
.nav-cat-items.open { max-height: 600px; }
.nav-cat-items a {
    padding: 8px 24px 8px 44px; font-size: 13px; color: var(--text-gray);
}
.nav-cat-items a:hover { color: var(--accent-light); }

/* ════════════════════════════════════════
   CLUB BANNER
════════════════════════════════════════ */
.club-header-banner {
    background: linear-gradient(135deg, rgba(212,168,67,.08), rgba(183,28,28,.06));
    border-bottom: 2px solid rgba(212,168,67,.15);
    padding: 12px 16px;
}
.club-header-banner-inner {
    display: flex; align-items: center; gap: 12px;
    max-width: 1200px; margin: 0 auto;
}
.club-banner-icon { font-size: 38px; flex-shrink: 0; }
.club-banner-text-wrap { flex: 1; min-width: 0; }
.club-banner-title {
    font-family: var(--font-display); font-size: 18px; font-weight: 700;
    background: linear-gradient(135deg, #D4A843, #F0CC71);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.club-banner-subtitle { font-size: 14px; color: var(--text-gray); line-height: 1.4; }
.club-banner-arrow { color: var(--accent); font-size: 14px; }

/* ════════════════════════════════════════
   CATEGORY NAV
════════════════════════════════════════ */
.category-nav-sticky-wrap {
    position: sticky; top: 65px; z-index: 90;
    background: linear-gradient(180deg, var(--navy) 0%, rgba(10,22,40,.95) 100%);
    backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    padding: 10px 0;
}
.category-nav { max-width: 1200px; margin: 0 auto; overflow-x: auto; -webkit-overflow-scrolling: touch; }
.category-nav::-webkit-scrollbar { display: none; }
.category-nav-inner { display: flex; gap: 10px; padding: 0 16px; width: max-content; }
.cat-chip {
    display: flex; flex-direction: column; align-items: center; gap: 6px;
    min-width: 78px; padding: 8px 6px;
    border-radius: var(--radius-md); background: transparent;
    border: 1.5px solid transparent; color: var(--text-gray);
    transition: all .3s; font-family: var(--font-body);
}
.cat-chip:hover { border-color: rgba(212,168,67,.2); color: var(--text-light); }
.cat-chip.active {
    border-color: var(--accent);
    background: rgba(212,168,67,.08);
    color: var(--accent-light);
}
.cat-chip-icon {
    width: 46px; height: 46px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    background: var(--bg-card); font-size: 22px;
    border: 1.5px solid var(--border);
    overflow: hidden;
}
.cat-chip.active .cat-chip-icon { border-color: var(--accent); box-shadow: 0 0 12px rgba(212,168,67,.2); }
.cat-chip-img { width: 100%; height: 100%; object-fit: cover; }
.cat-logo-img { padding: 4px; object-fit: contain; }
.cat-chip-label {
    font-size: 13px; font-weight: 700; white-space: nowrap;
    letter-spacing: .3px; text-align: center;
}

/* ════════════════════════════════════════
   MENU CONTENT & PRODUCT CARDS
════════════════════════════════════════ */
.menu-content {
    max-width: 1200px; margin: 0 auto;
    padding: 20px 12px 120px;
}
.menu-section { margin-bottom: 30px; scroll-margin-top: 160px; }
.section-header {
    display: flex; align-items: center; gap: 12px;
    padding: 14px 0 10px; margin-bottom: 12px;
    border-bottom: 1px solid var(--border-gold);
}
.section-emoji { font-size: 28px; }
.section-title-wrap { flex: 1; }
.section-title {
    font-family: var(--font-display); font-size: 20px; font-weight: 700;
    color: var(--text-white); letter-spacing: .5px;
}
.section-subtitle { font-size: 12px; color: var(--text-muted); margin-top: 2px; }
.section-count {
    font-size: 11px; font-weight: 700; color: var(--accent);
    background: rgba(212,168,67,.1); padding: 3px 10px;
    border-radius: 20px; border: 1px solid rgba(212,168,67,.2);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(155px, 1fr));
    gap: 12px;
}

.product-card {
    background: linear-gradient(180deg, var(--bg-card) 0%, rgba(12,24,41,.8) 100%);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    overflow: hidden; cursor: pointer;
    transition: all .3s; text-align: center;
    position: relative;
}
.product-card:hover {
    border-color: rgba(212,168,67,.25);
    transform: translateY(-3px);
    box-shadow: 0 8px 28px rgba(0,0,0,.4);
}
.product-card-img {
    width: 100%; aspect-ratio: 1; object-fit: cover;
    background: var(--bg-surface);
    border-bottom: 1px solid var(--border);
}
.product-card-body { padding: 10px 8px 12px; }
.product-card-name {
    font-size: 15px; font-weight: 700; color: var(--text-white);
    margin-bottom: 4px; line-height: 1.3;
    display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
    text-align: center;
}
.product-card-desc {
    font-size: 11px; color: var(--text-muted);
    display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
    margin-bottom: 8px; text-align: center;
}
.product-card-price-label {
    font-size: 12px; font-weight: 800;
    background: linear-gradient(135deg, #D4A843, #F0CC71);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
    margin-bottom: 8px;
}
.product-card-variants {
    display: flex; flex-wrap: wrap; gap: 4px;
    justify-content: center; margin-bottom: 8px;
}
.variant-chip-mini {
    font-size: 10px; padding: 2px 7px;
    background: rgba(212,168,67,.08);
    border: 1px solid rgba(212,168,67,.15);
    border-radius: 12px; color: var(--accent-light);
    font-weight: 600; white-space: nowrap;
}
.product-card-add {
    display: flex; align-items: center; justify-content: center; gap: 6px;
    width: 100%; padding: 9px;
    background: var(--gradient-premium);
    border: none; color: #fff;
    font-size: 12px; font-weight: 700;
    font-family: var(--font-body);
    border-radius: 0 0 var(--radius-md) var(--radius-md);
    transition: all .3s;
}
.product-card-add:hover { filter: brightness(1.15); }
.product-card-badge {
    position: absolute; top: 8px; right: 8px;
    background: var(--gradient-gold); color: var(--navy);
    font-size: 9px; font-weight: 800; padding: 3px 8px;
    border-radius: 20px;
}

/* ════════════════════════════════════════
   SEARCH BAR
════════════════════════════════════════ */
.search-section {
    position: relative; margin-bottom: 16px;
}
.search-input-wrap {
    position: relative; display: flex; align-items: center;
}
.search-input-wrap i {
    position: absolute; left: 14px;
    color: var(--text-muted); font-size: 14px;
}
.search-input {
    width: 100%; padding: 12px 14px 12px 40px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-full);
    color: #fff; font-size: 14px;
    font-family: var(--font-body);
    outline: none; transition: border-color .2s;
}
.search-input:focus { border-color: var(--accent); }
.search-input::placeholder { color: var(--text-muted); }

/* ════════════════════════════════════════
   MODALS
════════════════════════════════════════ */
.modal-overlay {
    position: fixed; inset: 0; z-index: 1000;
    background: rgba(0,0,0,.7); backdrop-filter: blur(6px);
    display: flex; align-items: flex-end; justify-content: center;
    opacity: 0; pointer-events: none; transition: opacity .3s;
}
.modal-overlay.open { opacity: 1; pointer-events: auto; }
.modal-box {
    position: relative;
    width: 100%; max-width: 500px; max-height: 92vh;
    background: var(--navy-light);
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    border: 1px solid var(--border-gold);
    border-bottom: none;
    overflow-y: auto; padding: 24px;
    transform: translateY(100%);
    transition: transform .4s cubic-bezier(.4,0,.2,1);
}
.modal-overlay.open .modal-box { transform: translateY(0); }
.modal-close-x {
    position: absolute; top: 14px; right: 14px;
    width: 32px; height: 32px; border-radius: 50%;
    background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1);
    color: var(--text-gray); font-size: 14px; z-index: 2;
    display: flex; align-items: center; justify-content: center;
    transition: all .2s;
}
.modal-close-x:hover { background: rgba(183,28,28,.2); color: #fff; }

/* Product Detail Modal */
.pd-img {
    width: 100%; aspect-ratio: 4/3; object-fit: cover;
    border-radius: var(--radius-md); margin-bottom: 16px;
    border: 1px solid var(--border);
}
.pd-name {
    font-family: var(--font-display); font-size: 22px; font-weight: 700;
    color: var(--text-white); margin-bottom: 4px;
    text-align: center;
}
.pd-desc { font-size: 13px; color: var(--text-gray); text-align: center; margin-bottom: 16px; }
.pd-variants { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; margin-bottom: 16px; }
.pd-variant-btn {
    padding: 10px 18px; border-radius: var(--radius-sm);
    background: var(--bg-surface); border: 1.5px solid var(--border);
    color: var(--text-gray); font-weight: 600; font-size: 13px;
    font-family: var(--font-body); transition: all .2s;
}
.pd-variant-btn.active {
    border-color: var(--accent); background: rgba(212,168,67,.1);
    color: var(--accent-light);
}
.pd-variant-btn:hover { border-color: rgba(212,168,67,.4); }
.pd-qty-row {
    display: flex; align-items: center; justify-content: center; gap: 16px;
    margin-bottom: 16px;
}
.pd-qty-btn {
    width: 40px; height: 40px; border-radius: 50%;
    background: var(--bg-elevated); border: 1px solid var(--border);
    color: var(--text-light); font-size: 18px; font-weight: 700;
    display: flex; align-items: center; justify-content: center;
    transition: all .2s;
}
.pd-qty-btn:hover { border-color: var(--accent); color: var(--accent); }
.pd-qty-num { font-size: 24px; font-weight: 800; color: var(--text-white); min-width: 40px; text-align: center; }
.pd-add-btn {
    display: flex; align-items: center; justify-content: center; gap: 10px;
    width: 100%; padding: 16px;
    background: var(--gradient-premium); border: 1px solid rgba(212,168,67,.3);
    border-radius: var(--radius-full);
    color: #fff; font-size: 15px; font-weight: 800;
    font-family: var(--font-body);
    box-shadow: 0 6px 24px rgba(183,28,28,.35);
    transition: all .3s;
}
.pd-add-btn:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(183,28,28,.45); }

/* Club banner inside product detail */
.pd-club-banner {
    margin-top: 14px; padding: 12px 14px;
    background: rgba(212,168,67,.06);
    border: 1px solid rgba(212,168,67,.15);
    border-radius: var(--radius-md);
    display: flex; align-items: center; gap: 10px;
    cursor: pointer; transition: all .2s;
}
.pd-club-banner:hover { border-color: rgba(212,168,67,.3); }
.pd-club-icon { font-size: 30px; }
.pd-club-title { font-size: 15px; font-weight: 700; color: var(--accent-light); }
.pd-club-desc { font-size: 13px; color: var(--text-gray); }

/* ════════════════════════════════════════
   PROMO / CLUB MODAL
════════════════════════════════════════ */
.promo-modal-header { text-align: center; margin-bottom: 16px; }
.promo-modal-icon { font-size: 50px; margin-bottom: 8px; }
.promo-modal-header h3 {
    font-family: var(--font-display); font-size: 26px; font-weight: 700;
    background: linear-gradient(135deg, #D4A843, #F0CC71);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.promo-modal-body { max-width: 420px; margin: 0 auto; }
.promo-modal-desc { font-size: 14px; color: var(--text-gray); text-align: center; line-height: 1.6; margin-bottom: 20px; }
.benefits-list { display: flex; flex-direction: column; gap: 14px; margin-bottom: 22px; }
.benefit-item {
    display: flex; gap: 12px; align-items: flex-start;
    padding: 12px; background: rgba(212,168,67,.04);
    border: 1px solid rgba(212,168,67,.1);
    border-radius: var(--radius-md);
}
.benefit-item i { font-size: 20px; color: var(--accent); margin-top: 2px; }
.benefit-item strong { color: var(--text-white); font-size: 14px; }
.benefit-item p { font-size: 12px; color: var(--text-muted); margin-top: 2px; }
.promo-form-divider {
    text-align: center; position: relative; margin: 20px 0;
}
.promo-form-divider::before {
    content: ''; position: absolute; top: 50%; left: 0; right: 0;
    height: 1px; background: var(--border);
}
.promo-form-divider span {
    position: relative; background: var(--navy-light);
    padding: 0 14px; font-size: 12px; color: var(--text-muted);
    font-weight: 600;
}
.promo-form .form-field { margin-bottom: 12px; }
.promo-form label { display: block; font-size: 12px; font-weight: 600; color: var(--text-gray); margin-bottom: 6px; }
.promo-form input {
    width: 100%; padding: 12px 14px;
    background: var(--bg-surface); border: 1px solid var(--border);
    border-radius: var(--radius-sm); color: #fff;
    font-size: 14px; font-family: var(--font-body);
    outline: none; transition: border-color .2s;
}
.promo-form input:focus { border-color: var(--accent); }
.promo-result {
    margin-top: 14px; padding: 12px;
    border-radius: var(--radius-md); font-size: 13px;
    text-align: center; display: none;
}
.promo-result.show { display: block; }
.promo-result.success { background: rgba(37,211,102,.08); color: var(--success); border: 1px solid rgba(37,211,102,.2); }
.promo-result.error { background: rgba(229,57,53,.08); color: var(--danger); border: 1px solid rgba(229,57,53,.2); }

/* ════════════════════════════════════════
   BUTTONS
════════════════════════════════════════ */
.btn-gradient {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    padding: 14px 28px; border-radius: var(--radius-full);
    background: var(--gradient-premium); color: #fff;
    font-weight: 700; font-size: 14px;
    font-family: var(--font-body);
    border: 1px solid rgba(212,168,67,.2);
    box-shadow: 0 4px 16px rgba(183,28,28,.3);
    transition: all .3s; cursor: pointer;
}
.btn-gradient:hover { transform: translateY(-1px); box-shadow: 0 6px 24px rgba(183,28,28,.4); }
.btn-gradient.full { width: 100%; }

.btn-gold {
    background: var(--gradient-gold); color: var(--navy);
    border: none; font-weight: 700;
}

/* ════════════════════════════════════════
   CART STICKY BAR
════════════════════════════════════════ */
.cart-sticky {
    position: fixed; bottom: 0; left: 0; right: 0; z-index: 95;
    padding: 10px 16px 14px;
    background: linear-gradient(180deg, transparent, var(--navy));
    display: none;
}
.cart-sticky.show { display: block; animation: slideUp .3s ease; }
@keyframes slideUp { from{transform:translateY(100%)} to{transform:translateY(0)} }
.cart-sticky-btn {
    display: flex; align-items: center; justify-content: center; gap: 10px;
    width: 100%; max-width: 500px; margin: 0 auto;
    padding: 14px 24px;
    background: var(--gradient-premium);
    border: 1px solid rgba(212,168,67,.3);
    border-radius: var(--radius-full);
    color: #fff; font-size: 14px; font-weight: 700;
    font-family: var(--font-body);
    box-shadow: 0 6px 28px rgba(183,28,28,.4);
    transition: all .3s;
}
.cart-sticky-btn:hover { transform: translateY(-2px); }
.cart-sticky-count {
    background: var(--gradient-gold); color: var(--navy);
    font-size: 11px; font-weight: 800;
    padding: 2px 8px; border-radius: 50%;
    min-width: 22px; text-align: center;
}
.cart-sticky-total { margin-left: auto; font-weight: 800; font-size: 16px; }

/* ════════════════════════════════════════
   FLOATING NAV BUTTON
════════════════════════════════════════ */
.floating-nav-btn {
    position: fixed; bottom: 24px; left: 16px; z-index: 96;
    width: 52px; height: 52px; border-radius: 50%;
    background: var(--gradient-gold-dark);
    border: 2px solid rgba(212,168,67,.4);
    box-shadow: 0 4px 20px rgba(212,168,67,.3);
    display: flex; align-items: center; justify-content: center;
    overflow: hidden; transition: all .3s;
}
.floating-nav-btn:hover { transform: scale(1.08); box-shadow: 0 6px 28px rgba(212,168,67,.5); }
.fnb-logo { width: 36px; height: 36px; object-fit: contain; border-radius: 50%; }
.fnb-icon { color: var(--navy); font-size: 20px; }

/* ════════════════════════════════════════
   TOAST
════════════════════════════════════════ */
.toast-wrap {
    position: fixed; top: 80px; right: 16px; z-index: 1100;
    display: flex; flex-direction: column; gap: 8px;
}
.toast-item {
    padding: 12px 18px; border-radius: var(--radius-md);
    background: var(--navy-light); border: 1px solid var(--border-gold);
    color: var(--text-light); font-size: 13px; font-weight: 500;
    box-shadow: 0 4px 20px rgba(0,0,0,.4);
    animation: toastIn .3s ease;
    display: flex; align-items: center; gap: 8px;
}
.toast-item.success { border-color: rgba(37,211,102,.3); }
.toast-item.success i { color: var(--success); }
.toast-item.error { border-color: rgba(229,57,53,.3); }
.toast-item.error i { color: var(--danger); }
@keyframes toastIn { from{opacity:0;transform:translateX(40px)} to{opacity:1;transform:translateX(0)} }

/* ════════════════════════════════════════
   ORDER TYPE BUTTONS
════════════════════════════════════════ */
.order-type-btn.active-type {
    background: rgba(183,28,28,.12) !important;
    border-color: var(--primary) !important;
    color: #fff !important;
}

/* Payment methods */
.pay-method.active {
    background: rgba(212,168,67,.1) !important;
    border-color: var(--accent) !important;
    color: #fff !important;
}

/* ════════════════════════════════════════
   FOOTER
════════════════════════════════════════ */
.site-footer {
    background: linear-gradient(180deg, var(--bg-surface), var(--navy-deep));
    border-top: 1px solid var(--border-gold);
    text-align: center; padding: 40px 20px 30px;
}
.footer-logo img { height: 60px; margin: 0 auto 12px; object-fit: contain; }
.footer-brand {
    font-family: var(--font-display); font-size: 20px; font-weight: 700;
    background: linear-gradient(135deg, #D4A843, #F0CC71);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
    letter-spacing: 2px; margin-bottom: 4px;
}
.footer-tagline { font-size: 12px; color: var(--text-muted); margin-bottom: 16px; }
.footer-divider { height: 1px; max-width: 200px; margin: 0 auto 16px; background: linear-gradient(90deg, transparent, rgba(212,168,67,.3), transparent); }
.footer-wa {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 10px 24px; border-radius: var(--radius-full);
    background: rgba(37,211,102,.1); border: 1px solid rgba(37,211,102,.25);
    color: var(--success); font-size: 14px; font-weight: 700;
    margin-bottom: 16px; transition: all .3s;
}
.footer-wa:hover { background: rgba(37,211,102,.18); }
.footer-links { display: flex; gap: 20px; justify-content: center; margin-bottom: 16px; }
.footer-links a { font-size: 13px; color: var(--text-gray); transition: color .2s; }
.footer-links a:hover { color: var(--accent-light); }
.footer-copy { font-size: 11px; color: var(--text-muted); }

/* ════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════ */
@media (min-width: 768px) {
    .welcome-title { font-size: 44px; }
    .products-grid { grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 16px; }
    .modal-overlay { align-items: center; }
    .modal-box { border-radius: var(--radius-lg); border-bottom: 1px solid var(--border-gold); max-height: 85vh; }
    .modal-overlay.open .modal-box { transform: translateY(0); }
}
@media (min-width: 1024px) {
    .products-grid { grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); }
}
@media (max-width: 380px) {
    .welcome-title { font-size: 28px; }
    .header-title { font-size: 14px; }
    .cat-chip { min-width: 68px; }
    .cat-chip-icon { width: 40px; height: 40px; }
}
