/* ═══════════════════════════════════════════════════════════
   Sita Organics — Mobile-First CSS
   Breakpoints: mobile < 640px | tablet 640–1024px | desktop > 1024px
   ═══════════════════════════════════════════════════════════ */

/* ── CUSTOM PROPERTIES ─────────────────────────────────── */
:root {
  --g:    oklch(0.52 0.18 148);
  --gl:   oklch(0.93 0.06 148);
  --gd:   oklch(0.25 0.10 148);
  --y:    oklch(0.88 0.17 88);
  --yd:   oklch(0.70 0.16 82);
  --w:    #ffffff;
  --t:    oklch(0.20 0.07 150);
  --tm:   oklch(0.45 0.07 148);
  --border: rgba(0,0,0,0.08);
  --nav-h: 64px;
  --max-w: 1200px;
  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 22px;
  --r-xl: 28px;
  --r-full: 9999px;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 24px rgba(0,0,0,0.09);
  --shadow-lg: 0 8px 48px rgba(0,0,0,0.12);
}

/* ── RESET ─────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Outfit', sans-serif;
  color: var(--t); background: #fff;
  overflow-x: hidden; line-height: 1.6;
  padding-bottom: 68px; /* mobile cart bar */
}
@media (min-width: 768px) { body { padding-bottom: 0; } }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; font-family: inherit; border: none; }
h1,h2,h3,h4,h5 { font-family: 'Lora', serif; line-height: 1.12; text-wrap: balance; }
p { text-wrap: pretty; }
input, textarea, select { font-family: inherit; outline: none; }

/* ── LAYOUT ─────────────────────────────────────────────── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 20px; }
@media (min-width: 640px)  { .container { padding: 0 32px; } }
@media (min-width: 1024px) { .container { padding: 0 56px; } }

.section    { padding: 56px 0; }
.section-lg { padding: 80px 0; }
@media (min-width: 768px) {
  .section    { padding: 80px 0; }
  .section-lg { padding: 112px 0; }
}

.grid-2 { display: grid; grid-template-columns: 1fr; gap: 20px; }
.grid-3 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
@media (min-width: 640px)  { .grid-2 { grid-template-columns: 1fr 1fr; gap: 24px; } }
@media (min-width: 1024px) {
  .grid-2 { grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
  .grid-3 { grid-template-columns: repeat(3, 1fr); gap: 26px; }
}

.text-center { text-align: center; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.gap-8  { gap: 8px; }
.gap-12 { gap: 12px; }
.gap-16 { gap: 16px; }
.mb-4  { margin-bottom: 4px; }
.mb-8  { margin-bottom: 8px; }
.mb-12 { margin-bottom: 12px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-48 { margin-bottom: 48px; }

/* ── TYPOGRAPHY ─────────────────────────────────────────── */
.lbl  { font-size: 11px; letter-spacing: 3px; text-transform: uppercase; color: var(--g); font-weight: 700; display: block; margin-bottom: 12px; }
.h1   { font-size: clamp(36px, 6vw, 72px); font-weight: 700; letter-spacing: -2px; }
.h2   { font-size: clamp(28px, 4vw, 52px); font-weight: 700; letter-spacing: -1.5px; }
.h3   { font-size: clamp(22px, 3vw, 36px); font-weight: 700; letter-spacing: -0.5px; }
.lead { font-size: clamp(15px, 2vw, 18px); color: var(--tm); line-height: 1.75; }
.price-display { font-family: 'Lora', serif; font-size: clamp(28px, 4vw, 44px); font-weight: 700; }

/* ── BUTTONS ─────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  border-radius: var(--r-full); font-weight: 600; transition: all 0.2s; border: none;
  white-space: nowrap; min-height: 44px;
}
.btn-sm  { font-size: 13px; padding: 9px 20px; min-height: 38px; }
.btn-md  { font-size: 15px; padding: 12px 28px; }
.btn-lg  { font-size: 16px; padding: 15px 36px; }
.btn-primary { background: var(--g);  color: #fff; }
.btn-primary:hover  { background: var(--gd); }
.btn-dark    { background: var(--gd); color: #fff; }
.btn-dark:hover     { background: var(--g); }
.btn-yellow  { background: var(--y);  color: var(--gd); }
.btn-yellow:hover   { filter: brightness(0.92); }
.btn-outline { background: transparent; border: 2px solid var(--gd); color: var(--gd); }
.btn-outline:hover  { background: var(--gd); color: #fff; }
.btn-ghost   { background: var(--gl); color: var(--gd); }
.btn-ghost:hover    { background: var(--y); }
.btn-wa      { background: #25D366;   color: #fff; }
.btn-wa:hover       { background: #1ebe59; }
.btn-block   { width: 100%; }
.btn:disabled { opacity: 0.55; cursor: not-allowed; }

/* ── NAV ──────────────────────────────────────────────────── */
.nav {
  position: sticky; top: 0; z-index: 100;
  height: var(--nav-h); background: #fff;
  box-shadow: 0 1px 0 var(--border);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 20px; gap: 12px;
}
@media (min-width: 640px)  { .nav { padding: 0 32px; } }
@media (min-width: 1024px) { .nav { padding: 0 56px; } }

.nav-logo { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
.nav-logo-img { width: 38px; height: 38px; border-radius: 50%; object-fit: cover; background: #000; }
.nav-logo-name { font-family: 'Lora', serif; font-size: 16px; font-weight: 700; color: var(--gd); display: none; }
@media (min-width: 480px) { .nav-logo-name { display: block; } }
.nav-logo-name span { color: var(--g); }

.nav-links {
  display: none; position: fixed;
  top: var(--nav-h); left: 0; right: 0;
  background: #fff; flex-direction: column;
  border-top: 1px solid var(--border);
  box-shadow: 0 12px 40px rgba(0,0,0,0.12);
  z-index: 99; padding: 12px 0 20px;
  max-height: calc(100vh - var(--nav-h)); overflow-y: auto;
}
.nav-links.open { display: flex; }
@media (min-width: 768px) {
  .nav-links {
    display: flex !important; position: static;
    flex-direction: row; border: none; box-shadow: none;
    padding: 0; gap: 4px; align-items: center;
    max-height: none; overflow: visible;
  }
}
.nav-link {
  padding: 13px 24px; font-size: 15px; font-weight: 500;
  color: var(--t); display: block;
}
.nav-link-mobile-only { border-top: 1px solid var(--border); padding: 16px 24px 4px; }
@media (min-width: 768px) {
  .nav-link { padding: 6px 12px; font-size: 14px; border-radius: var(--r-sm); }
  .nav-link:hover { background: var(--gl); color: var(--gd); }
  .nav-link.active { color: var(--g); font-weight: 600; }
  .nav-link-mobile-only { display: none; }
}

.nav-actions { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
.nav-cart {
  display: flex; align-items: center; gap: 5px;
  padding: 7px 14px; border-radius: var(--r-full);
  background: var(--gl); font-size: 13.5px; font-weight: 600; color: var(--gd);
  min-height: 38px;
}
.cart-badge {
  background: var(--g); color: #fff; border-radius: 50%;
  width: 18px; height: 18px; font-size: 11px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}

.hamburger { display: flex; flex-direction: column; gap: 5px; padding: 6px; background: none; }
.hamburger span { width: 22px; height: 2px; background: var(--gd); border-radius: 2px; display: block; transition: all 0.2s; }
@media (min-width: 768px) { .hamburger { display: none; } }

/* ── MOBILE BOTTOM CART BAR ─────────────────────────────── */
.cart-bar {
  display: flex; position: fixed; bottom: 0; left: 0; right: 0;
  background: var(--gd); padding: 10px 20px;
  z-index: 90; align-items: center; justify-content: space-between;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
}
@media (min-width: 768px) { .cart-bar { display: none !important; } }
.cart-bar-info { display: flex; flex-direction: column; }
.cart-bar-label { font-size: 11.5px; color: rgba(255,255,255,0.65); }
.cart-bar-total { font-family: 'Lora', serif; font-size: 20px; font-weight: 700; color: #fff; line-height: 1.2; }

/* ── WHATSAPP FAB ───────────────────────────────────────── */
.wa-fab {
  position: fixed; bottom: 80px; right: 16px; z-index: 80;
  width: 54px; height: 54px; border-radius: 50%;
  background: #25D366; box-shadow: 0 4px 16px rgba(0,0,0,0.2);
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.2s, box-shadow 0.2s;
}
.wa-fab:hover { transform: scale(1.08); box-shadow: 0 6px 24px rgba(0,0,0,0.25); }
@media (min-width: 768px) { .wa-fab { bottom: 32px; right: 28px; width: 58px; height: 58px; } }

/* ── MARQUEE ─────────────────────────────────────────────── */
.marquee-track { background: var(--gd); height: 46px; overflow: hidden; display: flex; align-items: center; }
.marquee-inner { display: inline-flex; animation: mq 26s linear infinite; will-change: transform; white-space: nowrap; }
.marquee-item  { display: inline-flex; align-items: center; gap: 40px; padding-right: 40px; font-size: 11px; letter-spacing: 2.5px; text-transform: uppercase; color: var(--y); font-weight: 600; }
@keyframes mq { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ── HERO ──────────────────────────────────────────────── */
.hero {
  min-height: calc(100vh - var(--nav-h));
  padding: 52px 0 40px; display: flex; align-items: center;
}
.hero-inner { display: flex; flex-direction: column; gap: 36px; align-items: flex-start; }
@media (min-width: 900px) {
  .hero-inner { flex-direction: row; align-items: center; gap: 56px; }
  .hero-content { flex: 1; }
  .hero-visual  { flex: 1; }
}
.hero-visual { border-radius: 40px 10px 40px 10px; overflow: hidden; height: 340px; width: 100%; background: var(--gl); }
@media (min-width: 640px) { .hero-visual { height: 420px; } }
@media (min-width: 900px)  { .hero-visual { height: 520px; } }
.hero-visual img { width: 100%; height: 100%; object-fit: cover; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--gl); border-radius: var(--r-full);
  padding: 6px 16px; margin-bottom: 20px;
}
.hero-badge-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--g); }
.hero-badge-text { font-size: 11.5px; letter-spacing: 2px; text-transform: uppercase; color: var(--gd); font-weight: 600; }
.hero-stats { display: flex; gap: 28px; padding-top: 28px; margin-top: 28px; border-top: 1px solid var(--border); flex-wrap: wrap; }
.hero-stat-val { font-family: 'Lora', serif; font-size: 32px; font-weight: 700; color: var(--gd); line-height: 1; }
.hero-stat-lbl { font-size: 12px; color: var(--tm); margin-top: 4px; font-weight: 500; }
.hero-float {
  position: absolute; bottom: 24px; left: -20px;
  background: var(--y); border-radius: var(--r-lg);
  padding: 16px 20px; box-shadow: var(--shadow-md);
}
@media (max-width: 900px) { .hero-float { display: none; } }

/* ── SECTION HEADER ─────────────────────────────────────── */
.sec-hd { text-align: center; margin-bottom: 48px; }
.sec-hd .lbl { justify-content: center; display: flex; }
@media (min-width: 768px) { .sec-hd { margin-bottom: 64px; } }

/* ── PRODUCT CARD ───────────────────────────────────────── */
.pcard { border-radius: var(--r-lg); overflow: hidden; background: #fff; border: 1.5px solid var(--border); transition: transform .22s, box-shadow .22s; display: flex; flex-direction: column; }
.pcard:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.pcard-img { height: 190px; position: relative; overflow: hidden; display: flex; align-items: center; justify-content: center; }
.pcard-img img { width: 100%; height: 100%; object-fit: contain; padding: 14px; }
.pcard-tag-badge {
  position: absolute; top: 12px; left: 12px;
  background: rgba(255,255,255,0.9); backdrop-filter: blur(4px);
  border-radius: var(--r-full); padding: 3px 12px;
  font-size: 10px; font-weight: 700; color: var(--gd); text-transform: uppercase; letter-spacing: 1px;
}
.pcard-body  { padding: 18px 18px 20px; display: flex; flex-direction: column; flex: 1; }
.pcard-tag   { font-size: 10.5px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--g); font-weight: 700; margin-bottom: 6px; }
.pcard-name  { font-family: 'Lora', serif; font-size: 20px; font-weight: 700; margin-bottom: 8px; letter-spacing: -0.3px; display: flex; align-items: center; gap: 6px; }
.brand-dot { width: 24px; height: 24px; border-radius: 50%; object-fit: cover; flex-shrink: 0; }
.pcard-desc  { font-size: 13px; color: var(--tm); line-height: 1.65; margin-bottom: 16px; flex: 1; }
.pcard-footer { display: flex; align-items: center; justify-content: space-between; gap: 8px; }
.pcard-price { font-family: 'Lora', serif; font-size: 24px; font-weight: 700; }
.pcard-size  { font-size: 12px; color: var(--tm); }
.pcard-btns  { display: flex; gap: 6px; }
.icon-btn { width: 36px; height: 36px; border-radius: 50%; background: var(--gl); display: flex; align-items: center; justify-content: center; font-size: 15px; cursor: pointer; border: none; transition: background .15s; flex-shrink: 0; }
.icon-btn:hover { background: var(--y); }

/* ── SIZE SELECTOR ──────────────────────────────────────── */
.size-grid   { display: flex; gap: 8px; flex-wrap: wrap; }
.size-pill   { padding: 9px 16px; border-radius: var(--r-md); border: 2px solid var(--border); background: #fff; cursor: pointer; font-size: 13px; font-weight: 600; transition: all .15s; min-height: 44px; }
.size-pill:hover  { border-color: var(--g); }
.size-pill.active { border-color: var(--gd); background: var(--gd); color: #fff; }
.size-pill.sold-out { opacity: 0.45; cursor: not-allowed; text-decoration: line-through; }

/* ── QTY CONTROL ────────────────────────────────────────── */
.qty-ctrl { display: flex; align-items: center; border: 2px solid var(--border); border-radius: var(--r-md); overflow: hidden; }
.qty-btn  { width: 40px; height: 44px; background: #fff; font-size: 20px; font-weight: 600; display: flex; align-items: center; justify-content: center; border: none; cursor: pointer; color: var(--t); }
.qty-btn:hover { background: var(--gl); }
.qty-val  { width: 44px; text-align: center; font-size: 16px; font-weight: 700; }

/* ── TABS ───────────────────────────────────────────────── */
.tabs { display: flex; border-bottom: 2px solid var(--border); margin-bottom: 28px; overflow-x: auto; scrollbar-width: none; }
.tabs::-webkit-scrollbar { display: none; }
.tab-btn { padding: 12px 20px; font-size: 14px; font-weight: 600; background: none; border: none; cursor: pointer; color: var(--tm); border-bottom: 3px solid transparent; margin-bottom: -2px; white-space: nowrap; min-height: 44px; }
.tab-btn.active { color: var(--gd); border-bottom-color: var(--g); }

/* ── FILTER BAR ─────────────────────────────────────────── */
.filter-bar { background: #fff; border-bottom: 1px solid var(--border); padding: 10px 20px; overflow-x: auto; -webkit-overflow-scrolling: touch; scrollbar-width: none; position: sticky; top: var(--nav-h); z-index: 50; }
.filter-bar::-webkit-scrollbar { display: none; }
@media (min-width: 640px)  { .filter-bar { padding: 10px 32px; } }
@media (min-width: 1024px) { .filter-bar { padding: 10px 56px; } }
.filter-row { display: inline-flex; gap: 8px; min-width: max-content; }
.ftab { padding: 8px 18px; border-radius: var(--r-full); font-size: 13px; font-weight: 600; border: 2px solid var(--border); background: transparent; color: var(--t); cursor: pointer; transition: all .15s; white-space: nowrap; min-height: 38px; }
.ftab.active { border-color: var(--gd); background: var(--gd); color: #fff; }
.ftab:hover:not(.active) { border-color: var(--g); color: var(--g); }

/* ── FORM ───────────────────────────────────────────────── */
.form-group { margin-bottom: 16px; }
.form-label { display: block; font-size: 12px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--tm); margin-bottom: 7px; }
.form-input { width: 100%; padding: 12px 16px; border-radius: var(--r-md); border: 1.5px solid rgba(0,0,0,0.15); font-size: 15px; color: var(--t); background: #fff; transition: border .2s; min-height: 44px; }
.form-input:focus { border-color: var(--g); box-shadow: 0 0 0 3px var(--gl); }
.form-select { appearance: none; -webkit-appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23666' stroke-width='1.5' fill='none'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px; }
.form-textarea { resize: vertical; min-height: 100px; }
.form-row  { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
@media (max-width: 480px) { .form-row { grid-template-columns: 1fr; } }
.form-error { font-size: 13px; color: oklch(0.55 0.18 30); margin-top: 5px; }
.form-hint  { font-size: 12.5px; color: var(--tm); margin-top: 5px; }
.form-card  { background: #fff; border-radius: var(--r-xl); padding: 28px 24px; }
@media (min-width: 640px) { .form-card { padding: 36px 32px; } }

/* ── MODAL ──────────────────────────────────────────────── */
.modal-bg { position: fixed; inset: 0; background: rgba(0,0,0,0.5); z-index: 200; display: flex; align-items: flex-end; justify-content: center; padding: 0; }
@media (min-width: 480px) { .modal-bg { align-items: center; padding: 20px; } }
.modal { background: #fff; width: 100%; max-width: 440px; border-radius: var(--r-xl) var(--r-xl) 0 0; padding: 28px 24px 32px; position: relative; }
@media (min-width: 480px) { .modal { border-radius: var(--r-xl); padding: 32px 28px; } }
.modal-close { position: absolute; top: 16px; right: 16px; width: 32px; height: 32px; border-radius: 50%; background: var(--gl); font-size: 18px; display: flex; align-items: center; justify-content: center; cursor: pointer; }
.modal-title { font-family: 'Lora', serif; font-size: 22px; font-weight: 700; margin-bottom: 6px; }
.modal-sub   { font-size: 14px; color: var(--tm); margin-bottom: 24px; }

/* ── TOAST ──────────────────────────────────────────────── */
.toast { position: fixed; bottom: 80px; left: 50%; transform: translateX(-50%); background: var(--gd); color: #fff; padding: 11px 22px; border-radius: var(--r-full); font-size: 14px; font-weight: 600; z-index: 300; box-shadow: var(--shadow-lg); white-space: nowrap; pointer-events: none; }
@media (min-width: 768px) { .toast { bottom: 28px; } }

/* ── CARD ───────────────────────────────────────────────── */
.card { background: #fff; border-radius: var(--r-xl); overflow: hidden; border: 1.5px solid var(--border); }
.card-body { padding: 22px 20px; }
@media (min-width: 640px) { .card-body { padding: 28px 24px; } }

/* ── BADGE / CHIP ───────────────────────────────────────── */
.badge { display: inline-flex; align-items: center; gap: 5px; border-radius: var(--r-full); padding: 3px 12px; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.8px; }
.badge-green  { background: var(--gl); color: var(--gd); }
.badge-yellow { background: var(--y);  color: var(--gd); }
.badge-dark   { background: var(--gd); color: #fff; }

/* ── STATUS BADGE ───────────────────────────────────────── */
.status-dot { width: 7px; height: 7px; border-radius: 50%; display: inline-block; }

/* ── SKELETON LOADER ────────────────────────────────────── */
.skeleton { background: linear-gradient(90deg, var(--gl) 25%, rgba(255,255,255,0.8) 50%, var(--gl) 75%); background-size: 200% 100%; animation: shimmer 1.5s ease infinite; border-radius: var(--r-sm); }
@keyframes shimmer { 0% { background-position: 200% 0; } 100% { background-position: -200% 0; } }

/* ── OUTLET CARDS ───────────────────────────────────────── */
.outlet-card { border-radius: var(--r-xl); padding: 22px 20px; }
.outlet-open { background: var(--gl); border: 2px solid var(--g); }
.outlet-soon { background: #fff; border: 1.5px dashed rgba(0,0,0,0.18); }
.outlet-row  { display: flex; gap: 10px; font-size: 13.5px; margin-bottom: 8px; align-items: flex-start; }
.outlet-row span:first-child { flex-shrink: 0; font-size: 15px; }

/* ── PAGE HERO ──────────────────────────────────────────── */
.page-hero { background: var(--gd); padding: 64px 0 56px; text-align: center; color: #fff; }
.page-hero-lbl  { font-size: 11px; letter-spacing: 3px; text-transform: uppercase; color: var(--y); font-weight: 700; margin-bottom: 14px; }
.page-hero-h1   { font-size: clamp(30px, 5vw, 58px); font-weight: 700; letter-spacing: -1.5px; margin-bottom: 14px; }
.page-hero-lead { font-size: 16px; opacity: 0.78; max-width: 520px; margin: 0 auto; }

/* ── BREADCRUMB ─────────────────────────────────────────── */
.breadcrumb { background: var(--gl); padding: 12px 0; font-size: 13px; color: var(--tm); border-bottom: 1px solid var(--border); }
.breadcrumb a:hover { color: var(--g); }

/* ── ORDER TRACK ────────────────────────────────────────── */
.track-step { display: flex; gap: 18px; padding: 14px 0; position: relative; z-index: 1; align-items: flex-start; }
.track-icon { width: 44px; height: 44px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0; }
.track-icon-done { background: var(--g); }
.track-icon-active { background: var(--y); }
.track-icon-pending { background: #fff; border: 2px solid var(--border); }
.track-line { position: absolute; left: 21px; top: 52px; bottom: 0; width: 2px; background: var(--border); }

/* ── ADMIN ──────────────────────────────────────────────── */
.admin-wrap { display: flex; min-height: 100vh; }
.admin-sidebar { width: 220px; background: var(--gd); min-height: 100vh; flex-shrink: 0; position: sticky; top: 0; display: flex; flex-direction: column; }
@media (max-width: 768px) { .admin-sidebar { width: 100%; min-height: auto; position: sticky; top: 0; z-index: 50; flex-direction: row; overflow-x: auto; } }
.admin-logo { padding: 20px 24px 16px; border-bottom: 1px solid rgba(255,255,255,0.1); display: flex; align-items: center; gap: 10px; }
@media (max-width: 768px) { .admin-logo { border-bottom: none; border-right: 1px solid rgba(255,255,255,0.1); flex-shrink: 0; padding: 12px 16px; } }
.admin-nav-item { display: flex; align-items: center; gap: 10px; padding: 12px 24px; color: rgba(255,255,255,0.7); font-size: 14px; font-weight: 500; cursor: pointer; transition: all .15s; min-height: 44px; }
.admin-nav-item:hover { background: rgba(255,255,255,0.08); color: #fff; }
.admin-nav-item.active { background: rgba(255,255,255,0.15); color: #fff; border-right: 3px solid var(--y); }
@media (max-width: 768px) { .admin-nav-item { padding: 10px 16px; border-right: none; white-space: nowrap; flex-shrink: 0; } .admin-nav-item.active { border-right: none; border-bottom: 3px solid var(--y); } }
.admin-main { flex: 1; background: var(--gl); padding: 24px 20px; }
@media (min-width: 640px) { .admin-main { padding: 32px; } }
.admin-card { background: #fff; border-radius: var(--r-xl); padding: 22px 20px; margin-bottom: 20px; box-shadow: var(--shadow-sm); }
@media (min-width: 640px) { .admin-card { padding: 28px; } }
.admin-table { width: 100%; border-collapse: collapse; font-size: 14px; overflow: auto; }
.admin-table th { background: var(--gl); padding: 11px 14px; text-align: left; font-weight: 700; font-size: 11px; text-transform: uppercase; letter-spacing: 0.5px; color: var(--gd); }
.admin-table td { padding: 13px 14px; border-bottom: 1px solid rgba(0,0,0,0.05); vertical-align: middle; }
.admin-table tr:last-child td { border-bottom: none; }
.admin-table tbody tr:hover td { background: oklch(0.97 0.02 148); }
.table-wrap { overflow-x: auto; border-radius: var(--r-lg); }

/* ── FOOTER ─────────────────────────────────────────────── */
.footer { background: var(--gd); color: #fff; padding: 56px 0 32px; }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 36px; margin-bottom: 48px; }
@media (min-width: 640px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; } }
.footer-brand { font-family: 'Lora', serif; font-size: 24px; font-weight: 700; color: var(--y); margin-bottom: 12px; }
.footer-tagline { font-size: 13.5px; opacity: 0.6; line-height: 1.7; max-width: 260px; margin-bottom: 20px; }
.footer-col-title { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; opacity: 0.5; font-weight: 700; margin-bottom: 16px; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-link { font-size: 14px; opacity: 0.72; color: #fff; }
.footer-link:hover { opacity: 1; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 22px; display: flex; flex-direction: column; gap: 6px; }
@media (min-width: 640px) { .footer-bottom { flex-direction: row; justify-content: space-between; } }
.footer-copy { font-size: 12.5px; opacity: 0.4; }

/* ── ALERTS / UTILS ─────────────────────────────────────── */
.alert-info    { background: var(--gl); border-radius: var(--r-md); padding: 14px 18px; font-size: 14px; color: var(--gd); border-left: 3px solid var(--g); }
.alert-success { background: oklch(0.92 0.08 148); border-radius: var(--r-md); padding: 14px 18px; font-size: 14px; color: var(--gd); }
.divider { border: none; border-top: 1px solid var(--border); margin: 20px 0; }
.text-muted { color: var(--tm); }
.text-green { color: var(--g); }
.text-dark  { color: var(--gd); }
.fw-700 { font-weight: 700; }
.d-flex { display: flex; }
.align-center { align-items: center; }
.justify-between { justify-content: space-between; }
[x-cloak] { display: none !important; }
