/* ═══════════════════════════════════════════════════════════════
   MoghadamPack — Premium RTL Design System
   Palette: #1A1A1A | #111 | #C9A96E | #F0F0F0 | #fff
═══════════════════════════════════════════════════════════════ */

/* ── 1. Vazirmatn @font-face ─────────────────────────────────── */
@font-face {
  font-family: 'Vazirmatn';
  src: url('/assets/fonts/Vazirmatn-Light.woff2?v=2') format('woff2');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Vazirmatn';
  src: url('/assets/fonts/Vazirmatn-Regular.woff2?v=2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Vazirmatn';
  src: url('/assets/fonts/Vazirmatn-Medium.woff2?v=2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Vazirmatn';
  src: url('/assets/fonts/Vazirmatn-SemiBold.woff2?v=2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Vazirmatn';
  src: url('/assets/fonts/Vazirmatn-Bold.woff2?v=2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Vazirmatn';
  src: url('/assets/fonts/Vazirmatn-ExtraBold.woff2?v=2') format('woff2');
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

/* ── 2. CSS Custom Properties ─────────────────────────────────── */
:root {
  --c-dark:       #1A1A1A;
  --c-darker:     #111111;
  --c-surface:    #222222;
  --c-gold:       #C9A96E;
  --c-gold-light: #D9BC8C;
  --c-gold-dark:  #A8854A;
  --c-white:      #FFFFFF;
  --c-gray:       #F0F0F0;
  --c-gray-mid:   #E0E0E0;
  --c-muted:      #888888;
  --c-text:       #1A1A1A;

  --radius-sm:  8px;
  --radius-md:  12px;
  --radius-lg:  16px;
  --radius-xl:  24px;
  --radius-pill: 50px;

  --shadow-card: 0 4px 24px rgba(0,0,0,.10);
  --shadow-gold: 0 4px 20px rgba(201,169,110,.22);
  --shadow-dark: 0 8px 40px rgba(0,0,0,.30);

  --transition: 0.28s ease;

  --container: 1200px;
  --gap: 24px;
}

/* ── 3. Reset + Base ──────────────────────────────────────────── */
*, *::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, sans-serif;
  font-weight: 400;
  color: var(--c-text);
  background: var(--c-white);
  line-height: 1.7;
  direction: rtl;
  text-align: right;
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
input, textarea, select { font-family: inherit; direction: rtl; }

/* ── 4. Typography ────────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.4;
}
h1 { font-size: clamp(1.75rem, 4vw, 2.75rem); }
h2 { font-size: clamp(1.375rem, 3vw, 2rem); }
h3 { font-size: clamp(1.125rem, 2.5vw, 1.5rem); }
h4 { font-size: 1.125rem; }
p { margin-bottom: .5rem; }

.text-gold  { color: var(--c-gold); }
.text-white { color: var(--c-white); }
.text-muted { color: var(--c-muted); }
.text-center { text-align: center; }

/* ── 5. Layout Utilities ──────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 24px;
}

.section {
  padding-block: 80px;
}
.section--dark   { background: var(--c-dark); }
.section--darker { background: var(--c-darker); }
.section--gray   { background: var(--c-gray); }
.section--white  { background: var(--c-white); }

.section-head {
  margin-bottom: 48px;
  text-align: center;
}
.section-title {
  font-size: clamp(1.375rem, 2.5vw, 2rem);
  font-weight: 700;
  margin-bottom: 12px;
}
.section-sub {
  font-size: .95rem;
  color: var(--c-muted);
  font-weight: 400;
}
.gold-divider {
  width: 56px;
  height: 2px;
  background: var(--c-gold);
  margin: 16px auto 0;
  border-radius: 2px;
}
.gold-divider--start { margin-inline-start: 0; margin-inline-end: auto; }

/* ── 6. Buttons ───────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: 'Vazirmatn', Tahoma, sans-serif;
  font-size: .9rem;
  font-weight: 600;
  padding: 10px 24px;
  border-radius: var(--radius-pill);
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: background var(--transition), color var(--transition),
              border-color var(--transition), box-shadow var(--transition),
              transform var(--transition);
  white-space: nowrap;
  text-decoration: none;
}
.btn:hover  { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn-gold {
  background: var(--c-gold);
  color: var(--c-dark);
  border-color: var(--c-gold);
  box-shadow: var(--shadow-gold);
}
.btn-gold:hover {
  background: var(--c-gold-light);
  border-color: var(--c-gold-light);
  box-shadow: 0 6px 28px rgba(201,169,110,.38);
}

.btn-ghost {
  background: transparent;
  color: var(--c-gold);
  border-color: var(--c-gold);
}
.btn-ghost:hover {
  background: rgba(201,169,110,.12);
}

.btn-dark-pill {
  background: var(--c-dark);
  color: var(--c-white);
  border-color: var(--c-dark);
  font-size: .85rem;
  padding: 9px 20px;
}
.btn-dark-pill:hover {
  background: var(--c-surface);
}

.btn-sm { padding: 7px 18px; font-size: .82rem; }
.btn-lg { padding: 14px 36px; font-size: 1rem; }

/* ── 7. Site Header ───────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(26,26,26,.97);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(201,169,110,.15);
  height: 68px;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 16px;
}

/* Logo — right side in RTL */
.header-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.logo-mark {
  width: 40px;
  height: 40px;
  background: var(--c-gold);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--c-dark);
  flex-shrink: 0;
}
.logo-text {
  color: var(--c-white);
  font-size: .95rem;
  font-weight: 700;
  line-height: 1.25;
}
.logo-text span {
  display: block;
  color: var(--c-gold);
  font-size: .7rem;
  font-weight: 400;
  letter-spacing: .08em;
}

/* Main nav — center */
.main-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}
.main-nav a {
  color: rgba(255,255,255,.78);
  font-size: .9rem;
  font-weight: 500;
  transition: color var(--transition);
  position: relative;
  padding-bottom: 2px;
}
.main-nav a::after {
  content: '';
  position: absolute;
  bottom: -2px; right: 0;
  width: 0; height: 1.5px;
  background: var(--c-gold);
  transition: width var(--transition);
}
.main-nav a:hover,
.main-nav a.active { color: var(--c-gold); }
.main-nav a:hover::after,
.main-nav a.active::after { width: 100%; }

/* Header actions — left side in RTL */
.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.btn-phone-icon {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,.78);
  font-size: .82rem;
  padding: 7px 14px;
  border: 1px solid rgba(201,169,110,.4);
  border-radius: var(--radius-pill);
  transition: color var(--transition), border-color var(--transition);
  direction: ltr;
}
.btn-phone-icon:hover { color: var(--c-gold); border-color: var(--c-gold); }
.btn-phone-icon svg { flex-shrink: 0; }

.btn-whatsapp-pill {
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--c-gold);
  color: var(--c-dark);
  font-size: .82rem;
  font-weight: 700;
  padding: 7px 16px;
  border-radius: var(--radius-pill);
  transition: background var(--transition), box-shadow var(--transition);
}
.btn-whatsapp-pill:hover {
  background: var(--c-gold-light);
  box-shadow: var(--shadow-gold);
}

/* Mobile menu toggle */
.nav-toggle {
  display: none;
  color: var(--c-white);
  padding: 4px;
  background: none;
  border: none;
  cursor: pointer;
}

/* Mobile nav overlay */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(17,17,17,.98);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  color: var(--c-white);
  font-size: 1.4rem;
  font-weight: 600;
  transition: color var(--transition);
}
.mobile-nav a:hover { color: var(--c-gold); }
.mobile-nav-close {
  position: absolute;
  top: 20px; left: 20px;
  color: var(--c-white);
  font-size: 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

/* ── 8. Hero Slider ───────────────────────────────────────────── */
.hero-section {
  position: relative;
  height: 100vh;
  min-height: 560px;
  max-height: 860px;
  overflow: hidden;
  background: var(--c-dark);
}

.hero-slides {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity .9s ease;
}
.hero-slide.active { opacity: 1; }

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Vignette overlay */
.hero-slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top,  rgba(17,17,17,.90) 0%, transparent 50%),
    linear-gradient(to right, rgba(17,17,17,.55) 0%, transparent 60%);
}

.hero-content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-top: 68px;
}

.hero-text {
  max-width: 560px;
  padding: 0 48px;
  text-align: right;
}

.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .78rem;
  font-weight: 600;
  color: var(--c-gold);
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.hero-label::before {
  content: '';
  display: inline-block;
  width: 32px;
  height: 1.5px;
  background: var(--c-gold);
}

.hero-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  color: var(--c-white);
  line-height: 1.25;
  margin-bottom: 16px;
}
.hero-title .accent { color: var(--c-gold); }

.hero-desc {
  font-size: .95rem;
  color: rgba(255,255,255,.70);
  margin-bottom: 36px;
  font-weight: 400;
  line-height: 1.8;
  max-width: 420px;
}

.hero-actions { display: flex; gap: 12px; }

/* Slider nav dots */
.hero-dots {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  gap: 8px;
}
.hero-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,.35);
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: background var(--transition), width var(--transition);
}
.hero-dot.active {
  background: var(--c-gold);
  width: 28px;
  border-radius: 4px;
}

/* Slider arrows */
.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,.3);
  background: rgba(26,26,26,.5);
  color: var(--c-white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: border-color var(--transition), background var(--transition);
}
.hero-arrow:hover { border-color: var(--c-gold); background: rgba(201,169,110,.2); color: var(--c-gold); }
.hero-arrow--prev { left: 24px; }
.hero-arrow--next { right: 24px; }

.hero-section--brand {
  height: auto;
  min-height: 560px;
  max-height: none;
  display: flex;
  align-items: center;
  padding-block: 116px 64px;
}

.hero-brand-grid {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(320px, 1.1fr);
  align-items: center;
  gap: 48px;
}

.hero-section--brand .hero-content {
  position: relative;
  inset: auto;
  padding-top: 0;
}

.hero-section--brand .hero-text {
  padding: 0;
}

.hero-section--brand .hero-desc {
  max-width: 440px;
}

.hero-brand-media {
  border: 1px solid rgba(201,169,110,.26);
  border-radius: var(--radius-lg);
  background: #0b0b0b;
  box-shadow: 0 24px 70px rgba(0,0,0,.32), 0 0 0 1px rgba(255,255,255,.03) inset;
  overflow: hidden;
}

.hero-brand-media img {
  width: 100%;
  aspect-ratio: 1254 / 1061;
  object-fit: contain;
  display: block;
}

/* ── 9. Brand Intro Strip ─────────────────────────────────────── */
.brand-intro {
  background: var(--c-gray);
  padding-block: 64px;
}
.brand-intro-inner {
  display: flex;
  align-items: center;
  gap: 56px;
}
.brand-intro-logo {
  flex-shrink: 0;
  width: 88px;
  height: 88px;
  border-radius: var(--radius-lg);
  background: var(--c-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--c-gold);
  box-shadow: var(--shadow-dark);
}
.brand-intro-divider {
  width: 1px;
  height: 80px;
  background: var(--c-gold);
  opacity: .35;
  flex-shrink: 0;
}
.brand-intro-copy {
  flex: 1;
}
.brand-intro-copy h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--c-dark);
  margin-bottom: 10px;
}
.brand-intro-copy p {
  font-size: .95rem;
  color: #555;
  line-height: 1.9;
  max-width: 560px;
}
.brand-intro-stats {
  display: flex;
  gap: 40px;
  margin-top: 24px;
}
.brand-stat-num {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--c-gold);
  line-height: 1;
  margin-bottom: 4px;
}
.brand-stat-label {
  font-size: .78rem;
  color: var(--c-muted);
  font-weight: 500;
}
.brand-intro-bottom-bar {
  height: 2px;
  background: linear-gradient(to left, var(--c-gold), transparent);
  margin-top: 40px;
  opacity: .5;
}

/* ── 10. Categories Section ───────────────────────────────────── */
.categories-section {
  background: var(--c-darker);
  padding-block: 80px;
}
.categories-section .section-title { color: var(--c-white); }
.categories-section .section-sub   { color: rgba(255,255,255,.5); }

.categories-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.category-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1.5px solid rgba(201,169,110,.12);
  background: var(--c-surface);
  cursor: pointer;
  transition: border-color var(--transition), transform var(--transition),
              box-shadow var(--transition);
}
.category-card:hover {
  border-color: var(--c-gold);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,.4), 0 0 0 1px rgba(201,169,110,.2);
}
.category-card-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
  filter: brightness(.82);
  transition: filter var(--transition), transform .4s ease;
}
.category-card:hover .category-card-img {
  filter: brightness(.92);
  transform: scale(1.04);
}
.category-card-body {
  padding: 16px;
  text-align: center;
}
.category-card-name {
  color: var(--c-white);
  font-size: .92rem;
  font-weight: 600;
  margin-bottom: 4px;
}
.category-card-count {
  font-size: .75rem;
  color: var(--c-gold);
  font-weight: 500;
}
.category-card-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(201,169,110,.18);
  border: 1px solid rgba(201,169,110,.4);
  color: var(--c-gold);
  font-size: .7rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: var(--radius-pill);
}

/* ── 11. Products Section ─────────────────────────────────────── */
.products-section {
  background: var(--c-white);
  padding-block: 80px;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.product-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--c-white);
  border: 1px solid var(--c-gray-mid);
  box-shadow: var(--shadow-card);
  transition: box-shadow var(--transition), transform var(--transition),
              border-color var(--transition);
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  box-shadow: 0 8px 40px rgba(0,0,0,.13), 0 0 0 1.5px var(--c-gold);
  transform: translateY(-3px);
  border-color: var(--c-gold);
}

.product-card-img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--c-gray);
}
.product-card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.category-card-img.home-brand-img,
.product-card-img-wrap img.home-brand-img {
  object-fit: contain;
  background: #0b0b0b;
}
.product-card:hover .product-card-img-wrap img { transform: scale(1.05); }

.price-badge {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: var(--c-dark);
  color: var(--c-gold);
  font-size: .78rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: var(--radius-pill);
  box-shadow: 0 2px 12px rgba(0,0,0,.3);
  white-space: nowrap;
}

.product-card-body {
  padding: 18px 20px 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.product-card-cat {
  font-size: .72rem;
  color: var(--c-gold);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 6px;
}
.product-card-name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--c-dark);
  margin-bottom: 12px;
  flex: 1;
}
.product-card-actions {
  display: flex;
  gap: 8px;
  margin-top: auto;
}
.product-card-actions .btn { flex: 1; justify-content: center; }

/* ── 12. Trust Pillars ────────────────────────────────────────── */
.trust-section {
  background: var(--c-dark);
  padding-block: 80px;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  text-align: center;
}

.trust-item {
  padding: 40px 28px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(201,169,110,.12);
  background: rgba(255,255,255,.03);
  transition: border-color var(--transition), background var(--transition),
              transform var(--transition);
}
.trust-item:hover {
  border-color: rgba(201,169,110,.4);
  background: rgba(201,169,110,.06);
  transform: translateY(-4px);
}

.trust-icon {
  width: 64px; height: 64px;
  margin: 0 auto 20px;
  background: rgba(201,169,110,.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-gold);
  transition: background var(--transition);
}
.trust-item:hover .trust-icon { background: rgba(201,169,110,.22); }

.trust-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--c-white);
  margin-bottom: 10px;
}
.trust-desc {
  font-size: .88rem;
  color: rgba(255,255,255,.55);
  line-height: 1.8;
}

/* ── 13. Contact CTA Section ──────────────────────────────────── */
.cta-section {
  padding-block: 72px;
  background: linear-gradient(135deg, #C9A96E 0%, #B8924A 50%, #9A7030 100%);
  text-align: center;
}

.cta-heading {
  font-size: clamp(1.375rem, 3vw, 2rem);
  font-weight: 800;
  color: var(--c-dark);
  margin-bottom: 10px;
}
.cta-sub {
  font-size: .95rem;
  color: rgba(26,26,26,.7);
  margin-bottom: 40px;
  font-weight: 400;
}

.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}
.cta-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--c-dark);
  color: var(--c-white);
  font-family: 'Vazirmatn', Tahoma, sans-serif;
  font-size: .88rem;
  font-weight: 600;
  padding: 12px 24px;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  transition: background var(--transition), color var(--transition),
              transform var(--transition);
  text-decoration: none;
}
.cta-pill:hover {
  background: var(--c-surface);
  transform: translateY(-2px);
  color: var(--c-gold);
}
.cta-pill svg { flex-shrink: 0; }

/* ── 14. Site Footer ──────────────────────────────────────────── */
.site-footer {
  background: #0F0F0F;
  padding-top: 60px;
  padding-bottom: 24px;
  color: rgba(255,255,255,.6);
  font-size: .88rem;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
}

.footer-brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}
.footer-logo-mark {
  width: 44px; height: 44px;
  background: var(--c-gold);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--c-dark);
  flex-shrink: 0;
}
.footer-logo-text {
  color: var(--c-white);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.2;
}
.footer-logo-text span {
  display: block;
  color: var(--c-gold);
  font-size: .7rem;
  font-weight: 400;
  letter-spacing: .08em;
}

.footer-tagline {
  font-size: .85rem;
  line-height: 1.9;
  color: rgba(255,255,255,.45);
  margin-bottom: 20px;
  max-width: 280px;
}

.footer-social {
  display: flex;
  gap: 10px;
}
.footer-social a {
  width: 36px; height: 36px;
  border-radius: 8px;
  border: 1px solid rgba(201,169,110,.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.55);
  transition: border-color var(--transition), color var(--transition);
}
.footer-social a:hover { border-color: var(--c-gold); color: var(--c-gold); }

.footer-col-title {
  font-size: .88rem;
  font-weight: 700;
  color: var(--c-white);
  margin-bottom: 20px;
  position: relative;
}
.footer-col-title::after {
  content: '';
  position: absolute;
  bottom: -8px; right: 0;
  width: 28px; height: 2px;
  background: var(--c-gold);
  border-radius: 2px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-links a {
  color: rgba(255,255,255,.5);
  font-size: .85rem;
  transition: color var(--transition), padding-right var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}
.footer-links a:hover { color: var(--c-gold); padding-right: 4px; }
.footer-links a::before {
  content: '';
  display: inline-block;
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--c-gold);
  opacity: .5;
  flex-shrink: 0;
}

.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: rgba(255,255,255,.5);
  font-size: .85rem;
}
.footer-contact-item svg { flex-shrink: 0; margin-top: 1px; color: var(--c-gold); }
.footer-contact-item a {
  color: rgba(255,255,255,.5);
  transition: color var(--transition);
  direction: ltr;
  display: inline-block;
}
.footer-contact-item a:hover { color: var(--c-gold); }

.footer-divider {
  height: 1px;
  background: linear-gradient(to left, transparent, rgba(201,169,110,.3), transparent);
  margin-bottom: 24px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: .78rem;
  color: rgba(255,255,255,.3);
}
.footer-bottom a { color: rgba(201,169,110,.6); transition: color var(--transition); }
.footer-bottom a:hover { color: var(--c-gold); }

/* ── 15. Page Hero (inner pages) ──────────────────────────────── */
.page-hero {
  padding-top: calc(68px + 56px);
  padding-bottom: 56px;
  background: var(--c-dark);
  text-align: center;
}
.page-hero h1 { color: var(--c-white); font-size: clamp(1.6rem, 3vw, 2.25rem); margin-bottom: 10px; }
.page-hero p  { color: rgba(255,255,255,.55); font-size: .95rem; }
.breadcrumb { display: flex; align-items: center; justify-content: center; gap: 8px; font-size: .82rem; color: rgba(255,255,255,.4); margin-top: 16px; }
.breadcrumb a { color: var(--c-gold); }
.breadcrumb span { color: rgba(255,255,255,.3); }

/* ── 16. Flash messages ───────────────────────────────────────── */
.flash {
  padding: 14px 20px;
  border-radius: var(--radius-sm);
  margin-bottom: 20px;
  font-size: .9rem;
  font-weight: 500;
}
.flash--success { background: #ecfdf5; color: #166534; border: 1px solid #bbf7d0; }
.flash--error   { background: #fef2f2; color: #991b1b; border: 1px solid #fecaca; }

/* ── 17. Utility classes ──────────────────────────────────────── */
.mt-auto { margin-top: auto; }
.gap-12  { gap: 12px; }
.d-flex  { display: flex; }
.align-center { align-items: center; }
.justify-center { justify-content: center; }
.fw-600  { font-weight: 600; }
.fw-700  { font-weight: 700; }
.fs-sm   { font-size: .85rem; }

/* ── 18. Responsive ───────────────────────────────────────────── */
@media (max-width: 1024px) {
  .categories-grid { grid-template-columns: repeat(2, 1fr); }
  .products-grid   { grid-template-columns: repeat(2, 1fr); }
  .footer-inner    { grid-template-columns: 1fr 1fr; }
  .footer-inner > *:first-child { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  :root { --gap: 16px; }

  .section { padding-block: 56px; }

  .main-nav        { display: none; }
  .header-actions  { display: none; }
  .nav-toggle      { display: flex; }

  .hero-text       { padding: 0 24px; max-width: 100%; }
  .hero-title      { font-size: 1.75rem; }
  .hero-content    { justify-content: center; text-align: center; }
  .hero-text       { text-align: center; }
  .hero-actions    { justify-content: center; }
  .hero-section--brand { min-height: 0; padding-block: 96px 48px; }
  .hero-brand-grid { grid-template-columns: 1fr; gap: 32px; }
  .hero-section--brand .hero-desc { margin-inline: auto; }

  .brand-intro-inner { flex-direction: column; gap: 32px; text-align: center; }
  .brand-intro-divider { width: 80px; height: 1px; }
  .brand-intro-stats   { justify-content: center; }
  .gold-divider--start { margin-inline: auto; }

  .categories-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .products-grid   { grid-template-columns: 1fr 1fr; gap: 14px; }
  .trust-grid      { grid-template-columns: 1fr; gap: 16px; }

  .cta-buttons     { gap: 10px; }
  .cta-pill        { font-size: .82rem; padding: 10px 18px; }

  .footer-inner    { grid-template-columns: 1fr; gap: 32px; }
  .footer-inner > *:first-child { grid-column: 1; }
  .footer-bottom   { flex-direction: column; text-align: center; }
}

@media (max-width: 390px) {
  .container    { padding-inline: 16px; }
  .hero-title   { font-size: 1.5rem; }
  .hero-desc    { font-size: .85rem; }
  .btn-lg       { padding: 12px 24px; font-size: .9rem; }

  .categories-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .products-grid   { grid-template-columns: 1fr; }

  .product-card-actions { flex-direction: column; }
  .product-card-actions .btn { flex: unset; }

  .brand-intro-stats { gap: 24px; flex-wrap: wrap; }
  .trust-item { padding: 28px 20px; }
  .cta-buttons { flex-direction: column; align-items: center; }
}

/* ── 19. Cart ─────────────────────────────────────────────────── */
.cart-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 40px;
  align-items: start;
}

.cart-items {
  background: var(--c-white);
  border: 1px solid var(--c-gray-mid);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.cart-header {
  display: grid;
  grid-template-columns: 2.5fr 1fr 1fr 1fr 40px;
  gap: 16px;
  padding: 14px 20px;
  background: var(--c-gray);
  font-size: .78rem;
  font-weight: 600;
  color: var(--c-muted);
}

.cart-row {
  display: grid;
  grid-template-columns: 2.5fr 1fr 1fr 1fr 40px;
  gap: 16px;
  padding: 16px 20px;
  align-items: center;
  border-bottom: 1px solid var(--c-gray-mid);
}
.cart-row:last-child { border-bottom: none; }

.cart-product { display: flex; align-items: center; gap: 12px; }
.cart-thumb {
  width: 60px; height: 60px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  flex-shrink: 0;
  border: 1px solid var(--c-gray-mid);
}
.cart-product-name {
  font-size: .88rem;
  font-weight: 600;
  color: var(--c-dark);
  line-height: 1.4;
}
.cart-product-name:hover { color: var(--c-gold); }

.cart-price    { font-size: .88rem; color: #555; white-space: nowrap; }
.cart-subtotal { font-size: .9rem; font-weight: 700; color: var(--c-gold); white-space: nowrap; }

.cart-qty-form { display: flex; }
.qty-spinner {
  display: inline-flex;
  align-items: center;
  border: 1.5px solid var(--c-gray-mid);
  border-radius: var(--radius-sm);
  overflow: hidden;
}
.qty-btn {
  width: 30px; height: 32px;
  background: var(--c-gray);
  border: none;
  cursor: pointer;
  font-size: 1rem;
  color: var(--c-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
  line-height: 1;
}
.qty-btn:hover { background: var(--c-gray-mid); }
.qty-input {
  width: 40px; height: 32px;
  border: none;
  text-align: center;
  font-family: inherit;
  font-size: .88rem;
  font-weight: 600;
  color: var(--c-dark);
  background: var(--c-white);
  -moz-appearance: textfield;
  outline: none;
}
.qty-input::-webkit-outer-spin-button,
.qty-input::-webkit-inner-spin-button { -webkit-appearance: none; }

.cart-remove {
  background: none;
  border: none;
  color: var(--c-muted);
  cursor: pointer;
  padding: 4px;
  transition: color var(--transition);
  display: flex;
  align-items: center;
}
.cart-remove:hover { color: #dc2626; }

.cart-summary {
  background: var(--c-white);
  border: 1px solid var(--c-gray-mid);
  border-radius: var(--radius-lg);
  padding: 28px;
  position: sticky;
  top: 88px;
  box-shadow: var(--shadow-card);
}
.summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .9rem;
  color: #555;
  margin-bottom: 12px;
}
.summary-total { font-size: 1.05rem; font-weight: 700; color: var(--c-dark); }
.summary-total span:last-child { color: var(--c-gold); }
.summary-divider { height: 1px; background: var(--c-gray-mid); margin: 14px 0; }

/* ── 20. Product Gallery ──────────────────────────────────────── */
.product-gallery { display: flex; flex-direction: column; gap: 10px; }

.product-gallery-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--c-gray);
  box-shadow: var(--shadow-dark);
}
.product-gallery-main img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s ease;
}
.product-gallery-main:hover img { transform: scale(1.03); }

.product-gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.gallery-thumb {
  border-radius: var(--radius-sm);
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color var(--transition);
}
.gallery-thumb.active { border-color: var(--c-gold); }
.gallery-thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(.8);
  transition: filter var(--transition);
}
.gallery-thumb.active img,
.gallery-thumb:hover img { filter: brightness(1); }

/* ── 21. Product Detail ───────────────────────────────────────── */
.product-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}

.option-group { margin-bottom: 20px; }
.option-label { font-size: .85rem; font-weight: 600; color: var(--c-dark); margin-bottom: 10px; display: block; }
.option-pills { display: flex; gap: 8px; flex-wrap: wrap; }

.option-pill { position: relative; }
.option-pill input[type=radio] { position: absolute; opacity: 0; width: 0; height: 0; }
.option-pill label {
  display: block;
  padding: 7px 18px;
  border: 1.5px solid var(--c-gray-mid);
  border-radius: var(--radius-pill);
  font-size: .85rem;
  font-weight: 500;
  color: var(--c-dark);
  cursor: pointer;
  transition: border-color var(--transition), background var(--transition), color var(--transition);
}
.option-pill input[type=radio]:checked + label {
  border-color: var(--c-gold);
  background: rgba(201,169,110,.1);
  color: var(--c-gold-dark);
  font-weight: 600;
}
.option-pill label:hover { border-color: var(--c-gold); }

/* ── 22. Cart icon in header ──────────────────────────────────── */
.header-cart-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.78);
  transition: color var(--transition);
  padding: 4px;
}
.header-cart-btn:hover { color: var(--c-gold); }
.cart-badge {
  position: absolute;
  top: -6px; left: -6px;
  min-width: 18px; height: 18px;
  border-radius: 9px;
  background: var(--c-gold);
  color: var(--c-dark);
  font-size: .62rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
  line-height: 1;
}

/* ── 23. Auth / Account pages ─────────────────────────────────── */
.auth-card {
  max-width: 480px;
  margin: 0 auto;
  background: var(--c-white);
  border: 1px solid var(--c-gray-mid);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  box-shadow: var(--shadow-card);
}
.auth-logo { text-align: center; margin-bottom: 32px; }
.auth-logo-mark {
  width: 56px; height: 56px;
  background: var(--c-gold);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--c-dark);
  margin: 0 auto 12px;
}

.form-group { margin-bottom: 18px; }
.form-label { display: block; font-size: .85rem; font-weight: 600; margin-bottom: 6px; color: var(--c-dark); }
.form-control {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--c-gray-mid);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: .9rem;
  color: var(--c-dark);
  background: var(--c-white);
  transition: border-color var(--transition);
  outline: none;
}
.form-control:focus { border-color: var(--c-gold); }
textarea.form-control { resize: vertical; }

/* ── Contact page ────────────────────────────────────────────── */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: start;
}
.contact-layout > * { min-width: 0; }
.contact-response-note {
  padding: 24px;
  border-radius: var(--radius-md);
  background: var(--c-gray);
}
.contact-response-note p {
  color: #555;
  font-size: .88rem;
  line-height: 1.9;
}
.contact-response-note span { color: var(--c-dark); }
.contact-form-card {
  box-sizing: border-box;
  min-width: 0;
  max-width: 100%;
  padding: 40px;
  border: 1px solid var(--c-gray-mid);
  border-radius: var(--radius-lg);
  background: var(--c-white);
  box-shadow: var(--shadow-card);
}

.orders-table { width: 100%; border-collapse: collapse; font-size: .88rem; }
.orders-table th {
  background: var(--c-gray);
  font-size: .78rem;
  font-weight: 600;
  color: var(--c-muted);
  padding: 10px 16px;
  text-align: right;
  white-space: nowrap;
}
.orders-table td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--c-gray-mid);
  color: var(--c-dark);
}
.orders-table tr:last-child td { border-bottom: none; }

.status-badge {
  display: inline-flex;
  align-items: center;
  padding: 3px 10px;
  border-radius: var(--radius-pill);
  font-size: .72rem;
  font-weight: 600;
}
.status-pending   { background: #fef3c7; color: #92400e; }
.status-confirmed { background: #d1fae5; color: #065f46; }
.status-shipped   { background: #dbeafe; color: #1e40af; }
.status-done      { background: #f3f4f6; color: #374151; }

/* ── 24. Checkout summary ─────────────────────────────────────── */
.checkout-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 40px;
  align-items: start;
}
.checkout-summary-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--c-gray-mid);
}
.checkout-summary-item:last-of-type { border-bottom: none; }
.checkout-summary-thumb {
  width: 52px; height: 52px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  flex-shrink: 0;
  border: 1px solid var(--c-gray-mid);
}

/* ── 25. Responsive: new pages ────────────────────────────────── */
@media (max-width: 960px) {
  .contact-layout { grid-template-columns: 1fr; gap: 40px; }
  .cart-layout     { grid-template-columns: 1fr; }
  .checkout-layout { grid-template-columns: 1fr; }
  .product-detail-grid { grid-template-columns: 1fr; gap: 32px; }
  .cart-header { display: none; }
  .cart-row {
    grid-template-columns: 1fr auto;
    gap: 10px;
  }
  .cart-row > .cart-price { display: none; }
  .cart-summary { position: static; }
}
@media (max-width: 768px) {
  .contact-layout { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .auth-card { padding: 28px 18px; }
  .contact-form-card { padding: 28px 20px; }
  .contact-response-note { padding: 20px; }
}

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--c-dark); }
::-webkit-scrollbar-thumb { background: rgba(201,169,110,.4); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--c-gold); }

/* ── 27. Focus + Selection ────────────────────────────────────── */
:focus-visible {
  outline: 2px solid var(--c-gold);
  outline-offset: 2px;
  border-radius: 4px;
}

/* ── 21. Selection ────────────────────────────────────────────── */
::selection {
  background: rgba(201,169,110,.25);
  color: var(--c-dark);
}
