/* =========================================================
   Manish Traders — Design System
   Palette: black / white / warm beige / deep burgundy
   ========================================================= */

:root {
  --black: #14110f;
  --charcoal: #3a3532;
  --white: #ffffff;
  --beige: #f4eee3;
  --beige-soft: #faf6ee;
  --burgundy: #7a1b2e;
  --burgundy-dark: #5c1421;
  --burgundy-soft: #f4e3e6;
  --gold: #b3893c;
  --border: #e7ddc9;
  --muted: #8a8178;

  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 22px;
  --radius-pill: 999px;

  --shadow-sm: 0 2px 10px rgba(20, 17, 15, 0.06);
  --shadow-md: 0 12px 30px rgba(20, 17, 15, 0.10);
  --shadow-lg: 0 20px 50px rgba(20, 17, 15, 0.16);

  --container: 1240px;
  --header-h: 76px;

  --font-heading: 'Poppins', 'Segoe UI', sans-serif;
  --font-body: 'Inter', 'Segoe UI', sans-serif;

  --transition: 200ms ease;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--charcoal);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
button { font-family: inherit; cursor: pointer; }
input, select { font-family: inherit; }

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  color: var(--black);
  line-height: 1.15;
  margin: 0 0 0.5em;
}
p { margin: 0 0 1em; }

:focus-visible {
  outline: 3px solid var(--burgundy);
  outline-offset: 2px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--black);
  color: var(--white);
  padding: 12px 20px;
  z-index: 1000;
  border-radius: 0 0 var(--radius-sm) 0;
}
.skip-link:focus { left: 0; }

/* ---------- Layout ---------- */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}
.section { padding: 64px 0; }
.section--tight { padding: 40px 0; }
.section--beige { background: var(--beige); }
.section--black { background: var(--black); color: var(--beige); }
.section--black h2, .section--black h3 { color: var(--white); }

.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 40px;
}
.eyebrow {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--burgundy);
  margin-bottom: 10px;
}
.section-title {
  font-size: clamp(1.6rem, 3.4vw, 2.4rem);
  font-weight: 700;
  letter-spacing: -0.01em;
}
.section-subtitle {
  color: var(--muted);
  font-size: 1.02rem;
  margin-top: 8px;
}

.grid {
  display: grid;
  gap: 24px;
}
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
.grid--auto { grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); }

@media (max-width: 980px) {
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .grid--3 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr 1fr; }
  .section { padding: 44px 0; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: var(--radius-pill);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid transparent;
  transition: transform var(--transition), background var(--transition), color var(--transition), border-color var(--transition);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--burgundy); color: var(--white); }
.btn-primary:hover { background: var(--burgundy-dark); }
.btn-outline { background: transparent; color: var(--black); border-color: var(--black); }
.btn-outline:hover { background: var(--black); color: var(--white); }
.btn-outline--light { color: var(--white); border-color: var(--white); }
.btn-outline--light:hover { background: var(--white); color: var(--black); }
.btn-whatsapp { background: #25d366; color: var(--white); }
.btn-whatsapp:hover { background: #1fb457; }
.btn-sm { padding: 10px 18px; font-size: 0.85rem; }
.btn-block { width: 100%; }
.btn[disabled], .btn.is-disabled {
  opacity: 0.5;
  pointer-events: none;
}
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid var(--border);
}
.site-header__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  gap: 20px;
}
.logo {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.3rem;
  letter-spacing: 0.02em;
  color: var(--black);
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo__mark {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--burgundy);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 700;
}
.logo__tag {
  display: block;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}
.main-nav a {
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--charcoal);
  position: relative;
  padding: 6px 0;
}
.main-nav a:hover, .main-nav a.is-active { color: var(--burgundy); }
.main-nav a.is-active::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 2px;
  background: var(--burgundy);
  border-radius: 2px;
}

.header-actions { display: flex; align-items: center; gap: 12px; }
.icon-btn {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid var(--border);
  color: var(--charcoal);
  transition: border-color var(--transition), color var(--transition);
}
.icon-btn:hover { border-color: var(--burgundy); color: var(--burgundy); }
.icon-btn svg { width: 20px; height: 20px; }

.hamburger {
  display: none;
  width: 42px; height: 42px;
  border: 1px solid var(--border);
  border-radius: 50%;
  background: none;
  align-items: center;
  justify-content: center;
}
.hamburger svg { width: 22px; height: 22px; }

.mobile-nav {
  display: none;
  position: fixed;
  inset: var(--header-h) 0 0 0;
  background: var(--white);
  z-index: 199;
  padding: 24px 20px;
  overflow-y: auto;
}
.mobile-nav.is-open { display: block; }
.mobile-nav a {
  display: block;
  padding: 16px 4px;
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 600;
  border-bottom: 1px solid var(--border);
}
.mobile-nav__actions { display: flex; gap: 12px; margin-top: 24px; }

@media (max-width: 980px) {
  .main-nav, .header-actions .btn, .header-actions .find-store-link { display: none; }
  .hamburger { display: flex; }
  .header-actions { gap: 8px; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: linear-gradient(180deg, var(--beige-soft) 0%, var(--beige) 100%);
  overflow: hidden;
}
.hero__inner {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 40px;
  padding: 72px 0 64px;
}
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: 1px solid var(--border);
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--burgundy);
  margin-bottom: 20px;
}
.hero h1 {
  font-size: clamp(2.1rem, 5vw, 3.4rem);
  font-weight: 700;
  letter-spacing: -0.02em;
}
.hero p.lede {
  font-size: 1.1rem;
  color: var(--charcoal);
  max-width: 480px;
}
.hero__ctas { display: flex; gap: 14px; flex-wrap: wrap; margin: 28px 0 24px; }
.hero__trust {
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  color: var(--muted);
  font-weight: 500;
}

.hero__visual {
  position: relative;
  aspect-ratio: 16/9;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: linear-gradient(135deg, var(--burgundy) 0%, var(--burgundy-dark) 100%);
}
.hero__visual .placeholder-art { position: absolute; inset: 0; }
.hero__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}
.hero__visual-caption {
  position: absolute;
  left: 20px; bottom: 20px; right: 20px;
  background: rgba(20, 17, 15, 0.55);
  color: var(--white);
  padding: 14px 18px;
  border-radius: var(--radius-md);
  font-size: 0.85rem;
  backdrop-filter: blur(6px);
}

@media (max-width: 980px) {
  .hero__inner { grid-template-columns: 1fr; padding: 40px 0; }
  .hero__visual { aspect-ratio: 16/10; order: -1; }
}

/* ---------- Placeholder art (used wherever no real photo exists yet) ---------- */
.placeholder-art {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  height: 100%;
  background:
    repeating-linear-gradient(135deg, rgba(255,255,255,0.06) 0 2px, transparent 2px 22px),
    linear-gradient(135deg, var(--burgundy) 0%, #8f2438 100%);
  color: var(--beige-soft);
}
.placeholder-art--light {
  background:
    repeating-linear-gradient(135deg, rgba(122,27,46,0.05) 0 2px, transparent 2px 22px),
    var(--beige);
  color: var(--burgundy);
}
.placeholder-art svg { width: 42%; max-width: 84px; opacity: 0.9; }
.placeholder-art span {
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
  opacity: 0.85;
  text-align: center;
  padding: 0 10px;
}

/* ---------- Cards (shared) ---------- */
.card {
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.card__media { aspect-ratio: 4/5; position: relative; }
.card__body { padding: 18px; }

/* Badges */
.badge {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 5px 10px;
  border-radius: var(--radius-pill);
  text-transform: uppercase;
}
.badge--new { background: #e6f4ea; color: #1e7b3c; }
.badge--trending { background: #fdeee0; color: #b25b12; }
.badge--value { background: var(--burgundy-soft); color: var(--burgundy); }
.badge--limited { background: #fdecec; color: #b23434; }
.badge--default { background: var(--beige); color: var(--charcoal); }
.card__badge { position: absolute; top: 12px; left: 12px; z-index: 2; }

/* Product card */
.product-card__cat { font-size: 0.78rem; color: var(--muted); font-weight: 500; }
.product-card__name { font-size: 1.02rem; font-weight: 600; color: var(--black); margin: 4px 0 8px; }
.price { font-weight: 700; color: var(--black); }
.price--offer { color: var(--burgundy); margin-right: 6px; }
.price--strike { text-decoration: line-through; color: var(--muted); font-weight: 500; font-size: 0.9em; }
.price--enquire { color: var(--burgundy); font-size: 0.92em; }
.product-card__meta { display: flex; flex-wrap: wrap; gap: 6px; margin: 10px 0; font-size: 0.76rem; color: var(--muted); }
.product-card__actions { display: flex; gap: 8px; margin-top: 14px; }
.product-card__actions .btn { flex: 1; padding: 11px 12px; font-size: 0.82rem; }

/* Category card */
.category-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 3/3.4;
  box-shadow: var(--shadow-sm);
}
.category-card .placeholder-art { }
.category-card__label {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 16px;
  background: linear-gradient(180deg, rgba(20,17,15,0) 0%, rgba(20,17,15,0.72) 100%);
  color: var(--white);
}
.category-card__label h3 { color: var(--white); font-size: 1.05rem; margin: 0; }
.category-card__label span { font-size: 0.78rem; opacity: 0.85; }

/* Store card */
.store-card { padding: 22px; }
.store-card__top { display: flex; justify-content: space-between; align-items: flex-start; gap: 10px; }
.store-card__city { font-family: var(--font-heading); font-weight: 700; font-size: 1.15rem; color: var(--black); }
.store-card__state { color: var(--muted); font-size: 0.85rem; }
.status-pill {
  font-size: 0.7rem;
  font-weight: 700;
  padding: 5px 10px;
  border-radius: var(--radius-pill);
  white-space: nowrap;
}
.status-pill--active { background: #e6f4ea; color: #1e7b3c; }
.status-pill--soon { background: var(--beige); color: var(--muted); }
.store-card__detail { font-size: 0.88rem; color: var(--charcoal); margin: 14px 0; min-height: 20px; }
.store-card__actions { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 12px; }
.store-card__actions .btn { flex: 1; min-width: 100px; }

/* Review card */
.review-card { padding: 24px; }
.stars { color: var(--gold); letter-spacing: 2px; font-size: 1rem; }
.review-card__text { font-style: italic; color: var(--charcoal); margin: 12px 0; }
.review-card__who { font-weight: 700; color: var(--black); font-size: 0.92rem; }
.review-card__city { color: var(--muted); font-size: 0.82rem; }

/* ---------- Sections: WHY, About, Affordable Fashion ---------- */
.feature-card { padding: 26px 22px; text-align: left; }
.feature-card__icon {
  width: 50px; height: 50px;
  border-radius: 14px;
  background: var(--burgundy-soft);
  color: var(--burgundy);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.feature-card__icon svg { width: 26px; height: 26px; }
.feature-card h3 { font-size: 1.05rem; }
.feature-card p { color: var(--muted); font-size: 0.92rem; margin: 0; }

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
@media (max-width: 900px) {
  .split { grid-template-columns: 1fr; gap: 28px; }
}
.split__media { aspect-ratio: 4/3.4; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); }

/* Owner block */
.owner-row { display: flex; align-items: center; gap: 16px; margin-top: 22px; }
.owner-avatar {
  width: 58px; height: 58px; border-radius: 50%;
  background: var(--burgundy);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-heading); font-weight: 700; font-size: 1.2rem;
  flex-shrink: 0;
}
.owner-name { font-weight: 700; color: var(--black); }
.owner-role { color: var(--muted); font-size: 0.85rem; }

/* ---------- Store locator ---------- */
.locator-search {
  display: flex;
  gap: 10px;
  max-width: 520px;
  margin: 0 auto 36px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  padding: 6px 6px 6px 20px;
  box-shadow: var(--shadow-sm);
}
.locator-search input {
  flex: 1;
  border: none;
  outline: none;
  font-size: 0.98rem;
  background: transparent;
}
.locator-search svg { width: 20px; height: 20px; color: var(--muted); align-self: center; }
.locator-empty { text-align: center; color: var(--muted); padding: 40px 0; display: none; }

/* ---------- Instagram ---------- */
.insta-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.insta-tile { aspect-ratio: 1/1; border-radius: var(--radius-md); overflow: hidden; position: relative; }
.insta-tile::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(20,17,15,0.55) 100%);
  opacity: 0; transition: opacity var(--transition);
}
.insta-tile:hover::after { opacity: 1; }
@media (max-width: 640px) { .insta-grid { grid-template-columns: repeat(2, 1fr); } }

/* ---------- Gallery masonry ---------- */
.masonry {
  columns: 4 220px;
  column-gap: 16px;
}
.masonry .card { break-inside: avoid; margin-bottom: 16px; }
.gallery-filters { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-bottom: 32px; }
.chip {
  padding: 9px 18px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--border);
  font-size: 0.85rem;
  font-weight: 500;
  background: var(--white);
  transition: all var(--transition);
}
.chip.is-active, .chip:hover { background: var(--black); color: var(--white); border-color: var(--black); }

/* ---------- Offer banner ---------- */
.offer-banner {
  border-radius: var(--radius-lg);
  background: linear-gradient(120deg, var(--black) 0%, var(--burgundy-dark) 100%);
  color: var(--white);
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.offer-banner h3 { color: var(--white); font-size: 1.4rem; margin-bottom: 6px; }
.offer-banner p { color: rgba(255,255,255,0.78); margin: 0; }
.offer-card { padding: 20px; }
.offer-card__dates { font-size: 0.78rem; color: var(--muted); margin-top: 8px; }

/* ---------- Contact CTA / Final CTA ---------- */
.cta-band {
  background: var(--black);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 56px 40px;
  text-align: center;
}
.cta-band h2 { color: var(--white); }
.cta-band p { color: rgba(255,255,255,0.75); }
.cta-band__actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 24px; }

.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-info-item { display: flex; gap: 14px; padding: 16px 0; border-bottom: 1px solid var(--border); }
.contact-info-item svg { width: 22px; height: 22px; color: var(--burgundy); flex-shrink: 0; }
.contact-info-item strong { display: block; color: var(--black); }
.contact-info-item span, .contact-info-item a { color: var(--muted); font-size: 0.92rem; }

/* ---------- Floating WhatsApp button ---------- */
.wa-float {
  position: fixed;
  right: 20px;
  bottom: 90px;
  z-index: 300;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: #25d366;
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-lg);
  transition: transform var(--transition);
}
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 30px; height: 30px; }
@media (min-width: 981px) { .wa-float { bottom: 30px; } }

/* ---------- Mobile bottom nav ---------- */
.mobile-tabbar {
  display: none;
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 250;
  background: var(--white);
  border-top: 1px solid var(--border);
  box-shadow: 0 -6px 20px rgba(20,17,15,0.08);
}
.mobile-tabbar__inner { display: flex; }
.mobile-tabbar a {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  padding: 10px 4px 8px;
  font-size: 0.66rem;
  font-weight: 600;
  color: var(--muted);
}
.mobile-tabbar a.is-active { color: var(--burgundy); }
.mobile-tabbar svg { width: 21px; height: 21px; }
@media (max-width: 980px) {
  .mobile-tabbar { display: block; }
  body { padding-bottom: 62px; }
  .wa-float { bottom: 78px; }
}

/* ---------- Footer ---------- */
.site-footer { background: var(--black); color: rgba(255,255,255,0.72); padding: 64px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 32px; padding-bottom: 44px; }
.footer-col h4 { color: var(--white); font-size: 0.92rem; letter-spacing: 0.04em; text-transform: uppercase; margin-bottom: 16px; }
.footer-col a, .footer-col span { display: block; padding: 6px 0; font-size: 0.9rem; color: rgba(255,255,255,0.68); }
.footer-col a:hover { color: var(--white); }
.footer-logo { color: var(--white); font-family: var(--font-heading); font-weight: 700; font-size: 1.3rem; margin-bottom: 10px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 0.82rem;
}
.footer-bottom a { color: rgba(255,255,255,0.6); }
.footer-bottom a:hover { color: var(--white); }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }

/* ---------- Breadcrumbs ---------- */
.breadcrumbs { font-size: 0.82rem; color: var(--muted); padding: 18px 0; }
.breadcrumbs a:hover { color: var(--burgundy); }
.breadcrumbs span { margin: 0 6px; }

/* ---------- Product detail ---------- */
.pd-gallery { display: flex; flex-direction: column; gap: 12px; }
.pd-gallery__main { aspect-ratio: 4/5; border-radius: var(--radius-lg); overflow: hidden; }
.pd-gallery__thumbs { display: flex; gap: 10px; }
.pd-gallery__thumbs .placeholder-art { border-radius: var(--radius-sm); aspect-ratio: 1/1; width: 70px; }
.pd-title { font-size: clamp(1.6rem, 3vw, 2rem); }
.pd-price { font-size: 1.5rem; margin: 10px 0 18px; }
.pd-option-label { font-weight: 600; font-size: 0.85rem; color: var(--black); margin: 18px 0 8px; text-transform: uppercase; letter-spacing: 0.04em; }
.pd-swatches { display: flex; flex-wrap: wrap; gap: 8px; }
.pd-swatch {
  padding: 9px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-pill);
  font-size: 0.86rem;
  font-weight: 500;
  background: var(--white);
}
.pd-swatch.is-selected, .pd-swatch:hover { border-color: var(--burgundy); color: var(--burgundy); }
.pd-actions { display: flex; gap: 12px; margin-top: 26px; flex-wrap: wrap; }
.pd-share { display: flex; gap: 10px; margin-top: 20px; }
.pd-availability { margin-top: 22px; padding-top: 22px; border-top: 1px solid var(--border); }
.pd-store-chip { display: inline-flex; align-items: center; gap: 6px; padding: 7px 14px; background: var(--beige); border-radius: var(--radius-pill); font-size: 0.82rem; margin: 4px 6px 0 0; }

/* ---------- Misc ---------- */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.empty-state { text-align: center; padding: 60px 20px; color: var(--muted); }
.empty-state h3 { color: var(--black); }
.divider { height: 1px; background: var(--border); margin: 0; }

.page-hero {
  background: var(--beige);
  padding: 56px 0 44px;
  text-align: center;
}
.page-hero h1 { font-size: clamp(1.8rem, 4vw, 2.6rem); }
.page-hero p { color: var(--muted); max-width: 560px; margin: 8px auto 0; }
