/* SmartComp Solutions — Dark Neon Theme */

/* ─── Google Fonts ───────────────────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&family=Inter:wght@400;500;600&display=swap');

/* ─── Custom Properties ──────────────────────────────────────────────────── */
:root {
  --bg:           #141826;
  --surface:      #1c2340;
  --primary:      #5b8af5;
  --neon:         #3ec6f5;
  --text:         #e8eafc;
  --muted:        #8090b0;
  --border:       rgba(62, 198, 245, 0.14);
  --border-neon:  rgba(62, 198, 245, 0.38);
  --grad-primary: linear-gradient(135deg, #5b8af5, #3ec6f5);
  --grad-hero:    radial-gradient(ellipse at top, rgba(62,198,245,.22) 0%, transparent 60%),
                  linear-gradient(180deg, #141826 0%, #0d1120 100%);
  --shadow-glow:  0 10px 40px -10px rgba(62, 198, 245, 0.45);
  --shadow-card:  0 8px 30px -12px rgba(0,0,0,.6);
  --radius:       14px;
  --font-display: 'Space Grotesk', system-ui, sans-serif;
  --font-sans:    'Inter', system-ui, sans-serif;
}

/* ─── Reset & Base ───────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  background-color: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  background-image:
    radial-gradient(ellipse 80% 50% at 50% -10%, rgba(62,198,245,.16) 0%, transparent 70%),
    radial-gradient(ellipse 60% 40% at 100% 100%, rgba(91,138,245,.10) 0%, transparent 70%);
  background-attachment: fixed;
  min-height: 100vh;
}

h1, h2, h3, h4 { font-family: var(--font-display); letter-spacing: -0.02em; line-height: 1.2; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

/* ─── Layout Utilities ───────────────────────────────────────────────────── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.25rem; }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.25rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.25rem; }
.grid-5 { display: grid; grid-template-columns: repeat(5,1fr); gap: 1.25rem; }

@media (max-width: 767px) {
  .grid-2, .grid-3, .grid-4, .grid-5 { grid-template-columns: 1fr; }
  .sm-grid-2 { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 640px) {
  .sm-grid-2 { grid-template-columns: 1fr 1fr; }
}

.flex { display: flex; }
.flex-wrap { flex-wrap: wrap; }
.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.justify-between { justify-content: space-between; }
.justify-center { justify-content: center; }
.gap-1 { gap: .25rem; } .gap-2 { gap: .5rem; } .gap-3 { gap: .75rem; }
.gap-4 { gap: 1rem; } .gap-6 { gap: 1.5rem; }

.mt-1{margin-top:.25rem} .mt-2{margin-top:.5rem} .mt-3{margin-top:.75rem}
.mt-4{margin-top:1rem}   .mt-6{margin-top:1.5rem} .mt-8{margin-top:2rem}
.mb-1{margin-bottom:.25rem} .mb-2{margin-bottom:.5rem} .mb-3{margin-bottom:.75rem}
.mb-4{margin-bottom:1rem}   .mb-6{margin-bottom:1.5rem} .mb-8{margin-bottom:2rem}

.text-sm { font-size: .875rem; } .text-xs { font-size: .78rem; }
.text-muted  { color: var(--muted); }
.text-primary{ color: var(--primary); }
.text-neon   { color: var(--neon); }
.text-center { text-align: center; }
.w-full { width: 100%; }
.rounded-full { border-radius: 999px; }
hr { border: none; border-top: 1px solid var(--border); margin: 1.5rem 0; }

/* ─── Glassmorphism & Effects ────────────────────────────────────────────── */
.glass {
  background: rgba(28, 35, 64, 0.6);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.glow-text {
  background: var(--grad-primary);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.neon-border {
  border: 1px solid var(--border-neon);
  box-shadow: 0 0 24px -4px rgba(62,198,245,.3), inset 0 1px 0 rgba(255,255,255,.06);
}

/* ─── Animations ─────────────────────────────────────────────────────────── */
@keyframes float {
  0%,100% { transform: translateY(0); }
  50%     { transform: translateY(-12px); }
}
@keyframes glow-pulse {
  0%,100% { box-shadow: 0 0 20px rgba(62,198,245,.3),  0 0 40px rgba(62,198,245,.12); }
  50%     { box-shadow: 0 0 32px rgba(62,198,245,.55), 0 0 70px rgba(62,198,245,.28); }
}
@keyframes fade-up {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.animate-float   { animation: float 6s ease-in-out infinite; }
.animate-glow    { animation: glow-pulse 2.5s ease-in-out infinite; }
.animate-fade-up { animation: fade-up .6s ease-out both; }

/* ─── Buttons ────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .65rem 1.4rem; border-radius: 999px;
  font-size: .875rem; font-weight: 600; cursor: pointer;
  transition: all .18s ease; border: none; font-family: inherit;
  text-decoration: none; white-space: nowrap;
}
.btn-primary { background: var(--grad-primary); color: #0d1120; box-shadow: var(--shadow-glow); }
.btn-primary:hover { opacity: .88; transform: translateY(-1px); }
.btn-glass {
  background: rgba(28,35,64,.55); backdrop-filter: blur(10px);
  border: 1px solid var(--border); color: var(--text);
}
.btn-glass:hover { color: var(--neon); border-color: var(--border-neon); }
.btn-outline { border: 1px solid var(--border); color: var(--text); background: transparent; }
.btn-outline:hover { background: var(--surface); }
.btn-danger { background: rgba(239,68,68,.15); border: 1px solid rgba(239,68,68,.3); color: #f87171; }
.btn-danger:hover { background: rgba(239,68,68,.25); }
.btn-sm { padding: .42rem .95rem; font-size: .8rem; }
.btn-full { width: 100%; justify-content: center; }
.btn:disabled { opacity: .5; cursor: not-allowed; transform: none !important; }

/* ─── Forms ──────────────────────────────────────────────────────────────── */
.form-label { display: block; font-size: .78rem; color: var(--muted); margin-bottom: .35rem; }
.form-input, .form-select, .form-textarea {
  width: 100%; padding: .7rem 1rem; border-radius: .75rem;
  background: rgba(28,35,64,.5); border: 1px solid var(--border);
  color: var(--text); font-size: .875rem; font-family: inherit; outline: none;
  transition: border-color .15s;
}
.form-input:focus, .form-select:focus, .form-textarea:focus { border-color: var(--primary); }
.form-input::placeholder, .form-textarea::placeholder { color: var(--muted); }
.form-select { appearance: none; cursor: pointer; }
.form-group { margin-bottom: 1.1rem; }
.form-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 639px) { .form-grid-2 { grid-template-columns: 1fr; } }
.form-error { font-size: .78rem; color: #f87171; margin-top: .3rem; }

/* ─── Header / Navbar ────────────────────────────────────────────────────── */
.header {
  position: sticky; top: 0; z-index: 100;
  transition: background .25s, border-color .25s, box-shadow .25s;
}
.header.scrolled {
  background: rgba(20,24,38,.88);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 4px 20px rgba(0,0,0,.35);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: .75rem 1.25rem; max-width: 1200px; margin: 0 auto;
}
.nav-logo {
  display: flex; align-items: center; gap: .65rem;
  font-family: var(--font-display); font-size: 1.08rem; font-weight: 700;
  letter-spacing: -.02em;
}
.nav-logo-icon {
  width: 38px; height: 38px; display: grid; place-items: center;
  border-radius: 10px; background: var(--grad-primary); box-shadow: var(--shadow-glow);
  flex-shrink: 0;
}
.nav-links { display: flex; align-items: center; gap: .2rem; list-style: none; }
.nav-links a {
  display: block; padding: .44rem .9rem; border-radius: 999px;
  font-size: .875rem; color: var(--muted); transition: all .15s;
}
.nav-links a:hover, .nav-links a.active { background: var(--surface); color: var(--text); }
.nav-auth { display: flex; align-items: center; gap: .5rem; }

.nav-hamburger {
  display: none; background: none; border: none; cursor: pointer;
  padding: .4rem; color: var(--text); border-radius: 8px;
}
.nav-hamburger:hover { background: var(--surface); }

.mobile-menu {
  display: none; padding: .6rem 1.25rem 1rem;
  border-top: 1px solid var(--border);
  background: rgba(14,18,34,.96); backdrop-filter: blur(18px);
}
.mobile-menu.open { display: block; }
.mobile-menu a {
  display: block; padding: .6rem .75rem; border-radius: .5rem;
  font-size: .9rem; color: var(--muted); transition: all .15s; margin-bottom: .1rem;
}
.mobile-menu a:hover, .mobile-menu a.active { background: var(--surface); color: var(--text); }
.mobile-menu .mobile-divider { border-top: 1px solid var(--border); margin: .5rem 0; }

@media (min-width: 900px) { .nav-hamburger { display: none !important; } }
@media (max-width: 899px) {
  .nav-links, .nav-auth { display: none; }
  .nav-hamburger { display: block; }
}

/* ─── Page Sections ──────────────────────────────────────────────────────── */
.section { padding: 4rem 0; }
.section-sm { padding: 2.5rem 0; }
.section-eyebrow {
  display: inline-block; font-size: .78rem; font-weight: 600;
  color: var(--primary); text-transform: uppercase; letter-spacing: .08em;
  margin-bottom: .75rem;
}
.section-title { font-size: clamp(1.6rem,4vw,2.4rem); font-weight: 700; margin-bottom: .75rem; }
.section-subtitle {
  font-size: 1rem; color: var(--muted); max-width: 560px;
  line-height: 1.65; margin-bottom: 2rem;
}

/* ─── Cards ──────────────────────────────────────────────────────────────── */
.card { padding: 1.5rem; }
.card-hover { transition: transform .2s; }
.card-hover:hover { transform: translateY(-2px); }

/* ─── Hero ───────────────────────────────────────────────────────────────── */
.hero { padding: 4rem 0 5rem; background: var(--grad-hero); }
.hero-grid { display: grid; grid-template-columns: 1fr; gap: 3rem; align-items: center; }
@media (min-width: 768px) { .hero-grid { grid-template-columns: 1fr 1fr; } }
.hero-badge {
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: .78rem; font-weight: 500; color: var(--primary);
  background: rgba(91,138,245,.1); border: 1px solid rgba(91,138,245,.25);
  padding: .3rem .9rem; border-radius: 999px; margin-bottom: 1.25rem;
}
.hero-badge-dot {
  width: 7px; height: 7px; border-radius: 50%; background: var(--primary);
  animation: glow-pulse 2.5s ease-in-out infinite;
}
.hero h1 { font-size: clamp(2.2rem,6vw,3.4rem); margin-bottom: 1rem; }
.hero-subtitle { font-size: 1.05rem; color: var(--muted); line-height: 1.65; margin-bottom: 2rem; }
.hero-btns { display: flex; flex-wrap: wrap; gap: .75rem; margin-bottom: 2.5rem; }
.hero-stats { display: grid; grid-template-columns: repeat(2,1fr); gap: .75rem; }
@media (min-width: 480px) { .hero-stats { grid-template-columns: repeat(4,1fr); } }
.hero-stat { text-align: center; padding: .75rem .5rem; }
.hero-stat-value {
  font-family: var(--font-display); font-size: 1.25rem; font-weight: 700;
  background: var(--grad-primary); -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero-stat-label { font-size: .7rem; color: var(--muted); margin-top: .25rem; }
.hero-img-wrap { position: relative; }
.hero-img-glow {
  position: absolute; inset: -1.5rem; background: var(--grad-primary);
  opacity: .22; filter: blur(48px); border-radius: 2rem; z-index: -1;
}
.hero-img { border-radius: 1.25rem; width: 100%; }

/* ─── Service Cards ──────────────────────────────────────────────────────── */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(280px,1fr)); gap: 1.25rem; }
.service-card { position: relative; overflow: hidden; }
.service-icon {
  width: 48px; height: 48px; display: grid; place-items: center; border-radius: 12px;
  background: var(--grad-primary); font-size: 1.4rem; box-shadow: var(--shadow-glow); margin-bottom: 1rem;
}
.service-card h3 { font-size: 1.05rem; font-weight: 600; margin-bottom: .4rem; }
.service-card p { font-size: .875rem; color: var(--muted); line-height: 1.6; }

/* ─── Shop / Products ────────────────────────────────────────────────────── */
.products-grid { display: grid; grid-template-columns: repeat(auto-fill,minmax(260px,1fr)); gap: 1.25rem; }
.product-card { overflow: hidden; }
.product-emoji {
  aspect-ratio: 16/9; display: grid; place-items: center;
  font-size: 4rem; background: var(--surface); border-radius: .75rem; margin-bottom: 1rem;
}
.product-category { font-size: .75rem; color: var(--primary); margin-bottom: .2rem; }
.product-name { font-weight: 600; margin-bottom: .4rem; line-height: 1.35; }
.product-desc { font-size: .8rem; color: var(--muted); line-height: 1.5; margin-bottom: .6rem; }
.product-price {
  font-family: var(--font-display); font-size: 1.1rem; font-weight: 700;
  background: var(--grad-primary); -webkit-background-clip: text; background-clip: text; color: transparent;
}
.product-actions { display: flex; gap: .5rem; margin-top: 1rem; }
.product-actions .btn { flex: 1; font-size: .8rem; padding: .5rem; justify-content: center; }

/* ─── Category Filters ───────────────────────────────────────────────────── */
.filter-bar { display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: 2rem; }
.filter-btn {
  padding: .38rem 1rem; border-radius: 999px; font-size: .78rem;
  font-weight: 500; cursor: pointer; border: 1px solid var(--border);
  background: transparent; color: var(--muted); transition: all .15s; font-family: inherit;
}
.filter-btn:hover { color: var(--text); border-color: var(--border-neon); }
.filter-btn.active { background: var(--grad-primary); color: #0d1120; border-color: transparent; }

/* ─── Search Bar ─────────────────────────────────────────────────────────── */
.search-wrap { position: relative; flex: 1; max-width: 420px; }
.search-icon {
  position: absolute; left: .9rem; top: 50%; transform: translateY(-50%);
  color: var(--muted); pointer-events: none;
}
.search-input {
  width: 100%; padding: .6rem 1rem .6rem 2.6rem; border-radius: 999px;
  background: rgba(28,35,64,.55); border: 1px solid var(--border);
  color: var(--text); font-size: .875rem; outline: none; font-family: inherit;
  transition: border-color .15s;
}
.search-input:focus { border-color: var(--primary); }
.search-input::placeholder { color: var(--muted); }

/* ─── Cart Sidebar ───────────────────────────────────────────────────────── */
.cart-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,.6);
  backdrop-filter: blur(4px); z-index: 200; display: none;
}
.cart-overlay.open { display: block; }
.cart-sidebar {
  position: fixed; top: 0; right: 0; bottom: 0;
  width: 100%; max-width: 400px;
  background: rgba(14,18,34,.97); backdrop-filter: blur(20px);
  border-left: 1px solid var(--border); padding: 1.5rem;
  display: flex; flex-direction: column; z-index: 201;
  transform: translateX(100%); transition: transform .28s ease;
}
.cart-sidebar.open { transform: translateX(0); }
.cart-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1rem; }
.cart-close {
  width: 32px; height: 32px; display: grid; place-items: center;
  border-radius: 8px; cursor: pointer; background: var(--surface);
  border: 1px solid var(--border); color: var(--text);
}
.cart-close:hover { border-color: var(--border-neon); color: var(--neon); }
.cart-items { flex: 1; overflow-y: auto; margin-bottom: 1rem; }
.cart-item {
  display: flex; align-items: center; gap: .75rem; padding: .75rem;
  border-radius: .75rem; margin-bottom: .5rem;
  background: var(--surface); border: 1px solid var(--border);
}
.cart-emoji {
  width: 46px; height: 46px; display: grid; place-items: center;
  font-size: 1.5rem; background: rgba(28,35,64,.8); border-radius: .5rem; flex-shrink: 0;
}
.cart-item-info { flex: 1; min-width: 0; }
.cart-item-name { font-size: .85rem; font-weight: 500; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.cart-item-price { font-size: .75rem; color: var(--muted); }
.cart-qty { display: flex; align-items: center; gap: .35rem; flex-shrink: 0; }
.qty-btn {
  width: 28px; height: 28px; display: grid; place-items: center;
  border-radius: 6px; background: rgba(28,35,64,.8); border: 1px solid var(--border);
  cursor: pointer; font-size: 1rem; color: var(--text); transition: all .15s; line-height: 1;
}
.qty-btn:hover { border-color: var(--primary); color: var(--primary); }
.cart-footer { border-top: 1px solid var(--border); padding-top: 1rem; }
.cart-total-row { display: flex; justify-content: space-between; align-items: center; margin-bottom: .75rem; }
.cart-total-amount {
  font-family: var(--font-display); font-size: 1.15rem; font-weight: 700;
  background: var(--grad-primary); -webkit-background-clip: text; background-clip: text; color: transparent;
}

/* ─── Badges / Status ────────────────────────────────────────────────────── */
.badge {
  display: inline-block; padding: .2rem .7rem; border-radius: 999px;
  font-size: .7rem; font-weight: 700; text-transform: uppercase; letter-spacing: .04em;
}
.badge-pending     { background: rgba(234,179,8,.15);   color: #eab308; }
.badge-confirmed   { background: rgba(59,130,246,.15);  color: #60a5fa; }
.badge-in_progress { background: rgba(168,85,247,.15);  color: #c084fc; }
.badge-processing  { background: rgba(168,85,247,.15);  color: #c084fc; }
.badge-shipped     { background: rgba(20,184,166,.15);  color: #2dd4bf; }
.badge-completed   { background: rgba(34,197,94,.15);   color: #4ade80; }
.badge-delivered   { background: rgba(34,197,94,.15);   color: #4ade80; }
.badge-cancelled   { background: rgba(239,68,68,.15);   color: #f87171; }

/* ─── Alerts ─────────────────────────────────────────────────────────────── */
.alert { padding: .85rem 1.1rem; border-radius: .75rem; font-size: .875rem; margin-bottom: 1rem; }
.alert-success { background: rgba(34,197,94,.1);  border: 1px solid rgba(34,197,94,.3);  color: #86efac; }
.alert-error   { background: rgba(239,68,68,.1);  border: 1px solid rgba(239,68,68,.3);  color: #fca5a5; }
.alert-info    { background: rgba(59,130,246,.1); border: 1px solid rgba(59,130,246,.3); color: #93c5fd; }

/* ─── Tables ─────────────────────────────────────────────────────────────── */
.table-wrap { overflow-x: auto; border-radius: var(--radius); border: 1px solid var(--border); }
table { width: 100%; border-collapse: collapse; font-size: .875rem; }
th {
  padding: .75rem 1rem; text-align: left; font-size: .73rem;
  text-transform: uppercase; letter-spacing: .06em; color: var(--muted);
  border-bottom: 1px solid var(--border); background: rgba(28,35,64,.4); font-weight: 600;
}
td { padding: .85rem 1rem; border-bottom: 1px solid var(--border); vertical-align: middle; }
tr:last-child td { border-bottom: none; }
tr:hover td { background: rgba(28,35,64,.3); }

/* ─── FAQ ────────────────────────────────────────────────────────────────── */
details { margin-bottom: .75rem; }
details summary {
  list-style: none; display: flex; justify-content: space-between; align-items: center;
  cursor: pointer; font-weight: 600; padding: 1.1rem 1.25rem; user-select: none;
}
details summary::-webkit-details-marker { display: none; }
details summary::after { content: "+"; font-size: 1.2rem; color: var(--primary); transition: transform .2s; }
details[open] summary::after { transform: rotate(45deg); }
.faq-answer { padding: 0 1.25rem 1.1rem; font-size: .875rem; color: var(--muted); line-height: 1.65; }

/* ─── WhatsApp FAB ───────────────────────────────────────────────────────── */
.whatsapp-fab {
  position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 90;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25D366; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.4); transition: transform .2s, box-shadow .2s;
}
.whatsapp-fab:hover { transform: scale(1.08); box-shadow: 0 6px 28px rgba(37,211,102,.55); }
.whatsapp-fab svg { width: 28px; height: 28px; fill: #fff; }

/* ─── Footer ─────────────────────────────────────────────────────────────── */
.footer {
  background: rgba(10,13,24,.97); border-top: 1px solid var(--border);
  padding: 3rem 0 1.5rem; margin-top: 4rem;
}
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; margin-bottom: 2.5rem; }
@media (min-width: 640px)  { .footer-grid { grid-template-columns: 2fr 1fr 1fr; } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; } }
.footer-title {
  font-size: .73rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .08em; color: var(--text); margin-bottom: 1rem;
}
.footer-links { list-style: none; }
.footer-links li { margin-bottom: .5rem; }
.footer-links a { font-size: .875rem; color: var(--muted); transition: color .15s; }
.footer-links a:hover { color: var(--neon); }
.footer-bottom {
  border-top: 1px solid var(--border); padding-top: 1.25rem;
  font-size: .78rem; color: var(--muted);
  display: flex; flex-wrap: wrap; gap: .5rem; justify-content: space-between;
}

/* ─── Admin Layout ───────────────────────────────────────────────────────── */
.admin-body { background: var(--bg); }
.admin-layout { display: flex; min-height: 100vh; }
.admin-sidebar {
  width: 230px; flex-shrink: 0;
  background: rgba(14,18,34,.98); border-right: 1px solid var(--border);
  padding: 1.25rem .85rem; position: sticky; top: 0; height: 100vh; overflow-y: auto;
}
.admin-main { flex: 1; padding: 2rem; min-width: 0; }
.admin-logo {
  display: flex; align-items: center; gap: .55rem;
  font-family: var(--font-display); font-weight: 700; font-size: .95rem;
  margin-bottom: 2rem; padding: 0 .5rem;
}
.admin-nav-section { margin-bottom: .25rem; }
.admin-nav-label {
  font-size: .65rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .08em; color: var(--muted); padding: .5rem .75rem; margin-top: .75rem;
}
.admin-nav a {
  display: flex; align-items: center; gap: .6rem; padding: .55rem .75rem;
  border-radius: .6rem; font-size: .875rem; color: var(--muted);
  transition: all .15s; margin-bottom: .1rem; border-left: 2px solid transparent;
}
.admin-nav a:hover { background: rgba(91,138,245,.08); color: var(--text); }
.admin-nav a.active { background: rgba(91,138,245,.13); color: var(--text); border-left-color: var(--primary); }
.admin-page-title { font-size: 1.5rem; font-weight: 700; margin-bottom: 1.5rem; }
.admin-stats { display: grid; grid-template-columns: repeat(auto-fit,minmax(180px,1fr)); gap: 1rem; margin-bottom: 2rem; }
.admin-stat { padding: 1.25rem; }
.admin-stat-value { font-family: var(--font-display); font-size: 2rem; font-weight: 700; }
.admin-stat-label { font-size: .8rem; color: var(--muted); margin-top: .25rem; }

@media (max-width: 767px) {
  .admin-layout { flex-direction: column; }
  .admin-sidebar { width: 100%; height: auto; position: static; }
  .admin-main { padding: 1rem; }
}

/* ─── Dashboard ──────────────────────────────────────────────────────────── */
.dashboard-layout { display: grid; grid-template-columns: 260px 1fr; gap: 1.5rem; }
@media (max-width: 767px) { .dashboard-layout { grid-template-columns: 1fr; } }

/* ─── Checkout / Auth Pages ──────────────────────────────────────────────── */
.auth-page { min-height: calc(100vh - 80px); display: flex; align-items: center; justify-content: center; padding: 2rem 1rem; }
.auth-box { width: 100%; max-width: 440px; padding: 2rem; }
.auth-box h2 { font-size: 1.6rem; font-weight: 700; margin-bottom: .4rem; }
.auth-box .subtitle { color: var(--muted); font-size: .9rem; margin-bottom: 1.75rem; }
