/* DOSOL — design tokens & base */
:root {
  --bg: #f7f4ec;
  --bg-card: #ffffff;
  --bg-dark: #15201a;
  --ink: #1a241c;
  --ink-soft: #4b5d4e;
  --ink-mute: #7a8c7d;
  --line: #e7e1d1;
  --line-soft: #efe9d8;
  --green: #2f6b3a;
  --green-dark: #1e4a26;
  --green-bright: #5fa84a;
  --green-soft: #e6efdb;
  --leaf: #94c97a;
  --earth: #6b4a2b;
  --warn: #c8643a;
  --shadow-sm: 0 1px 2px rgba(20,30,22,.06);
  --shadow: 0 6px 24px -10px rgba(20,30,22,.18), 0 2px 6px -2px rgba(20,30,22,.08);
  --shadow-lg: 0 30px 60px -30px rgba(20,30,22,.4), 0 10px 24px -10px rgba(20,30,22,.15);
  --radius: 14px;
  --radius-sm: 8px;
  --radius-lg: 22px;
  --font-display: "Instrument Serif", "Times New Roman", serif;
  --font-sans: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
input, textarea, select { font: inherit; color: inherit; }
h1, h2, h3, h4 { margin: 0; font-weight: 600; letter-spacing: -0.01em; }
p { margin: 0; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.row { display: flex; }
.col { display: flex; flex-direction: column; }

/* ============ TOP BAR ============ */
.topbar {
  background: var(--bg-dark);
  color: #d9e3da;
  font-size: 13px;
  padding: 8px 0;
}
.topbar .container { display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap;}
.topbar a { color: #d9e3da; opacity: .85; }
.topbar a:hover { opacity: 1; }
.topbar .sep { opacity: .25; padding: 0 10px; }

/* ============ NAV ============ */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(247,244,236,.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.brand { display: flex; align-items: center; gap: 12px; font-weight: 700; font-size: 20px; letter-spacing: -.01em; }
.brand-mark { width: 44px; height: 44px; border-radius: 50%; background: var(--green-soft); display:grid; place-items:center; border: 1px solid #c8d8b3; }
.brand-mark svg { width: 28px; height: 28px; }
.brand-name { display: flex; flex-direction: column; line-height: 1; }
.brand-name b { font-size: 18px; }
.brand-name span { font-size: 11px; letter-spacing: .18em; text-transform: uppercase; color: var(--ink-mute); margin-top: 4px; }
.nav-links { display: flex; gap: 4px; align-items: center; }
.nav-links a { padding: 10px 14px; border-radius: 8px; font-weight: 500; font-size: 15px; color: var(--ink-soft); }
.nav-links a:hover { background: rgba(0,0,0,.04); color: var(--ink); }
.nav-cta { display: flex; align-items: center; gap: 10px; }
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 12px 20px; border-radius: 999px; font-weight: 600; font-size: 14px; transition: transform .15s, box-shadow .2s, background .2s; }
.btn-primary { background: var(--green); color: #fff; }
.btn-primary:hover { background: var(--green-dark); transform: translateY(-1px); box-shadow: var(--shadow); }
.btn-ghost { background: transparent; border: 1px solid var(--line); color: var(--ink); }
.btn-ghost:hover { background: rgba(0,0,0,.03); }
.btn-light { background: #fff; color: var(--ink); }
.btn-light:hover { background: #f2eedf; }
.btn-sm { padding: 8px 14px; font-size: 13px; }
.btn-lg { padding: 16px 28px; font-size: 16px; }
.menu-btn { display: none; padding: 8px; border-radius: 8px; }
.menu-btn:hover { background: rgba(0,0,0,.05); }
@media (max-width: 880px) {
  .nav-links { display: none; }
  .menu-btn { display: inline-flex; }
  .nav-mobile-open .nav-links {
    display: flex; position: absolute; top: 72px; left: 0; right: 0;
    flex-direction: column; align-items: stretch; padding: 12px;
    background: var(--bg); border-bottom: 1px solid var(--line); gap: 2px;
  }
}

/* ============ HERO ============ */
.hero {
  position: relative;
  padding: 80px 0 100px;
  background:
    linear-gradient(180deg, rgba(247,244,236,.55) 0%, rgba(247,244,236,.75) 50%, var(--bg) 100%),
    url("https://images.unsplash.com/photo-1500937386664-56d1dfef3854?auto=format&fit=crop&w=2000&q=80") center/cover no-repeat,
    var(--bg);
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse at 85% 5%, rgba(148,201,122,.35), transparent 55%),
    radial-gradient(ellipse at 0% 90%, rgba(30,74,38,.18), transparent 55%);
}
.hero .container { position: relative; z-index: 1; }
.hero-inner { display: grid; grid-template-columns: 1.1fr .9fr; gap: 60px; align-items: center; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 14px 6px 8px; border-radius: 999px;
  background: #fff; border: 1px solid var(--line);
  font-size: 13px; color: var(--ink-soft); font-weight: 500;
  margin-bottom: 24px;
}
.hero-eyebrow .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green-bright); box-shadow: 0 0 0 4px rgba(95,168,74,.2);}
.hero h1 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(40px, 6.2vw, 76px);
  line-height: 1.02;
  letter-spacing: -0.02em;
  margin-bottom: 22px;
}
.hero h1 em { font-style: italic; color: var(--green); }
.hero p.lead { font-size: 19px; color: var(--ink-soft); max-width: 540px; margin-bottom: 32px; text-wrap: pretty; }
.hero-stats { display: flex; gap: 32px; margin-top: 40px; padding-top: 28px; border-top: 1px solid var(--line); flex-wrap: wrap; }
.hero-stats .stat { }
.hero-stats .stat b { font-family: var(--font-display); font-size: 36px; font-weight: 400; color: var(--green-dark); display: block; line-height: 1; }
.hero-stats .stat span { font-size: 13px; color: var(--ink-mute); margin-top: 4px; display: block; }
.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; }

.hero-art {
  position: relative; aspect-ratio: 1/1; max-width: 520px; margin-left: auto;
}
.hero-art .frame {
  position: absolute; inset: 0;
  border-radius: 28px; overflow: hidden;
  background:
    linear-gradient(135deg, rgba(223,234,203,.85) 0%, rgba(248,245,238,.7) 60%, rgba(240,233,211,.85) 100%),
    url("https://images.unsplash.com/photo-1416879595882-3373a0480b5b?auto=format&fit=crop&w=1200&q=80") center/cover no-repeat;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255,255,255,.5);
}
.hero-art .frame::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(circle at 30% 30%, rgba(255,255,255,.6), transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(95,168,74,.25), transparent 55%);
}
/* Drawn bottle */
.bottle {
  position: absolute; left: 50%; bottom: 8%; transform: translateX(-50%);
  width: 62%; height: 78%;
}
.bottle svg { width: 100%; height: 100%; filter: drop-shadow(0 30px 40px rgba(20,40,20,.3));}
.hero-leaf {
  position: absolute; pointer-events: none;
}
.hero-leaf.l1 { top: -30px; right: -20px; width: 180px; transform: rotate(20deg); opacity: .9; }
.hero-leaf.l2 { bottom: -40px; left: -30px; width: 220px; transform: rotate(-30deg); opacity: .8; }
.badge-organic {
  position: absolute; top: 24px; left: 24px;
  background: var(--green); color: #fff; padding: 10px 16px;
  border-radius: 999px; font-size: 12px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  display: flex; align-items: center; gap: 8px;
  box-shadow: var(--shadow);
}

@media (max-width: 880px) {
  .hero { padding: 48px 0 60px; }
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-art { margin: 0 auto; max-width: 380px; }
}

/* ============ MARQUEE ============ */
.marquee {
  background: var(--bg-dark);
  color: #d9e3da;
  padding: 18px 0;
  overflow: hidden;
}
.marquee-track {
  display: flex; gap: 60px; align-items: center;
  white-space: nowrap;
  animation: scroll 40s linear infinite;
  font-family: var(--font-display);
  font-size: 22px;
}
.marquee-track span { display: inline-flex; align-items: center; gap: 60px; }
.marquee-track svg { width: 24px; height: 24px; color: var(--green-bright); }
@keyframes scroll { to { transform: translateX(-50%); } }

/* ============ SECTIONS ============ */
section { padding: 100px 0; position: relative; }
.section-head { max-width: 720px; margin: 0 auto 60px; text-align: center; }
.section-head .kicker {
  display: inline-block; font-size: 12px; font-weight: 600;
  color: var(--green); letter-spacing: .2em; text-transform: uppercase;
  padding: 6px 14px; background: var(--green-soft); border-radius: 999px;
  margin-bottom: 16px;
}
.section-head h2 {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(32px, 4.2vw, 52px); line-height: 1.05; letter-spacing: -.02em;
  margin-bottom: 16px;
}
.section-head p { color: var(--ink-soft); font-size: 17px; text-wrap: pretty; }

/* ============ BENEFITS ============ */
.benefits { background: linear-gradient(180deg, var(--bg) 0%, #fff 100%); }
.benefit-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.benefit-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 32px 28px; transition: transform .2s, box-shadow .2s, border-color .2s;
}
.benefit-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: #d8e6c4; }
.benefit-icon {
  width: 56px; height: 56px; border-radius: 16px; background: var(--green-soft);
  display: grid; place-items: center; margin-bottom: 20px; color: var(--green-dark);
}
.benefit-icon svg { width: 28px; height: 28px; }
.benefit-card h3 { font-size: 19px; margin-bottom: 8px; }
.benefit-card p { color: var(--ink-soft); font-size: 15px; }
@media (max-width: 880px) { .benefit-grid { grid-template-columns: 1fr; } }

/* ============ PRODUCTS ============ */
.products { background: #fff; }
.product-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
}
.product-card {
  background: var(--bg-card); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 24px; display: flex; flex-direction: column; transition: all .25s;
  position: relative; overflow: hidden;
}
.product-card:hover { border-color: var(--green-bright); box-shadow: var(--shadow); transform: translateY(-3px); }
.product-card .tag {
  position: absolute; top: 16px; right: 16px;
  font-size: 11px; font-weight: 700; letter-spacing: .08em;
  padding: 4px 10px; border-radius: 999px; text-transform: uppercase;
}
.product-card .tag.bestseller { background: var(--green-dark); color: #fff; }
.product-card .tag.value { background: #f3e1c8; color: var(--earth); }
.product-img {
  aspect-ratio: 1; background: linear-gradient(135deg, #f4eedd, #e9efd6);
  border-radius: var(--radius); display: grid; place-items: center; margin-bottom: 20px;
  position: relative; overflow: hidden;
}
.product-img::after {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,.5), transparent 60%);
}
.product-img svg { width: 60%; height: 75%; filter: drop-shadow(0 8px 16px rgba(20,40,20,.15)); position: relative; z-index: 1; }
.product-card h3 { font-size: 17px; margin-bottom: 4px; }
.product-card .size { font-size: 13px; color: var(--ink-mute); margin-bottom: 12px; }
.product-card .price { font-family: var(--font-display); font-size: 30px; color: var(--green-dark); line-height: 1; margin-top: auto; padding-top: 16px; }
.product-card .price small { font-size: 13px; color: var(--ink-mute); font-family: var(--font-sans); margin-left: 4px;}
.product-card .order-btn { margin-top: 16px; }
@media (max-width: 980px) { .product-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .product-grid { grid-template-columns: 1fr; } }

/* ============ USAGE / HOW IT WORKS ============ */
.usage { background: var(--bg); }
.usage-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.usage-step {
  background: #fff; border-radius: var(--radius-lg); padding: 28px;
  position: relative; border: 1px solid var(--line);
}
.usage-step .num {
  font-family: var(--font-display); font-size: 52px; color: var(--green-bright);
  line-height: 1; margin-bottom: 16px; opacity: .9;
}
.usage-step h4 { font-size: 18px; margin-bottom: 6px; }
.usage-step p { font-size: 14px; color: var(--ink-soft); }
@media (max-width: 880px) { .usage-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .usage-grid { grid-template-columns: 1fr; } }

/* ============ PLANTS / FOR WHO ============ */
.plants { background: #fff; }
.plants-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px;
}
.plant-chip {
  background: var(--bg); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 20px; display: flex; align-items: center; gap: 14px;
  transition: all .15s;
}
.plant-chip:hover { background: var(--green-soft); border-color: #c8d8b3; }
.plant-chip .icon {
  width: 44px; height: 44px; border-radius: 12px; background: #fff;
  display: grid; place-items: center; color: var(--green); flex-shrink: 0;
}
.plant-chip .icon svg { width: 22px; height: 22px; }
.plant-chip span { font-weight: 500; font-size: 15px; }
@media (max-width: 880px) { .plants-grid { grid-template-columns: repeat(2, 1fr); } }

/* ============ FAQ ============ */
.faq { background: var(--bg); }
.faq-wrap { max-width: 780px; margin: 0 auto; }
.faq-item {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  margin-bottom: 10px; overflow: hidden;
}
.faq-q {
  width: 100%; text-align: left; padding: 22px 24px;
  display: flex; justify-content: space-between; align-items: center;
  font-weight: 600; font-size: 16px;
}
.faq-q:hover { background: #fafaf3; }
.faq-q .plus { width: 28px; height: 28px; border-radius: 50%; background: var(--green-soft); display: grid; place-items: center; color: var(--green-dark); font-weight: 600; transition: transform .25s; flex-shrink: 0; margin-left: 16px;}
.faq-item.open .plus { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq-item.open .faq-a { max-height: 400px; }
.faq-a-inner { padding: 0 24px 22px; color: var(--ink-soft); font-size: 15px; }

/* ============ CONTACT ============ */
.contact { background: var(--bg-dark); color: #d9e3da; }
.contact .section-head h2 { color: #fff; }
.contact .section-head p { color: #a8b8aa; }
.contact .section-head .kicker { background: rgba(95,168,74,.2); color: var(--leaf); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 60px; max-width: 1000px; margin: 0 auto; }
.contact-info-card { display: flex; flex-direction: column; gap: 28px; }
.contact-info-item { display: flex; gap: 16px; align-items: flex-start; }
.contact-info-item .icon {
  width: 48px; height: 48px; border-radius: 14px; background: rgba(95,168,74,.15);
  color: var(--leaf); display: grid; place-items: center; flex-shrink: 0;
}
.contact-info-item .icon svg { width: 22px; height: 22px; }
.contact-info-item .label { font-size: 12px; color: #8aa08c; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 4px;}
.contact-info-item .value { font-size: 17px; font-weight: 500; color: #fff; }
.contact-info-item .value a:hover { color: var(--leaf); }

.contact-form {
  background: #1f2c23; border-radius: var(--radius-lg); padding: 36px;
}
.form-field { display: flex; flex-direction: column; gap: 8px; margin-bottom: 16px; }
.form-field label { font-size: 13px; color: #a8b8aa; }
.form-field input, .form-field textarea, .form-field select {
  background: #15201a; border: 1px solid #2a3a2e; color: #fff;
  padding: 14px 16px; border-radius: var(--radius-sm); font-size: 15px;
  transition: border-color .2s, background .2s;
}
.form-field input:focus, .form-field textarea:focus, .form-field select:focus {
  outline: none; border-color: var(--green-bright); background: #18241c;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-msg { font-size: 14px; margin-top: 10px; }
.form-msg.ok { color: var(--leaf); }
.form-msg.err { color: #e08763; }

@media (max-width: 880px) {
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .form-row { grid-template-columns: 1fr; }
}

/* ============ FOOTER ============ */
.footer { background: #0e1611; color: #8aa08c; padding: 60px 0 30px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer h5 { color: #fff; font-size: 13px; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 16px; font-weight: 600;}
.footer a { display: block; padding: 4px 0; font-size: 14px; }
.footer a:hover { color: var(--leaf); }
.footer-brand p { font-size: 14px; max-width: 320px; margin: 12px 0 20px; line-height: 1.6; }
.footer-bottom { border-top: 1px solid #1f2a23; padding-top: 24px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; font-size: 13px; }
@media (max-width: 880px) { .footer-grid { grid-template-columns: 1fr 1fr; } }

/* ============ WHATSAPP FAB ============ */
.fab {
  position: fixed; bottom: 24px; right: 24px; z-index: 40;
  width: 60px; height: 60px; border-radius: 50%;
  background: #25d366; color: #fff;
  display: grid; place-items: center;
  box-shadow: 0 8px 24px rgba(37,211,102,.4);
  transition: transform .2s;
}
.fab:hover { transform: scale(1.08); }
.fab svg { width: 30px; height: 30px; }

/* ============ ADMIN ============ */
.admin {
  position: fixed; inset: 0; z-index: 100;
  background: #f4f6f4; display: flex;
}
.admin-login {
  position: fixed; inset: 0; z-index: 100;
  background:
    radial-gradient(ellipse at 30% 20%, rgba(95,168,74,.15), transparent 60%),
    var(--bg-dark);
  display: grid; place-items: center; padding: 24px;
}
.admin-login-card {
  background: #fff; border-radius: var(--radius-lg); padding: 48px;
  max-width: 420px; width: 100%; box-shadow: var(--shadow-lg);
}
.admin-login-card .brand { justify-content: center; margin-bottom: 32px; }
.admin-login-card h2 { font-family: var(--font-display); font-weight: 400; font-size: 30px; text-align: center; margin-bottom: 8px;}
.admin-login-card p.sub { color: var(--ink-soft); text-align: center; margin-bottom: 28px; font-size: 14px; }
.admin-login-card .form-field input { background: #fafaf3; border: 1px solid var(--line); color: var(--ink); }
.admin-login-card .form-field input:focus { background: #fff; border-color: var(--green-bright); }
.admin-login-card .btn { width: 100%; justify-content: center; }
.admin-login-hint { margin-top: 16px; text-align: center; font-size: 13px; color: var(--ink-mute); }
.admin-login-hint code { background: var(--green-soft); padding: 2px 8px; border-radius: 4px; color: var(--green-dark); font-family: ui-monospace, monospace; }

.admin-sidebar {
  width: 250px; background: var(--bg-dark); color: #d9e3da;
  display: flex; flex-direction: column; flex-shrink: 0;
}
.admin-sidebar .brand { padding: 24px; border-bottom: 1px solid #1f2a23; color: #fff; }
.admin-sidebar .brand-name span { color: #8aa08c; }
.admin-nav { padding: 16px 12px; flex: 1; }
.admin-nav a {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 14px; border-radius: 10px;
  color: #a8b8aa; font-size: 14px; font-weight: 500;
  margin-bottom: 2px; cursor: pointer;
}
.admin-nav a:hover { background: rgba(255,255,255,.05); color: #fff; }
.admin-nav a.active { background: var(--green); color: #fff; }
.admin-nav a svg { width: 18px; height: 18px; }
.admin-nav .group-label { font-size: 11px; color: #5a6c5d; letter-spacing: .12em; text-transform: uppercase; padding: 16px 14px 8px;}
.admin-sidebar-foot { padding: 16px; border-top: 1px solid #1f2a23; font-size: 13px; }
.admin-sidebar-foot button { color: #a8b8aa; padding: 8px 12px; border-radius: 8px; display: flex; align-items: center; gap: 8px; width: 100%; }
.admin-sidebar-foot button:hover { background: rgba(255,255,255,.06); color: #fff; }

.admin-main { flex: 1; overflow-y: auto; }
.admin-topbar {
  background: #fff; border-bottom: 1px solid #e6e6e1;
  padding: 16px 32px; display: flex; justify-content: space-between; align-items: center;
}
.admin-topbar h1 { font-size: 22px; font-weight: 600; }
.admin-content { padding: 32px;  }

/* admin: dashboard */
.stat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-bottom: 28px; }
.stat-card {
  background: #fff; border: 1px solid #ece7d8; border-radius: var(--radius);
  padding: 24px; position: relative;
}
.stat-card .stat-label { font-size: 13px; color: var(--ink-mute); margin-bottom: 8px; }
.stat-card .stat-value { font-family: var(--font-display); font-size: 36px; line-height: 1; color: var(--ink); }
.stat-card .stat-delta { font-size: 12px; margin-top: 8px; color: var(--green); }
.stat-card .stat-icon {
  position: absolute; top: 20px; right: 20px;
  width: 36px; height: 36px; border-radius: 10px;
  background: var(--green-soft); color: var(--green-dark);
  display: grid; place-items: center;
}
.stat-card .stat-icon svg { width: 18px; height: 18px; }
@media (max-width: 880px) { .stat-grid { grid-template-columns: repeat(2, 1fr); } }

.panel {
  background: #fff; border: 1px solid #ece7d8; border-radius: var(--radius);
  margin-bottom: 24px;
}
.panel-head {
  padding: 20px 24px; border-bottom: 1px solid #f0ebde;
  display: flex; justify-content: space-between; align-items: center; gap: 12px;
}
.panel-head h3 { font-size: 17px; }
.panel-body { padding: 8px 0; }

/* admin tables */
.tbl { width: 100%; border-collapse: collapse; font-size: 14px; }
.tbl th, .tbl td { padding: 14px 24px; text-align: left; border-bottom: 1px solid #f3eee0; }
.tbl th { font-size: 12px; color: var(--ink-mute); font-weight: 600; letter-spacing: .04em; text-transform: uppercase; background: #fafaf3; }
.tbl tr:last-child td { border-bottom: 0; }
.tbl tr:hover td { background: #fafaf3; }
.tbl .actions { display: flex; gap: 6px; justify-content: flex-end; }
.tbl .icon-btn { width: 32px; height: 32px; border-radius: 8px; display: grid; place-items: center; color: var(--ink-mute); }
.tbl .icon-btn:hover { background: #f0ebde; color: var(--ink); }
.tbl .icon-btn.danger:hover { background: #fce4d8; color: var(--warn); }

.status-pill {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 4px 10px; border-radius: 999px; font-size: 12px; font-weight: 600;
}
.status-pill .dot { width: 6px; height: 6px; border-radius: 50%; background: currentColor; }
.status-new { background: #fef3c7; color: #92400e; }
.status-processing { background: #dbeafe; color: #1e40af; }
.status-shipped { background: #e0e7ff; color: #4338ca; }
.status-completed { background: #d1fae5; color: #065f46; }
.status-cancelled { background: #fee2e2; color: #991b1b; }
.status-unread { background: #fef3c7; color: #92400e; }
.status-read { background: #f1f5f9; color: #475569; }

/* admin: forms / modals */
.modal-overlay {
  position: fixed; inset: 0; z-index: 110;
  background: rgba(20,30,22,.6); backdrop-filter: blur(4px);
  display: grid; place-items: center; padding: 24px;
}
.modal {
  background: #fff; border-radius: var(--radius-lg); padding: 32px;
  width: 100%; max-width: 560px; max-height: 90vh; overflow-y: auto;
  box-shadow: var(--shadow-lg);
}
.modal h3 { font-family: var(--font-display); font-weight: 400; font-size: 28px; margin-bottom: 20px; }
.modal .form-field input, .modal .form-field textarea, .modal .form-field select {
  background: #fafaf3; border: 1px solid var(--line); color: var(--ink);
  padding: 12px 14px; border-radius: var(--radius-sm); font-size: 15px;
}
.modal .form-field input:focus, .modal .form-field textarea:focus, .modal .form-field select:focus {
  outline: none; border-color: var(--green-bright); background: #fff;
}
.modal .form-field label { font-size: 13px; color: var(--ink-soft); font-weight: 500;}
.modal .actions { display: flex; gap: 10px; justify-content: flex-end; margin-top: 24px; padding-top: 20px; border-top: 1px solid var(--line); }

.empty {
  padding: 60px 24px; text-align: center; color: var(--ink-mute);
}
.empty svg { width: 48px; height: 48px; margin: 0 auto 12px; opacity: .4; }

/* admin settings */
.settings-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.settings-grid .panel { margin-bottom: 0; }
.settings-form { padding: 24px; }
@media (max-width: 880px) { .settings-grid { grid-template-columns: 1fr; } }

/* utility */
.text-muted { color: var(--ink-mute); }
.flex { display: flex; }
.gap-2 { gap: 8px; }
.gap-3 { gap: 12px; }
.mb-2 { margin-bottom: 8px; }
.mb-4 { margin-bottom: 16px; }
.fade-enter-active, .fade-leave-active { transition: opacity .2s; }
.fade-enter-from, .fade-leave-to { opacity: 0; }

/* small screens admin */
@media (max-width: 720px) {
  .admin-sidebar { display: none; }
  .admin-content { padding: 20px; }
  .admin-topbar { padding: 14px 20px; }
  .tbl th, .tbl td { padding: 10px 14px; font-size: 13px; }
  .tbl .hide-sm { display: none; }
}
