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

/* ── Design Tokens ────────────────────────────────────────────────────────── */
:root {
  --bg:            #0D0D0D;
  --bg-card:       #161616;
  --bg-card-hover: #1E1E1E;
  --bg-elevated:   #1A1A1A;
  --gold:          #D4AF37;
  --gold-dark:     #B8860B;
  --gold-light:    #E8C84A;
  --gold-dim:      rgba(212,175,55,.15);
  --gold-dim2:     rgba(212,175,55,.08);
  --text:          #FFFFFF;
  --text-muted:    rgba(255,255,255,.60);
  --text-dim:      rgba(255,255,255,.35);
  --border:        rgba(212,175,55,.30);
  --border-strong: rgba(212,175,55,.65);
  --shadow-gold:   0 4px 24px rgba(212,175,55,.18);
  --shadow-hover:  0 8px 40px rgba(212,175,55,.28);
  --shadow-card:   0 2px 16px rgba(0,0,0,.50);
  --font:          'Vazirmatn', system-ui, sans-serif;
  --section-py:    90px;
  --container:     1240px;
  --header-h:      72px;
  --radius-sm:     2px;
  --radius:        4px;
  --transition:    .22s ease;
}

/* ── Reset ────────────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  font-weight: 400;
  font-size: 15px;
  line-height: 1.75;
  color: var(--text);
  background: var(--bg);
  direction: rtl;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; transition: color var(--transition); }
button { font-family: var(--font); cursor: pointer; border: none; background: none; }
ul, ol { list-style: none; }
input, textarea, select {
  font-family: var(--font);
  direction: rtl;
}

/* ── Typography ───────────────────────────────────────────────────────────── */
.h1 { font-size: clamp(22px, 3.5vw, 36px); font-weight: 300; line-height: 1.35; letter-spacing: .03em; }
.h2 { font-size: clamp(19px, 2.6vw, 28px); font-weight: 300; line-height: 1.4;  letter-spacing: .03em; }
.h3 { font-size: clamp(16px, 1.8vw, 21px); font-weight: 400; line-height: 1.45; }
.h4 { font-size: clamp(14px, 1.4vw, 17px); font-weight: 500; line-height: 1.5;  }

.text-gold    { color: var(--gold); }
.text-muted   { color: var(--text-muted); }
.text-center  { text-align: center; }
.text-sm      { font-size: 13px; }

/* ── Layout ───────────────────────────────────────────────────────────────── */
.container {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 24px;
}
.section {
  padding-block: var(--section-py);
}
.section-sm {
  padding-block: 60px;
}

/* Section heading */
.section-heading {
  margin-bottom: 56px;
  text-align: center;
}
.section-heading .eyebrow {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.section-heading h2 {
  font-size: clamp(20px, 2.8vw, 32px);
  font-weight: 300;
  color: var(--text);
  letter-spacing: .04em;
}
.section-heading .gold-rule {
  display: block;
  width: 56px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 18px auto 0;
}

/* ── Header ───────────────────────────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0;
  inset-inline: 0;
  z-index: 900;
  height: var(--header-h);
  display: flex;
  align-items: center;
  transition: background var(--transition), box-shadow var(--transition);
  background: rgba(13,13,13,.0);
}
.site-header.scrolled {
  background: rgba(13,13,13,.97);
  box-shadow: 0 1px 0 var(--border);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.header-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 16px;
  width: 100%;
}

/* Nav (right side in RTL = first column) */
.header-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  justify-content: flex-start;
}
.header-nav a {
  font-size: 14px;
  font-weight: 400;
  color: rgba(255,255,255,.80);
  transition: color var(--transition);
  white-space: nowrap;
  position: relative;
}
.header-nav a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  right: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width var(--transition);
}
.header-nav a:hover,
.header-nav a.active {
  color: var(--gold);
}
.header-nav a:hover::after,
.header-nav a.active::after {
  width: 100%;
}

/* Logo (center) */
.header-logo {
  text-align: center;
  color: var(--gold);
  text-decoration: none;
}
.header-logo .logo-emblem {
  display: block;
  width: 20px;
  height: 20px;
  margin: 0 auto 3px;
  opacity: .8;
}
.header-logo .logo-text {
  display: block;
  font-size: 19px;
  font-weight: 300;
  letter-spacing: .08em;
  color: var(--gold);
  white-space: nowrap;
}

/* Actions (left side in RTL = last column) */
.header-actions {
  display: flex;
  align-items: center;
  gap: 4px;
  justify-content: flex-end;
}
.header-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: rgba(255,255,255,.75);
  transition: color var(--transition);
  position: relative;
}
.header-btn:hover { color: var(--gold); }
.cart-badge {
  position: absolute;
  top: 4px;
  left: 4px;
  min-width: 18px;
  height: 18px;
  background: var(--gold);
  color: #000;
  font-size: 10px;
  font-weight: 700;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
  line-height: 1;
}
.menu-btn {
  display: none;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: var(--text-muted);
}
.menu-btn:hover { color: var(--gold); }

/* Mobile nav overlay */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 950;
  background: rgba(13,13,13,.98);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 36px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-size: 20px;
  font-weight: 300;
  letter-spacing: .06em;
  color: var(--text-muted);
  transition: color var(--transition);
}
.mobile-nav a:hover { color: var(--gold); }
.mobile-nav-close {
  position: absolute;
  top: 20px;
  left: 20px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
}
.mobile-nav-close:hover { color: var(--gold); }

/* ── Buttons ──────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: .06em;
  border-radius: 0;
  cursor: pointer;
  transition: background var(--transition), color var(--transition),
              box-shadow var(--transition), transform var(--transition);
  white-space: nowrap;
}
.btn-gold {
  background: var(--gold);
  color: #000;
  border: 1px solid var(--gold);
}
.btn-gold:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  box-shadow: var(--shadow-gold);
  transform: translateY(-1px);
}
.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold);
}
.btn-outline:hover {
  background: var(--gold-dim);
  box-shadow: var(--shadow-gold);
  transform: translateY(-1px);
}
.btn-ghost {
  background: transparent;
  color: var(--text-muted);
  border: 1px solid var(--border);
}
.btn-ghost:hover {
  color: var(--gold);
  border-color: var(--border-strong);
}
.btn-sm {
  padding: 8px 18px;
  font-size: 13px;
}
.btn-full { width: 100%; }

/* ── Hero ─────────────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  height: 100svh;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(.55);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to left,
    rgba(13,13,13,.82) 0%,
    rgba(13,13,13,.55) 40%,
    rgba(13,13,13,.18) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 520px;
  padding-top: var(--header-h);
}
.hero-eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  border-bottom: 1px solid var(--gold);
  padding-bottom: 6px;
  margin-bottom: 24px;
}
.hero-title {
  font-size: clamp(26px, 4vw, 48px);
  font-weight: 300;
  line-height: 1.3;
  letter-spacing: .04em;
  color: var(--text);
  margin-bottom: 20px;
}
.hero-subtitle {
  font-size: 15px;
  color: var(--text-muted);
  margin-bottom: 36px;
  line-height: 1.8;
  max-width: 380px;
}
.hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: var(--text-dim);
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
  animation: hero-bounce 2.4s ease-in-out infinite;
}
.hero-scroll svg { color: var(--gold); opacity: .6; }
@keyframes hero-bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(6px); }
}

/* ── Trust Bar ────────────────────────────────────────────────────────────── */
.trust-bar {
  background: var(--bg-elevated);
  border-block: 1px solid var(--border);
  padding-block: 22px;
}
.trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-muted);
  font-size: 13px;
}
.trust-item svg { color: var(--gold); flex-shrink: 0; }

/* ── Product Card ─────────────────────────────────────────────────────────── */
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.product-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
  position: relative;
}
.product-card:hover {
  border-color: var(--border-strong);
  box-shadow: var(--shadow-hover);
  transform: translateY(-3px);
}
.product-card-img {
  aspect-ratio: 1;
  overflow: hidden;
  background: #111;
}
.product-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.product-card:hover .product-card-img img {
  transform: scale(1.05);
}
.product-card-body {
  padding: 18px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.product-card-cat {
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: .8;
}
.product-card-name {
  font-size: 15px;
  font-weight: 400;
  color: var(--text);
  line-height: 1.45;
}
.product-card-price {
  font-size: 14px;
  font-weight: 600;
  color: var(--gold);
  margin-top: auto;
  padding-top: 8px;
}
.product-card-footer {
  padding: 0 18px 18px;
  display: flex;
  gap: 8px;
}
.product-card-footer .btn {
  flex: 1;
  padding: 10px 12px;
  font-size: 13px;
}

/* ── Category Tiles ───────────────────────────────────────────────────────── */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}
.category-tile {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
  aspect-ratio: 1;
  display: flex;
  align-items: flex-end;
  cursor: pointer;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.category-tile:hover {
  border-color: var(--border-strong);
  box-shadow: var(--shadow-hover);
}
.category-tile img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
  filter: brightness(.65);
}
.category-tile:hover img {
  transform: scale(1.08);
  filter: brightness(.75);
}
.category-tile-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13,13,13,.88) 0%, transparent 60%);
}
.category-tile-label {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 12px 10px;
  text-align: center;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .1em;
  color: var(--gold);
}

/* ── About Section ────────────────────────────────────────────────────────── */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 500px;
}
.about-photo {
  position: relative;
  overflow: hidden;
}
.about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 420px;
}
.about-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 72px 64px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-inline-end: none;
}
.about-content .eyebrow {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.about-rule {
  width: 48px;
  height: 1px;
  background: var(--gold);
  margin-bottom: 28px;
  opacity: .7;
}
.about-content h2 {
  font-size: clamp(20px, 2.5vw, 29px);
  font-weight: 300;
  letter-spacing: .04em;
  margin-bottom: 20px;
  line-height: 1.4;
}
.about-content p {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 2;
  margin-bottom: 32px;
}
.about-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .08em;
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
  transition: border-color var(--transition);
}
.about-link:hover { border-color: var(--gold); }

/* ── Gallery Grid ─────────────────────────────────────────────────────────── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 36px;
}
.gallery-item {
  aspect-ratio: 1;
  overflow: hidden;
  border: 1px solid var(--border);
  position: relative;
  display: block;
  cursor: pointer;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease, filter .4s ease;
  filter: brightness(.85);
}
.gallery-item:hover img {
  transform: scale(1.06);
  filter: brightness(1);
}
.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(212,175,55,.0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
}
.gallery-item:hover .gallery-item-overlay {
  background: rgba(212,175,55,.08);
}
.gallery-more {
  text-align: center;
}
.gallery-more-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .1em;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 3px;
  transition: opacity var(--transition);
}
.gallery-more-link:hover { opacity: .75; }

/* ── Blog Cards ───────────────────────────────────────────────────────────── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.blog-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.blog-card:hover {
  border-color: var(--border-strong);
  box-shadow: var(--shadow-card);
}
.blog-card-img {
  aspect-ratio: 16/9;
  overflow: hidden;
}
.blog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.blog-card:hover .blog-card-img img { transform: scale(1.04); }
.blog-card-body {
  padding: 22px;
}
.blog-card-body h3 {
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 10px;
  line-height: 1.5;
}
.blog-card-body p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 16px;
}
.blog-read-more {
  font-size: 12px;
  color: var(--gold);
  letter-spacing: .08em;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* ── Footer ───────────────────────────────────────────────────────────────── */
.site-footer {
  background: #0A0A0A;
  border-top: 1px solid var(--border);
  padding-top: 64px;
  padding-bottom: 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.footer-col-logo {
  text-align: center;
}
.footer-logo-text {
  font-size: 20px;
  font-weight: 300;
  letter-spacing: .08em;
  color: var(--gold);
  display: block;
  margin-bottom: 10px;
}
.footer-tagline {
  font-size: 12px;
  color: var(--text-dim);
  letter-spacing: .1em;
  line-height: 1.8;
}
.footer-col h4 {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  opacity: .85;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.footer-links a {
  font-size: 13px;
  color: var(--text-muted);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--gold); }
.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: var(--text-muted);
}
.footer-contact-item svg { color: var(--gold); flex-shrink: 0; margin-top: 2px; }
.footer-contact-item a { color: var(--text-muted); transition: color var(--transition); }
.footer-contact-item a:hover { color: var(--gold); }
.footer-contact-phone {
  direction: ltr;
  display: inline-block;
  unicode-bidi: isolate;
}
.footer-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  padding-block: 28px;
  border-bottom: 1px solid rgba(255,255,255,.05);
  margin-bottom: 24px;
}
.footer-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--text-dim);
}
.footer-trust-item svg { color: var(--gold); opacity: .7; }
.footer-copy {
  text-align: center;
  font-size: 12px;
  color: var(--text-dim);
  letter-spacing: .04em;
}

/* ── Page Hero (inner pages) ──────────────────────────────────────────────── */
.page-hero {
  padding-top: calc(var(--header-h) + 60px);
  padding-bottom: 60px;
  text-align: center;
  background: linear-gradient(180deg, rgba(212,175,55,.05) 0%, transparent 100%);
  border-bottom: 1px solid var(--border);
  margin-bottom: 64px;
}
.page-hero h1 {
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 300;
  letter-spacing: .05em;
  margin-bottom: 12px;
}
.page-hero p {
  color: var(--text-muted);
  font-size: 14px;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
  font-size: 12px;
  color: var(--text-dim);
  margin-top: 16px;
}
.breadcrumb a { color: var(--gold); }
.breadcrumb svg { opacity: .4; }

/* ── Forms ────────────────────────────────────────────────────────────────── */
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 8px;
  letter-spacing: .04em;
}
.form-control {
  width: 100%;
  padding: 12px 16px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  color: var(--text);
  font-size: 14px;
  transition: border-color var(--transition), box-shadow var(--transition);
  border-radius: var(--radius-sm);
  outline: none;
}
.form-control:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212,175,55,.12);
}
.form-control::placeholder { color: var(--text-dim); }

/* ── Alert / Flash ────────────────────────────────────────────────────────── */
.alert {
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  margin-bottom: 20px;
  border-inline-start: 3px solid;
}
.alert-success { background: rgba(76,175,80,.1); border-color: #4CAF50; color: #81C784; }
.alert-error   { background: rgba(244,67,54,.1);  border-color: #F44336; color: #EF9A9A; }
.alert-info    { background: var(--gold-dim2);     border-color: var(--gold); color: var(--gold); }

/* ── Cart / Checkout ──────────────────────────────────────────────────────── */
.cart-table {
  width: 100%;
  border-collapse: collapse;
}
.cart-table th, .cart-table td {
  padding: 16px;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
}
.cart-table th {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .1em;
  color: var(--text-dim);
  text-align: right;
}
.cart-total-box {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  padding: 28px;
}
.cart-total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-block: 10px;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
}
.cart-total-row:last-child { border: none; font-weight: 600; font-size: 16px; color: var(--gold); }

/* ── Account / Auth ───────────────────────────────────────────────────────── */
.auth-box {
  max-width: 440px;
  margin-inline: auto;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  padding: 40px;
}
.auth-box h1 {
  font-size: 22px;
  font-weight: 300;
  text-align: center;
  margin-bottom: 32px;
  color: var(--gold);
}

/* ── Pagination ───────────────────────────────────────────────────────────── */
.pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 48px;
}
.page-link {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  font-size: 14px;
  color: var(--text-muted);
  transition: border-color var(--transition), color var(--transition);
}
.page-link:hover, .page-link.active {
  border-color: var(--gold);
  color: var(--gold);
}

/* ── Contact ──────────────────────────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.contact-info-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.contact-info-icon {
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}
.contact-info-text h4 {
  font-size: 13px;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 4px;
  letter-spacing: .06em;
}
.contact-info-text p, .contact-info-text a {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ── Utilities ────────────────────────────────────────────────────────────── */
.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}
.main-content {
  padding-top: var(--header-h);
  min-height: calc(100vh - var(--header-h));
}
.divider {
  height: 1px;
  background: linear-gradient(to left, transparent, var(--border), transparent);
  border: none;
  margin: 0;
}

/* ── Scroll animations ────────────────────────────────────────────────────── */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .6s ease, transform .6s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Responsive ───────────────────────────────────────────────────────────── */
@media (max-width: 1100px) {
  .products-grid        { grid-template-columns: repeat(2, 1fr); }
  .categories-grid      { grid-template-columns: repeat(3, 1fr); }
  .about-content        { padding: 48px 40px; }
}

@media (max-width: 860px) {
  :root { --section-py: 60px; }
  .header-nav           { display: none; }
  .menu-btn             { display: flex; }
  .footer-grid          { grid-template-columns: 1fr; gap: 36px; text-align: center; }
  .footer-col-logo      { order: -1; }
  .footer-links         { align-items: center; }
  .footer-contact-list  { align-items: center; }
  .footer-contact-item  { justify-content: center; }
  .about-split          { grid-template-columns: 1fr; }
  .about-photo          { max-height: 300px; overflow: hidden; }
  .about-content        { padding: 48px 28px; border-inline-end: 1px solid var(--border); }
  .blog-grid            { grid-template-columns: repeat(2, 1fr); }
  .contact-grid         { grid-template-columns: 1fr; }
  .gallery-grid         { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  :root { --section-py: 48px; }
  .container            { padding-inline: 16px; }
  .products-grid        { grid-template-columns: 1fr; }
  .categories-grid      { grid-template-columns: repeat(2, 1fr); }
  .trust-bar-inner      { gap: 20px; }
  .blog-grid            { grid-template-columns: 1fr; }
  .gallery-grid         { grid-template-columns: repeat(2, 1fr); }
  .hero-title           { font-size: 24px; }
  .hero-cta             { flex-direction: column; }
  .hero-cta .btn        { width: 100%; }
  .auth-box             { padding: 28px 20px; }
}

@media (max-width: 390px) {
  .categories-grid      { grid-template-columns: repeat(2, 1fr); }
  .header-logo .logo-text { font-size: 16px; }
}
