:root {
  color-scheme: dark;
  --bg: #0d0b08;
  --bg-deep: #080705;
  --bg-card: #14110c;
  --bg-elev: #1a150d;
  --gold: #c9a227;
  --gold-deep: #a07c1c;
  --gold-bright: #d4af37;
  --gold-soft: #e8c96a;
  --gold-line: rgba(201, 162, 39, 0.28);
  --gold-faint: rgba(201, 162, 39, 0.08);
  --ivory: #f5efe0;
  --ink: #f5efe0;
  --muted: #a89f8d;
  --faint: #6f675a;
  --card: #14110c;
  --paper: #1a150d;
  --line: rgba(201, 162, 39, 0.22);
  --danger: #c0564d;
  --ok: #7ba05b;
  --font-display: "Cormorant Garamond", "Vazirmatn", "Times New Roman", serif;
  --font-body: "Vazirmatn", "Cormorant Garamond", "Times New Roman", serif;
  --radius: 3px;
  --header-h: 76px;
  --ease: cubic-bezier(0.22, 0.8, 0.24, 1);
  --shadow-soft: 0 18px 50px rgba(0, 0, 0, 0.55);
  --shadow-gold: 0 10px 34px rgba(201, 162, 39, 0.16);
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
[hidden] { display: none !important; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
html[lang="en"] { --font-body: "Cormorant Garamond", Georgia, "Times New Roman", serif; }
body {
  background: var(--bg);
  color: var(--ivory);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.9;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}
html[lang="en"] body { font-size: 1.08rem; line-height: 1.75; }
body.no-scroll { overflow: hidden; }
img { max-width: 100%; display: block; }
a { color: var(--gold-soft); text-decoration: none; transition: color 0.25s var(--ease); }
a:hover { color: var(--gold-bright); }
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 500; line-height: 1.35; color: var(--ivory); }
::selection { background: var(--gold); color: var(--bg-deep); }
:focus-visible { outline: 2px solid var(--gold-bright); outline-offset: 3px; border-radius: 2px; }
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: var(--bg-deep); }
::-webkit-scrollbar-thumb { background: #2b2415; border-radius: 6px; border: 2px solid var(--bg-deep); }
::-webkit-scrollbar-thumb:hover { background: var(--gold); }
.container { width: 100%; max-width: 1240px; margin-inline: auto; padding-inline: clamp(20px, 4vw, 40px); }
.section { padding-block: clamp(56px, 8vw, 110px); }
.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.eyebrow { color: var(--gold); font-size: 0.78rem; font-weight: 600; margin-bottom: 14px; display: block; }
html[lang="en"] .eyebrow { text-transform: uppercase; letter-spacing: 0.32em; }
.display { font-family: var(--font-display); font-weight: 500; font-size: clamp(2.1rem, 5.4vw, 4rem); line-height: 1.3; }
.lead { color: var(--muted); font-size: clamp(1.02rem, 1.6vw, 1.22rem); max-width: 62ch; }
.muted { color: var(--muted); }
.gold-text { color: var(--gold-soft); }
.center { text-align: center; }
.hr-gold { border: 0; height: 1px; background: var(--gold-line); margin-block: clamp(28px, 4vw, 52px); }
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: inherit; font-weight: 600; font-size: 1rem; line-height: 1.6;
  padding: 14px 34px; border-radius: var(--radius); border: 1px solid transparent;
  cursor: pointer; text-decoration: none; white-space: nowrap;
  transition: background 0.28s var(--ease), color 0.28s var(--ease), border-color 0.28s var(--ease), box-shadow 0.28s var(--ease), transform 0.28s var(--ease);
}
.btn svg { width: 18px; height: 18px; flex: none; }
.btn:active { transform: translateY(1px); }
.btn-gold { background: var(--gold); color: #0d0b08; }
.btn-gold:hover { background: var(--gold-bright); color: #0d0b08; box-shadow: var(--shadow-gold); }
.btn-outline { background: transparent; border-color: var(--gold-line); color: var(--gold-soft); }
.btn-outline:hover { border-color: var(--gold-bright); color: var(--ivory); background: var(--gold-faint); }
.btn-ghost { background: transparent; color: var(--muted); border-color: transparent; }
.btn-ghost:hover { color: var(--ivory); }
.btn-block { width: 100%; }
.btn-sm { padding: 9px 20px; font-size: 0.9rem; }
html[lang="en"] .btn { letter-spacing: 0.06em; }
.icon-btn {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; border-radius: 50%;
  background: transparent; border: 1px solid transparent; color: var(--ivory);
  cursor: pointer; transition: border-color 0.25s var(--ease), color 0.25s var(--ease), background 0.25s var(--ease);
  position: relative; flex: none;
}
.icon-btn svg { width: 22px; height: 22px; }
.icon-btn:hover { border-color: var(--gold-line); color: var(--gold-soft); background: var(--gold-faint); }
.link-btn { background: none; border: 0; color: var(--muted); font-family: inherit; font-size: 0.88rem; cursor: pointer; padding: 6px 4px; transition: color 0.25s var(--ease); }
.link-btn:hover { color: var(--danger); }
.badge {
  position: absolute; top: 2px; inset-inline-end: 0;
  min-width: 20px; height: 20px; padding-inline: 5px;
  background: var(--gold); color: #0d0b08; border-radius: 999px;
  font-size: 0.72rem; font-weight: 700; line-height: 20px; text-align: center;
}
.site-header {
  position: sticky; top: 0; z-index: 80;
  background: rgba(13, 11, 8, 0.88);
  -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--gold-line);
}
.header-inner { display: flex; align-items: center; gap: 18px; min-height: var(--header-h); position: relative; }
.brand { display: inline-flex; align-items: center; gap: 13px; color: var(--ivory); flex: none; }
.brand:hover { color: var(--ivory); }
.monogram {
  width: 46px; height: 46px; border: 1px solid var(--gold); border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 1.15rem; font-weight: 600; letter-spacing: 0.08em;
  color: var(--gold-soft); background: var(--gold-faint); flex: none;
}
.brand-text { display: flex; flex-direction: column; line-height: 1.5; }
.wordmark { font-family: var(--font-display); font-size: 1.28rem; font-weight: 600; letter-spacing: 0.02em; }
html[lang="fa"] .wordmark { font-family: var(--font-body); font-weight: 700; font-size: 1.12rem; }
.tagline { font-size: 0.72rem; color: var(--muted); }
html[lang="en"] .tagline { text-transform: uppercase; letter-spacing: 0.24em; }
.site-nav { display: flex; align-items: center; gap: clamp(14px, 2vw, 30px); margin-inline-start: auto; }
.site-nav a { color: var(--ivory); font-size: 0.95rem; padding-block: 8px; position: relative; }
.site-nav a::after {
  content: ""; position: absolute; inset-inline: 0; bottom: 2px; height: 1px;
  background: var(--gold); transform: scaleX(0); transition: transform 0.3s var(--ease);
}
.site-nav a:hover { color: var(--gold-soft); }
.site-nav a:hover::after { transform: scaleX(1); }
html[lang="en"] .site-nav a { text-transform: uppercase; letter-spacing: 0.14em; font-size: 0.8rem; }
.header-actions { display: flex; align-items: center; gap: 6px; margin-inline-start: 8px; }
.lang-toggle {
  min-width: 46px; height: 44px; padding-inline: 10px;
  background: transparent; border: 1px solid var(--gold-line); border-radius: 999px;
  color: var(--gold-soft); font-family: var(--font-display); font-weight: 600; font-size: 0.95rem; letter-spacing: 0.06em;
  cursor: pointer; transition: border-color 0.25s var(--ease), background 0.25s var(--ease), color 0.25s var(--ease);
}
.lang-toggle:hover { border-color: var(--gold-bright); background: var(--gold-faint); color: var(--ivory); }
.menu-btn { display: none; }
.ticker { background: var(--bg-deep); border-bottom: 1px solid var(--gold-line); overflow: hidden; }
.ticker-viewport { direction: ltr; overflow: hidden; }
.ticker-track { display: flex; width: max-content; animation: ticker-scroll 55s linear infinite; will-change: transform; }
.ticker:hover .ticker-track, .ticker:focus-within .ticker-track { animation-play-state: paused; }
.ticker-half { display: inline-flex; align-items: center; }
.ticker-item { display: inline-flex; align-items: center; gap: 10px; padding: 11px 30px; white-space: nowrap; }
.ticker-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); flex: none; opacity: 0.85; }
.ticker-dot.is-live { background: var(--ok); box-shadow: 0 0 8px rgba(123, 160, 91, 0.9); }
.ticker-label { color: var(--muted); font-size: 0.82rem; }
.ticker-value { color: var(--gold-soft); font-family: var(--font-display); font-weight: 600; font-size: 0.98rem; letter-spacing: 0.02em; }
@keyframes ticker-scroll { to { transform: translateX(-50%); } }
.site-footer { background: var(--bg-deep); border-top: 1px solid var(--gold-line); padding-top: clamp(48px, 6vw, 80px); margin-top: auto; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: clamp(28px, 5vw, 64px); padding-bottom: clamp(32px, 4vw, 52px); }
.footer-blurb { color: var(--muted); font-size: 0.95rem; margin-top: 18px; max-width: 38ch; }
.footer-col h3 { font-size: 1.05rem; color: var(--gold-soft); margin-bottom: 18px; font-weight: 600; }
html[lang="en"] .footer-col h3 { text-transform: uppercase; letter-spacing: 0.2em; font-size: 0.85rem; }
.footer-col a { display: block; color: var(--muted); padding-block: 7px; font-size: 0.95rem; width: fit-content; }
.footer-col a:hover { color: var(--gold-soft); }
.trust-row {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
  border-top: 1px solid var(--gold-line); border-bottom: 1px solid var(--gold-line);
  padding-block: 22px;
}
.trust-item { display: flex; align-items: center; justify-content: center; gap: 10px; color: var(--muted); font-size: 0.88rem; text-align: center; }
.trust-item svg { width: 24px; height: 24px; color: var(--gold); flex: none; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 14px; flex-wrap: wrap; padding-block: 24px; }
.footer-bottom p { color: var(--faint); font-size: 0.82rem; margin: 0; }
.footer-bottom .lang-note { color: var(--gold); opacity: 0.75; }
.cart-overlay { position: fixed; inset: 0; background: rgba(0, 0, 0, 0.62); -webkit-backdrop-filter: blur(3px); backdrop-filter: blur(3px); z-index: 90; opacity: 0; transition: opacity 0.32s var(--ease); }
.cart-overlay.show { opacity: 1; }
.cart-drawer {
  position: fixed; top: 0; bottom: 0; width: min(430px, 94vw); z-index: 100;
  background: #100d09; border-inline-start: 1px solid var(--gold-line);
  display: flex; flex-direction: column; box-shadow: var(--shadow-soft);
  transition: transform 0.42s var(--ease);
}
html[dir="ltr"] .cart-drawer { right: 0; transform: translateX(106%); }
html[dir="rtl"] .cart-drawer { left: 0; transform: translateX(-106%); }
html[dir] .cart-drawer.open { transform: none; }
.cart-head { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 22px 24px; border-bottom: 1px solid var(--gold-line); }
.cart-head h2 { font-size: 1.4rem; }
.cart-head-actions { display: flex; align-items: center; gap: 10px; }
.cart-items { flex: 1; overflow-y: auto; padding: 10px 24px; }
.cart-empty { text-align: center; padding: 56px 10px; display: flex; flex-direction: column; align-items: center; gap: 14px; }
.cart-empty-icon { width: 76px; height: 76px; border: 1px solid var(--gold-line); border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; color: var(--gold); background: var(--gold-faint); }
.cart-empty-icon svg { width: 34px; height: 34px; }
.cart-empty h3 { font-size: 1.3rem; }
.cart-empty p { color: var(--muted); font-size: 0.92rem; max-width: 30ch; }
.cart-row { display: flex; gap: 14px; padding-block: 18px; border-bottom: 1px solid rgba(201, 162, 39, 0.12); align-items: flex-start; }
.cart-thumb { width: 64px; height: 64px; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--gold-line); flex: none; background: var(--bg-card); }
.cart-thumb img { width: 100%; height: 100%; object-fit: cover; }
.cart-row-main { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 8px; }
.cart-row-name { font-weight: 600; font-size: 0.98rem; line-height: 1.6; }
.cart-row-unit { color: var(--muted); font-size: 0.85rem; }
.cart-qty { display: inline-flex; align-items: center; gap: 4px; border: 1px solid var(--gold-line); border-radius: 999px; padding: 3px; width: fit-content; }
.qty-btn { width: 34px; height: 34px; border-radius: 50%; border: 0; background: transparent; color: var(--gold-soft); cursor: pointer; display: inline-flex; align-items: center; justify-content: center; transition: background 0.25s var(--ease); }
.qty-btn svg { width: 14px; height: 14px; }
.qty-btn:hover { background: var(--gold-faint); }
.qty-num { min-width: 30px; text-align: center; font-weight: 600; font-size: 0.92rem; }
.cart-row-side { display: flex; flex-direction: column; align-items: flex-end; gap: 10px; }
.cart-row-total { color: var(--gold-soft); font-family: var(--font-display); font-weight: 600; font-size: 1.02rem; white-space: nowrap; }
.cart-row-remove { background: none; border: 0; color: var(--faint); cursor: pointer; width: 30px; height: 30px; display: inline-flex; align-items: center; justify-content: center; border-radius: 50%; transition: color 0.25s var(--ease), background 0.25s var(--ease); }
.cart-row-remove svg { width: 15px; height: 15px; }
.cart-row-remove:hover { color: var(--danger); background: rgba(192, 86, 77, 0.1); }
.cart-foot { border-top: 1px solid var(--gold-line); padding: 22px 24px 26px; display: flex; flex-direction: column; gap: 14px; background: var(--bg-deep); }
.cart-subtotal { display: flex; align-items: center; justify-content: space-between; font-size: 1rem; }
.cart-subtotal strong { font-family: var(--font-display); color: var(--gold-soft); font-size: 1.35rem; font-weight: 600; }
.cart-note { color: var(--faint); font-size: 0.8rem; line-height: 1.8; }
.toast {
  position: fixed; bottom: 30px; left: 50%; z-index: 200;
  transform: translate(-50%, 14px); opacity: 0;
  background: #171208; border: 1px solid rgba(201, 162, 39, 0.5); color: var(--ivory);
  padding: 13px 26px; border-radius: 999px; font-size: 0.92rem; white-space: nowrap; max-width: 92vw;
  overflow: hidden; text-overflow: ellipsis; box-shadow: var(--shadow-soft);
  transition: opacity 0.32s var(--ease), transform 0.32s var(--ease);
  pointer-events: none;
}
.toast.show { opacity: 1; transform: translate(-50%, 0); }
.card { background: var(--bg-card); border: 1px solid rgba(201, 162, 39, 0.16); border-radius: 4px; overflow: hidden; transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease), transform 0.3s var(--ease); }
.card:hover { border-color: var(--gold-line); box-shadow: var(--shadow-soft); }
.price { color: var(--gold-soft); font-family: var(--font-display); font-weight: 600; font-size: 1.25rem; }
.price-old { color: var(--faint); text-decoration: line-through; font-size: 0.9rem; margin-inline-start: 8px; }
.field { display: flex; flex-direction: column; gap: 8px; margin-bottom: 18px; }
.field label { color: var(--muted); font-size: 0.9rem; }
.input, select.input, textarea.input {
  width: 100%; background: var(--bg-card); border: 1px solid rgba(201, 162, 39, 0.25);
  color: var(--ivory); padding: 13px 16px; border-radius: var(--radius);
  font-family: inherit; font-size: 1rem; line-height: 1.7;
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.input::placeholder { color: var(--faint); }
.input:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.14); }
select.input { appearance: none; -webkit-appearance: none; cursor: pointer; }
.table-wrap { overflow-x: auto; border: 1px solid var(--gold-line); border-radius: 4px; background: var(--bg-card); }
table.table { width: 100%; border-collapse: collapse; font-size: 0.95rem; }
.table th, .table td { padding: 14px 18px; text-align: start; border-bottom: 1px solid rgba(201, 162, 39, 0.12); }
.table th { color: var(--gold-soft); font-weight: 600; font-size: 0.88rem; background: rgba(201, 162, 39, 0.05); }
html[lang="en"] .table th { text-transform: uppercase; letter-spacing: 0.12em; }
.table tr:last-child td { border-bottom: 0; }
.table td.num, .table th.num { font-family: var(--font-display); }
.grid { display: grid; gap: clamp(18px, 3vw, 32px); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.note { border: 1px solid var(--gold-line); background: var(--gold-faint); border-radius: var(--radius); padding: 16px 20px; color: var(--muted); font-size: 0.92rem; }
.flip-rtl { display: inline-flex; }
html[dir="rtl"] .flip-rtl svg, html[dir="rtl"] svg.flip-rtl { transform: scaleX(-1); }
@media (max-width: 1020px) {
  .site-nav { gap: 16px; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .menu-btn { display: inline-flex; }
  .site-nav {
    position: absolute; top: calc(100% + 1px); inset-inline: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: rgba(13, 11, 8, 0.98); border-bottom: 1px solid var(--gold-line);
    padding: 10px clamp(20px, 4vw, 40px) 22px;
    opacity: 0; transform: translateY(-10px); pointer-events: none;
    transition: opacity 0.3s var(--ease), transform 0.3s var(--ease);
  }
  .site-header.nav-open .site-nav { opacity: 1; transform: none; pointer-events: auto; }
  .site-nav a { padding-block: 13px; border-bottom: 1px solid rgba(201, 162, 39, 0.1); font-size: 1.02rem; }
  .site-nav a:last-child { border-bottom: 0; }
  .site-nav a::after { display: none; }
  .header-actions { margin-inline-start: auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .trust-row { grid-template-columns: repeat(2, 1fr); row-gap: 20px; }
  .trust-item { justify-content: flex-start; }
}
@media (max-width: 600px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .trustStrip { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .tagline { display: none; }
  .heroCtas .btnSolid, .heroCtas .btnGhost { flex: 1 1 100%; }
  .btn { width: 100%; }
  .header-actions .btn { width: auto; }
  .cart-foot .btn { width: 100%; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  .ticker-track { animation: none; }
  .ticker-viewport { overflow-x: auto; }
}

.pageHead { padding: 2.5rem 0 1rem; }
.pageHead h1 { font-size: 2rem; font-weight: 800; margin-bottom: .5rem; }
.pageHead p { color: var(--muted); font-size: 1.05rem; max-width: 60ch; }
.section { margin: 3rem 0; }
.sectionHead { margin-bottom: 1.5rem; }
.sectionHead h2 { font-size: 1.5rem; font-weight: 800; margin-bottom: .35rem; }
.sectionHead p { color: var(--muted); }
.prose { max-width: 68ch; line-height: 2; }
.prose p { margin-bottom: 1rem; }
.small { font-size: .85rem; }
.mono { font-family: ui-monospace, "SF Mono", Menlo, Consolas, monospace; direction: ltr; unicode-bidi: embed; }
.centerRow { display: flex; gap: .75rem; justify-content: center; align-items: center; margin-top: 1.75rem; flex-wrap: wrap; }
.crumbs { display: flex; gap: .5rem; align-items: center; font-size: .9rem; color: var(--muted); margin: 1.5rem 0 0; flex-wrap: wrap; }
.crumbs a { color: var(--gold-deep); }
.emptyState { text-align: center; padding: 4rem 1rem; color: var(--muted); grid-column: 1 / -1; }
.emptyState h2 { color: var(--ink); margin-bottom: .5rem; }
.pageHero { margin: 1.5rem 0 0; border-radius: 16px; overflow: hidden; border: 1px solid rgba(201,162,39,.35); box-shadow: 0 24px 60px rgba(0,0,0,.5); }
.pageHero img { width: 100%; height: clamp(180px, 30vw, 320px); object-fit: cover; display: block; }
.testiCard figcaption { display: flex; align-items: center; gap: .8rem; }
.testiAvatar { width: 46px; height: 46px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; background: radial-gradient(circle at 35% 30%, #f3d98b, #b98a1f); color: #241a06; flex: 0 0 auto; box-shadow: 0 6px 16px rgba(160,118,18,.35); }
.testiAvatar svg { width: 24px; height: 24px; }
.testiWho { display: flex; flex-direction: column; gap: .15rem; }

.btnSolid, .btnGhost { display: inline-flex; align-items: center; justify-content: center; gap: .5rem; padding: .8rem 1.8rem; border-radius: 999px; font-weight: 700; font-size: 1rem; cursor: pointer; border: 1px solid transparent; text-align: center; transition: transform .15s ease, box-shadow .2s ease; }
.btnSolid { background: linear-gradient(135deg, var(--gold), var(--gold-deep)); color: #241a06; box-shadow: 0 8px 22px rgba(160, 118, 18, .28); }
.btnSolid:hover { transform: translateY(-2px); color: #241a06; }
.btnGhost { background: transparent; color: var(--gold-deep); border-color: var(--gold); }
.btnGhost:hover { background: rgba(201, 162, 39, .1); color: var(--gold-deep); }
.btnBlock { display: flex; width: 100%; }

.hero { background: radial-gradient(1200px 420px at 80% -10%, rgba(201,162,39,.16), transparent 60%), linear-gradient(180deg, #14110c, #0d0b08); border-bottom: 1px solid var(--line); }
.heroInner { display: grid; grid-template-columns: 1.15fr .85fr; gap: 2rem; align-items: center; padding: 4rem 0 3.5rem; }
.heroCopy .eyebrow { color: var(--gold); font-weight: 700; font-size: .9rem; letter-spacing: .02em; margin-bottom: .75rem; }
.heroTitle { font-size: clamp(1.9rem, 4.2vw, 3.1rem); font-weight: 800; line-height: 1.35; margin-bottom: 1rem; }
.heroSub { color: var(--muted); font-size: 1.08rem; line-height: 1.9; max-width: 46ch; margin-bottom: 1.75rem; }
.heroCtas { display: flex; gap: .75rem; flex-wrap: wrap; }
.heroArt { width: 100%; max-width: 480px; justify-self: center; }
.heroArt img { width: 100%; aspect-ratio: 4/3.2; object-fit: cover; display: block; border-radius: 16px; border: 1px solid rgba(201,162,39,.4); box-shadow: 0 30px 80px rgba(0,0,0,.55), 0 0 60px rgba(201,162,39,.12); }
.trustBand { position: relative; background: url('/assets/img/trust-bg.jpg') center/cover no-repeat; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.trustBand::before { content: ""; position: absolute; inset: 0; background: rgba(9,7,4,.84); }
.trustBand .container { position: relative; z-index: 1; }
.trustItem h3 { color: #f3e6c4; }
.trustItem p { color: #cfc2a0; }
.trustStrip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; padding: 2.25rem 0; }
.trustItem { text-align: center; padding: 0 .5rem; }
.trustIcon { color: var(--gold-deep); display: inline-block; margin-bottom: .6rem; }
.trustItem h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: .35rem; }
.trustItem p { color: var(--muted); font-size: .95rem; line-height: 1.8; }

.catGrid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.catCard { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 0; display: flex; flex-direction: column; align-items: stretch; gap: 0; text-align: center; overflow: hidden; transition: transform .18s ease, box-shadow .2s ease; }
.catCard:hover { transform: translateY(-4px); box-shadow: 0 14px 30px rgba(160,118,18,.12); }
.catImg { display: block; aspect-ratio: 4/3; overflow: hidden; }
.catImg img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .5s ease; }
.catCard:hover .catImg img { transform: scale(1.07); }
.catName { font-weight: 700; color: var(--ink); padding: .9rem 1rem 1.05rem; }

.prodGrid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }
.pCard { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; display: flex; flex-direction: column; transition: transform .18s ease, box-shadow .2s ease; }
.pCard:hover { transform: translateY(-4px); box-shadow: 0 16px 34px rgba(160,118,18,.14); }
.pLink { display: block; }
.pImg { aspect-ratio: 1 / 1; background: linear-gradient(135deg, #f6efdb, #efe3c2); display: flex; align-items: center; justify-content: center; overflow: hidden; }
.pImg img { width: 100%; height: 100%; object-fit: cover; display: block; }
.pImgFallback { color: var(--gold-deep); opacity: .7; }
.pBody { padding: 1rem 1.1rem 1.15rem; display: flex; flex-direction: column; gap: .4rem; flex: 1; }
.pName { font-size: 1rem; font-weight: 700; line-height: 1.7; }
.pName a { color: var(--ink); }
.pMeta { color: var(--muted); font-size: .85rem; }
.pPrice { font-weight: 800; font-size: 1.05rem; color: var(--gold-soft); margin-top: auto; padding-top: .5rem; }
.addBtn { display: inline-flex; align-items: center; justify-content: center; gap: .5rem; width: 100%; padding: .7rem 1rem; border-radius: 12px; border: 1px solid var(--gold); background: linear-gradient(135deg, var(--gold), var(--gold-deep)); color: #fff; font-weight: 700; cursor: pointer; margin-top: .6rem; transition: transform .15s ease; }
.addBtn:hover { transform: translateY(-1px); }
.freshTag { display: inline-block; font-size: .75rem; font-weight: 700; color: var(--gold-deep); background: rgba(201,162,39,.14); border: 1px solid rgba(201,162,39,.35); border-radius: 999px; padding: .1rem .6rem; margin-inline-start: .4rem; vertical-align: middle; }
.freshLine { margin-top: .75rem; }

.filters { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.25rem; margin-bottom: 1.75rem; }
.filterRow { display: flex; flex-wrap: wrap; gap: 1rem; align-items: end; }
.filterField { display: flex; flex-direction: column; gap: .4rem; min-width: 160px; flex: 1 1 160px; }
.filterField label { font-size: .9rem; font-weight: 600; }
.filterField select, .filterField input { padding: .7rem .9rem; border: 1px solid var(--line); border-radius: 10px; background: var(--paper); color: var(--ivory); font: inherit; }
.resultCount { color: var(--muted); font-size: .95rem; margin-bottom: 1rem; }

.prodDetail { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; margin-top: 1.5rem; }
.prodGallery { position: sticky; top: 90px; align-self: start; }
.prodMainImg { background: linear-gradient(135deg, #f6efdb, #efe3c2); border: 1px solid var(--line); border-radius: var(--radius); aspect-ratio: 1 / 1; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.prodMainImg img { width: 100%; height: 100%; object-fit: cover; }
.prodInfo { display: flex; flex-direction: column; gap: 1rem; }
.prodTitle { font-size: 1.7rem; font-weight: 800; line-height: 1.6; }
.prodDesc { color: var(--muted); line-height: 2; }
.prodSpecs { display: grid; grid-template-columns: repeat(2, 1fr); gap: .6rem 1rem; background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 1rem 1.25rem; font-size: .95rem; }
.prodSpecs dt { color: var(--muted); }
.prodSpecs dd { font-weight: 700; }
.breakdown { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: .5rem 1.25rem; }
.blRow { display: flex; justify-content: space-between; align-items: center; gap: .5rem 1rem; padding: .7rem 0; border-bottom: 1px dashed var(--line); font-size: .95rem; flex-wrap: wrap; }
.blRow:last-child { border-bottom: 0; }
.blRow strong { font-weight: 700; white-space: nowrap; }
.blTotal { font-size: 1.15rem; font-weight: 800; color: var(--gold-soft); }
.assayNote { font-size: .9rem; color: var(--muted); background: rgba(201,162,39,.08); border: 1px dashed rgba(201,162,39,.4); border-radius: 10px; padding: .75rem 1rem; line-height: 1.9; }
.buyRow { display: flex; gap: .75rem; align-items: stretch; flex-wrap: wrap; }
.buyRow .btnSolid, .buyRow .btnGhost { flex: 1 1 200px; }
.qtySel { display: inline-flex; align-items: center; gap: 2px; border: 1px solid var(--line); border-radius: 999px; padding: 4px; background: var(--paper); }
.qtySel button { width: 38px; height: 38px; border-radius: 50%; border: 0; background: transparent; color: var(--gold-soft); cursor: pointer; display: inline-flex; align-items: center; justify-content: center; transition: background 0.25s var(--ease); }
.qtySel button:hover { background: var(--gold-faint); }
.qtySel button svg { width: 16px; height: 16px; }
.qtySel span { min-width: 36px; text-align: center; font-weight: 700; font-size: 1rem; }
.buyRow .addBtn { flex: 1 1 220px; margin-top: 0; }

.cartLines { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 1.5rem; }
.cartLine { display: grid; grid-template-columns: 88px 1fr auto; grid-template-areas: "img info qty" "img info total" "img info remove"; gap: .25rem 1rem; background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 1rem; align-items: center; }
.cLink { grid-area: img; }
.cImg { width: 88px; height: 88px; border-radius: 10px; background: linear-gradient(135deg, #f6efdb, #efe3c2); display: inline-flex; align-items: center; justify-content: center; overflow: hidden; }
.cImg img { width: 100%; height: 100%; object-fit: cover; }
.cImgFallback { color: var(--gold-deep); }
.cInfo { grid-area: info; min-width: 0; }
.cInfo h3 { font-size: 1rem; font-weight: 700; margin-bottom: .3rem; line-height: 1.7; }
.cInfo h3 a { color: var(--ink); }
.cUnit { color: var(--muted); font-size: .9rem; }
.cQty { grid-area: qty; display: inline-flex; align-items: center; gap: .6rem; border: 1px solid var(--line); border-radius: 999px; padding: .3rem .5rem; background: var(--paper); justify-self: end; }
.cQty button { width: 34px; height: 34px; border-radius: 50%; border: 1px solid var(--line); background: var(--paper); color: var(--gold-soft); cursor: pointer; display: inline-flex; align-items: center; justify-content: center; }
.cQty span { min-width: 1.6em; text-align: center; font-weight: 700; }
.cTotal { grid-area: total; font-weight: 800; color: var(--gold-soft); justify-self: end; }
.cRemove { grid-area: remove; justify-self: end; background: none; border: 0; color: var(--muted); cursor: pointer; display: inline-flex; align-items: center; gap: .3rem; font-size: .85rem; padding: .25rem; }
.cRemove:hover { color: #b3402e; }
.cartSummary { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.5rem; max-width: 480px; margin-inline-start: auto; display: flex; flex-direction: column; gap: .75rem; }

.checkoutGrid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 2rem; align-items: start; margin-top: 1.5rem; }
.coForm { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.75rem; }
.coForm h2 { font-size: 1.25rem; font-weight: 800; margin-bottom: 1.25rem; }
.coSummary { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.5rem; position: sticky; top: 90px; }
.coSummary h2 { font-size: 1.2rem; font-weight: 800; margin-bottom: 1rem; }
.fieldRow { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.fieldErr { color: #b3402e; font-size: .85rem; margin-top: .3rem; }
.payMethods { display: flex; flex-direction: column; gap: .75rem; margin: 1rem 0 1.5rem; }
.payCard { border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; background: var(--card); }
.payCard > label { display: flex; gap: .75rem; align-items: flex-start; padding: 1rem 1.15rem; cursor: pointer; }
.payCard input[type="radio"] { margin-top: .3rem; accent-color: var(--gold-deep); width: 18px; height: 18px; flex-shrink: 0; }
.payBody h3 { font-size: 1rem; font-weight: 700; margin-bottom: .25rem; }
.payDesc { color: var(--muted); font-size: .9rem; line-height: 1.8; }
.ownerBox { margin-top: 1.5rem; border: 1px dashed #b3402e; border-radius: var(--radius); padding: .9rem 1.1rem; background: #fdf6f4; font-size: .9rem; }
.ownerBox summary { cursor: pointer; font-weight: 700; color: #b3402e; }
.ownerBody { margin-top: .75rem; color: var(--muted); line-height: 1.9; }
.sumLine { display: flex; justify-content: space-between; align-items: center; gap: 1rem; padding: .8rem 0; border-bottom: 1px dashed var(--line); font-size: .95rem; }
.sumLine:last-of-type { border-bottom: 0; }
.sumRow { display: flex; justify-content: space-between; align-items: center; gap: 1rem; padding: .5rem 0; font-size: .95rem; }
.sumTotal { font-size: 1.2rem; font-weight: 800; color: var(--gold-soft); border-top: 1px solid var(--line); padding-top: 1rem; margin-top: .5rem; }
.confirmCard { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 3rem 2rem; text-align: center; max-width: 560px; margin: 3rem auto; }
.confirmIcon { color: var(--gold-deep); display: inline-block; margin-bottom: 1rem; }
.confirmCard h1 { font-size: 1.5rem; font-weight: 800; margin-bottom: .75rem; }
.confirmCard p { color: var(--muted); line-height: 2; margin-bottom: .5rem; }
.gwRow { display: flex; gap: .75rem; align-items: center; justify-content: center; flex-wrap: wrap; margin-top: 1.25rem; }
.licPending { color: var(--gold-deep); font-weight: 700; font-size: .9rem; }
.spinner { display: inline-block; width: 16px; height: 16px; border: 2px solid rgba(255,255,255,.4); border-top-color: #fff; border-radius: 50%; animation: gmspin .7s linear infinite; vertical-align: middle; }
@keyframes gmspin { to { transform: rotate(360deg); } }

.tableTitle { font-size: 1.2rem; font-weight: 800; margin-bottom: 1rem; }
.priceTable { width: 100%; border-collapse: collapse; background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; font-size: .98rem; }
.priceTable th, .priceTable td { padding: .9rem 1.1rem; text-align: start; border-bottom: 1px solid var(--line); }
.priceTable thead th { background: rgba(201,162,39,.1); font-weight: 800; color: var(--gold-deep); }
.priceTable tbody tr:last-child td { border-bottom: 0; }
.priceTable tbody tr:nth-child(even) td { background: rgba(201,162,39,.04); }
.staleBanner { background: #fdf3e3; border: 1px solid #e8c56a; color: #7a5410; border-radius: var(--radius); padding: 1rem 1.25rem; margin-bottom: 1.5rem; line-height: 1.9; }

.watchGrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.watchCard { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.5rem; }
.watchCard h3 { font-size: 1.05rem; font-weight: 800; margin-bottom: .6rem; }
.watchCard p { color: var(--muted); font-size: .95rem; line-height: 1.95; }
.teaserGrid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
.teaserCard { position: relative; overflow: hidden; background: url('/assets/img/teaser-calc.jpg') center/cover no-repeat; border: 1px solid rgba(201,162,39,.4); border-radius: var(--radius); padding: 2.25rem 1.75rem; text-align: center; }
.teaserCard.gold { background-image: url('/assets/img/teaser-buyback.jpg'); }
.teaserCard::before { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(8,6,3,.45), rgba(8,6,3,.86)); }
.teaserCard > * { position: relative; z-index: 1; }
.teaserCard h2 { color: #f7ecd0; font-size: 1.35rem; font-weight: 800; margin-bottom: .6rem; }
.teaserCard p { color: #e3d5b3; font-size: .95rem; line-height: 1.9; margin-bottom: 1.25rem; }
.testiGrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.testiCard { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.5rem; }
.testiCard blockquote { line-height: 2; margin-bottom: 1rem; }
.testiName { font-weight: 800; }
.testiCity { color: var(--muted); font-size: .85rem; }
.stepsGrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; counter-reset: gmstep; }
.stepCard { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.5rem; counter-increment: gmstep; position: relative; }
.stepNum::before { content: counter(gmstep, decimal); display: inline-flex; align-items: center; justify-content: center; width: 40px; height: 40px; border-radius: 50%; background: linear-gradient(135deg, var(--gold), var(--gold-deep)); color: #fff; font-weight: 800; font-size: 1.1rem; margin-bottom: .75rem; }
.stepCard h3 { font-size: 1.05rem; font-weight: 800; margin-bottom: .5rem; }
.stepCard p { color: var(--muted); font-size: .95rem; line-height: 1.95; }
.infoCard { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.75rem; }
.infoCard h3 { font-size: 1.1rem; font-weight: 800; margin-bottom: .6rem; }
.infoCard p, .infoCard li { color: var(--muted); line-height: 2; }
.infoCard ul { padding-inline-start: 1.25rem; }
.licGrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.licCard { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.75rem; text-align: center; }
.licIcon { color: var(--gold-deep); display: inline-block; margin-bottom: .75rem; }
.licCard h2 { font-size: 1.15rem; font-weight: 800; margin-bottom: .6rem; }
.licCard p { color: var(--muted); font-size: .95rem; line-height: 1.95; }
.contactGrid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 2rem; align-items: start; margin-top: 1.5rem; }
.contactInfo { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.75rem; display: flex; flex-direction: column; gap: 1rem; }
.contactInfo h2 { font-size: 1.2rem; font-weight: 800; }
.contactInfo p { color: var(--muted); line-height: 2; }
.faqList { display: flex; flex-direction: column; gap: .75rem; max-width: 800px; }
.faqItem { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.1rem 1.35rem; }
.faqItem summary { font-weight: 800; cursor: pointer; font-size: 1.02rem; }
.faqItem summary::marker { color: var(--gold-deep); }
.faqItem p { color: var(--muted); line-height: 2; margin-top: .75rem; }
.promiseBanner { background: linear-gradient(135deg, rgba(201,162,39,.14), rgba(201,162,39,.05)); border: 1px solid rgba(201,162,39,.35); border-radius: var(--radius); padding: 2.5rem 2rem; text-align: center; margin: 3rem 0; }
.promiseBanner h2 { font-size: 1.4rem; font-weight: 800; margin-bottom: .6rem; }
.promiseBanner p { color: var(--muted); max-width: 56ch; margin: 0 auto; line-height: 2; }

.calcGrid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; align-items: start; margin-top: 1.5rem; }
.calcInputs, .calcResult { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.75rem; }
.calcInputs h2, .calcResult h2 { font-size: 1.2rem; font-weight: 800; margin-bottom: 1.25rem; }
.calcInputs .field { margin-bottom: 1rem; }

@media (max-width: 1100px) {
  .prodGrid { grid-template-columns: repeat(3, 1fr); }
  .catGrid { grid-template-columns: repeat(4, 1fr); }
  .watchGrid, .trustStrip, .testiGrid, .stepsGrid, .licGrid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .heroInner { grid-template-columns: 1fr; padding: 2.5rem 0; }
  .heroArt { display: block; order: -1; max-width: 100%; }
  .heroArt img { aspect-ratio: 16/9; }
  .trustStrip { grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
  .prodDetail, .checkoutGrid, .calcGrid, .contactGrid { grid-template-columns: 1fr; }
  .prodGallery { position: static; }
  .coSummary { position: static; }
}
@media (max-width: 760px) {
  .prodGrid { grid-template-columns: repeat(2, 1fr); gap: .9rem; }
  .pBody { padding: .8rem .85rem 1rem; }
  .pName { font-size: .92rem; }
  .catGrid { grid-template-columns: repeat(2, 1fr); }
  .watchGrid, .teaserGrid, .testiGrid, .stepsGrid, .licGrid { grid-template-columns: 1fr; }
  .fieldRow { grid-template-columns: 1fr; }
  .cartLine { grid-template-columns: 72px 1fr; grid-template-areas: "img info" "img qty" "total total" "remove remove"; }
  .cImg { width: 72px; height: 72px; }
  .cQty { justify-self: start; }
  .cTotal { justify-self: start; }
  .cRemove { justify-self: start; }
  .pageHead h1 { font-size: 1.6rem; }
  .section { margin: 2rem 0; }
  .promiseBanner { padding: 1.75rem 1.25rem; }
  .centerRow { flex-direction: column; align-items: stretch; }
  .centerRow .btnSolid, .centerRow .btnGhost { width: 100%; }
  .coForm, .coSummary, .calcInputs, .calcResult, .contactInfo { padding: 1.25rem; }
}
@media (max-width: 420px) {
  .container { padding: 0 14px; }
  .header-inner { gap: 10px; }
  .site-header .brand { gap: 9px; min-width: 0; flex: 0 1 auto; }
  .site-header .brand-text { min-width: 0; }
  .site-header .wordmark { font-size: 1rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
  html[lang="fa"] .site-header .wordmark { font-size: 1rem; }
  .site-header .monogram { width: 40px; height: 40px; font-size: 1rem; }
  .lang-toggle { min-width: 40px; padding-inline: 8px; }
  .prodGrid { gap: .7rem; }
  .pPrice { font-size: .95rem; }
  .addBtn { padding: .65rem .5rem; font-size: .88rem; }
  .cart-drawer { width: 92vw; }
  .priceTable th, .priceTable td { padding: .7rem .6rem; font-size: .88rem; }
  .prodSpecs { grid-template-columns: 1fr; }
}
@media (max-width: 360px) {
  .site-header .monogram { display: none; }
}
