/* ═══════════════════════════════════════════════════════════════════════════
   MANO MASSAGE — Premium Design System
   Palette: #0E0E0E bg / #F5EED8 cream / #C9A060 gold / #1A1A1A surface
   ═══════════════════════════════════════════════════════════════════════════ */

/* ── Fonts ─────────────────────────────────────────────────────────────────── */
@font-face {
  font-family: 'Vazirmatn';
  src: url('/assets/fonts/Vazirmatn-100.woff2') format('woff2');
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Vazirmatn';
  src: url('/assets/fonts/Vazirmatn-300.woff2') format('woff2');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Vazirmatn';
  src: url('/assets/fonts/Vazirmatn-400.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Vazirmatn';
  src: url('/assets/fonts/Vazirmatn-500.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Vazirmatn';
  src: url('/assets/fonts/Vazirmatn-600.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Vazirmatn';
  src: url('/assets/fonts/Vazirmatn-700.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* ── Custom Properties ─────────────────────────────────────────────────────── */
:root {
  --bg:          #0E0E0E;
  --bg-deep:     #080808;
  --bg-card:     #1A1A1A;
  --bg-card-2:   #141414;
  --bg-dark:     #090909;

  --gold:        #C9A060;
  --gold-light:  #D4B07A;
  --gold-dim:    rgba(201, 160, 96, 0.45);
  --gold-mist:   rgba(201, 160, 96, 0.12);
  --gold-border: rgba(201, 160, 96, 0.22);
  --gold-glow:   0 0 32px rgba(201, 160, 96, 0.18), 0 4px 24px rgba(201, 160, 96, 0.1);

  --cream:       #F5EED8;
  --cream-70:    rgba(245, 238, 216, 0.70);
  --cream-50:    rgba(245, 238, 216, 0.50);
  --cream-30:    rgba(245, 238, 216, 0.30);

  --shadow-card: 0 8px 40px rgba(0, 0, 0, 0.55), 0 2px 8px rgba(0, 0, 0, 0.35);
  --shadow-gold: 0 8px 40px rgba(201, 160, 96, 0.08);
  --shadow-lift: 0 20px 60px rgba(0, 0, 0, 0.7), 0 0 0 1px var(--gold-border), var(--gold-glow);

  --radius:      6px;
  --radius-lg:   12px;

  --ease:        cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out:    cubic-bezier(0, 0, 0.2, 1);

  --header-h:    72px;

  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 24px;
  --space-6: 32px;
  --space-7: 48px;
  --space-8: 64px;
  --space-9: 80px;
  --space-10: 96px;
  --space-11: 120px;
}

/* ── Reset ─────────────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}
body {
  font-family: 'Vazirmatn', Tahoma, 'Iranian Sans', sans-serif;
  font-weight: 400;
  line-height: 1.9;
  background: var(--bg);
  color: var(--cream);
  direction: rtl;
  text-align: right;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img, svg { display: block; }
a { color: inherit; text-decoration: none; transition: color 0.3s var(--ease); }
ul, ol { list-style: none; }
button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  border: none;
  background: none;
  outline: none;
}
button { cursor: pointer; }

/* ── Layout ─────────────────────────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1320px;
  margin-inline: auto;
  padding-inline: var(--space-6);
}
.container-sm { max-width: 960px; }
.container-xs { max-width: 720px; }

/* ── Typography ─────────────────────────────────────────────────────────────── */
.display {
  font-weight: 100;
  line-height: 1.4;
  letter-spacing: 0.04em;
  color: var(--cream);
}
.display-xl  { font-size: clamp(2.2rem, 5vw, 4.2rem); }
.display-lg  { font-size: clamp(1.8rem, 3.5vw, 3rem); }
.display-md  { font-size: clamp(1.4rem, 2.5vw, 2rem); }

.heading {
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.03em;
  color: var(--cream);
}
.heading-lg  { font-size: clamp(1.4rem, 2.2vw, 1.9rem); }
.heading-md  { font-size: clamp(1.15rem, 1.8vw, 1.5rem); }
.heading-sm  { font-size: clamp(1rem, 1.4vw, 1.2rem); }

.label-gold {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--gold);
  text-transform: uppercase;
}
.text-gold    { color: var(--gold); }
.text-cream   { color: var(--cream); }
.text-muted   { color: var(--cream-50); }
.text-sm      { font-size: 0.875rem; }
.text-xs      { font-size: 0.78rem; }

/* ── Gold Rule ──────────────────────────────────────────────────────────────── */
.gold-rule {
  display: block;
  width: 56px;
  height: 1px;
  background: var(--gold);
  opacity: 0.7;
}
.gold-rule-full {
  display: block;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-border), transparent);
}

/* ── Section Anatomy ────────────────────────────────────────────────────────── */
.section {
  padding-block: var(--space-11);
}
.section-sm {
  padding-block: var(--space-9);
}
.section-header {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: var(--space-3);
  margin-bottom: var(--space-8);
}
.section-header .label-gold { display: flex; align-items: center; gap: var(--space-3); }
.section-header .label-gold::before {
  content: '';
  display: inline-block;
  width: 28px;
  height: 1px;
  background: var(--gold);
}

/* ── Buttons ────────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: 0.7em 1.6em;
  border-radius: 2px;
  font-weight: 500;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  transition: all 0.3s var(--ease);
  cursor: pointer;
}
.btn-gold {
  background: var(--gold);
  color: var(--bg);
  box-shadow: 0 4px 20px rgba(201, 160, 96, 0.25);
}
.btn-gold:hover {
  background: var(--gold-light);
  box-shadow: 0 6px 32px rgba(201, 160, 96, 0.4);
  transform: translateY(-1px);
}
.btn-gold:active { transform: translateY(0); }

.btn-outline-gold {
  border: 1px solid var(--gold-border);
  color: var(--gold);
  background: transparent;
}
.btn-outline-gold:hover {
  background: var(--gold-mist);
  border-color: var(--gold);
}

.btn-ghost {
  color: var(--cream-70);
  padding: 0.5em 0;
  gap: var(--space-2);
}
.btn-ghost:hover { color: var(--gold); }

.btn-pill {
  border-radius: 100px;
  padding: 0.55em 1.4em;
  font-size: 0.85rem;
}

/* ── ═══════════════════════════════════════════════════════════════════════════
   HEADER
   ═══════════════════════════════════════════════════════════════════════════ */
.site-header {
  position: fixed;
  top: 0;
  inset-inline: 0;
  z-index: 1000;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: rgba(14, 14, 14, 0.88);
  border-bottom: 1px solid var(--gold-border);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: background 0.4s var(--ease), border-color 0.4s var(--ease);
}
.site-header.scrolled {
  background: rgba(8, 8, 8, 0.97);
  border-bottom-color: rgba(201, 160, 96, 0.35);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1400px;
  margin-inline: auto;
  padding-inline: var(--space-7);
  gap: var(--space-5);
}

/* Logo */
.site-logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
  flex-shrink: 0;
}
.logo-name {
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--gold);
  font-family: 'Vazirmatn', sans-serif;
}
.logo-sub {
  font-size: 0.6rem;
  font-weight: 300;
  letter-spacing: 0.22em;
  color: var(--cream-50);
  text-transform: uppercase;
  margin-top: 1px;
}

/* Nav */
.site-nav { display: flex; align-items: center; gap: 0; }
.site-nav a {
  display: block;
  padding: var(--space-2) var(--space-5);
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--cream-70);
  position: relative;
  transition: color 0.3s var(--ease);
}
.site-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  inset-inline: var(--space-5);
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.3s var(--ease);
}
.site-nav a:hover { color: var(--cream); }
.site-nav a:hover::after,
.site-nav a.active::after { transform: scaleX(1); }
.site-nav a.active { color: var(--cream); }

/* Header actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  flex-shrink: 0;
}
.header-cart-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--cream-70);
  font-size: 0.82rem;
  padding: 6px 10px;
  border-radius: var(--radius);
  transition: color 0.3s var(--ease);
  position: relative;
}
.header-cart-btn:hover { color: var(--gold); }
.cart-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  background: var(--gold);
  color: var(--bg);
  font-size: 0.65rem;
  font-weight: 700;
  border-radius: 50%;
  position: absolute;
  top: -4px;
  inset-inline-start: -4px;
}
.header-book-btn {
  border: 1px solid var(--gold-border);
  color: var(--gold);
  background: transparent;
  padding: 0.45em 1.2em;
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  transition: all 0.3s var(--ease);
  white-space: nowrap;
}
.header-book-btn:hover {
  background: var(--gold-mist);
  border-color: var(--gold);
  box-shadow: 0 0 16px rgba(201, 160, 96, 0.2);
}

/* Mobile menu toggle — CSS hamburger bars only, no SVG inside button */
.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--radius);
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.hamburger-bars {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 22px;
}
.hamburger-bars span {
  display: block;
  height: 1.5px;
  background: var(--cream-70);
  border-radius: 2px;
  transition: all 0.3s var(--ease);
  transform-origin: center;
}
.hamburger-bars span:nth-child(1) { width: 100%; }
.hamburger-bars span:nth-child(2) { width: 75%; }
.hamburger-bars span:nth-child(3) { width: 100%; }
.menu-toggle:hover .hamburger-bars span { background: var(--gold); }
.menu-toggle.open .hamburger-bars span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
  width: 100%;
}
.menu-toggle.open .hamburger-bars span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.menu-toggle.open .hamburger-bars span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
  width: 100%;
}

/* Mobile nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: var(--header-h);
  inset-inline: 0;
  background: rgba(8, 8, 8, 0.98);
  border-bottom: 1px solid var(--gold-border);
  backdrop-filter: blur(20px);
  z-index: 999;
  padding: var(--space-4) var(--space-6) var(--space-6);
  flex-direction: column;
  gap: 0;
  transform: translateY(-8px);
  opacity: 0;
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease);
}
.mobile-nav.open {
  transform: translateY(0);
  opacity: 1;
}
.mobile-nav a {
  display: block;
  padding: var(--space-4) 0;
  font-size: 1rem;
  color: var(--cream-70);
  border-bottom: 1px solid rgba(201,160,96,0.08);
  transition: color 0.3s var(--ease), padding 0.3s var(--ease);
}
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav a:hover { color: var(--gold); padding-inline-end: var(--space-4); }
.mobile-nav .mobile-book {
  margin-top: var(--space-5);
  text-align: center;
}

/* ── ═══════════════════════════════════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  transform: scale(1.04);
  transition: transform 8s var(--ease-out);
}
.hero.loaded .hero-bg img { transform: scale(1); }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(14, 14, 14, 0.35) 0%,
    rgba(8, 8, 8, 0.55) 50%,
    rgba(8, 8, 8, 0.85) 100%
  );
}
.hero-vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 40%, rgba(0,0,0,0.5) 100%);
}
.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: var(--space-9) var(--space-6);
  max-width: 860px;
}
.hero-label {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: var(--space-5);
  opacity: 0;
  animation: fadeUp 0.8s var(--ease-out) 0.3s forwards;
}
.hero-title {
  font-size: clamp(2.4rem, 6vw, 5rem);
  font-weight: 100;
  line-height: 1.35;
  letter-spacing: 0.04em;
  color: var(--cream);
  margin-bottom: var(--space-6);
  opacity: 0;
  animation: fadeUp 0.9s var(--ease-out) 0.5s forwards;
}
.hero-rule {
  width: 64px;
  height: 1px;
  background: var(--gold);
  opacity: 0.65;
  margin-inline: auto;
  margin-bottom: var(--space-6);
  opacity: 0;
  animation: fadeIn 0.8s var(--ease-out) 0.7s forwards;
}
.hero-sub {
  font-size: 1rem;
  font-weight: 300;
  line-height: 2;
  color: var(--cream-70);
  margin-bottom: var(--space-8);
  opacity: 0;
  animation: fadeUp 0.9s var(--ease-out) 0.8s forwards;
}
.hero-cta {
  opacity: 0;
  animation: fadeUp 0.9s var(--ease-out) 1s forwards;
}
.hero-scroll {
  position: absolute;
  bottom: var(--space-7);
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2);
  color: var(--cream-50);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  animation: bounce 2.5s infinite;
}

/* ── ═══════════════════════════════════════════════════════════════════════════
   SERVICES STRIP
   ═══════════════════════════════════════════════════════════════════════════ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-7);
}
.service-card {
  background: var(--bg-card);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(201,160,96,0.06);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s var(--ease);
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lift);
  border-color: var(--gold-border);
}
.service-card__img {
  aspect-ratio: 4/3;
  overflow: hidden;
}
.service-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.service-card:hover .service-card__img img { transform: scale(1.06); }
.service-card__body {
  padding: var(--space-6);
  display: flex;
  flex-direction: column;
  flex: 1;
}
.service-card__rule {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin-bottom: var(--space-4);
  opacity: 0.4;
}
.service-card__name {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: var(--space-2);
}
.service-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: var(--space-4);
}
.service-card__price {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--gold);
}
.service-card__duration {
  font-size: 0.78rem;
  color: var(--cream-50);
  display: flex;
  align-items: center;
  gap: 4px;
}

/* ── ═══════════════════════════════════════════════════════════════════════════
   BRANCHES
   ═══════════════════════════════════════════════════════════════════════════ */
.branches-list { display: flex; flex-direction: column; gap: var(--space-6); }
.branch-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(201,160,96,0.06);
  min-height: 340px;
  transition: box-shadow 0.4s var(--ease);
}
.branch-card:hover { box-shadow: var(--shadow-lift); }
.branch-card.reverse { direction: ltr; }
.branch-card.reverse .branch-card__body { direction: rtl; }
.branch-card__img {
  overflow: hidden;
  flex-shrink: 0;
}
.branch-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.branch-card:hover .branch-card__img img { transform: scale(1.04); }
.branch-card__body {
  padding: var(--space-9) var(--space-8);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: var(--space-4);
}
.branch-card__label {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  color: var(--gold);
  font-weight: 500;
  text-transform: uppercase;
}
.branch-card__name {
  font-size: 1.5rem;
  font-weight: 100;
  color: var(--cream);
  letter-spacing: 0.04em;
}
.branch-card__address {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  color: var(--cream-70);
  font-size: 0.9rem;
  line-height: 1.7;
}
.branch-card__address svg { flex-shrink: 0; margin-top: 3px; color: var(--gold); }
.branch-card__link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  color: var(--gold);
  font-size: 0.875rem;
  font-weight: 500;
  margin-top: var(--space-2);
  transition: gap 0.3s var(--ease);
}
.branch-card__link:hover { gap: var(--space-4); color: var(--gold-light); }

/* ── ═══════════════════════════════════════════════════════════════════════════
   PRODUCTS STRIP
   ═══════════════════════════════════════════════════════════════════════════ */
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-5);
}
.product-card {
  background: var(--bg-dark);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(201,160,96,0.06);
  box-shadow: var(--shadow-card);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s var(--ease);
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lift);
  border-color: var(--gold-border);
}
.product-card__img {
  aspect-ratio: 1;
  overflow: hidden;
}
.product-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.product-card:hover .product-card__img img { transform: scale(1.06); }
.product-card__body {
  padding: var(--space-5);
  flex: 1;
  display: flex;
  flex-direction: column;
}
.product-card__cat {
  font-size: 0.68rem;
  color: var(--gold);
  letter-spacing: 0.12em;
  font-weight: 500;
  margin-bottom: var(--space-2);
}
.product-card__name {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--cream);
  line-height: 1.5;
  margin-bottom: var(--space-3);
}
.product-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: var(--space-4);
  border-top: 1px solid rgba(201,160,96,0.08);
}
.product-card__price {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gold);
}
.product-card__btn {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.75rem;
  color: var(--cream-50);
  padding: 4px 10px;
  border: 1px solid rgba(201,160,96,0.15);
  border-radius: 100px;
  transition: all 0.3s var(--ease);
}
.product-card__btn:hover {
  color: var(--gold);
  border-color: var(--gold-border);
  background: var(--gold-mist);
}

/* ── ═══════════════════════════════════════════════════════════════════════════
   TESTIMONIALS
   ═══════════════════════════════════════════════════════════════════════════ */
.testimonials-band {
  background: var(--bg-dark);
  border-top: 1px solid var(--gold-border);
  border-bottom: 1px solid var(--gold-border);
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}
.testimonial-card {
  background: var(--bg-card-2);
  border-radius: var(--radius);
  padding: var(--space-8) var(--space-6);
  border: 1px solid rgba(201,160,96,0.06);
  position: relative;
  transition: border-color 0.3s var(--ease), transform 0.3s var(--ease);
}
.testimonial-card:hover {
  border-color: var(--gold-border);
  transform: translateY(-3px);
}
.testimonial-card__quote {
  color: var(--gold);
  opacity: 0.5;
  margin-bottom: var(--space-4);
}
.testimonial-card__stars {
  display: flex;
  gap: 3px;
  margin-bottom: var(--space-4);
  color: var(--gold);
}
.testimonial-card__text {
  font-size: 0.92rem;
  line-height: 2;
  color: var(--cream-70);
  font-style: italic;
  margin-bottom: var(--space-5);
}
.testimonial-card__author {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.04em;
}

/* ── ═══════════════════════════════════════════════════════════════════════════
   BLOG PREVIEW
   ═══════════════════════════════════════════════════════════════════════════ */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}
.blog-card {
  background: var(--bg-card);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(201,160,96,0.06);
  box-shadow: var(--shadow-card);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
  display: flex;
  flex-direction: column;
}
.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lift);
}
.blog-card__img {
  aspect-ratio: 16/9;
  overflow: hidden;
}
.blog-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.blog-card:hover .blog-card__img img { transform: scale(1.05); }
.blog-card__body { padding: var(--space-5); flex: 1; display: flex; flex-direction: column; }
.blog-card__cat {
  font-size: 0.68rem;
  color: var(--gold);
  letter-spacing: 0.12em;
  font-weight: 500;
  margin-bottom: var(--space-3);
}
.blog-card__title {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--cream);
  line-height: 1.6;
  margin-bottom: var(--space-3);
}
.blog-card__excerpt {
  font-size: 0.85rem;
  color: var(--cream-50);
  line-height: 1.8;
  flex: 1;
}
.blog-card__link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: 0.8rem;
  color: var(--gold);
  margin-top: var(--space-4);
  transition: gap 0.3s var(--ease);
}
.blog-card__link:hover { gap: var(--space-3); }

/* ── ═══════════════════════════════════════════════════════════════════════════
   GIFT CARD / CTA BAND
   ═══════════════════════════════════════════════════════════════════════════ */
.cta-band {
  background: var(--bg-card);
  border-top: 1px solid var(--gold-border);
  border-bottom: 1px solid var(--gold-border);
  text-align: center;
}
.cta-band__inner {
  max-width: 640px;
  margin-inline: auto;
}

/* ── ═══════════════════════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════════════════════ */
.site-footer {
  background: var(--bg-deep);
  border-top: 1px solid var(--gold-border);
  padding-block: var(--space-10) var(--space-6);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: var(--space-9);
  padding-bottom: var(--space-8);
  border-bottom: 1px solid rgba(201,160,96,0.08);
}
.footer-brand__logo {
  font-size: 1.3rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--gold);
  margin-bottom: var(--space-3);
}
.footer-brand__tagline {
  font-size: 0.875rem;
  font-weight: 300;
  color: var(--cream-50);
  line-height: 1.9;
  margin-bottom: var(--space-5);
}
.footer-social {
  display: flex;
  gap: var(--space-4);
  align-items: center;
}
.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid var(--gold-border);
  border-radius: 50%;
  color: var(--cream-50);
  transition: all 0.3s var(--ease);
}
.footer-social a:hover {
  color: var(--gold);
  border-color: var(--gold);
  background: var(--gold-mist);
  box-shadow: 0 0 12px rgba(201,160,96,0.2);
}
.footer-col h4 {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: var(--space-6);
}
.footer-links { display: flex; flex-direction: column; gap: var(--space-3); }
.footer-links a {
  font-size: 0.875rem;
  color: var(--cream-50);
  transition: color 0.3s var(--ease), padding-inline-end 0.3s var(--ease);
}
.footer-links a:hover { color: var(--gold); padding-inline-end: var(--space-3); }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  font-size: 0.875rem;
  color: var(--cream-50);
  margin-bottom: var(--space-4);
  line-height: 1.6;
}
.footer-contact-item svg { flex-shrink: 0; color: var(--gold); margin-top: 2px; }
.footer-phone {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--cream-70);
  letter-spacing: 0.04em;
  direction: ltr;
  display: inline-block;
}
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: var(--space-6);
  flex-wrap: wrap;
  gap: var(--space-4);
}
.footer-bottom p {
  font-size: 0.78rem;
  color: var(--cream-30);
}
.footer-bottom a { color: var(--cream-30); transition: color 0.3s; }
.footer-bottom a:hover { color: var(--gold); }

/* ── ═══════════════════════════════════════════════════════════════════════════
   PAGE HERO (inner pages)
   ═══════════════════════════════════════════════════════════════════════════ */
.page-hero {
  padding-top: calc(var(--header-h) + var(--space-10));
  padding-bottom: var(--space-10);
  background: var(--bg-card);
  border-bottom: 1px solid var(--gold-border);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(201,160,96,0.04) 0%, transparent 60%);
}
.page-hero__content { position: relative; z-index: 1; }
.page-hero__title {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 100;
  letter-spacing: 0.05em;
  color: var(--cream);
  margin-bottom: var(--space-3);
}
.page-hero__sub {
  font-size: 0.95rem;
  color: var(--cream-50);
  line-height: 2;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: 0.78rem;
  color: var(--cream-30);
  margin-bottom: var(--space-5);
}
.breadcrumb a { color: var(--cream-30); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { color: var(--gold); }

/* ── ═══════════════════════════════════════════════════════════════════════════
   FORMS
   ═══════════════════════════════════════════════════════════════════════════ */
.form-group { margin-bottom: var(--space-5); }
.form-label {
  display: block;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--cream-70);
  margin-bottom: var(--space-2);
}
.form-control {
  width: 100%;
  padding: 0.75em 1em;
  background: var(--bg-card);
  border: 1px solid rgba(201,160,96,0.15);
  border-radius: var(--radius);
  color: var(--cream);
  font-size: 0.9rem;
  line-height: 1.6;
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.form-control::placeholder { color: var(--cream-30); }
.form-control:focus {
  border-color: var(--gold-dim);
  box-shadow: 0 0 0 3px rgba(201,160,96,0.08);
}
select.form-control { cursor: pointer; }
textarea.form-control { resize: vertical; min-height: 120px; }

/* ── ═══════════════════════════════════════════════════════════════════════════
   UTILITIES & ANIMATIONS
   ═══════════════════════════════════════════════════════════════════════════ */
.mt-auto  { margin-top: auto; }
.text-center { text-align: center; }
.text-start  { text-align: start; }
.flex        { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.gap-3       { gap: var(--space-3); }
.gap-4       { gap: var(--space-4); }
.gap-5       { gap: var(--space-5); }
.mb-3        { margin-bottom: var(--space-3); }
.mb-4        { margin-bottom: var(--space-4); }
.mb-5        { margin-bottom: var(--space-5); }
.mb-6        { margin-bottom: var(--space-6); }
.mb-7        { margin-bottom: var(--space-7); }
.mb-8        { margin-bottom: var(--space-8); }
.pt-header   { padding-top: var(--header-h); }

.fade-in-section {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.fade-in-section.visible {
  opacity: 1;
  transform: none;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: none; }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 0.65; }
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(6px); }
}

/* ── ═══════════════════════════════════════════════════════════════════════════
   STUB / COMING SOON PAGES
   ═══════════════════════════════════════════════════════════════════════════ */
.stub-page {
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--space-9) var(--space-6);
}
.stub-page__icon { color: var(--gold); opacity: 0.4; margin-inline: auto; margin-bottom: var(--space-6); }
.stub-page__title {
  font-size: 1.6rem;
  font-weight: 100;
  color: var(--cream);
  margin-bottom: var(--space-4);
}
.stub-page__sub { color: var(--cream-50); margin-bottom: var(--space-7); }

/* ── ═══════════════════════════════════════════════════════════════════════════
   CART / ACCOUNT
   ═══════════════════════════════════════════════════════════════════════════ */
.cart-table { width: 100%; border-collapse: collapse; }
.cart-table th {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--gold);
  text-transform: uppercase;
  border-bottom: 1px solid var(--gold-border);
  padding: var(--space-4) var(--space-5);
  text-align: right;
}
.cart-table td {
  padding: var(--space-5);
  border-bottom: 1px solid rgba(201,160,96,0.06);
  font-size: 0.9rem;
  color: var(--cream-70);
  vertical-align: middle;
}
.cart-table td:first-child { color: var(--cream); font-weight: 500; }

/* ── ═══════════════════════════════════════════════════════════════════════════
   ADMIN (minimal, functional)
   ═══════════════════════════════════════════════════════════════════════════ */
.admin-layout {
  display: grid;
  grid-template-columns: 220px 1fr;
  min-height: 100svh;
}
.admin-sidebar {
  background: var(--bg-card);
  border-inline-start: 1px solid var(--gold-border);
  padding: var(--space-7) var(--space-5);
}
.admin-sidebar h2 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: var(--space-7);
}
.admin-nav { display: flex; flex-direction: column; gap: var(--space-2); }
.admin-nav a {
  display: block;
  padding: var(--space-3) var(--space-4);
  font-size: 0.875rem;
  color: var(--cream-50);
  border-radius: var(--radius);
  transition: all 0.2s;
}
.admin-nav a:hover, .admin-nav a.active {
  background: var(--gold-mist);
  color: var(--gold);
}
.admin-content {
  padding: var(--space-7) var(--space-8);
  background: var(--bg);
}
.admin-content h1 {
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--cream);
  margin-bottom: var(--space-7);
  max-height: 24px;
  font-size: 24px;
}

/* ── ═══════════════════════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════════════════════ */
@media (max-width: 1100px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-grid     { grid-template-columns: repeat(2, 1fr); }
  .footer-grid   { grid-template-columns: 1fr 1fr; }
  .footer-grid > :last-child { grid-column: 1 / -1; }
}

@media (max-width: 860px) {
  :root { --header-h: 60px; }
  .site-nav, .header-book-btn { display: none; }
  .menu-toggle { display: flex; }
  .mobile-nav  { display: flex; }
  .branch-card { grid-template-columns: 1fr; min-height: auto; }
  .branch-card__img { aspect-ratio: 16/9; }
  .branch-card.reverse { direction: rtl; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: var(--space-7); }
  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 640px) {
  .container { padding-inline: var(--space-5); }
  .services-grid { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: var(--space-4); }
  .blog-grid     { grid-template-columns: 1fr; }
  .hero-title    { font-size: clamp(1.9rem, 9vw, 2.5rem); }
  .section       { padding-block: var(--space-9); }
  .admin-layout  { grid-template-columns: 1fr; }
  .admin-sidebar { border-inline-start: none; border-bottom: 1px solid var(--gold-border); padding: var(--space-5); }
  .header-inner  { padding-inline: var(--space-5); }
}

@media (max-width: 390px) {
  .products-grid { grid-template-columns: 1fr; }
  .hero-title    { font-size: 1.8rem; }
}

/* Focus-visible accessibility */
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}
button:focus-visible,
a:focus-visible {
  border-radius: 2px;
}

/* ── ═══════════════════════════════════════════════════════════════════════════
   SHOP PAGE
   ═══════════════════════════════════════════════════════════════════════════ */
.shop-filters {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-bottom: var(--space-8);
}
.shop-filter-btn {
  padding: .45em 1.2em;
  border: 1px solid var(--gold-border);
  color: var(--cream-50);
  font-size: .82rem;
  border-radius: 100px;
  cursor: pointer;
  transition: all .3s var(--ease);
  background: none;
  font-family: inherit;
}
.shop-filter-btn:hover,
.shop-filter-btn.active {
  background: var(--gold-mist);
  border-color: var(--gold);
  color: var(--gold);
}
.shop-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-5);
}

/* ── ═══════════════════════════════════════════════════════════════════════════
   PRODUCT DETAIL
   ═══════════════════════════════════════════════════════════════════════════ */
.product-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-10);
  align-items: start;
}
.product-gallery__main {
  aspect-ratio: 1;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--gold-border);
  background: var(--bg-card);
}
.product-gallery__main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease);
}
.product-gallery__main:hover img { transform: scale(1.04); }
.product-gallery__thumbs {
  display: flex;
  gap: var(--space-3);
  margin-top: var(--space-4);
}
.product-gallery__thumb {
  width: 72px;
  height: 72px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 2px solid transparent;
  cursor: pointer;
  transition: border-color .3s var(--ease);
  flex-shrink: 0;
}
.product-gallery__thumb img { width: 100%; height: 100%; object-fit: cover; }
.product-gallery__thumb.active { border-color: var(--gold); }
.product-info__cat {
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .16em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: var(--space-3);
}
.product-info__title {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 100;
  color: var(--cream);
  margin-bottom: var(--space-4);
  line-height: 1.4;
}
.product-info__price {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: var(--space-6);
}
.product-info__divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, var(--gold-border), transparent);
  margin-bottom: var(--space-6);
}
.product-info__desc {
  color: var(--cream-70);
  font-size: .92rem;
  line-height: 2;
  margin-bottom: var(--space-7);
}
.size-label {
  font-size: .8rem;
  font-weight: 500;
  color: var(--cream-50);
  margin-bottom: var(--space-3);
}
.size-selector {
  display: flex;
  gap: var(--space-3);
  flex-wrap: wrap;
  margin-bottom: var(--space-6);
}
.size-btn {
  padding: .4em 1.1em;
  border: 1px solid var(--gold-border);
  color: var(--cream-50);
  font-size: .82rem;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all .3s var(--ease);
  background: none;
  font-family: inherit;
}
.size-btn:hover,
.size-btn.active {
  border-color: var(--gold);
  color: var(--gold);
  background: var(--gold-mist);
}
.qty-row {
  display: flex;
  align-items: center;
  gap: var(--space-5);
  margin-bottom: var(--space-6);
}
.qty-row__label {
  font-size: .8rem;
  color: var(--cream-50);
  font-weight: 500;
}
.qty-control {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--gold-border);
  border-radius: var(--radius);
  overflow: hidden;
}
.qty-btn {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cream-70);
  font-size: 1.2rem;
  cursor: pointer;
  background: none;
  border: none;
  transition: background .2s var(--ease), color .2s var(--ease);
  font-family: inherit;
}
.qty-btn:hover { background: var(--gold-mist); color: var(--gold); }
.qty-display {
  width: 52px;
  text-align: center;
  font-size: .9rem;
  color: var(--cream);
  border-inline: 1px solid var(--gold-border);
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-detail__related { margin-top: var(--space-11); }
.product-detail__related .section-header { margin-bottom: var(--space-7); }

/* ── ═══════════════════════════════════════════════════════════════════════════
   CHECKOUT
   ═══════════════════════════════════════════════════════════════════════════ */
.checkout-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: var(--space-9);
  align-items: start;
}
.order-summary {
  background: var(--bg-card);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-lg);
  padding: var(--space-7);
  position: sticky;
  top: calc(var(--header-h) + var(--space-5));
}
.order-summary__title {
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .15em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: var(--space-6);
  padding-bottom: var(--space-4);
  border-bottom: 1px solid var(--gold-border);
}
.order-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: var(--space-4);
  padding: var(--space-4) 0;
  border-bottom: 1px solid rgba(201,160,96,.06);
  font-size: .875rem;
}
.order-item:last-of-type { border-bottom: none; }
.order-item__name { color: var(--cream-70); flex: 1; line-height: 1.6; }
.order-item__qty { color: var(--cream-30); font-size: .78rem; }
.order-item__price { color: var(--gold); font-weight: 500; white-space: nowrap; }
.order-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: var(--space-5);
  margin-top: var(--space-4);
  border-top: 1px solid var(--gold-border);
}
.order-total__label { font-weight: 600; color: var(--cream); font-size: .95rem; }
.order-total__amount { font-size: 1.1rem; font-weight: 700; color: var(--gold); }
.checkout-success {
  text-align: center;
  padding: var(--space-11) var(--space-6);
  max-width: 560px;
  margin-inline: auto;
}
.checkout-success__icon { color: var(--gold); margin-inline: auto; margin-bottom: var(--space-6); opacity: .8; }
.checkout-success__title { font-size: 1.8rem; font-weight: 100; color: var(--cream); margin-bottom: var(--space-4); }
.checkout-success__sub { color: var(--cream-50); font-size: .9rem; line-height: 2; margin-bottom: var(--space-8); }

/* ── ═══════════════════════════════════════════════════════════════════════════
   ABOUT PAGE
   ═══════════════════════════════════════════════════════════════════════════ */
.about-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-10);
  align-items: center;
}
.about-intro__img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  border: 1px solid var(--gold-border);
}
.about-intro__img img { width: 100%; height: 100%; object-fit: cover; }
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}
.value-card {
  background: var(--bg-card);
  border: 1px solid rgba(201,160,96,.06);
  border-radius: var(--radius);
  padding: var(--space-7) var(--space-6);
  transition: border-color .3s var(--ease), transform .3s var(--ease);
}
.value-card:hover {
  border-color: var(--gold-border);
  transform: translateY(-3px);
}
.value-card__icon { color: var(--gold); margin-bottom: var(--space-5); opacity: .8; }
.value-card__title { font-size: 1rem; font-weight: 600; color: var(--cream); margin-bottom: var(--space-3); }
.value-card__desc { font-size: .875rem; color: var(--cream-50); line-height: 1.9; }
.stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
  text-align: center;
}
.stat-item__num {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 100;
  color: var(--gold);
  line-height: 1.2;
  margin-bottom: var(--space-2);
}
.stat-item__label { font-size: .82rem; color: var(--cream-50); letter-spacing: .06em; }

/* ── ═══════════════════════════════════════════════════════════════════════════
   CONTACT PAGE
   ═══════════════════════════════════════════════════════════════════════════ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: var(--space-9);
  align-items: start;
}
.contact-info-card {
  background: var(--bg-card);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-lg);
  padding: var(--space-7);
}
.contact-info-card__title {
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .15em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: var(--space-6);
  padding-bottom: var(--space-4);
  border-bottom: 1px solid var(--gold-border);
}
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-4);
  padding: var(--space-5) 0;
  border-bottom: 1px solid rgba(201,160,96,.06);
}
.contact-info-item:last-child { border-bottom: none; }
.contact-info-item svg { color: var(--gold); flex-shrink: 0; margin-top: 2px; }
.contact-info-item__label {
  font-size: .72rem;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: .1em;
  margin-bottom: var(--space-1);
  text-transform: uppercase;
}
.contact-info-item__val { font-size: .875rem; color: var(--cream-70); line-height: 1.7; }
.form-success {
  background: rgba(201,160,96,.08);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius);
  padding: var(--space-5) var(--space-6);
  color: var(--gold);
  font-size: .9rem;
  margin-bottom: var(--space-6);
  display: flex;
  align-items: center;
  gap: var(--space-3);
}
.form-error {
  background: rgba(200,60,60,.07);
  border: 1px solid rgba(200,60,60,.2);
  border-radius: var(--radius);
  padding: var(--space-4) var(--space-5);
  color: #d96060;
  font-size: .82rem;
  margin-bottom: var(--space-5);
}

/* ── ═══════════════════════════════════════════════════════════════════════════
   AUTH (LOGIN / REGISTER / ACCOUNT)
   ═══════════════════════════════════════════════════════════════════════════ */
.auth-wrap {
  min-height: calc(100svh - var(--header-h));
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-9) var(--space-6);
  background: var(--bg-dark);
}
.auth-card {
  width: 100%;
  max-width: 480px;
  background: var(--bg-card);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-lg);
  padding: var(--space-9) var(--space-8);
  box-shadow: var(--shadow-lift);
}
.auth-card__logo {
  font-size: 1rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: .1em;
  text-align: center;
  margin-bottom: var(--space-3);
}
.auth-card__title {
  text-align: center;
  font-size: 1.5rem;
  font-weight: 100;
  color: var(--cream);
  margin-bottom: var(--space-2);
}
.auth-card__sub {
  text-align: center;
  font-size: .85rem;
  color: var(--cream-50);
  margin-bottom: var(--space-8);
  line-height: 1.7;
}
.auth-card__footer {
  text-align: center;
  margin-top: var(--space-6);
  font-size: .85rem;
  color: var(--cream-50);
}
.auth-card__footer a { color: var(--gold); transition: color .2s; }
.auth-card__footer a:hover { color: var(--gold-light); }
.account-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: var(--space-8);
  align-items: start;
}
.account-nav {
  background: var(--bg-card);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: sticky;
  top: calc(var(--header-h) + var(--space-5));
}
.account-nav__head {
  padding: var(--space-5) var(--space-6);
  border-bottom: 1px solid var(--gold-border);
}
.account-nav__name { font-size: .9rem; font-weight: 600; color: var(--cream); }
.account-nav__pts { font-size: .75rem; color: var(--gold); margin-top: var(--space-1); }
.account-nav a {
  display: block;
  padding: var(--space-4) var(--space-6);
  font-size: .875rem;
  color: var(--cream-50);
  border-bottom: 1px solid rgba(201,160,96,.06);
  transition: all .2s var(--ease);
}
.account-nav a:last-child { border-bottom: none; }
.account-nav a:hover,
.account-nav a.active { color: var(--gold); background: var(--gold-mist); padding-inline-end: var(--space-8); }
.account-panel {
  background: var(--bg-card);
  border: 1px solid rgba(201,160,96,.06);
  border-radius: var(--radius-lg);
  padding: var(--space-7);
}
.account-panel__title {
  font-size: .9rem;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: var(--space-6);
  padding-bottom: var(--space-5);
  border-bottom: 1px solid rgba(201,160,96,.08);
  letter-spacing: .04em;
}
.order-history-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: var(--space-5);
  padding: var(--space-5) 0;
  border-bottom: 1px solid rgba(201,160,96,.06);
}
.order-history-item:last-child { border-bottom: none; }
.order-history-item__id { font-size: .72rem; color: var(--cream-30); margin-bottom: var(--space-2); font-family: monospace; }
.order-history-item__date { font-size: .82rem; color: var(--cream-50); margin-bottom: var(--space-2); }
.order-history-item__total { font-size: .9rem; font-weight: 600; color: var(--gold); margin-top: var(--space-2); }
.order-status {
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .08em;
  padding: .3em .9em;
  border-radius: 100px;
  text-transform: uppercase;
  white-space: nowrap;
}
.order-status--pending { background: rgba(201,160,96,.12); color: var(--gold); }
.order-status--paid    { background: rgba(100,180,100,.1);  color: #7dc87d; }
.order-status--cancelled { background: rgba(200,60,60,.08); color: #d96060; }
.order-status--refunded  { background: rgba(100,150,200,.1); color: #6eaadd; }
.profile-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-5); }

/* ── ═══════════════════════════════════════════════════════════════════════════
   404 PAGE
   ═══════════════════════════════════════════════════════════════════════════ */
.page-404 {
  min-height: calc(100svh - var(--header-h));
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--space-9) var(--space-6);
}
.page-404__inner { max-width: 520px; }
.page-404__num {
  font-size: clamp(7rem, 18vw, 12rem);
  font-weight: 100;
  color: var(--gold);
  opacity: .1;
  line-height: 1;
  letter-spacing: .04em;
  margin-bottom: calc(-1 * var(--space-9));
}
.page-404__title {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 100;
  color: var(--cream);
  margin-bottom: var(--space-4);
}
.page-404__sub {
  color: var(--cream-50);
  font-size: .9rem;
  margin-bottom: var(--space-8);
  line-height: 1.8;
}

/* ── ═══════════════════════════════════════════════════════════════════════════
   RESPONSIVE — new pages
   ═══════════════════════════════════════════════════════════════════════════ */
@media (max-width: 1100px) {
  .shop-grid       { grid-template-columns: repeat(3, 1fr); }
  .checkout-layout { grid-template-columns: 1fr 320px; }
}
@media (max-width: 860px) {
  .shop-grid         { grid-template-columns: repeat(2, 1fr); }
  .product-detail    { grid-template-columns: 1fr; gap: var(--space-7); }
  .checkout-layout   { grid-template-columns: 1fr; }
  .order-summary     { position: static; }
  .contact-grid      { grid-template-columns: 1fr; }
  .about-intro       { grid-template-columns: 1fr; }
  .values-grid       { grid-template-columns: 1fr; gap: var(--space-4); }
  .stat-row          { grid-template-columns: repeat(3, 1fr); }
  .account-layout    { grid-template-columns: 1fr; }
  .account-nav       { position: static; display: flex; border-radius: var(--radius); }
  .account-nav__head { display: none; }
  .account-nav a     { flex-shrink: 0; border-bottom: none; border-inline-end: 1px solid rgba(201,160,96,.06); }
  .profile-grid      { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .shop-grid   { grid-template-columns: repeat(2, 1fr); gap: var(--space-4); }
  .values-grid { grid-template-columns: 1fr; }
  .stat-row    { grid-template-columns: 1fr; gap: var(--space-5); }
  .auth-card   { padding: var(--space-7) var(--space-6); }
}
/* #B64 mobile-reachability fix 2026-09-03 */
@media (max-width:860px){
  div.admin-content{min-width:0}
  div.adm-toolbar{flex-wrap:wrap;row-gap:8px}
}
/* #B64 round2 2026-09-03 */
@media (max-width:860px){
  body .adm-card{overflow-x:auto;overflow-y:visible;max-width:100%}
}
/* #B64 round3 2026-09-03 — site rule outranks ours, scoped override */
@media (max-width:860px){
  .adm-card,.adm-table-wrap{overflow-x:auto !important;max-width:100% !important}
}
