/* ==========================================================================
   آراگ سیلور | Arag Silver — Design System v2.0
   Luxury dark theme · Champagne gold · Glassmorphism · RTL
   ========================================================================== */

:root {
    /* Palette */
    --bg-0: #07090f;
    --bg-1: #0b0e17;
    --bg-2: #111527;
    --bg-3: #181d33;
    --surface: rgba(255, 255, 255, .04);
    --surface-strong: rgba(255, 255, 255, .07);
    --border: rgba(212, 175, 55, .14);
    --border-strong: rgba(212, 175, 55, .35);

    --gold-1: #d4af37;
    --gold-2: #f5e08a;
    --gold-3: #b8912a;
    --gold-glow: rgba(212, 175, 55, .25);
    --silver-1: #c9ced8;
    --silver-2: #eef1f6;

    --text-1: #f4f1ea;
    --text-2: #b9bdc9;
    --text-3: #7c8296;

    --success: #34d399;
    --danger: #fb7185;
    --warning: #fbbf24;
    --info: #38bdf8;

    /* Effects */
    --grad-gold: linear-gradient(120deg, #b8912a 0%, #d4af37 30%, #fdf3b0 50%, #d4af37 70%, #b8912a 100%);
    --grad-card: linear-gradient(160deg, rgba(255,255,255,.06), rgba(255,255,255,.015));
    --shadow-lg: 0 24px 60px -18px rgba(0, 0, 0, .65);
    --shadow-gold: 0 10px 34px -8px var(--gold-glow);

    --radius-s: 12px;
    --radius-m: 18px;
    --radius-l: 26px;

    --nav-h: 74px;
    --ease: cubic-bezier(.22, .61, .36, 1);
}

/* ---------- Base ---------- */
* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    font-family: 'Vazirmatn', 'Segoe UI', Tahoma, sans-serif !important;
    background:
        radial-gradient(1100px 520px at 85% -10%, rgba(212,175,55,.09), transparent 60%),
        radial-gradient(900px 480px at -10% 20%, rgba(56,80,180,.10), transparent 55%),
        var(--bg-1);
    color: var(--text-1);
    min-height: 100vh;
    overflow-x: hidden;
    line-height: 1.75;
}

::selection { background: rgba(212,175,55,.32); color: #fff; }

::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: var(--bg-0); }
::-webkit-scrollbar-thumb { background: #2a3050; border-radius: 99px; border: 2px solid var(--bg-0); }
::-webkit-scrollbar-thumb:hover { background: var(--gold-3); }

img { max-width: 100%; }
a { text-decoration: none !important; color: inherit; transition: color .25s var(--ease); }
button { font-family: inherit; }

.text-muted-2 { color: var(--text-2) !important; }
.text-muted-3 { color: var(--text-3) !important; }

.gold-text {
    background: var(--grad-gold);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shimmer 6s linear infinite;
}
@keyframes shimmer { to { background-position: 200% center; } }

.section-title {
    font-weight: 800;
    font-size: clamp(1.5rem, 3vw, 2.1rem);
    letter-spacing: -.5px;
}
.section-sub { color: var(--text-2); max-width: 560px; }

.eyebrow {
    display: inline-flex; align-items: center; gap: .5rem;
    font-size: .78rem; font-weight: 700; letter-spacing: .16em;
    color: var(--gold-2); text-transform: uppercase;
}
.eyebrow::before { content: ""; width: 28px; height: 1px; background: var(--grad-gold); }

/* ---------- Navbar ---------- */
.site-nav {
    position: fixed; inset-inline: 0; top: 0; z-index: 1030;
    backdrop-filter: blur(18px) saturate(1.4);
    background: rgba(7, 9, 15, .72);
    border-bottom: 1px solid rgba(212,175,55,.12);
    transition: box-shadow .3s var(--ease), background .3s var(--ease);
}
.site-nav.scrolled { box-shadow: 0 12px 40px -18px rgba(0,0,0,.8); }

.nav-inner {
    height: var(--nav-h); display: flex; align-items: center;
    justify-content: space-between; gap: 1rem;
}

.brand { display: flex; align-items: center; gap: .65rem; }
.brand-mark {
    width: 42px; height: 42px; display: grid; place-items: center;
    border-radius: 13px;
    background: var(--grad-gold); color: #171204;
    font-weight: 900; font-size: 1.25rem;
    box-shadow: var(--shadow-gold);
}
.brand-name { font-weight: 800; font-size: 1.22rem; line-height: 1.2; }
.brand-name small { display: block; font-weight: 500; font-size: .68rem; color: var(--text-3); letter-spacing: .28em; }

.nav-links { display: flex; align-items: center; gap: .35rem; list-style: none; margin: 0; }
.nav-links a {
    position: relative; padding: .55rem .95rem; border-radius: 12px;
    color: var(--text-2); font-weight: 500; font-size: .95rem;
}
.nav-links a:hover, .nav-links a.active { color: var(--gold-2); background: rgba(212,175,55,.08); }

.nav-actions { display: flex; align-items: center; gap: .55rem; }

.icon-btn {
    position: relative; width: 44px; height: 44px; display: grid; place-items: center;
    border-radius: 13px; border: 1px solid var(--border);
    background: var(--surface); color: var(--text-1); cursor: pointer;
    transition: all .25s var(--ease); font-size: 1.05rem;
}
.icon-btn:hover { border-color: var(--border-strong); color: var(--gold-2); transform: translateY(-2px); }

.badge-dot {
    position: absolute; top: -5px; inset-inline-end: -5px;
    min-width: 19px; height: 19px; padding: 0 5px;
    display: grid; place-items: center;
    background: var(--grad-gold); color: #171204;
    font-size: .66rem; font-weight: 800; border-radius: 99px;
}

.burger { display: none; }

.mobile-menu {
    position: fixed; inset: var(--nav-h) 0 auto 0; z-index: 1029;
    background: rgba(7,9,15,.97); backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    padding: 1rem 0 1.5rem;
    transform: translateY(-115%); transition: transform .38s var(--ease);
}
.mobile-menu.open { transform: translateY(0); }
.mobile-menu a {
    display: flex; align-items: center; gap: .8rem;
    padding: .85rem 1.2rem; color: var(--text-2); font-weight: 600;
    border-radius: 14px;
}
.mobile-menu a:hover { background: rgba(212,175,55,.08); color: var(--gold-2); }

@media (max-width: 991.98px) {
    .nav-links { display: none; }
    .burger { display: grid; }
}

/* ---------- Price ticker ---------- */
.ticker-wrap {
    overflow: hidden; white-space: nowrap;
    border-bottom: 1px solid var(--border);
    background: rgba(212,175,55,.05);
    font-size: .84rem;
}
.ticker { display: inline-flex; gap: 3rem; padding: .45rem 0; animation: ticker 36s linear infinite; }
.ticker:hover { animation-play-state: paused; }
@keyframes ticker { from { transform: translateX(-50%);} to { transform: translateX(0);} }
[dir="rtl"] .ticker { animation-name: ticker-rtl; }
@keyframes ticker-rtl { from { transform: translateX(0);} to { transform: translateX(-50%);} }
.ticker-item { display: inline-flex; align-items: center; gap: .5rem; color: var(--text-2); }
.ticker-item i { color: var(--gold-2); font-size: .78rem; }
.ticker-item b { color: var(--text-1); font-weight: 700; }
.tick-up { color: var(--success) !important; } .tick-down { color: var(--danger) !important; }

/* ---------- Buttons ---------- */
.btn-gold {
    position: relative; display: inline-flex; align-items: center; justify-content: center; gap: .6rem;
    padding: .82rem 1.9rem; border-radius: 14px; border: 0; cursor: pointer;
    font-weight: 700; font-size: .98rem; color: #171204 !important;
    background: var(--grad-gold); background-size: 200% auto;
    box-shadow: var(--shadow-gold);
    transition: all .3s var(--ease);
}
.btn-gold:hover { background-position: right center; transform: translateY(-2px); box-shadow: 0 14px 40px -8px var(--gold-glow); color: #000 !important; }
.btn-gold:active { transform: translateY(0); }
.btn-gold:disabled { opacity: .55; pointer-events: none; }

.btn-ghost {
    display: inline-flex; align-items: center; justify-content: center; gap: .6rem;
    padding: .8rem 1.7rem; border-radius: 14px; cursor: pointer;
    font-weight: 600; font-size: .95rem;
    color: var(--text-1) !important; background: transparent;
    border: 1px solid var(--border-strong);
    transition: all .3s var(--ease);
}
.btn-ghost:hover { background: rgba(212,175,55,.09); color: var(--gold-2) !important; transform: translateY(-2px); }

.btn-sm-pill {
    padding: .45rem 1.05rem; font-size: .82rem; border-radius: 99px;
    border: 1px solid var(--border-strong); background: transparent; color: var(--text-2);
    transition: all .25s var(--ease); cursor: pointer; font-weight: 600;
}
.btn-sm-pill:hover, .btn-sm-pill.active { background: var(--grad-gold); color: #171204 !important; border-color: transparent; }

/* ---------- Hero ---------- */
.hero {
    position: relative; min-height: 88vh;
    display: flex; align-items: center;
    padding: calc(var(--nav-h) + 70px) 0 90px;
    overflow: hidden;
}
.hero-bg-ring {
    position: absolute; border-radius: 50%; pointer-events: none;
    border: 1px solid rgba(212,175,55,.16);
}
.hero-bg-ring.r1 { width: 720px; height: 720px; top: -280px; inset-inline-start: -220px; animation: floatRing 14s ease-in-out infinite; }
.hero-bg-ring.r2 { width: 440px; height: 440px; bottom: -160px; inset-inline-end: -120px; border-color: rgba(201,206,216,.12); animation: floatRing 11s ease-in-out infinite reverse; }
@keyframes floatRing { 50% { transform: translateY(26px); } }

.hero-grid { position: relative; z-index: 2; }
.hero h1 {
    font-size: clamp(2.4rem, 6vw, 4.3rem);
    font-weight: 900; line-height: 1.28; letter-spacing: -1px;
    margin-bottom: 1.1rem;
}
.hero p.lead-text { font-size: 1.14rem; color: var(--text-2); max-width: 540px; margin-bottom: 2rem; }

.hero-stats { display: flex; gap: 2.6rem; margin-top: 3rem; flex-wrap: wrap; }
.stat-num { font-size: 1.9rem; font-weight: 900; }
.stat-label { font-size: .84rem; color: var(--text-3); }

.hero-visual { position: relative; display: grid; place-items: center; }
.orb {
    position: relative; width: min(430px, 82vw); aspect-ratio: 1; border-radius: 50%;
    background:
        radial-gradient(circle at 32% 28%, rgba(245,224,138,.9), rgba(212,175,55,.45) 38%, rgba(184,145,42,.16) 62%, transparent 74%),
        radial-gradient(circle at 68% 76%, rgba(201,206,216,.5), transparent 46%),
        conic-gradient(from 210deg, #1a1f38, #232a4a, #12162a, #1a1f38);
    box-shadow: 0 0 130px -20px var(--gold-glow), inset 0 0 90px rgba(0,0,0,.55);
    animation: orbFloat 8s ease-in-out infinite;
}
@keyframes orbFloat { 50% { transform: translateY(-20px) scale(1.02); } }
.orb-icon {
    position: absolute; inset: 0; display: grid; place-items: center;
    font-size: 6.4rem; color: rgba(23,18,4,.82);
    filter: drop-shadow(0 12px 26px rgba(0,0,0,.5));
}
.float-chip {
    position: absolute; display: flex; align-items: center; gap: .6rem;
    padding: .7rem 1.05rem; border-radius: 16px;
    background: rgba(13,17,30,.82); backdrop-filter: blur(14px);
    border: 1px solid var(--border); box-shadow: var(--shadow-lg);
    font-size: .86rem; font-weight: 700; white-space: nowrap;
}
.float-chip i { color: var(--gold-2); }
.chip-a { top: 12%; inset-inline-start: 4%; animation: chipFloat 7s ease-in-out infinite; }
.chip-b { bottom: 16%; inset-inline-end: 0; animation: chipFloat 9s ease-in-out infinite reverse; }
@keyframes chipFloat { 50% { transform: translateY(-14px); } }

/* ---------- Cards & surfaces ---------- */
.glass-card {
    background: var(--grad-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-m);
    backdrop-filter: blur(12px);
    transition: transform .35s var(--ease), border-color .35s var(--ease), box-shadow .35s var(--ease);
}
.glass-card:hover { border-color: var(--border-strong); box-shadow: var(--shadow-lg); }

.hover-rise:hover { transform: translateY(-7px); }

/* Product card */
.product-card {
    position: relative; overflow: hidden;
    background: var(--grad-card);
    border: 1px solid var(--border); border-radius: var(--radius-m);
    transition: transform .38s var(--ease), border-color .38s var(--ease), box-shadow .38s var(--ease);
    display: flex; flex-direction: column; height: 100%;
}
.product-card:hover { transform: translateY(-8px); border-color: var(--border-strong); box-shadow: var(--shadow-lg); }

.product-media {
    position: relative; aspect-ratio: 1/.92; overflow: hidden;
    display: grid; place-items: center;
    background:
        radial-gradient(circle at 50% 42%, rgba(212,175,55,.14), transparent 62%),
        linear-gradient(165deg, #151a30, #0d1120);
}
.product-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.product-card:hover .product-media img { transform: scale(1.07); }
.product-media .ph-icon { font-size: 3.6rem; color: rgba(212,175,55,.4); filter: drop-shadow(0 8px 18px rgba(0,0,0,.5)); transition: transform .5s var(--ease); }
.product-card:hover .ph-icon { transform: scale(1.12); }

.product-flag {
    position: absolute; top: 12px; inset-inline-start: 12px; z-index: 2;
    padding: .28rem .7rem; border-radius: 99px; font-size: .7rem; font-weight: 800;
    background: rgba(7,9,15,.75); backdrop-filter: blur(8px);
    border: 1px solid var(--border-strong); color: var(--gold-2);
}
.product-flag.out { color: var(--danger); border-color: rgba(251,113,133,.4); }

.fav-btn {
    position: absolute; top: 12px; inset-inline-end: 12px; z-index: 2;
    width: 37px; height: 37px; display: grid; place-items: center; border-radius: 12px;
    background: rgba(7,9,15,.72); backdrop-filter: blur(8px);
    border: 1px solid var(--border); color: var(--text-2);
    transition: all .25s var(--ease);
}
.fav-btn:hover { color: #ff5d7d; border-color: rgba(255,93,125,.5); transform: scale(1.08); }
.fav-btn.is-fav { color: #ff5d7d; border-color: rgba(255,93,125,.55); }
.fav-btn.is-fav i { animation: heartPop .45s var(--ease); }
@keyframes heartPop { 40% { transform: scale(1.4); } }

.product-body { padding: 1.05rem 1.15rem 1.2rem; display: flex; flex-direction: column; gap: .45rem; flex: 1; }
.product-cat { font-size: .73rem; color: var(--text-3); letter-spacing: .06em; }
.product-title { font-size: 1.02rem; font-weight: 700; line-height: 1.5; }
.product-title a:hover { color: var(--gold-2); }

.product-meta { display: flex; align-items: center; gap: .9rem; font-size: .78rem; color: var(--text-3); }
.product-price { margin-top: auto; display: flex; align-items: baseline; justify-content: space-between; gap: .5rem; padding-top: .55rem; }
.price-now { font-size: 1.06rem; font-weight: 800; color: var(--gold-2); }
.price-unit { font-size: .74rem; color: var(--text-3); font-weight: 500; }

.rating-stars { display: inline-flex; gap: 2px; color: var(--gold-1); font-size: .8rem; }
.rating-stars .off { color: #3a4059; }

/* Category tiles */
.cat-tile {
    position: relative; overflow: hidden; display: block;
    border-radius: var(--radius-m); padding: 1.6rem 1.4rem;
    background: var(--grad-card); border: 1px solid var(--border);
    transition: all .35s var(--ease);
}
.cat-tile:hover { transform: translateY(-6px); border-color: var(--border-strong); box-shadow: var(--shadow-gold); }
.cat-tile .ct-icon {
    width: 54px; height: 54px; border-radius: 16px; display: grid; place-items: center;
    background: rgba(212,175,55,.1); color: var(--gold-2); font-size: 1.4rem; margin-bottom: .9rem;
    transition: all .35s var(--ease);
}
.cat-tile:hover .ct-icon { background: var(--grad-gold); color: #171204; transform: rotate(-6deg) scale(1.06); }
.cat-tile h5 { font-weight: 800; margin-bottom: .25rem; }
.cat-tile p { font-size: .83rem; color: var(--text-3); margin: 0; }
.cat-tile .ct-arrow { position: absolute; top: 1.3rem; inset-inline-end: 1.3rem; color: var(--text-3); transition: all .35s var(--ease); }
.cat-tile:hover .ct-arrow { color: var(--gold-2); transform: translateX(-5px); }

/* ---------- Live prices strip ---------- */
.prices-strip { display: grid; grid-template-columns: repeat(auto-fit, minmax(215px, 1fr)); gap: 1rem; }
.price-tile { position: relative; overflow: hidden; padding: 1.25rem 1.35rem; }
.price-tile::after {
    content: ""; position: absolute; top: 0; inset-inline-start: 0;
    width: 100%; height: 2px; background: var(--grad-gold); opacity: .7;
}
.price-tile .pt-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: .35rem; }
.price-tile .pt-head span { font-size: .86rem; color: var(--text-2); font-weight: 600; }
.price-value { font-size: 1.5rem; font-weight: 900; letter-spacing: -.4px; }
.price-value small { font-size: .72rem; color: var(--text-3); font-weight: 600; margin-inline-start: .3rem; }
.pt-note { font-size: .72rem; color: var(--text-3); }

/* ---------- Feature rows / about ---------- */
.feature-row { display: flex; gap: 1rem; align-items: flex-start; }
.feature-ico {
    flex-shrink: 0; width: 52px; height: 52px; border-radius: 16px;
    display: grid; place-items: center; font-size: 1.3rem;
    background: rgba(212,175,55,.1); color: var(--gold-2);
    border: 1px solid var(--border);
}
.feature-row h6 { font-weight: 800; margin-bottom: .2rem; }
.feature-row p { font-size: .88rem; color: var(--text-2); margin: 0; }

/* ---------- Testimonials ---------- */
.quote-card { padding: 1.6rem 1.5rem; height: 100%; }
.quote-card .q-text { font-size: .94rem; color: var(--text-2); margin: .9rem 0 1.2rem; }
.q-avatar {
    width: 46px; height: 46px; border-radius: 50%;
    display: grid; place-items: center; font-weight: 800; font-size: 1.02rem;
    background: var(--grad-gold); color: #171204;
}

/* ---------- Blog cards ---------- */
.blog-card { overflow: hidden; height: 100%; }
.blog-cover {
    aspect-ratio: 16/9; display: grid; place-items: center;
    background: radial-gradient(circle at 60% 30%, rgba(212,175,55,.16), transparent 60%), linear-gradient(150deg,#161b33,#0e1224);
    font-size: 2.6rem; color: rgba(212,175,55,.5);
}
.blog-cover img { width: 100%; height: 100%; object-fit: cover; }
.blog-body { padding: 1.2rem 1.3rem 1.35rem; }
.blog-chip {
    font-size: .7rem; font-weight: 700; padding: .22rem .68rem; border-radius: 99px;
    background: rgba(212,175,55,.12); color: var(--gold-2); border: 1px solid var(--border);
}
.blog-body h5 { font-size: 1.03rem; font-weight: 700; margin: .7rem 0 .4rem; line-height: 1.6; }
.blog-body h5 a:hover { color: var(--gold-2); }
.blog-body p { font-size: .85rem; color: var(--text-3); }
.blog-foot { display: flex; justify-content: space-between; align-items: center; font-size: .76rem; color: var(--text-3); margin-top: .8rem; }

/* ---------- Forms ---------- */
.form-panel { padding: clamp(1.4rem, 3vw, 2.4rem); }
.auth-shell { min-height: calc(100vh - var(--nav-h)); display: grid; place-items: center; padding: calc(var(--nav-h) + 40px) 16px 60px; }
.auth-card { width: min(460px, 100%); }

.form-label { font-size: .86rem; font-weight: 600; color: var(--text-2); margin-bottom: .45rem; }
.form-control, .form-select {
    background: rgba(255,255,255,.045) !important;
    border: 1px solid var(--border) !important;
    color: var(--text-1) !important;
    border-radius: 13px !important;
    padding: .72rem 1rem !important;
    font-size: .94rem;
    transition: border-color .25s, box-shadow .25s;
}
.form-control:focus, .form-select:focus {
    border-color: var(--gold-1) !important;
    box-shadow: 0 0 0 4px rgba(212,175,55,.13) !important;
    background: rgba(255,255,255,.06) !important;
}
.form-control::placeholder { color: #59607a; }
.form-control[readonly] { opacity: .75; }
select.form-control option { background: var(--bg-2); color: var(--text-1); }
textarea.form-control { resize: vertical; min-height: 120px; }

.input-group-money { position: relative; }
.input-group-money .unit {
    position: absolute; inset-inline-end: 14px; top: 50%; transform: translateY(-50%);
    font-size: .78rem; color: var(--text-3); pointer-events: none;
}

.invalid-feedback { color: var(--danger) !important; font-size: .78rem; }
.form-check-input { background-color: rgba(255,255,255,.08); border-color: var(--border-strong); }
.form-check-input:checked { background-color: var(--gold-1); border-color: var(--gold-1); }

/* Alerts / toasts */
.alert-lux {
    display: flex; align-items: center; gap: .7rem;
    padding: .85rem 1.15rem; border-radius: 14px; font-size: .9rem;
    border: 1px solid var(--border); background: var(--surface);
}
.alert-success-lux { border-color: rgba(52,211,153,.35); color: var(--success); background: rgba(52,211,153,.07); }
.alert-danger-lux { border-color: rgba(251,113,133,.35); color: var(--danger); background: rgba(251,113,133,.07); }

.toast-stack { position: fixed; bottom: 22px; inset-inline-start: 22px; z-index: 2000; display: flex; flex-direction: column; gap: .6rem; max-width: min(360px, 90vw); }
.lux-toast {
    display: flex; align-items: center; gap: .7rem;
    padding: .9rem 1.1rem; border-radius: 15px;
    background: rgba(13,17,30,.92); backdrop-filter: blur(16px);
    border: 1px solid var(--border-strong); box-shadow: var(--shadow-lg);
    font-size: .88rem; font-weight: 600;
    animation: toastIn .4s var(--ease);
}
.lux-toast.ok i { color: var(--success); }
.lux-toast.err i { color: var(--danger); }
.lux-toast.leaving { animation: toastOut .3s var(--ease) forwards; }
@keyframes toastIn { from { opacity: 0; transform: translateY(14px) scale(.97); } }
@keyframes toastOut { to { opacity: 0; transform: translateY(10px) scale(.97); } }

/* ---------- Tables ---------- */
.lux-table { width: 100%; border-collapse: separate; border-spacing: 0 .5rem; }
.lux-table th {
    font-size: .76rem; font-weight: 700; color: var(--text-3);
    padding: .55rem 1rem; text-align: right; border: 0;
}
.lux-table td {
    background: var(--surface); padding: .9rem 1rem; font-size: .88rem;
    border-top: 1px solid rgba(255,255,255,.05); border-bottom: 1px solid rgba(255,255,255,.05);
    vertical-align: middle;
}
.lux-table td:first-child { border-inline-start: 1px solid rgba(255,255,255,.05); border-start-start-radius: 14px; border-end-start-radius: 14px; }
.lux-table td:last-child { border-inline-end: 1px solid rgba(255,255,255,.05); border-start-end-radius: 14px; border-end-end-radius: 14px; }
.lux-table tbody tr { transition: transform .2s var(--ease); }
.lux-table tbody tr:hover td { background: var(--surface-strong); }

.status-pill { display: inline-block; padding: .3rem .8rem; border-radius: 99px; font-size: .74rem; font-weight: 700; border: 1px solid; }
.status-pending    { color: var(--warning); border-color: rgba(251,191,36,.4);  background: rgba(251,191,36,.08); }
.status-processing { color: var(--info);    border-color: rgba(56,189,248,.4);  background: rgba(56,189,248,.08); }
.status-completed  { color: var(--success); border-color: rgba(52,211,153,.4);  background: rgba(52,211,153,.08); }
.status-cancelled  { color: var(--danger);  border-color: rgba(251,113,133,.4); background: rgba(251,113,133,.08); }

/* ---------- Pagination ---------- */
.lux-pagination { display: flex; gap: .4rem; justify-content: center; margin-top: 2.6rem; flex-wrap: wrap; }
.lux-pagination .page-link-box {
    min-width: 42px; height: 42px; padding: 0 .8rem;
    display: inline-flex; align-items: center; justify-content: center;
    border-radius: 12px; border: 1px solid var(--border);
    background: var(--surface); color: var(--text-2); font-size: .9rem; font-weight: 600;
    transition: all .25s var(--ease);
}
.lux-pagination .page-link-box:hover { border-color: var(--border-strong); color: var(--gold-2); }
.lux-pagination .active .page-link-box { background: var(--grad-gold); color: #171204 !important; border-color: transparent; }
.lux-pagination .disabled .page-link-box { opacity: .35; pointer-events: none; }

/* ---------- Footer ---------- */
.site-footer {
    margin-top: 110px; position: relative;
    border-top: 1px solid var(--border);
    background: linear-gradient(180deg, rgba(11,14,23,.4), rgba(7,9,15,.9));
}
.footer-top { padding: 64px 0 44px; }
.footer-brand p { font-size: .9rem; color: var(--text-3); max-width: 300px; }
.footer-col h6 { font-weight: 800; font-size: .95rem; margin-bottom: 1.1rem; color: var(--text-1); }
.footer-col a { display: block; padding: .28rem 0; color: var(--text-3); font-size: .89rem; }
.footer-col a:hover { color: var(--gold-2); transform: translateX(-4px); }
.footer-contact li { display: flex; gap: .7rem; align-items: flex-start; color: var(--text-3); font-size: .87rem; padding: .3rem 0; list-style: none; }
.footer-contact i { color: var(--gold-2); margin-top: .35rem; }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.06);
    padding: 1.15rem 0; font-size: .8rem; color: var(--text-3);
    display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap;
}
.social-mini { display: flex; gap: .5rem; }
.social-mini a {
    width: 38px; height: 38px; display: grid; place-items: center;
    border-radius: 11px; border: 1px solid var(--border); color: var(--text-3);
}
.social-mini a:hover { color: var(--gold-2); border-color: var(--border-strong); transform: translateY(-3px); }

/* ---------- Utilities ---------- */
.divider-gold { height: 1px; background: linear-gradient(90deg, transparent, rgba(212,175,55,.5), transparent); border: 0; }
.page-head { padding: calc(var(--nav-h) + 46px) 0 34px; }
.page-head h1 { font-weight: 900; font-size: clamp(1.7rem, 4vw, 2.5rem); }
.breadcrumb-lux { display: flex; gap: .5rem; font-size: .82rem; color: var(--text-3); flex-wrap: wrap; }
.breadcrumb-lux a:hover { color: var(--gold-2); }
.breadcrumb-lux .sep { opacity: .5; }

.empty-state { text-align: center; padding: 4rem 1rem; }
.empty-state .es-icon {
    width: 92px; height: 92px; margin: 0 auto 1.3rem; border-radius: 28px;
    display: grid; place-items: center; font-size: 2.2rem;
    background: rgba(212,175,55,.08); color: var(--gold-3);
    border: 1px dashed var(--border-strong);
}
.empty-state h4 { font-weight: 800; margin-bottom: .4rem; }
.empty-state p { color: var(--text-3); font-size: .9rem; margin-bottom: 1.4rem; }

/* Scroll reveal */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in-view { opacity: 1; transform: none; }

/* Cart table qty stepper */
.qty-stepper { display: inline-flex; align-items: center; border: 1px solid var(--border-strong); border-radius: 12px; overflow: hidden; }
.qty-stepper button {
    width: 34px; height: 36px; border: 0; background: transparent;
    color: var(--text-2); font-size: 1rem; cursor: pointer; transition: all .2s;
}
.qty-stepper button:hover { background: rgba(212,175,55,.12); color: var(--gold-2); }
.qty-stepper input {
    width: 48px; height: 36px; border: 0; background: transparent;
    color: var(--text-1); text-align: center; font-weight: 700; outline: 0;
    -moz-appearance: textfield;
}
.qty-stepper input::-webkit-inner-spin-button, .qty-stepper input::-webkit-outer-spin-button { -webkit-appearance: none; }

.summary-line { display: flex; justify-content: space-between; padding: .5rem 0; font-size: .92rem; color: var(--text-2); }
.summary-total { display: flex; justify-content: space-between; padding-top: .9rem; margin-top: .5rem; border-top: 1px dashed var(--border-strong); font-weight: 800; font-size: 1.06rem; }
.summary-total .val { color: var(--gold-2); }

/* Gallery (product page) */
.gallery-main {
    position: relative; border-radius: var(--radius-l); overflow: hidden;
    aspect-ratio: 1/1; display: grid; place-items: center;
    background: radial-gradient(circle at 50% 38%, rgba(212,175,55,.15), transparent 64%), linear-gradient(160deg,#161b33,#0d1120);
    border: 1px solid var(--border);
}
.gallery-main img { width: 100%; height: 100%; object-fit: contain; padding: 1.4rem; }
.gallery-main .gm-ph { font-size: 7rem; color: rgba(212,175,55,.4); filter: drop-shadow(0 14px 30px rgba(0,0,0,.55)); }
.thumbs { display: flex; gap: .6rem; margin-top: .8rem; flex-wrap: wrap; }
.thumb-sel {
    width: 74px; height: 74px; border-radius: 14px; overflow: hidden; cursor: pointer;
    border: 1px solid var(--border); display: grid; place-items: center;
    background: var(--bg-3); color: rgba(212,175,55,.5); transition: all .25s var(--ease);
}
.thumb-sel.active, .thumb-sel:hover { border-color: var(--gold-1); }
.thumb-sel img { width: 100%; height: 100%; object-fit: cover; }

.spec-list { list-style: none; }
.spec-list li {
    display: flex; justify-content: space-between; gap: 1rem;
    padding: .68rem .2rem; font-size: .9rem;
    border-bottom: 1px dashed rgba(255,255,255,.09);
}
.spec-list li:last-child { border: 0; }
.spec-list .k { color: var(--text-3); }
.spec-list .v { font-weight: 700; }

.tab-pills { display: flex; gap: .5rem; flex-wrap: wrap; margin-bottom: 1.3rem; }

.review-bar { height: 8px; border-radius: 99px; background: #232947; overflow: hidden; }
.review-bar > div { height: 100%; background: var(--grad-gold); border-radius: 99px; }

/* Admin shell */
.admin-sidebar {
    position: sticky; top: calc(var(--nav-h) + 16px);
    padding: 1.2rem; border-radius: var(--radius-m);
    background: var(--grad-card); border: 1px solid var(--border);
}
.admin-link {
    display: flex; align-items: center; gap: .7rem;
    padding: .68rem .95rem; border-radius: 12px; color: var(--text-2);
    font-size: .92rem; font-weight: 600; transition: all .22s var(--ease);
}
.admin-link:hover { background: rgba(212,175,55,.09); color: var(--gold-2); }
.admin-link.active { background: var(--grad-gold); color: #171204 !important; }
.kpi-tile { padding: 1.3rem 1.4rem; }
.kpi-tile .kt-icon { width: 48px; height: 48px; border-radius: 14px; display: grid; place-items: center; font-size: 1.2rem; margin-bottom: .7rem; background: rgba(212,175,55,.1); color: var(--gold-2); }
.kpi-tile .kt-num { font-size: 1.55rem; font-weight: 900; }
.kpi-tile .kt-label { font-size: .8rem; color: var(--text-3); }

/* Responsive helpers */
@media (max-width: 767.98px) {
    .hero { min-height: auto; }
    .hero-stats { gap: 1.4rem; }
    .float-chip { display: none; }
    .footer-top { padding: 44px 0 30px; }
    .lux-table th:nth-child(n+4), .lux-table td:nth-child(n+4) { display: none; }
}

@media print {
    .site-nav, .site-footer, .ticker-wrap { display: none; }
}
