/* ============================================================
   pakhshshayeste — Premium RTL CSS
   Dark luxury theme for mobile accessories e-commerce
   Direction: RTL (Farsi/Persian)
   ============================================================ */

/* ── FONT FACES ───────────────────────────────────────────── */
@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-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-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-Bold.woff2?v=2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* ── DESIGN TOKENS ────────────────────────────────────────── */
:root {
  --bg:           #0E0E0E;
  --surface:      #161616;
  --surface2:     #1E1E1E;
  --gold:         #C8A85A;
  --gold-light:   #E0C87A;
  --gold-rgb:     200, 168, 90;
  --text:         #F5F5F5;
  --text-muted:   #A0A0A0;
  --text-dim:     #666666;
  --border:       rgba(200, 168, 90, 0.15);
  --danger:       #E05555;
  --r-sm:         8px;
  --r-md:         14px;
  --r-lg:         22px;

  /* Shadows */
  --shadow-card:
    0 1px 2px rgba(0, 0, 0, 0.40),
    0 8px 24px rgba(0, 0, 0, 0.32),
    0 24px 64px rgba(0, 0, 0, 0.20);
  --shadow-gold:
    0 0 0 1px rgba(var(--gold-rgb), 0.12),
    0 8px 32px rgba(var(--gold-rgb), 0.14),
    0 24px 64px rgba(var(--gold-rgb), 0.08);
  --shadow-gold-sm:
    0 0 0 1px rgba(var(--gold-rgb), 0.18),
    0 4px 16px rgba(var(--gold-rgb), 0.16);

  /* Transitions */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --trans: 0.28s var(--ease);
}

/* ── RESET & BASE ─────────────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  direction: rtl;
  font-family: 'Vazirmatn', system-ui, sans-serif;
  font-weight: 400;
  font-size: 1rem;
  line-height: 2;
  background-color: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* Persian line-height for headings */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Vazirmatn', sans-serif;
  font-weight: 700;
  line-height: 1.45;
  color: var(--text);
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--trans);
}

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

ul, ol {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

input, textarea, select {
  font-family: inherit;
  direction: rtl;
}

svg {
  display: inline-block;
  vertical-align: middle;
  flex-shrink: 0;
}

/* Custom scrollbar */
::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: var(--surface); }
::-webkit-scrollbar-thumb {
  background: rgba(var(--gold-rgb), 0.35);
  border-radius: 99px;
}
::-webkit-scrollbar-thumb:hover { background: rgba(var(--gold-rgb), 0.6); }

/* Custom selection */
::selection {
  background: rgba(var(--gold-rgb), 0.28);
  color: var(--text);
}

/* Focus visible ring */
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: var(--r-sm);
}

/* ── LAYOUT UTILITIES ─────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: clamp(16px, 4vw, 48px);
}

.section-pad {
  padding-block: clamp(56px, 9vw, 100px);
}

.section-header {
  text-align: center;
  margin-bottom: clamp(36px, 5vw, 56px);
}

.section-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0;
  text-transform: uppercase;
  padding: 5px 14px;
  border: 1px solid rgba(var(--gold-rgb), 0.3);
  border-radius: 99px;
  margin-bottom: 14px;
  background: rgba(var(--gold-rgb), 0.06);
}

.section-title {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 700;
  color: var(--text);
  line-height: 1.45;
}

.page-2col {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 40px;
  align-items: start;
}

/* Utility classes */
.text-gold   { color: var(--gold); }
.text-center { text-align: center; }
.mt-40       { margin-top: 40px; }
.gold        { color: var(--gold); }

/* ── BUTTONS ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 28px;
  font-family: 'Vazirmatn', sans-serif;
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 1.3;
  border-radius: var(--r-md);
  border: 1.5px solid transparent;
  transition:
    background var(--trans),
    color var(--trans),
    border-color var(--trans),
    box-shadow var(--trans),
    transform var(--trans);
  cursor: pointer;
  white-space: nowrap;
  text-decoration: none;
}

.btn:active { transform: scale(0.97); }

/* Primary — gold fill */
.btn-primary {
  background: var(--gold);
  color: #0E0E0E;
  border-color: var(--gold);
  box-shadow: 0 4px 20px rgba(var(--gold-rgb), 0.30);
}
.btn-primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  box-shadow: 0 6px 28px rgba(var(--gold-rgb), 0.45);
  color: #0E0E0E;
}

/* Ghost — transparent with border */
.btn-ghost {
  background: transparent;
  color: var(--text);
  border-color: rgba(255, 255, 255, 0.22);
}
.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(var(--gold-rgb), 0.06);
}

/* Gold outline */
.btn-gold-outline {
  background: transparent;
  color: var(--gold);
  border-color: rgba(var(--gold-rgb), 0.5);
}
.btn-gold-outline:hover {
  background: rgba(var(--gold-rgb), 0.08);
  border-color: var(--gold);
  box-shadow: var(--shadow-gold-sm);
}

/* Sizes */
.btn-sm {
  padding: 9px 18px;
  font-size: 0.875rem;
  border-radius: var(--r-sm);
}
.btn-full { width: 100%; }

/* Disabled */
.btn:disabled,
.btn[aria-disabled="true"] {
  opacity: 0.45;
  pointer-events: none;
}

/* ── NAVBAR ───────────────────────────────────────────────── */
.navbar {
  position: sticky;
  top: 0;
  z-index: 900;
  height: 68px;
  display: flex;
  align-items: center;
  background: rgba(14, 14, 14, 0.82);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  border-bottom: 1px solid var(--border);
  transition: background var(--trans), box-shadow var(--trans);
}

.navbar:has(+ *:not(.mobile-menu)) {
  box-shadow: 0 4px 32px rgba(0, 0, 0, 0.35);
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: 100%;
}

.navbar-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--gold);
  text-decoration: none;
  flex-shrink: 0;
  transition: opacity var(--trans);
}
.navbar-logo:hover { opacity: 0.85; }
.navbar-logo svg,
.navbar-logo img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  border-radius: var(--r-sm);
  background: #fff;
}

.navbar-nav-wrap { flex: 1; display: flex; justify-content: center; }

.navbar-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.navbar-nav li a {
  display: block;
  padding: 7px 14px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  border-radius: var(--r-sm);
  transition: color var(--trans), background var(--trans);
}
.navbar-nav li a:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
}
.navbar-nav li a.active {
  color: var(--gold);
  background: rgba(var(--gold-rgb), 0.10);
}

/* Navbar action buttons */
.navbar-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.btn-cart {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: var(--r-sm);
  color: var(--text-muted);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: color var(--trans), background var(--trans), border-color var(--trans);
  text-decoration: none;
}
.btn-cart:hover {
  color: var(--gold);
  background: rgba(var(--gold-rgb), 0.08);
  border-color: rgba(var(--gold-rgb), 0.25);
}
.btn-cart svg { width: 20px; height: 20px; }

.cart-badge {
  position: absolute;
  top: -5px;
  left: -5px;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  background: var(--gold);
  color: #0E0E0E;
  font-size: 0.7rem;
  font-weight: 700;
  border-radius: 99px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.btn-login {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-muted);
  border-radius: var(--r-sm);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  text-decoration: none;
  transition: color var(--trans), background var(--trans), border-color var(--trans);
}
.btn-login:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.15);
}
.btn-login svg { width: 16px; height: 16px; }

/* Hamburger */
.btn-menu,
.hamburger {
  display: none;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: var(--r-sm);
  color: var(--text-muted);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: color var(--trans), background var(--trans);
  cursor: pointer;
}
.btn-menu:hover,
.hamburger:hover {
  color: var(--gold);
  background: rgba(var(--gold-rgb), 0.08);
}
.btn-menu svg,
.hamburger svg { width: 20px; height: 20px; }

/* ── MOBILE MENU ─────────────────────────────────────────── */
.mobile-menu {
  position: fixed;
  inset: 68px 0 0 auto;
  width: min(320px, 90vw);
  background: var(--surface);
  border-left: 1px solid var(--border);
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  z-index: 850;
  transform: translateX(-100%);
  opacity: 0;
  visibility: hidden;
  transition:
    transform 0.32s var(--ease),
    opacity 0.32s var(--ease),
    visibility 0s 0.32s;
  box-shadow: -8px 0 40px rgba(0, 0, 0, 0.5);
}

/* RTL: mobile menu slides from right */
@supports (inset: 0) {
  .mobile-menu {
    inset: 68px auto 0 0;
    transform: translateX(100%);
    border-left: none;
    border-right: 1px solid var(--border);
    box-shadow: 8px 0 40px rgba(0, 0, 0, 0.5);
  }
}

.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  visibility: visible;
  transition-delay: 0s;
}

.mobile-menu a {
  display: block;
  padding: 13px 16px;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text-muted);
  border-radius: var(--r-sm);
  transition: color var(--trans), background var(--trans);
}
.mobile-menu a:hover {
  color: var(--gold);
  background: rgba(var(--gold-rgb), 0.08);
}

/* ── HERO ─────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100svh;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  animation: hero-zoom 16s ease-in-out infinite alternate;
}
@keyframes hero-zoom {
  from { transform: scale(1); }
  to   { transform: scale(1.06); }
}

.hero-gradient {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(
      to top,
      rgba(14, 14, 14, 0.98) 0%,
      rgba(14, 14, 14, 0.72) 35%,
      rgba(14, 14, 14, 0.38) 65%,
      rgba(14, 14, 14, 0.55) 100%
    );
}

.hero .container {
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 680px;
  padding-block: clamp(80px, 12vw, 140px);
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--gold);
  padding: 6px 16px;
  border: 1px solid rgba(var(--gold-rgb), 0.35);
  border-radius: 99px;
  background: rgba(var(--gold-rgb), 0.08);
  margin-bottom: 24px;
  letter-spacing: 0;
}

.hero-title {
  font-size: clamp(30px, 5vw, 52px);
  font-weight: 700;
  line-height: 1.35;
  color: var(--text);
  margin-bottom: 20px;
}
.hero-title .gold { color: var(--gold); }

.hero-subtitle {
  font-size: clamp(0.95rem, 1.8vw, 1.1rem);
  line-height: 2;
  color: var(--text-muted);
  margin-bottom: 36px;
  max-width: 560px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.hero-stats {
  display: flex;
  gap: 32px;
  padding: 24px 32px;
  background: rgba(14, 14, 14, 0.65);
  backdrop-filter: blur(16px) saturate(1.2);
  -webkit-backdrop-filter: blur(16px) saturate(1.2);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-gold-sm);
}

.hero-stat {
  text-align: center;
}

.hero-stat-num {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--gold);
  line-height: 1.2;
}

.hero-stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 4px;
  line-height: 1.5;
}

/* Separator between stats */
.hero-stat + .hero-stat {
  border-right: 1px solid var(--border);
  padding-right: 32px;
}

/* ── TICKER ───────────────────────────────────────────────── */
.ticker-wrap {
  overflow: hidden;
  background: rgba(var(--gold-rgb), 0.04);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding-block: 13px;
}

.ticker-inner {
  display: flex;
  align-items: center;
  gap: 0;
  width: max-content;
  animation: ticker-rtl 40s linear infinite;
}

/* RTL: scroll from left to right */
@keyframes ticker-rtl {
  from { transform: translateX(-50%); }
  to   { transform: translateX(0); }
}

.ticker-wrap:hover .ticker-inner {
  animation-play-state: paused;
}

.ticker-item {
  display: inline-block;
  padding-inline: 24px;
  font-size: 0.875rem;
  color: var(--text-muted);
  white-space: nowrap;
}

.ticker-dot {
  color: var(--gold);
  font-size: 0.6rem;
  opacity: 0.6;
  padding-inline: 4px;
  flex-shrink: 0;
}

/* ── CATEGORIES ───────────────────────────────────────────── */
.categories-section {
  background: var(--surface);
}

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

.cat-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 20px 12px;
  background: var(--surface2);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: var(--r-md);
  text-decoration: none;
  color: var(--text-muted);
  transition:
    color var(--trans),
    border-color var(--trans),
    background var(--trans),
    box-shadow var(--trans),
    transform var(--trans);
  text-align: center;
}
.cat-card:hover {
  color: var(--gold);
  border-color: rgba(var(--gold-rgb), 0.35);
  background: rgba(var(--gold-rgb), 0.05);
  box-shadow: var(--shadow-gold-sm);
  transform: translateY(-3px);
}

.cat-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--r-sm);
  background: rgba(var(--gold-rgb), 0.08);
  color: var(--gold);
  transition: background var(--trans);
}
.cat-card:hover .cat-icon {
  background: rgba(var(--gold-rgb), 0.15);
}
.cat-icon svg { width: 22px; height: 22px; }

.cat-name {
  font-size: 0.8rem;
  font-weight: 500;
  line-height: 1.5;
}

/* ── PRODUCTS GRID ────────────────────────────────────────── */
.products-section { background: var(--bg); }

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

.product-card {
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition:
    transform var(--trans),
    box-shadow var(--trans),
    border-color var(--trans);
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  transform: translateY(-6px);
  border-color: rgba(var(--gold-rgb), 0.25);
  box-shadow: var(--shadow-gold);
}

.product-img-wrap {
  display: block;
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--surface2);
  text-decoration: none;
}
.product-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.6s var(--ease);
}
.product-card:hover .product-img-wrap img {
  transform: scale(1.06);
}

.product-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  padding: 4px 10px;
  background: rgba(var(--gold-rgb), 0.9);
  color: #0E0E0E;
  font-size: 0.7rem;
  font-weight: 700;
  border-radius: 99px;
  line-height: 1.4;
}

.product-body {
  padding: 18px 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.product-name {
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 1.6;
  flex: 1;
}
.product-name a {
  color: var(--text);
  text-decoration: none;
  transition: color var(--trans);
}
.product-name a:hover { color: var(--gold); }

.product-price {
  font-size: 1rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1.4;
}

.product-actions {
  margin-top: auto;
}
.product-actions form { width: 100%; }

/* ── WHOLESALE SECTION ────────────────────────────────────── */
.wholesale-section {
  background: var(--surface);
  position: relative;
  overflow: hidden;
}

/* Decorative orb */
.wholesale-section::before {
  content: '';
  position: absolute;
  top: -80px;
  left: -80px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(var(--gold-rgb), 0.07) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.wholesale-inner {
  display: flex;
  align-items: center;
  gap: clamp(32px, 6vw, 80px);
}

.wholesale-inner > div:first-child {
  flex: 1;
}

.wholesale-list {
  margin-block: 20px 32px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.wholesale-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.6;
}
.wholesale-list li svg {
  width: 18px;
  height: 18px;
  color: var(--gold);
  flex-shrink: 0;
}

.wholesale-img {
  flex: 0 0 clamp(260px, 42%, 480px);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-gold);
  border: 1px solid var(--border);
}
.wholesale-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 3;
  transition: transform 0.7s var(--ease);
}
.wholesale-img:hover img { transform: scale(1.04); }

/* ── TRUST SECTION ────────────────────────────────────────── */
.trust-section {
  background: var(--bg);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding-block: clamp(40px, 6vw, 64px);
}

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

.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  padding: 28px 20px;
  border-radius: var(--r-md);
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.04);
  transition: border-color var(--trans), box-shadow var(--trans);
}
.trust-item:hover {
  border-color: rgba(var(--gold-rgb), 0.2);
  box-shadow: var(--shadow-gold-sm);
}

.trust-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--r-md);
  background: rgba(var(--gold-rgb), 0.08);
  color: var(--gold);
}
.trust-icon svg { width: 24px; height: 24px; }

.trust-title {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--text);
}

.trust-desc {
  font-size: 0.8rem;
  color: var(--text-dim);
  line-height: 1.6;
}

/* ── SHOP PAGE ────────────────────────────────────────────── */
.shop-filter-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-bottom: 32px;
  padding: 16px 20px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
}

.filter-pill {
  display: inline-flex;
  align-items: center;
  padding: 7px 18px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-muted);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 99px;
  cursor: pointer;
  transition:
    color var(--trans),
    background var(--trans),
    border-color var(--trans),
    box-shadow var(--trans);
  text-decoration: none;
  font-family: inherit;
}
.filter-pill:hover {
  color: var(--gold);
  border-color: rgba(var(--gold-rgb), 0.3);
  background: rgba(var(--gold-rgb), 0.06);
}
.filter-pill.active {
  color: #0E0E0E;
  background: var(--gold);
  border-color: var(--gold);
  box-shadow: 0 2px 12px rgba(var(--gold-rgb), 0.3);
}

/* Search inside filter bar */
.shop-filter-bar input[type="search"],
.shop-filter-bar input[type="text"] {
  flex: 1;
  min-width: 180px;
  padding: 9px 16px;
  font-size: 0.875rem;
  font-family: inherit;
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: var(--r-sm);
  outline: none;
  transition: border-color var(--trans);
  direction: rtl;
}
.shop-filter-bar input:focus {
  border-color: rgba(var(--gold-rgb), 0.45);
}

.shop-products-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 20px;
}

.shop-products-count {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 0.875rem;
  font-weight: 500;
}
.shop-products-count svg {
  width: 18px;
  height: 18px;
  color: var(--gold);
}

.shop-view-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
}

.shop-view-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  min-height: 38px;
  padding: 8px 12px;
  color: var(--text-muted);
  font-size: 0.8125rem;
  font-weight: 500;
  border-radius: var(--r-sm);
  transition:
    color var(--trans),
    background var(--trans),
    box-shadow var(--trans);
}
.shop-view-btn:hover {
  color: var(--gold);
  background: rgba(var(--gold-rgb), 0.08);
}
.shop-view-btn.active {
  color: #0E0E0E;
  background: var(--gold);
  box-shadow: var(--shadow-gold-sm);
}
.shop-view-btn svg {
  width: 18px;
  height: 18px;
}

.product-summary {
  display: none;
  color: var(--text-muted);
  font-size: 0.875rem;
  line-height: 1.9;
  text-wrap: pretty;
}

.shop-products-grid[data-view="list"] {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.shop-products-grid[data-view="list"] .product-card {
  flex-direction: row;
  align-items: stretch;
  min-height: 176px;
}
.shop-products-grid[data-view="list"] .product-card:hover {
  transform: translateY(-3px);
}
.shop-products-grid[data-view="list"] .product-img-wrap {
  width: clamp(132px, 18vw, 190px);
  min-height: 100%;
  aspect-ratio: auto;
  flex: 0 0 clamp(132px, 18vw, 190px);
}
.shop-products-grid[data-view="list"] .product-body {
  padding: 20px 22px;
  justify-content: center;
}
.shop-products-grid[data-view="list"] .product-name {
  flex: 0;
  font-size: 1rem;
}
.shop-products-grid[data-view="list"] .product-summary {
  display: block;
}
.shop-products-grid[data-view="list"] .product-actions {
  margin-top: 4px;
  max-width: 180px;
}

/* ── PRODUCT DETAIL ───────────────────────────────────────── */
.product-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: start;
}

.qty-wrap {
  display: flex;
  align-items: center;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  overflow: hidden;
  width: fit-content;
}

.qty-btn {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--surface2);
  color: var(--text-muted);
  border: none;
  cursor: pointer;
  font-size: 1.1rem;
  font-weight: 600;
  transition: background var(--trans), color var(--trans);
  font-family: inherit;
}
.qty-btn:hover {
  background: rgba(var(--gold-rgb), 0.12);
  color: var(--gold);
}

.qty-input {
  width: 56px;
  height: 42px;
  text-align: center;
  background: var(--surface);
  color: var(--text);
  border: none;
  border-inline: 1px solid var(--border);
  font-size: 1rem;
  font-family: inherit;
  outline: none;
  -moz-appearance: textfield;
}
.qty-input::-webkit-outer-spin-button,
.qty-input::-webkit-inner-spin-button { -webkit-appearance: none; }

/* ── CART PAGE ────────────────────────────────────────────── */
.cart-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 32px;
  align-items: start;
}

.cart-item-row {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: var(--r-md);
  margin-bottom: 12px;
  transition: border-color var(--trans);
}
.cart-item-row:hover { border-color: var(--border); }

.cart-item-row img {
  width: 72px;
  height: 72px;
  object-fit: cover;
  border-radius: var(--r-sm);
  background: var(--surface2);
  flex-shrink: 0;
}

/* ── FORMS ────────────────────────────────────────────────── */
.form-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: clamp(24px, 4vw, 40px);
  box-shadow: var(--shadow-card);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 20px;
}
.form-group:last-child { margin-bottom: 0; }

.form-label {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-muted);
}

.form-control {
  width: 100%;
  padding: 12px 16px;
  font-size: 0.9375rem;
  font-family: 'Vazirmatn', sans-serif;
  color: var(--text);
  background: var(--surface2);
  border: 1.5px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--r-sm);
  outline: none;
  transition:
    border-color var(--trans),
    background var(--trans),
    box-shadow var(--trans);
  direction: rtl;
  line-height: 1.6;
}
.form-control::placeholder { color: var(--text-dim); }
.form-control:hover { border-color: rgba(255, 255, 255, 0.14); }
.form-control:focus {
  border-color: rgba(var(--gold-rgb), 0.55);
  background: rgba(var(--gold-rgb), 0.03);
  box-shadow: 0 0 0 3px rgba(var(--gold-rgb), 0.10);
}

textarea.form-control {
  min-height: 120px;
  resize: vertical;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-grid-full {
  grid-column: 1 / -1;
}

.checkout-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 32px;
  align-items: start;
}

/* ── AUTH PAGES ───────────────────────────────────────────── */
.auth-wrap {
  min-height: calc(100vh - 68px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  background:
    radial-gradient(
      ellipse 60% 50% at 50% 0%,
      rgba(var(--gold-rgb), 0.06) 0%,
      transparent 70%
    ),
    var(--bg);
}

.auth-card {
  width: 100%;
  max-width: 440px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: clamp(28px, 5vw, 48px);
  box-shadow: var(--shadow-gold);
}

/* ── ACCOUNT PAGE ─────────────────────────────────────────── */
.account-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 32px;
  align-items: start;
}

/* ── ALERTS ───────────────────────────────────────────────── */
.alert {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 18px;
  border-radius: var(--r-sm);
  font-size: 0.9rem;
  line-height: 1.7;
  border: 1px solid;
  margin-bottom: 20px;
}

.alert-success {
  background: rgba(46, 160, 67, 0.10);
  border-color: rgba(46, 160, 67, 0.30);
  color: #6bcf7f;
}

.alert-danger {
  background: rgba(224, 85, 85, 0.10);
  border-color: rgba(224, 85, 85, 0.30);
  color: #f08080;
}

/* ── BADGES ───────────────────────────────────────────────── */
.badge {
  display: inline-flex;
  align-items: center;
  padding: 3px 10px;
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 99px;
  line-height: 1.4;
}

.badge-gold {
  background: rgba(var(--gold-rgb), 0.15);
  color: var(--gold);
  border: 1px solid rgba(var(--gold-rgb), 0.30);
}

.badge-info {
  background: rgba(90, 140, 200, 0.15);
  color: #82b4e8;
  border: 1px solid rgba(90, 140, 200, 0.30);
}

/* ── FOOTER ───────────────────────────────────────────────── */
.footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding-top: clamp(56px, 8vw, 88px);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: clamp(28px, 4vw, 56px);
  padding-bottom: clamp(48px, 6vw, 72px);
}

.footer-brand p {
  font-size: 0.875rem;
  color: var(--text-dim);
  line-height: 2;
  margin-top: 14px;
  max-width: 280px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--gold);
  margin-bottom: 4px;
}
.footer-logo svg,
.footer-logo img {
  width: 36px;
  height: 36px;
  object-fit: contain;
  border-radius: var(--r-sm);
  background: #fff;
}

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}
.footer-social a {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--r-sm);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text-dim);
  transition: color var(--trans), background var(--trans), border-color var(--trans);
}
.footer-social a:hover {
  color: var(--gold);
  background: rgba(var(--gold-rgb), 0.10);
  border-color: rgba(var(--gold-rgb), 0.30);
}
.footer-social a svg { width: 18px; height: 18px; }

.footer-heading {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 18px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links li a {
  font-size: 0.875rem;
  color: var(--text-dim);
  text-decoration: none;
  transition: color var(--trans), padding-right var(--trans);
  display: inline-block;
}
.footer-links li a:hover {
  color: var(--gold);
  padding-right: 4px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
  font-size: 0.875rem;
  color: var(--text-dim);
  line-height: 1.7;
}
.footer-contact-item svg {
  width: 16px;
  height: 16px;
  color: var(--gold);
  margin-top: 3px;
  flex-shrink: 0;
}
.footer-contact-item a { color: inherit; }
.footer-contact-item a:hover { color: var(--gold); }

.footer-phone {
  color: var(--text-muted);
  font-weight: 500;
  direction: ltr;
  display: inline-block;
}
.footer-phone:hover { color: var(--gold); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-block: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-bottom p {
  font-size: 0.8rem;
  color: var(--text-dim);
  line-height: 1.6;
}

/* ── STUB PAGES (404, empty states) ──────────────────────── */
.stub-section {
  min-height: calc(100vh - 68px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
}

.stub-inner {
  text-align: center;
  max-width: 480px;
}

.stub-icon {
  width: 80px;
  height: 80px;
  margin-inline: auto;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(var(--gold-rgb), 0.08);
  border: 1px solid rgba(var(--gold-rgb), 0.20);
  color: var(--gold);
}
.stub-icon svg { width: 36px; height: 36px; }

.stub-inner h1,
.stub-inner h2 {
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  margin-bottom: 12px;
}
.stub-inner p {
  color: var(--text-muted);
  line-height: 2;
  margin-bottom: 28px;
}

/* ── CONTENT / STATIC PAGES ───────────────────────────────── */
.page-content {
  max-width: 780px;
  margin-inline: auto;
}
.page-content p {
  color: var(--text-muted);
  line-height: 2.1;
  margin-bottom: 20px;
}
.page-content h2 {
  font-size: 1.4rem;
  margin-bottom: 14px;
  margin-top: 36px;
}

/* ── SKELETON LOADING ─────────────────────────────────────── */
@keyframes skeleton-pulse {
  0%, 100% { opacity: 0.5; }
  50%       { opacity: 1; }
}
.skeleton {
  background: var(--surface2);
  border-radius: var(--r-sm);
  animation: skeleton-pulse 1.6s ease-in-out infinite;
}

/* ── DECORATIVE ELEMENTS ──────────────────────────────────── */
/* Subtle gold orb for alternating sections */
.products-section {
  position: relative;
  overflow: hidden;
}
.products-section::after {
  content: '';
  position: absolute;
  bottom: -120px;
  right: -120px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(var(--gold-rgb), 0.04) 0%,
    transparent 65%
  );
  pointer-events: none;
}

/* ── RESPONSIVE — 1024px ─────────────────────────────────── */
@media (max-width: 1024px) {
  .categories-grid {
    grid-template-columns: repeat(4, 1fr);
  }

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

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .page-2col {
    grid-template-columns: 1fr;
  }

  .checkout-layout {
    grid-template-columns: 1fr;
  }

  .cart-layout {
    grid-template-columns: 1fr;
  }

  .account-layout {
    grid-template-columns: 1fr;
  }

  .product-detail-grid {
    grid-template-columns: 1fr;
  }

  .wholesale-inner {
    flex-direction: column;
  }
  .wholesale-img {
    flex: none;
    width: 100%;
  }
}

/* ── RESPONSIVE — 768px ──────────────────────────────────── */
@media (max-width: 768px) {
  body { line-height: 1.9; }

  .navbar-nav-wrap { display: none; }
  .btn-login { display: none; }

  .btn-menu,
  .hamburger {
    display: flex;
  }

  .hero-content {
    align-items: center;
    text-align: center;
    padding-block: clamp(60px, 14vw, 100px);
  }
  .hero-actions { justify-content: center; }
  .hero-subtitle { text-align: center; }
  .hero-stats {
    flex-wrap: wrap;
    gap: 20px;
    padding: 18px 22px;
    justify-content: center;
  }
  .hero-stat + .hero-stat {
    border-right: none;
    padding-right: 0;
  }

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

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

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

  .form-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .cart-item-row {
    flex-wrap: wrap;
  }

  .wholesale-section::before { display: none; }

  .section-eyebrow {
    font-size: 0.7rem;
    padding: 4px 12px;
  }

  .hero-stats { width: 100%; }
}

/* ── RESPONSIVE — 480px ──────────────────────────────────── */
@media (max-width: 480px) {
  .categories-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
  }
  .cat-card { padding: 14px 8px; }
  .cat-icon { width: 40px; height: 40px; }
  .cat-icon svg { width: 18px; height: 18px; }
  .cat-name { font-size: 0.73rem; }

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

  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .trust-item { padding: 20px 14px; }

  .hero-stats {
    gap: 16px;
    padding: 16px 18px;
  }

  .btn {
    padding: 11px 20px;
    font-size: 0.875rem;
  }

  .shop-filter-bar {
    padding: 12px 14px;
    gap: 8px;
  }
  .filter-pill {
    padding: 6px 14px;
    font-size: 0.8125rem;
  }
  .shop-products-head {
    align-items: stretch;
    flex-direction: column;
  }
  .shop-view-toggle {
    width: 100%;
  }
  .shop-view-btn {
    flex: 1;
    padding-inline: 8px;
  }
  .shop-products-grid[data-view="list"] .product-card {
    min-height: 136px;
  }
  .shop-products-grid[data-view="list"] .product-img-wrap {
    width: 112px;
    flex-basis: 112px;
  }
  .shop-products-grid[data-view="list"] .product-body {
    padding: 14px;
    gap: 6px;
  }
  .shop-products-grid[data-view="list"] .product-summary {
    font-size: 0.78rem;
    line-height: 1.7;
  }
  .shop-products-grid[data-view="list"] .product-actions {
    max-width: none;
  }

  .footer-social a { width: 34px; height: 34px; }
  .footer-social a svg { width: 16px; height: 16px; }

  .auth-card { padding: 24px 20px; }
  .form-card { padding: 20px; }

  .cart-item-row { gap: 12px; }
  .cart-item-row img { width: 60px; height: 60px; }

  .stub-icon { width: 64px; height: 64px; }
  .stub-icon svg { width: 28px; height: 28px; }

  .hero-actions { flex-direction: column; width: 100%; }
  .hero-actions .btn { width: 100%; justify-content: center; }

  .navbar {
    height: 60px;
  }
  .mobile-menu {
    top: 60px;
  }
}

/* ── BREADCRUMB ───────────────────────────────────────────── */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  font-size: 0.85rem;
  color: var(--text-dim);
  margin-bottom: 32px;
}
.breadcrumb a {
  color: var(--text-dim);
  text-decoration: none;
  transition: color var(--trans);
}
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { color: var(--text-dim); }
.breadcrumb span:last-child { color: var(--text-muted); }

/* ── PRODUCT GALLERY ──────────────────────────────────────── */
.product-gallery { position: relative; }

.gallery-main {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--surface2);
  border: 1px solid var(--border);
  aspect-ratio: 1 / 1;
  cursor: zoom-in;
  box-shadow: var(--shadow-card);
}
.gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
  display: block;
}
.gallery-main:hover img { transform: scale(1.04); }

.gallery-zoom-btn {
  position: absolute;
  bottom: 14px;
  left: 14px;
  width: 38px;
  height: 38px;
  border-radius: var(--r-sm);
  background: rgba(14, 14, 14, 0.72);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid var(--border);
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: color var(--trans), background var(--trans);
  z-index: 2;
}
.gallery-zoom-btn svg { width: 16px; height: 16px; }
.gallery-zoom-btn:hover {
  color: var(--gold);
  background: rgba(14, 14, 14, 0.90);
}

.gallery-thumbs {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.gallery-thumb {
  flex: 1;
  aspect-ratio: 1 / 1;
  border-radius: var(--r-sm);
  overflow: hidden;
  border: 2px solid transparent;
  cursor: pointer;
  background: var(--surface2);
  transition:
    border-color var(--trans),
    opacity var(--trans),
    box-shadow var(--trans);
  opacity: 0.50;
}
.gallery-thumb:hover { opacity: 0.80; }
.gallery-thumb.active {
  border-color: var(--gold);
  opacity: 1;
  box-shadow: var(--shadow-gold-sm);
}
.gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  display: block;
}

.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9000;
  background: rgba(0, 0, 0, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.28s var(--ease),
    visibility 0s 0.28s;
}
.gallery-lightbox.open {
  opacity: 1;
  visibility: visible;
  transition-delay: 0s;
}
.gallery-lightbox > img {
  max-width: 90vw;
  max-height: 88vh;
  border-radius: var(--r-md);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.6);
  pointer-events: none;
}
.gallery-lightbox-close {
  position: fixed;
  top: 20px;
  left: 20px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background var(--trans);
  z-index: 9001;
}
.gallery-lightbox-close svg { width: 18px; height: 18px; }
.gallery-lightbox-close:hover { background: rgba(255, 255, 255, 0.20); }

/* ── SIZE SELECTOR ────────────────────────────────────────── */
.size-label {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-muted);
  margin-bottom: 10px;
}

.size-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.size-btn {
  padding: 8px 16px;
  font-size: 0.8125rem;
  font-weight: 500;
  font-family: 'Vazirmatn', sans-serif;
  border-radius: var(--r-sm);
  border: 1.5px solid rgba(255, 255, 255, 0.10);
  background: var(--surface2);
  color: var(--text-muted);
  cursor: pointer;
  transition:
    border-color var(--trans),
    color var(--trans),
    background var(--trans),
    box-shadow var(--trans);
  line-height: 1.4;
}
.size-btn:hover {
  border-color: rgba(var(--gold-rgb), 0.4);
  color: var(--text);
  background: rgba(var(--gold-rgb), 0.04);
}
.size-btn.active {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(var(--gold-rgb), 0.08);
  box-shadow: var(--shadow-gold-sm);
}

.product-trust-box {
  margin-top: 20px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.product-trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.5;
}
.product-trust-item svg {
  width: 16px;
  height: 16px;
  color: var(--gold);
  flex-shrink: 0;
}

/* ── PRINT ────────────────────────────────────────────────── */
@media print {
  .navbar,
  .mobile-menu,
  .ticker-wrap,
  .hero-gradient,
  .footer-social,
  .btn-cart,
  .btn-login,
  .btn-menu { display: none !important; }

  body {
    background: #fff;
    color: #000;
  }
  .hero { min-height: auto; padding: 20px 0; }
  .hero-bg { display: none; }
}

/* ── REDUCED MOTION ───────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .ticker-inner { animation: none; }
  .hero-bg img  { animation: none; }
}
