/* ─────────────────────────────────────────────────────────────
   Paws & Perks — Brand design system (handwritten, no build step)
   Primary #48BABA · Secondary #D99F4D · White #FFFFFF
   ───────────────────────────────────────────────────────────── */

:root {
  --primary: #48baba;
  --primary-600: #369b9b;
  --primary-700: #2f7d7d;
  --primary-50: #eefaf9;
  --primary-100: #d4f2f0;
  --secondary: #d99f4d;
  --secondary-600: #c0853a;
  --secondary-50: #fbf6ec;
  --ink: #15282b;
  --muted: #5b6b6e;
  --line: #e6edec;
  --bg: #ffffff;
  --bg-soft: #f4f8f8;
  --radius: 16px;
  --shadow-soft: 0 2px 8px -2px rgba(16, 24, 40, .08), 0 4px 24px -4px rgba(16, 24, 40, .08);
  --shadow-card: 0 1px 3px rgba(16, 24, 40, .06), 0 8px 32px -12px rgba(16, 24, 40, .12);
  --shadow-glow: 0 8px 40px -8px rgba(72, 186, 186, .45);
}

/* Google Material Symbols (icon font) */
.material-symbols-outlined {
  font-family: "Material Symbols Outlined";
  font-weight: normal;
  font-style: normal;
  font-size: inherit;       /* scales with the container's font-size */
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-flex;
  white-space: nowrap;
  vertical-align: middle;
  -webkit-font-feature-settings: "liga";
  -webkit-font-smoothing: antialiased;
  user-select: none;
  font-variation-settings: "FILL" 0, "wght" 400, "GRAD" 0, "opsz" 24;
}
.material-symbols-outlined.fill { font-variation-settings: "FILL" 1, "wght" 400, "GRAD" 0, "opsz" 24; }
.ico-sm { font-size: 18px; }
.ico-md { font-size: 22px; }
.ico-lg { font-size: 28px; }
.ico-xl { font-size: 40px; }
.star-on { color: var(--secondary); }
.star-off { color: #d8dedd; }

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: "Plus Jakarta Sans", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4 { font-family: "Sora", system-ui, sans-serif; line-height: 1.15; font-weight: 700; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
::selection { background: rgba(72, 186, 186, .2); }

/* Layout */
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.container-wide { max-width: 1480px; }
.section { padding: 80px 0; }
.section-sm { padding: 48px 0; }
.center { text-align: center; }
.muted { color: var(--muted); }
.grid { display: grid; gap: 20px; }
.flex { display: flex; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.gap-2 { gap: 8px; } .gap-3 { gap: 12px; } .gap-4 { gap: 16px; }
.mt-2 { margin-top: 8px; } .mt-4 { margin-top: 16px; } .mt-6 { margin-top: 24px; }
.hidden { display: none; }

@media (min-width: 640px) { .sm\:grid-2 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 768px) { .md\:grid-3 { grid-template-columns: repeat(3, 1fr); } .md\:flex { display: flex; } }
@media (min-width: 1024px) {
  .lg\:grid-4 { grid-template-columns: repeat(4, 1fr); }
  .lg\:grid-3 { grid-template-columns: repeat(3, 1fr); }
  .lg\:flex { display: flex; }
  .lg\:hidden { display: none; }
}

/* Gradients & utilities */
.gradient-primary { background-image: linear-gradient(135deg, #48baba 0%, #369b9b 100%); }
.gradient-gold { background-image: linear-gradient(135deg, #e2b66f 0%, #d99f4d 100%); }
.gradient-hero {
  background-image:
    radial-gradient(1200px 600px at 10% -10%, rgba(72,186,186,.18), transparent 60%),
    radial-gradient(900px 500px at 110% 10%, rgba(217,159,77,.16), transparent 55%);
}
.text-primary { color: var(--primary); }
.text-white { color: #fff; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-weight: 600; font-size: 15px; border: 0; border-radius: 999px;
  padding: 12px 24px; cursor: pointer; transition: all .2s ease; white-space: nowrap;
}
.btn-primary { background-image: linear-gradient(135deg, #48baba, #369b9b); color: #fff; box-shadow: var(--shadow-soft); }
.btn-primary:hover { box-shadow: var(--shadow-glow); filter: brightness(1.05); }
.btn-secondary { background-image: linear-gradient(135deg, #e2b66f, #d99f4d); color: #4a330f; }
.btn-secondary:hover { filter: brightness(1.05); }
.btn-outline { background: #fff; border: 1px solid var(--line); color: var(--ink); }
.btn-outline:hover { background: var(--bg-soft); border-color: var(--primary); color: var(--primary-700); }
.btn-ghost { background: transparent; color: var(--ink); }
.btn-ghost:hover { background: var(--bg-soft); }
.btn-lg { padding: 14px 30px; font-size: 16px; }
.btn-sm { padding: 8px 16px; font-size: 14px; }
.btn-block { width: 100%; }

/* Badges */
.badge { display: inline-flex; align-items: center; gap: 4px; font-size: 12px; font-weight: 600; padding: 4px 12px; border-radius: 999px; }
.badge-primary { background: var(--primary-100); color: var(--primary-700); }
.badge-secondary { background: var(--secondary-50); color: var(--secondary-600); }
.badge-success { background: #dcfce7; color: #15803d; }
.badge-warning { background: #fef3c7; color: #b45309; }
.badge-danger { background: #fee2e2; color: #b91c1c; }

/* Cards */
.card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-soft); overflow: hidden; }
.card-body { padding: 24px; }
.card-hover { transition: transform .3s ease, box-shadow .3s ease; }
.card-hover:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); }

/* Header / nav */
.site-header { position: sticky; top: 0; z-index: 50; background: rgba(255,255,255,.85); backdrop-filter: blur(14px); border-bottom: 1px solid var(--line); }
.nav { display: flex; align-items: center; justify-content: space-between; height: 68px; }
.brand { display: flex; align-items: center; gap: 10px; font-family: "Sora"; font-weight: 700; font-size: 19px; }
.brand-mark { display: grid; place-items: center; width: 38px; height: 38px; border-radius: 11px; background-image: linear-gradient(135deg,#48baba,#369b9b); color: #fff; font-size: 22px; }
.nav-links { display: none; gap: 4px; }
.nav-links a { padding: 8px 16px; border-radius: 999px; font-weight: 500; font-size: 15px; color: var(--muted); transition: all .2s; }
.nav-links a:hover, .nav-links a.active { background: var(--primary-50); color: var(--primary-700); }
.nav-actions { display: flex; align-items: center; gap: 8px; }
@media (min-width: 900px) { .nav-links { display: flex; } .nav-burger { display: none; } }
.nav-burger { background: none; border: 0; cursor: pointer; padding: 8px; }
.mobile-menu { display: none; flex-direction: column; gap: 4px; padding: 12px 24px 20px; border-top: 1px solid var(--line); }
.mobile-menu.open { display: flex; }
.mobile-menu a { padding: 12px 16px; border-radius: 12px; font-weight: 500; }
.mobile-menu a:hover { background: var(--bg-soft); }

/* Hero */
.hero { position: relative; overflow: hidden; }
.hero-grid { display: grid; gap: 48px; align-items: center; padding: 72px 0; }
@media (min-width: 1024px) { .hero-grid { grid-template-columns: 1fr 1fr; padding: 100px 0; } }
.hero h1 { font-size: clamp(34px, 5vw, 60px); letter-spacing: -.02em; }
.hero .lead { font-size: 18px; color: var(--muted); max-width: 540px; margin-top: 18px; }
.eyebrow { display: inline-flex; align-items: center; gap: 8px; background: var(--primary-50); color: var(--primary-700); border: 1px solid var(--primary-100); border-radius: 999px; padding: 6px 16px; font-size: 14px; font-weight: 600; }
.text-gradient { background: linear-gradient(90deg, var(--primary), var(--secondary)); -webkit-background-clip: text; background-clip: text; color: transparent; }

/* Membership card visual */
.member-card { position: relative; aspect-ratio: 1.6/1; border-radius: 24px; padding: 28px; color: #fff; background-image: linear-gradient(135deg,#48baba,#369b9b); box-shadow: var(--shadow-glow); animation: floaty 6s ease-in-out infinite; }
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
.member-card .qr { width: 56px; height: 56px; border-radius: 12px; background: rgba(255,255,255,.18); display: grid; place-items: center; margin-top: 28px; font-size: 34px; }
.member-card .mono { font-family: ui-monospace, "SF Mono", Menlo, monospace; letter-spacing: 1px; }
.label-xs { font-size: 10px; text-transform: uppercase; letter-spacing: 2px; opacity: .75; }

/* Feature / step / icon tiles */
.icon-tile { width: 48px; height: 48px; border-radius: 12px; display: grid; place-items: center; background: var(--primary-50); color: var(--primary); }
.icon-tile-lg { width: 56px; height: 56px; border-radius: 16px; }
.step-num { width: 56px; height: 56px; border-radius: 16px; display: grid; place-items: center; margin: 0 auto; font-family: "Sora"; font-weight: 700; font-size: 20px; color: #fff; background-image: linear-gradient(135deg,#48baba,#369b9b); box-shadow: var(--shadow-soft); }

/* Product card */
.product-thumb { aspect-ratio: 1; display: grid; place-items: center; font-size: 64px; background: var(--bg-soft); position: relative; }
.product-thumb .badge { position: absolute; top: 12px; left: 12px; }
.price { font-family: "Sora"; font-weight: 700; color: var(--primary-700); }
.price-old { color: var(--muted); text-decoration: line-through; font-size: 13px; }
.stars { color: var(--secondary); font-size: 16px; display: inline-flex; align-items: center; gap: 1px; }

/* Shop layout with LEFT SIDEBAR */
.shop-layout { display: flex; flex-direction: column; gap: 28px; }
@media (min-width: 1024px) { .shop-layout { flex-direction: row; } }
.shop-sidebar { width: 100%; flex-shrink: 0; }
@media (min-width: 1024px) { .shop-sidebar { width: 280px; } }
.filter-card { position: sticky; top: 88px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-soft); padding: 24px; }
.filter-group { padding: 18px 0; border-top: 1px solid var(--line); }
.filter-group:first-of-type { border-top: 0; padding-top: 0; }
.filter-group h4 { font-size: 14px; margin-bottom: 12px; }
.filter-list { list-style: none; display: flex; flex-direction: column; gap: 2px; }
.filter-list a, .check-row { display: flex; align-items: center; gap: 10px; padding: 8px 12px; border-radius: 10px; font-size: 14px; color: var(--muted); cursor: pointer; }
.filter-list a:hover { background: var(--bg-soft); color: var(--ink); }
.filter-list a.active { background: var(--primary-50); color: var(--primary-700); font-weight: 600; }
input[type="range"] { width: 100%; accent-color: var(--primary); }
.toolbar { display: flex; align-items: center; justify-content: space-between; gap: 16px; background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: 12px 16px; box-shadow: var(--shadow-soft); margin-bottom: 16px; }
.pagination { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; margin-top: 32px; }
.page-link { min-width: 40px; height: 40px; padding: 0 12px; display: inline-flex; align-items: center; justify-content: center; border: 1px solid var(--line); border-radius: 10px; font-weight: 600; font-size: 14px; color: var(--ink); background: #fff; transition: all .15s; }
.page-link:hover { border-color: var(--primary); color: var(--primary-700); }
.page-link.active { background-image: linear-gradient(135deg, #48baba, #369b9b); color: #fff; border-color: transparent; }

/* Forms */
.input, select.input { width: 100%; height: 46px; border: 1px solid var(--line); border-radius: 12px; padding: 0 16px; font-size: 15px; font-family: inherit; background: #fff; transition: border-color .2s, box-shadow .2s; }
.input:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(72,186,186,.15); }
.field { margin-bottom: 16px; }
.field label { display: block; font-size: 14px; font-weight: 600; margin-bottom: 6px; }

/* Auth split layout */
.auth-wrap { display: grid; min-height: 100vh; }
@media (min-width: 1024px) { .auth-wrap { grid-template-columns: 1fr 1fr; } }
.auth-aside { display: none; flex-direction: column; justify-content: space-between; padding: 48px; color: #fff; background-image: linear-gradient(135deg,#48baba,#369b9b); }
@media (min-width: 1024px) { .auth-aside { display: flex; } }
.auth-main { display: grid; place-items: center; padding: 32px; }
.auth-box { width: 100%; max-width: 380px; }

/* Membership plans */
.plan-card { position: relative; }
.plan-card.featured { border-color: rgba(72,186,186,.4); box-shadow: var(--shadow-glow); outline: 2px solid rgba(72,186,186,.3); }
.plan-price { font-family: "Sora"; font-size: 40px; font-weight: 700; }
.plan-benefits { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-top: 24px; }
.plan-benefits li { display: flex; gap: 10px; align-items: flex-start; font-size: 14px; }
.plan-benefits svg { flex-shrink: 0; color: var(--primary); margin-top: 2px; }

/* Dashboard / admin shell with LEFT SIDEBAR */
.shell { display: flex; min-height: 100vh; background: var(--bg-soft); }
.side-nav { width: 256px; flex-shrink: 0; background: #fff; border-right: 1px solid var(--line); display: none; }
@media (min-width: 1024px) { .side-nav { display: block; } }
.side-nav .side-inner { position: sticky; top: 0; height: 100vh; display: flex; flex-direction: column; }
.side-brand { display: flex; align-items: center; gap: 10px; padding: 20px 24px; border-bottom: 1px solid var(--line); font-family: "Sora"; font-weight: 700; }
.side-links { flex: 1; overflow-y: auto; padding: 16px; display: flex; flex-direction: column; gap: 4px; }
.side-links .side-label { font-size: 11px; text-transform: uppercase; letter-spacing: 1px; color: var(--muted); padding: 0 12px 8px; font-weight: 700; }
.side-links a { display: flex; align-items: center; gap: 12px; padding: 11px 14px; border-radius: 12px; font-size: 14px; font-weight: 500; color: var(--muted); transition: all .2s; }
.side-links a:hover { background: var(--bg-soft); color: var(--ink); }
.side-links a.active { background-image: linear-gradient(135deg,#48baba,#369b9b); color: #fff; box-shadow: var(--shadow-soft); }
.side-account { display: flex; align-items: center; gap: 10px; padding: 14px 16px; border-top: 1px solid var(--line); }
.side-account-ico { font-size: 34px; color: var(--primary); display: grid; place-items: center; flex-shrink: 0; }
.side-account-info { flex: 1; min-width: 0; }
.side-account-name { font-weight: 600; font-size: 14px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.side-account-sub { color: var(--muted); font-size: 12px; }
.side-gear { border: 0; background: none; cursor: pointer; color: var(--muted); display: grid; place-items: center; width: 42px; height: 42px; border-radius: 11px; flex-shrink: 0; transition: all .15s; }
.side-gear:hover { background: var(--bg-soft); color: var(--primary); }
/* ── Settings modal (two-pane) ── */
.modal.modal-settings { max-width: 880px; overflow: hidden; }
.settings-layout { display: flex; }
.settings-side { width: 188px; flex-shrink: 0; border-right: 1px solid var(--line); padding: 14px; display: flex; flex-direction: column; gap: 4px; }
.settings-tab { display: flex; align-items: center; gap: 10px; width: 100%; padding: 11px 12px; border: 0; background: none; border-radius: 10px; font-size: 14px; font-weight: 600; color: var(--muted); cursor: pointer; text-align: left; transition: all .15s; }
.settings-tab:hover { background: var(--bg-soft); color: var(--ink); }
.settings-tab.active { background: var(--primary-50); color: var(--primary-700); }
.settings-tab-danger { color: #dc2626; }
.settings-tab-danger:hover { background: #fee2e2; color: #dc2626; }
.settings-side-foot { margin-top: auto; padding-top: 10px; border-top: 1px solid var(--line); display: flex; flex-direction: column; gap: 4px; }
.settings-content { flex: 1; min-width: 0; padding: 26px; height: 520px; overflow-y: auto; }
.settings-panel { display: none; }
.settings-panel.active { display: block; }
@media (max-width: 600px) {
  .settings-layout { flex-direction: column; }
  .settings-side { width: auto; border-right: 0; border-bottom: 1px solid var(--line); flex-direction: row; flex-wrap: wrap; }
  .settings-tab { width: auto; }
  .settings-side-foot { margin-top: 0; padding-top: 0; border-top: 0; flex-direction: row; }
  .settings-content { height: auto; max-height: 70vh; }
}
.settings-profile { display: flex; align-items: center; gap: 18px; background: linear-gradient(135deg,#48baba,#369b9b); color: #fff; padding: 22px; border-radius: 16px; box-shadow: var(--shadow-soft); }
.settings-ava { font-size: 56px; flex-shrink: 0; display: grid; place-items: center; }
.settings-name { font-family: "Sora"; font-weight: 700; font-size: 19px; }
.settings-email { font-size: 13px; opacity: .92; word-break: break-all; margin: 3px 0 9px; }
.settings-profile .badge { background: rgba(255,255,255,.22); color: #fff; }
.settings-section { margin-top: 22px; }
.settings-section-title { font-size: 11px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--muted); margin-bottom: 8px; }
.settings-row { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 12px 0; border-top: 1px solid var(--line); font-size: 14px; }
.settings-section-title + .settings-row { border-top: 0; }
.settings-row .muted { display: inline-flex; align-items: center; gap: 8px; }
.settings-links { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.settings-link { display: flex; align-items: center; gap: 8px; padding: 12px 14px; border: 1px solid var(--line); border-radius: 12px; font-size: 14px; font-weight: 600; color: var(--ink); transition: all .15s; }
.settings-link:hover { border-color: var(--primary); color: var(--primary-700); background: var(--primary-50); }
.settings-acc-trigger { cursor: pointer; user-select: none; }
.settings-acc-arrow { display: inline-grid; place-items: center; color: var(--muted); transition: transform .25s, color .25s; }
.settings-acc-trigger.open .settings-acc-arrow { transform: rotate(180deg); color: var(--primary); }
.settings-acc-body { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.settings-acc-body.open { max-height: 760px; }
.settings-acc-form { padding: 16px; margin-top: 4px; background: var(--bg-soft); border-radius: 12px; }
.settings-acc-form .field:last-of-type { margin-bottom: 14px; }
.shell-main { flex: 1; min-width: 0; padding: 28px; }
/* Admin buttons: square with soft edges (not pill) */
.shell .btn { border-radius: 10px; }
.dash-with-nav { display: flex; gap: 32px; padding: 32px 0; }
.dash-side { width: 240px; flex-shrink: 0; display: none; }
@media (min-width: 1024px) { .dash-side { display: block; } }
.dash-side .filter-card { padding: 12px; }

/* Stat cards */
.stat { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 20px; box-shadow: var(--shadow-soft); }
.stat .stat-val { font-family: "Sora"; font-size: 26px; font-weight: 700; margin-top: 14px; }
.stat .delta-up { color: #16a34a; font-size: 12px; font-weight: 600; }
.stat .delta-down { color: #dc2626; font-size: 12px; font-weight: 600; }

/* Bar chart (pure CSS) */
.bars { display: flex; align-items: flex-end; gap: 14px; height: 220px; padding-top: 12px; }
.bar-col { flex: 1; display: flex; flex-direction: column; align-items: center; gap: 8px; height: 100%; justify-content: flex-end; }
.bar { width: 60%; border-radius: 8px 8px 0 0; background-image: linear-gradient(180deg,#48baba,#369b9b); transition: height .6s ease; }
.bar.gold { background-image: linear-gradient(180deg,#e2b66f,#d99f4d); }
.bar-label { font-size: 12px; color: var(--muted); }

/* FAQ accordion */
.faq-item { border: 1px solid var(--line); border-radius: var(--radius); background: #fff; box-shadow: var(--shadow-soft); overflow: hidden; margin-bottom: 12px; }
.faq-q { width: 100%; text-align: left; background: none; border: 0; padding: 18px 20px; font-weight: 600; font-size: 15px; cursor: pointer; display: flex; justify-content: space-between; gap: 16px; font-family: inherit; }
.faq-a { padding: 0 20px; max-height: 0; overflow: hidden; transition: max-height .3s ease, padding .3s ease; color: var(--muted); font-size: 14px; }
.faq-item.open .faq-a { max-height: 240px; padding: 0 20px 18px; }
.faq-item.open .faq-q .chev { transform: rotate(180deg); }
.chev { transition: transform .3s; }

/* Footer */
.site-footer { background: var(--bg-soft); border-top: 1px solid var(--line); padding: 56px 0 28px; margin-top: 40px; }
.footer-grid { display: grid; gap: 36px; grid-template-columns: 1fr; }
@media (min-width: 768px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; } }
.footer-grid h4 { font-size: 14px; margin-bottom: 14px; }
.footer-grid a { display: block; color: var(--muted); font-size: 14px; padding: 4px 0; }
.footer-grid a:hover { color: var(--primary); }
.footer-bottom { border-top: 1px solid var(--line); margin-top: 40px; padding-top: 24px; text-align: center; color: var(--muted); font-size: 14px; }

/* Section headings */
.section-head { max-width: 640px; margin: 0 auto 48px; text-align: center; }
.section-head h2 { font-size: clamp(26px, 3.5vw, 38px); }
.section-head p { color: var(--muted); margin-top: 10px; }

/* Alerts */
.alert { padding: 12px 16px; border-radius: 12px; font-size: 14px; margin-bottom: 16px; }
.alert-error { background: #fee2e2; color: #b91c1c; }
.alert-success { background: #dcfce7; color: #15803d; }

/* ── Toast notifications (top-center, slide down in / up out) ── */
.toast-root { position: fixed; top: 18px; left: 50%; transform: translateX(-50%); z-index: 300; display: flex; flex-direction: column; gap: 10px; align-items: center; pointer-events: none; max-width: 92vw; }
.toast { display: flex; align-items: center; gap: 10px; background: #fff; border: 1px solid var(--line); border-left: 4px solid var(--primary); border-radius: 12px; padding: 12px 16px; box-shadow: 0 14px 36px rgba(16,24,40,.18); font-size: 14px; font-weight: 500; color: var(--ink); pointer-events: auto; cursor: pointer; min-width: 240px; max-width: 460px; opacity: 0; transform: translateY(-22px); transition: transform .32s cubic-bezier(.2,.8,.2,1), opacity .3s; }
.toast.show { opacity: 1; transform: translateY(0); }
.toast.leaving { opacity: 0; transform: translateY(-26px); }
.toast .t-ico { font-size: 21px; flex-shrink: 0; }
.toast.success { border-left-color: #16a34a; }
.toast.success .t-ico { color: #16a34a; }
.toast.error { border-left-color: #dc2626; }
.toast.error .t-ico { color: #dc2626; }
.toast.info { border-left-color: var(--primary); }
.toast.info .t-ico { color: var(--primary); }

/* ── Product card / cart icon ── */
.product-card { border: 0; border-radius: 22px; box-shadow: var(--shadow-card); padding: 14px; }
.product-card .pc-media { position: relative; aspect-ratio: 1 / 1; width: 100%; border-radius: 16px; overflow: hidden; background: var(--bg-soft); }
.product-card .pc-media-link { display: block; width: 100%; height: 100%; }
.product-card .pc-media img { width: 100%; height: 100%; object-fit: cover; }
.pc-wish { position: absolute; top: 10px; right: 10px; z-index: 2; width: 34px; height: 34px; border-radius: 99px; border: 0; background: rgba(255,255,255,.92); backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px); color: var(--muted); display: grid; place-items: center; cursor: pointer; box-shadow: var(--shadow-soft); transition: color .15s, transform .15s; }
.pc-wish:hover { color: #e11d48; transform: scale(1.08); }
.pc-wish.active { color: #e11d48; }
.pc-wish.active .material-symbols-outlined { font-variation-settings: "FILL" 1, "wght" 400, "GRAD" 0, "opsz" 24; }
.product-card .pc-ph { position: absolute; inset: 0; display: grid; place-items: center; font-size: 64px; color: var(--primary); }
.pc-dots { position: absolute; left: 50%; bottom: 12px; transform: translateX(-50%); display: flex; align-items: center; gap: 5px; }
.pc-dots span { width: 5px; height: 5px; border-radius: 99px; background: rgba(255,255,255,.55); transition: all .2s; }
.pc-dots span.on { width: 16px; background: #fff; }
.pc-body { padding: 16px 6px 4px; }
.pc-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 10px; }
.pc-title { font-family: "Sora"; font-weight: 700; font-size: 18px; line-height: 1.25; color: var(--ink); }
.pc-price { flex-shrink: 0; background: var(--bg-soft); color: var(--ink); font-family: "Sora"; font-weight: 700; font-size: 13px; padding: 5px 12px; border-radius: 99px; white-space: nowrap; }
.pc-desc { color: var(--muted); font-size: 14px; line-height: 1.5; margin-top: 10px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.pc-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 12px; }
.pc-tag { background: var(--bg-soft); color: var(--muted); font-size: 12px; font-weight: 600; padding: 5px 12px; border-radius: 99px; }
.pc-tag-out { background: #fee2e2; color: #b91c1c; }
.pc-add-btn { width: 100%; margin-top: 16px; padding: 14px; border-radius: 14px; font-size: 15px; background-image: linear-gradient(135deg, #48baba, #369b9b); color: #fff; box-shadow: var(--shadow-soft); }
.pc-add-btn:hover { box-shadow: var(--shadow-glow); filter: brightness(1.05); }
.pc-add-btn:disabled { opacity: .5; cursor: not-allowed; filter: none; box-shadow: none; }
/* ── Product detail page ── */
.pdp-stage { position: relative; aspect-ratio: 1 / 1; display: grid; place-items: center; background: var(--bg-soft); overflow: hidden; }
.pdp-stage img { width: 100%; height: 100%; object-fit: cover; }
.pdp-thumbs { display: flex; gap: 10px; margin-top: 12px; flex-wrap: wrap; }
.pdp-thumb { width: 64px; height: 64px; border-radius: 10px; overflow: hidden; border: 2px solid var(--line); background: #fff; cursor: pointer; padding: 0; }
.pdp-thumb.active { border-color: var(--primary); }
.pdp-thumb img { width: 100%; height: 100%; object-fit: cover; }
.pc-wish-btn.active { color: #e11d48; border-color: #e11d48; }
.pc-wish-btn.active .material-symbols-outlined { font-variation-settings: "FILL" 1, "wght" 400, "GRAD" 0, "opsz" 24; }
.rate-input { display: inline-flex; flex-direction: row-reverse; gap: 4px; }
.rate-input input { display: none; }
.rate-input label { cursor: pointer; color: #d8dedd; font-size: 26px; line-height: 1; transition: color .15s; }
.rate-input label .material-symbols-outlined { font-variation-settings: "FILL" 1, "wght" 400, "GRAD" 0, "opsz" 24; }
.rate-input input:checked ~ label, .rate-input label:hover, .rate-input label:hover ~ label { color: var(--secondary); }
.cart-link { position: relative; display: grid; place-items: center; width: 40px; height: 40px; border-radius: 10px; color: var(--ink); }
.cart-link:hover { background: var(--bg-soft); color: var(--primary); }
.cart-badge { position: absolute; top: 1px; right: 1px; min-width: 18px; height: 18px; padding: 0 5px; border-radius: 99px; background: var(--secondary); color: #fff; font-size: 11px; font-weight: 700; display: grid; place-items: center; }

/* ── Quick-view modal ── */
.modal.modal-lg { max-width: 1020px; position: relative; overflow: hidden; }
.qv-close { position: absolute; top: 14px; right: 14px; z-index: 3; background: #fff; box-shadow: var(--shadow-soft); }
.qv-grid { display: grid; grid-template-columns: 1fr; gap: 0; padding: 0; }
@media (min-width: 940px) { .qv-grid { grid-template-columns: 580px 1fr; align-items: stretch; } }
.qv-media { position: relative; aspect-ratio: 1 / 1; width: 100%; background: var(--bg-soft); display: grid; place-items: center; overflow: hidden; }
@media (min-width: 940px) { .qv-media { width: 580px; height: 580px; aspect-ratio: auto; } }
.qv-media .qv-placeholder { font-size: 120px; color: var(--primary); opacity: .85; }
.qv-media .qv-img { width: 100%; height: 100%; object-fit: cover; display: block; }
.qv-media .qv-img[hidden] { display: none; }
.qv-media .qv-sale { position: absolute; top: 14px; left: 14px; }
.qv-media .qv-rating { position: absolute; top: 14px; right: 14px; display: inline-flex; align-items: center; gap: 4px; background: rgba(255,255,255,.92); backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px); padding: 5px 11px; border-radius: 99px; font-size: 13px; font-weight: 700; color: var(--ink); box-shadow: var(--shadow-soft); }
.qv-media .qv-rating .material-symbols-outlined { color: var(--secondary); font-size: 16px; }
.qv-info { display: flex; flex-direction: column; padding: 28px; }
@media (min-width: 940px) { .qv-info { padding: 30px 38px 20px; height: 580px; overflow: hidden; } }
.qv-eyebrow { font-size: 11px; font-weight: 700; letter-spacing: .9px; text-transform: uppercase; color: var(--primary); }
.qv-name { font-family: "Sora"; font-size: 24px; font-weight: 700; line-height: 1.3; margin-top: 8px; }
.qv-meta { display: flex; align-items: center; gap: 10px; margin-top: 12px; font-size: 14px; }
.qv-dot { color: var(--line); }
.qv-stock { font-weight: 600; font-size: 13px; }
.qv-price-row { display: flex; align-items: baseline; gap: 12px; margin-top: 0; line-height: 1; }
.qv-price-row .qv-price { font-size: 29px; }
.qv-price-row .price-old { font-size: 17px; }
.qv-desc { margin-top: 12px; font-size: 14px; line-height: 1.65; max-height: 200px; overflow-y: auto; padding-right: 6px; }
@media (min-width: 940px) { .qv-desc { flex: 1 1 0; min-height: 0; max-height: none; } }
.qv-desc::-webkit-scrollbar { width: 5px; }
.qv-desc::-webkit-scrollbar-thumb { background: var(--line); border-radius: 99px; }
.qv-desc::-webkit-scrollbar-track { background: transparent; }
.qv-buy { flex-shrink: 0; margin-top: 14px; }
.qv-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 14px; }
.stock-in { color: #16a34a; } .stock-out { color: #dc2626; }
.qv-divider { border: 0; border-top: 1px solid var(--line); margin: 13px 0 20px; }
.qv-qty-label { display: block; font-size: 13px; font-weight: 600; margin-bottom: 10px; }
.qv-actions { display: flex; flex-direction: column; gap: 12px; align-items: stretch; }
.qv-actions .qty-stepper { flex-shrink: 0; align-self: flex-start; }
.qv-actions .qty-btn { width: 32px; height: 38px; }
.qv-actions .qty-input { width: 40px; min-width: 0; font-size: 14px; }
.qv-actions .qv-add { width: 100%; padding: 12px 18px; font-size: 14px; }
.qv-perks { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 20px; padding-top: 20px; border-top: 1px solid var(--line); font-size: 13px; color: var(--muted); }
.qv-perks span { display: inline-flex; align-items: center; gap: 6px; }
.qv-perks .material-symbols-outlined { color: var(--primary); }

/* ── Quantity stepper ── */
.qty-stepper { display: inline-flex; align-items: center; border: 1px solid var(--line); border-radius: 10px; overflow: hidden; background: #fff; }
.qty-btn { width: 38px; height: 42px; border: 0; background: #fff; cursor: pointer; display: grid; place-items: center; color: var(--ink); }
.qty-btn:hover:not(:disabled) { background: var(--bg-soft); color: var(--primary); }
.qty-btn:disabled { opacity: .4; cursor: not-allowed; }
.qty-input { min-width: 42px; text-align: center; border: 0; font-weight: 600; font-size: 15px; font-family: inherit; background: transparent; padding: 0 4px; }
span.qty-input { line-height: 42px; }

/* ── Cart + checkout ── */
.cart-layout { display: grid; grid-template-columns: 1fr; gap: 24px; margin-top: 24px; align-items: start; }
@media (min-width: 840px) { .cart-layout { grid-template-columns: 1fr 340px; } }
.cart-items { display: flex; flex-direction: column; gap: 14px; }
.cart-item { display: flex; gap: 14px; align-items: center; padding: 14px; }
.cart-thumb { width: 78px; height: 78px; border-radius: 12px; background: var(--bg-soft); display: grid; place-items: center; font-size: 32px; color: var(--primary); flex-shrink: 0; overflow: hidden; }
.cart-thumb img { width: 100%; height: 100%; object-fit: cover; }
.cart-item-main { flex: 1; min-width: 0; }
.cart-item-name { font-weight: 600; font-size: 15px; color: var(--ink); }
.cart-item-side { display: flex; flex-direction: column; align-items: flex-end; gap: 10px; }
.cart-summary { position: sticky; top: 88px; }
.sum-row { display: flex; justify-content: space-between; align-items: center; padding: 7px 0; font-size: 15px; }
.sum-total { border-top: 1px solid var(--line); margin-top: 6px; padding-top: 12px; font-weight: 700; font-size: 18px; font-family: "Sora"; }
.pay-badges { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 12px; }
.pay-badge { border: 1px solid var(--line); border-radius: 8px; padding: 5px 12px; font-size: 13px; font-weight: 600; color: var(--muted); background: var(--bg-soft); }

/* Admin data tables */
.data-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.data-table th { background: var(--bg-soft); text-align: left; padding: 14px 16px; font-weight: 600; white-space: nowrap; color: var(--muted); font-size: 12px; text-transform: uppercase; letter-spacing: .4px; }
.data-table td { padding: 13px 16px; border-top: 1px solid var(--line); vertical-align: middle; }
.data-table tr:hover td { background: var(--bg-soft); }
.data-table .actions { text-align: right; white-space: nowrap; }
.icon-btn { display: inline-grid; place-items: center; width: 34px; height: 34px; border-radius: 9px; border: 1px solid var(--line); background: #fff; color: var(--muted); cursor: pointer; transition: all .15s; }
.icon-btn:hover { border-color: var(--primary); color: var(--primary); background: var(--primary-50); }
.icon-btn.danger:hover { border-color: #dc2626; color: #dc2626; background: #fee2e2; }
.inline-form { display: inline-flex; align-items: center; gap: 6px; }
.table-wrap { overflow-x: auto; }
.table-wrap .data-table { min-width: 640px; }
.admin-toolbar { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; margin-bottom: 16px; }
.admin-toolbar .atb-search { flex: 1 1 240px; min-width: 0; height: 40px; }
.admin-toolbar .atb-select { width: auto; min-width: 150px; height: 40px; }
.admin-toolbar .cs-trigger { height: 40px; }
.admin-toolbar .atb-extra { margin-left: auto; }

/* Admin forms */
.form-card { max-width: 760px; }
.form-grid { display: grid; gap: 18px; grid-template-columns: 1fr; }
@media (min-width: 640px) { .form-grid.cols-2 { grid-template-columns: 1fr 1fr; } }
.form-grid .full { grid-column: 1 / -1; }
textarea.input { height: auto; padding-top: 12px; padding-bottom: 12px; resize: vertical; }
.switch-row { display: flex; align-items: center; gap: 10px; font-size: 14px; }
.mini-select { height: 36px; border: 1px solid var(--line); border-radius: 9px; padding: 0 10px; font-size: 13px; font-family: inherit; background: #fff; }

/* KPI cards */
.kpi { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 20px; box-shadow: var(--shadow-soft); position: relative; overflow: hidden; }
.kpi .kpi-ico { width: 42px; height: 42px; border-radius: 12px; display: grid; place-items: center; font-size: 22px; }
.kpi .kpi-val { font-family: "Sora"; font-size: 26px; font-weight: 700; margin-top: 14px; letter-spacing: -.01em; }
.kpi .kpi-label { color: var(--muted); font-size: 13px; }
/* KPI bar — single container with dividers (gap shows the line colour) */
.kpi-bar { display: grid; grid-template-columns: 1fr; gap: 1px; background: var(--line); padding: 0; }
@media (min-width: 560px) { .kpi-bar { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .kpi-bar { grid-template-columns: repeat(4, 1fr); } }
.kpi-cell { background: #fff; padding: 22px; display: flex; align-items: center; gap: 14px; }
.kpi-cell .kpi-ico { width: 46px; height: 46px; border-radius: 12px; display: grid; place-items: center; font-size: 24px; flex-shrink: 0; }
.kpi-cell .kpi-val { font-family: "Sora"; font-size: 23px; font-weight: 700; letter-spacing: -.01em; line-height: 1.15; }
.kpi-cell .kpi-label { color: var(--muted); font-size: 13px; line-height: 1.3; margin-top: 2px; }
.list-row { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 12px 0; border-top: 1px solid var(--line); font-size: 14px; }
.list-row:first-child { border-top: 0; }
.progress { height: 7px; border-radius: 99px; background: var(--bg-soft); overflow: hidden; }
.progress > span { display: block; height: 100%; border-radius: 99px; background-image: linear-gradient(90deg,#48baba,#369b9b); }
.section-title { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }
.section-title h3 { font-family: "Sora"; font-weight: 600; font-size: 16px; }

/* ── Dashboard polish ── */
.mt-5 { margin-top: 20px; }
.gap-lg { gap: 20px; }
.card-pad { padding: 22px; }
.page-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; margin-bottom: 22px; }
.page-head h1 { font-size: 23px; }
.page-head .muted { font-size: 13px; margin-top: 2px; }
.link-sm { font-size: 13px; font-weight: 600; color: var(--primary); }
.link-sm:hover { text-decoration: underline; }
.empty { text-align: center; color: var(--muted); font-size: 14px; padding: 28px 0; }
.avatar { width: 34px; height: 34px; border-radius: 99px; display: grid; place-items: center; color: #fff; font-weight: 700; font-size: 13px; background-image: linear-gradient(135deg,#e2b66f,#d99f4d); }
.kpi-ico.tone-primary { background: linear-gradient(135deg,#eefaf9,#d4f2f0); color: var(--primary); }
.kpi-ico.tone-gold { background: linear-gradient(135deg,#fbf6ec,#f5e8cf); color: var(--secondary-600); }
.live-dot { width: 7px; height: 7px; border-radius: 99px; background: #16a34a; animation: pulse 1.8s infinite; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(22,163,74,.45); } 70% { box-shadow: 0 0 0 6px rgba(22,163,74,0); } 100% { box-shadow: 0 0 0 0 rgba(22,163,74,0); } }
@media (min-width: 1024px) { .lg\:grid-5 { grid-template-columns: repeat(5, 1fr); } }

/* ── Interactive revenue chart ── */
.chart-head { display: flex; align-items: center; justify-content: space-between; gap: 12px; flex-wrap: wrap; }
.chart-head h3 { font-family: "Sora"; font-weight: 600; font-size: 16px; }
.chart-tabs { display: inline-flex; background: var(--bg-soft); border: 1px solid var(--line); border-radius: 10px; padding: 3px; }
.chart-tab { border: 0; background: none; padding: 7px 14px; border-radius: 8px; font-size: 13px; font-weight: 600; color: var(--muted); cursor: pointer; font-family: inherit; transition: all .15s; }
.chart-tab.active { background: #fff; color: var(--primary-700); box-shadow: var(--shadow-soft); }
.rc-wrap { position: relative; height: 300px; margin-top: 12px; }
.rc-chart { width: 100%; height: 300px; }
@media (max-width: 600px) { .rc-wrap, .rc-chart { height: 240px; } }
.rc-tip { position: absolute; pointer-events: none; background: #15282b; color: #fff; padding: 7px 11px; border-radius: 9px; font-size: 12px; display: flex; flex-direction: column; gap: 1px; opacity: 0; transition: opacity .12s; white-space: nowrap; box-shadow: 0 6px 20px rgba(0,0,0,.2); z-index: 5; }
.rc-tip-label { opacity: .7; font-size: 11px; }
.rc-tip-val { font-weight: 700; font-family: "Sora"; }

/* ── Modals ── */
.btn-danger { background: #dc2626; color: #fff; }
.btn-danger:hover { filter: brightness(1.06); }
.modal-backdrop { position: fixed; inset: 0; background: rgba(16,24,40,.5); backdrop-filter: blur(2px); display: flex; align-items: flex-start; justify-content: center; padding: 5vh 16px; opacity: 0; visibility: hidden; transition: opacity .2s; z-index: 100; overflow-y: auto; }
.modal-backdrop.open { opacity: 1; visibility: visible; }
.modal { background: #fff; border-radius: 18px; width: 100%; max-width: 580px; box-shadow: 0 24px 70px rgba(16,24,40,.32); transform: translateY(10px) scale(.99); transition: transform .2s ease; margin: auto; }
.modal-backdrop.open .modal { transform: translateY(0) scale(1); }
.modal-sm { max-width: 420px; }
.modal-head { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 18px 22px; border-bottom: 1px solid var(--line); }
.modal-head h3 { font-family: "Sora"; font-weight: 600; font-size: 17px; }
.modal-body { padding: 22px; }
.modal-foot { display: flex; gap: 10px; justify-content: flex-end; padding: 16px 22px; border-top: 1px solid var(--line); }
.modal-close { background: none; border: 0; cursor: pointer; color: var(--muted); display: grid; place-items: center; width: 34px; height: 34px; border-radius: 9px; }
.modal-close:hover { background: var(--bg-soft); color: var(--ink); }
/* ── Payment details modal (sectioned) ── */
.modal-head h3 .material-symbols-outlined { vertical-align: middle; margin-right: 6px; }
.pd-section { padding: 18px 0; border-top: 1px solid var(--line); }
.pd-section:first-child { border-top: 0; padding-top: 2px; }
.pd-section-title { font-size: 12px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--primary); margin-bottom: 14px; }
.pd-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px 24px; }
.pd-grid-1 { grid-template-columns: 1fr; }
.pd-field { display: flex; flex-direction: column; gap: 4px; min-width: 0; }
.pd-label { font-size: 11px; font-weight: 600; letter-spacing: .5px; text-transform: uppercase; color: var(--muted); }
.pd-value { font-size: 15px; font-weight: 600; color: var(--ink); word-break: break-word; }
.pd-value.mono { font-family: ui-monospace, "SF Mono", Menlo, monospace; font-size: 13px; font-weight: 500; }

/* ── Selects: custom arrow for native, fully-styled for form selects ── */
select.input, .mini-select {
  appearance: none; -webkit-appearance: none; -moz-appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%235b6b6e' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'/></svg>");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 38px;
}
.mini-select { background-position: right 8px center; padding-right: 30px; background-size: 16px; }

/* Custom designed dropdown (enhances form <select class="input">) */
.cs { position: relative; }
.cs-native { position: absolute; width: 1px; height: 1px; opacity: 0; pointer-events: none; }
.cs-trigger { width: 100%; height: 46px; display: flex; align-items: center; justify-content: space-between; gap: 8px; background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: 0 12px 0 14px; font-size: 15px; font-family: inherit; color: var(--ink); cursor: pointer; text-align: left; transition: border-color .15s, box-shadow .15s; }
.cs-trigger:hover { border-color: #cdd8d7; }
.cs.open .cs-trigger, .cs-trigger:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(72,186,186,.15); }
.cs-label { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.cs-arrow { font-size: 22px; color: var(--muted); transition: transform .2s, color .2s; flex-shrink: 0; }
.cs.open .cs-arrow { transform: rotate(180deg); color: var(--primary); }
.cs-mini { display: inline-block; vertical-align: middle; }
.cs-trigger-mini { height: 36px; min-width: 150px; border-radius: 9px; padding: 0 8px 0 12px; font-size: 13px; }
.cs-trigger-mini .cs-arrow { font-size: 18px; }
/* panel is appended to <body> with position:fixed so it's never clipped */
.cs-panel { position: fixed; background: #fff; border: 1px solid var(--line); border-radius: 12px; box-shadow: 0 14px 38px rgba(16,24,40,.2); padding: 6px; z-index: 400; max-height: 256px; overflow-y: auto; opacity: 0; transform: translateY(-6px); transition: opacity .15s, transform .15s; }
.cs-panel.open { opacity: 1; transform: translateY(0); }
.cs-panel-mini .cs-option { font-size: 13px; padding: 8px 10px; }
.cs-option { display: flex; align-items: center; justify-content: space-between; gap: 8px; padding: 9px 12px; border-radius: 8px; font-size: 14px; color: var(--ink); cursor: pointer; }
.cs-option:hover { background: var(--bg-soft); }
.cs-option.selected { background: var(--primary-50); color: var(--primary-700); font-weight: 600; }
.cs-option .cs-check { font-size: 18px; opacity: 0; }
.cs-option.selected .cs-check { opacity: 1; }

/* ── Admin mobile drawer ── */
.admin-topbar { display: none; }
.admin-overlay { display: none; }
@media (max-width: 1023px) {
  .admin-topbar { display: flex; align-items: center; justify-content: space-between; gap: 10px; padding: 10px 16px; background: rgba(255,255,255,.9); backdrop-filter: blur(10px); border-bottom: 1px solid var(--line); position: sticky; top: 0; z-index: 60; }
  .side-nav { display: block; position: fixed; top: 0; left: 0; bottom: 0; width: 264px; z-index: 80; transform: translateX(-100%); transition: transform .25s ease; box-shadow: 0 0 50px rgba(16,24,40,.25); }
  .side-nav.open { transform: translateX(0); }
  .side-nav .side-inner { height: 100vh; }
  .admin-overlay { display: block; position: fixed; inset: 0; background: rgba(16,24,40,.45); opacity: 0; visibility: hidden; transition: opacity .25s; z-index: 70; }
  .admin-overlay.show { opacity: 1; visibility: visible; }
  .shell-main { padding: 18px; }
}

/* Reveal on load */
.reveal { animation: fadeUp .6s ease both; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: translateY(0); } }

/* ── Mobile polish ── */
@media (max-width: 899px) {
  /* auth buttons live in the mobile menu — keep the top bar to cart + burger */
  .nav-actions .btn { display: none; }
}
@media (max-width: 768px) {
  .section { padding: 56px 0; }
  .section-sm { padding: 36px 0; }
  .hero-grid { padding: 48px 0; gap: 36px; }
  .toolbar { flex-wrap: wrap; }
  .toolbar > .muted { flex: 1 1 100%; }
}
@media (max-width: 560px) {
  .container { padding: 0 16px; }
  .section { padding: 44px 0; }
  .card-body { padding: 18px; }
}
