/* CLIPPER_iQ — pixel-faithful recreation of employer references */
:root {
  --bg: #000000;
  --bg-elev: #0a0a0a;
  --bg-card: #0e0e0e;
  --bg-card-2: #121212;
  --line: rgba(232, 228, 228, 0.12);
  --line-strong: rgba(232, 228, 228, 0.2);
  /* از دکمهٔ نمونه: سفید نرم + قرمز جگری (کمی عمیق‌تر برای CTA) */
  --text: #e8e4e4;
  --muted: #9a9a9a;
  --muted-2: #7a7a7a;
  --red: #a51116;
  --red-bright: #bd1217;
  --red-deep: #8a0e12;
  --red-glow: rgba(165, 17, 22, 0.4);
  --gold: #d4af37;
  --radius: 12px;
  --radius-sm: 8px;
  --radius-pill: 999px;
  --header-h: 52px;
  --usp-h: 48px;
  --nav-h: 72px;
  --max: 1120px;
  --font: "Vazirmatn", "Tahoma", system-ui, sans-serif;
  --font-en: "Montserrat", "Segoe UI", var(--font);
  --shadow-red: 0 0 24px var(--red-glow);
  --transition: 0.25s cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after { box-sizing: border-box; }

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

body {
  margin: 0;
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  min-height: 100dvh;
  padding-bottom: calc(var(--nav-h) + 20px + env(safe-area-inset-bottom, 0px));
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul { list-style: none; margin: 0; padding: 0; }

.container {
  width: min(100% - 28px, var(--max));
  margin-inline: auto;
}

/* ========== HEADER ========== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
}

.header-bar {
  direction: ltr; /* رفرنس: منو چپ · سبد راست */
  height: var(--header-h);
  display: grid;
  grid-template-columns: 44px 1fr 44px;
  align-items: center;
  width: min(100% - 24px, var(--max));
  margin-inline: auto;
}

.icon-btn {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  color: var(--text);
  transition: background var(--transition);
}
.icon-btn:hover { background: rgba(232,228,228,0.06); }
.icon-btn svg { width: 22px; height: 22px; }

.logo {
  justify-self: center;
  font-family: var(--font-en);
  font-weight: 800;
  font-size: clamp(1.05rem, 2.5vw, 1.35rem);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.logo .iq { color: var(--red); }

.cart-btn { position: relative; }
.cart-badge {
  position: absolute;
  top: 5px;
  right: 5px;
  left: auto;
  min-width: 14px;
  height: 14px;
  padding: 0 3px;
  border-radius: 999px;
  background: var(--red);
  color: var(--text);
  font-size: 0.58rem;
  font-weight: 700;
  display: grid;
  place-items: center;
  line-height: 1;
  box-shadow: 0 0 6px var(--red-glow);
}

/* ========== SIDE MENU ========== */
.menu-backdrop {
  position: fixed;
  inset: 0;
  z-index: 80;
  background: rgba(0, 0, 0, 0.62);
  backdrop-filter: blur(3px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.28s ease, visibility 0.28s ease;
}
.menu-backdrop.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.side-menu {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  z-index: 90;
  width: min(86vw, 320px);
  display: flex;
  flex-direction: column;
  background: linear-gradient(180deg, #0c0c0c 0%, #070707 100%);
  border-right: 1px solid rgba(232, 228, 228, 0.1);
  box-shadow: 12px 0 40px rgba(0, 0, 0, 0.55);
  transform: translateX(-105%);
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  padding:
    max(12px, env(safe-area-inset-top, 0px))
    16px
    max(16px, env(safe-area-inset-bottom, 0px));
  direction: rtl;
  pointer-events: none;
}
.side-menu.is-open {
  transform: translateX(0);
  pointer-events: auto;
}
.side-menu-head {
  direction: ltr;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(232, 228, 228, 0.1);
}
.side-menu-head .logo {
  justify-self: auto;
  font-size: 1.05rem;
}
.side-menu-nav {
  display: grid;
  gap: 2px;
  padding: 14px 0;
  flex: 1;
  overflow-y: auto;
}
.side-menu-nav a {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  min-height: 46px;
  padding: 10px 12px;
  border-radius: 10px;
  color: var(--text);
  font-size: 0.95rem;
  font-weight: 600;
  transition: background var(--transition), color var(--transition);
}
.side-menu-nav a:hover,
.side-menu-nav a:focus-visible {
  background: rgba(232, 228, 228, 0.06);
  color: #fff;
  outline: none;
}
.side-menu-foot {
  padding-top: 12px;
  border-top: 1px solid rgba(232, 228, 228, 0.1);
}
.side-menu-foot .btn {
  width: 100%;
  min-height: 44px;
  font-size: 0.88rem;
}
body.menu-open {
  overflow: hidden;
}

/* USP strip — آیکون چپ متن · سایز ۲× */
.usp-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: center;
  gap: 0;
  min-height: var(--usp-h);
  padding: 10px 12px;
  width: min(100% - 16px, var(--max));
  margin: 0 auto;
  border-block: 1px solid rgba(232,228,228,0.08);
  background: linear-gradient(180deg, rgba(18,18,18,0.95), rgba(8,8,8,0.92));
  overflow: hidden;
}

.usp-item {
  direction: ltr; /* آیکون سمت چپ متن */
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 0;
  padding-inline: 6px;
  font-size: clamp(0.68rem, 2.7vw, 0.9rem);
  line-height: 1.3;
  font-weight: 500;
  color: #9a9a9a;
  text-align: center;
}
.usp-item span {
  direction: rtl;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.usp-item svg {
  width: 28px;
  height: 28px;
  color: var(--red);
  flex-shrink: 0;
  filter: drop-shadow(0 0 4px var(--red-glow));
}
.usp-item + .usp-item {
  /* physical border: با direction:ltr روی آیتم، inline-start می‌رفت لبه چپ */
  border-right: 1px solid rgba(232,228,228,0.12);
  border-inline-start: none;
}

/* ========== HERO ========== */
.hero {
  position: relative;
  isolation: isolate;
  min-height: clamp(300px, 52vw, 520px);
  overflow: hidden;
  background: #000;
}

.hero::before {
  content: none;
}

/* رفرنس: متن چپ · تصویر راست — حتی در موبایل */
.hero-stage {
  direction: ltr;
  position: relative;
  z-index: 2;
  width: min(100% - 24px, var(--max));
  margin: 0 auto;
  min-height: inherit;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1.05fr);
  align-items: center;
  gap: clamp(8px, 2vw, 24px);
  padding: 18px 0 22px;
}

.hero-inner {
  direction: ltr;
  display: grid;
  gap: 16px;
  max-width: 440px;
  width: 100%;
  z-index: 2;
  text-align: left;
  justify-items: start;
}

.hero-copy {
  min-width: 0;
  direction: rtl;
  text-align: left;
  width: 100%;
}
.hero-copy .eyebrow {
  direction: ltr;
  unicode-bidi: isolate;
}

.hero-media {
  position: relative;
  z-index: 1;
  width: 100%;
  min-height: clamp(220px, 42vw, 460px);
  height: 100%;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  overflow: hidden;
  -webkit-mask-image: radial-gradient(ellipse 78% 82% at 55% 55%, #000 42%, transparent 78%);
  mask-image: radial-gradient(ellipse 78% 82% at 55% 55%, #000 42%, transparent 78%);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
}

.hero-media img {
  position: relative;
  display: block;
  width: 112%;
  height: 100%;
  max-height: 480px;
  object-fit: contain;
  object-position: center right;
  transform: scale(1.08);
  transform-origin: center right;
  filter: drop-shadow(0 0 28px rgba(0,0,0,0.85));
}

.hero-media::before {
  content: "";
  position: absolute;
  inset: -8%;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(ellipse 70% 75% at 55% 55%, transparent 35%, rgba(0,0,0,0.55) 70%, #000 92%),
    linear-gradient(90deg, #000 0%, transparent 28%),
    linear-gradient(0deg, #000 0%, transparent 22%),
    linear-gradient(180deg, #000 0%, transparent 18%);
}

.hero-media::after {
  content: none;
}

.eyebrow {
  display: inline-block;
  color: var(--red);
  font-family: var(--font-en);
  font-size: clamp(0.68rem, 2vw, 0.82rem);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.hero h1 {
  margin: 0;
  font-size: clamp(1.35rem, 5.2vw, 2.75rem);
  font-weight: 800;
  line-height: 1.28;
  letter-spacing: -0.02em;
}
.hero h1 .line2 {
  white-space: normal;
}
.hero h1 .accent { color: var(--red); }

.hero-benefits {
  margin: 10px 0 0;
  padding: 0;
  display: grid;
  gap: 3px;
  color: var(--muted);
  font-size: clamp(0.82rem, 2.3vw, 1.1rem);
  font-weight: 500;
}

.hero-ctas {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 300px;
  width: 100%;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 44px;
  padding: 11px 18px;
  border-radius: var(--radius-sm);
  font-size: clamp(0.82rem, 2.2vw, 0.95rem);
  font-weight: 700;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), border-color var(--transition);
}
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }

/* هیرو: دکمه‌ها همیشه زیر هم · آیکون بزرگ‌تر */
.hero-ctas .btn {
  width: 100%;
  max-width: 300px;
  min-height: 46px;
  justify-content: center;
  gap: 12px;
}
.hero-ctas .btn svg {
  width: 22px;
  height: 22px;
}
.btn-hero-designs,
.btn-hero-wa {
  direction: ltr;
  flex-direction: row;
}
.btn-hero-wa svg {
  width: 24px;
  height: 24px;
}

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

.btn-primary {
  background: var(--red);
  color: var(--text);
  box-shadow: 0 8px 28px var(--red-glow);
}
.btn-primary:hover {
  background: var(--red-bright);
  box-shadow: var(--shadow-red);
}

.btn-ghost {
  background: transparent;
  border: 1px solid rgba(232,228,228,0.45);
  color: var(--text);
}
.btn-ghost:hover {
  border-color: var(--text);
  background: rgba(232,228,228,0.05);
}

.btn-outline-wide {
  width: 100%;
  max-width: 360px;
  margin-inline: auto;
  border: 1px solid rgba(232,228,228,0.32);
  border-radius: var(--radius-sm);
  min-height: 46px;
  color: var(--text);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.btn-outline-wide:hover { border-color: var(--text); background: rgba(232,228,228,0.04); }

.btn-view-all {
  direction: ltr;
  gap: 10px;
  text-align: center;
  line-height: 1.2;
  padding: 10px 18px;
}
.btn-view-all-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05em;
  line-height: 1;
  transform: translateY(-0.5px);
  color: var(--text);
}
.btn-view-all span:last-child {
  display: inline-block;
}

.btn-pill {
  direction: ltr; /* فلش سمت چپ متن */
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 1px solid rgba(232, 228, 228, 0.35);
  border-radius: 7px;
  padding: 6px 16px 9px 13px; /* بالا کمتر از پایین */
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--muted);
  background: #0a0a0a;
  white-space: nowrap;
  line-height: 1.2;
}
.btn-pill-arrow {
  font-size: 1.05em;
  line-height: 1;
  color: var(--muted);
  flex-shrink: 0;
}
.btn-pill:hover {
  border-color: rgba(232, 228, 228, 0.5);
  background: #111;
  color: var(--text);
}
.btn-pill:hover .btn-pill-arrow {
  color: var(--text);
}

/* ========== TRUST ========== */
.trust {
  padding: 6px 0 8px;
  margin-top: -4px;
  position: relative;
  z-index: 3;
}
.trust-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  padding: 12px 10px;
  min-height: 56px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, #0c0c0c, #080808);
}
.trust-item {
  direction: ltr; /* آیکون سمت چپ متن */
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 6px 6px;
  position: relative;
  min-width: 0;
  text-align: center;
}
.trust-item + .trust-item {
  border-right: 1px solid rgba(232, 228, 228, 0.12);
}
.trust-item + .trust-item::before {
  content: none;
}
.trust-item svg {
  width: 36px;
  height: 36px;
  color: var(--red);
  flex-shrink: 0;
  filter: drop-shadow(0 0 4px var(--red-glow));
}
.trust-copy {
  direction: rtl;
  display: grid;
  gap: 2px;
  min-width: 0;
  justify-items: start;
  text-align: right;
}
.trust-item strong {
  font-size: clamp(0.68rem, 2.5vw, 0.9rem);
  font-weight: 600;
  line-height: 1.3;
  color: var(--muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.trust-item span {
  font-size: clamp(0.55rem, 1.9vw, 0.72rem);
  color: var(--muted-2);
  line-height: 1.25;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ========== SECTION HEADS ========== */
.section {
  padding: 20px 0 6px;
}
.section-head {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  min-height: 36px;
}
.section-head h2 {
  margin: 0;
  font-size: clamp(1.05rem, 3vw, 1.4rem);
  font-weight: 800;
  text-align: center;
}
.section-head h2::after {
  content: "";
  display: block;
  width: 36px;
  height: 3px;
  margin: 6px auto 0;
  background: var(--red);
  border-radius: 2px;
  box-shadow: 0 0 10px var(--red-glow);
}
.section-head .btn-pill {
  position: absolute;
  left: 0;
  right: auto;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.92rem;
  padding: 6px 16px 9px 13px;
}

/* ========== CATEGORY CARDS ========== */
.cat-scroll {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(112px, 150px);
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 6px;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  scrollbar-color: var(--red) transparent;
}
.cat-card {
  scroll-snap-align: start;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-card);
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}
.cat-card:hover {
  transform: translateY(-3px);
  border-color: rgba(227, 6, 19, 0.45);
  box-shadow: 0 10px 30px rgba(0,0,0,0.45);
}
.cat-card .media {
  aspect-ratio: 1 / 0.92;
  background: #050505 center/cover no-repeat;
}
.cat-card .label {
  padding: 8px 6px 10px;
  text-align: center;
  font-size: clamp(0.68rem, 2vw, 0.82rem);
  font-weight: 600;
}

/* ========== CUSTOM ORDER BANNER ========== */
.custom-banner {
  margin-top: 18px;
  direction: ltr;
  display: grid;
  /* چپ کمی پهن‌تر از قبل · مراحل همان فضای راحت قبلی */
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.75fr);
  gap: 12px 14px;
  align-items: center;
  min-height: 168px;
  padding: 16px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 8% 70%, rgba(189,18,23,0.1), transparent 42%),
    linear-gradient(135deg, #0d0d0d, #080808);
  overflow: hidden;
}

.custom-left {
  direction: ltr;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 6px 8px;
  align-items: center;
  min-width: 0;
  justify-self: stretch;
  padding-inline-start: 4px;
  width: 100%;
}

.custom-banner .custom-copy,
.custom-banner .steps {
  direction: rtl;
}

.custom-banner .blank {
  width: clamp(64px, 8vw, 96px);
  max-width: 96px;
  height: auto;
  margin: 0;
  filter: drop-shadow(0 12px 22px rgba(0,0,0,0.55));
}

.custom-copy {
  display: grid;
  justify-items: start;
  align-content: center;
  min-width: 0;
  max-width: 28ch;
}

.custom-copy h3 {
  margin: 0 0 6px;
  font-size: clamp(0.95rem, 2.4vw, 1.2rem);
  font-weight: 800;
  line-height: 1.35;
  color: #d6d2d2;
}
.custom-copy h3 .accent { color: var(--red); }
.custom-copy p {
  margin: 0 0 10px;
  color: var(--muted);
  font-size: clamp(0.7rem, 1.8vw, 0.84rem);
  line-height: 1.55;
}
.custom-copy .btn,
.btn-custom-order {
  direction: ltr;
  min-height: 38px;
  padding: 6px 14px 9px;
  font-size: 0.8rem;
  width: fit-content;
  max-width: 100%;
  gap: 10px;
  background: var(--red) !important;
  color: var(--text);
  box-shadow: 0 8px 22px var(--red-glow);
}
.btn-custom-order:hover {
  background: var(--red-deep) !important;
  box-shadow: 0 8px 26px rgba(138, 14, 18, 0.5);
}
.btn-custom-order svg {
  width: 17px;
  height: 17px;
  color: #e8e4e4;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 4px 0;
  margin: 0;
  align-self: center;
  width: 100%;
  max-width: none;
  justify-items: center;
  min-width: 0;
}
.step {
  text-align: center;
  position: relative;
  min-width: 0;
  width: 100%;
  max-width: 9rem;
  padding-inline: 2px;
}
.step:not(:last-child)::after {
  content: "›";
  position: absolute;
  left: -2px;
  top: 28px;
  color: rgba(200,196,196,0.38);
  font-size: 1rem;
  line-height: 1;
  font-weight: 600;
}
.step-icon {
  --ring: 2px;
  width: clamp(58px, 7.4vw, 76px);
  height: clamp(58px, 7.4vw, 76px);
  margin: 0 auto 8px;
  border-radius: 50%;
  border: var(--ring) solid rgba(200,196,196,0.28);
  display: grid;
  place-items: center;
  position: relative;
  box-sizing: border-box;
}
.step-icon::after {
  content: "";
  position: absolute;
  inset: calc(var(--ring) * -1);
  border-radius: 50%;
  border: var(--ring) solid transparent;
  border-top-color: var(--red);
  border-right-color: var(--red);
  pointer-events: none;
}
.step-icon svg {
  width: clamp(24px, 3.2vw, 32px);
  height: clamp(24px, 3.2vw, 32px);
  color: #a8a4a4;
}
.step-num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.2rem;
  height: 1.2rem;
  margin: 0 auto 5px;
  padding: 0;
  color: var(--red);
  font-weight: 800;
  font-size: 0.72rem;
  line-height: 1;
  text-align: center;
  border-radius: 50%;
  background: rgba(189, 18, 23, 0.2);
  border: 1px solid rgba(189, 18, 23, 0.55);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 0 6px rgba(189, 18, 23, 0.18);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  font-variant-numeric: tabular-nums;
  padding-top: 1px;
  box-sizing: border-box;
}
.step strong {
  display: block;
  font-size: clamp(0.72rem, 1.8vw, 0.88rem);
  font-weight: 700;
  line-height: 1.3;
  color: #d0cccc;
}
.step span {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  max-width: 9.5em;
  margin: 3px auto 0;
  font-size: clamp(0.5rem, 1.15vw, 0.6rem);
  color: #7e7a7a;
  line-height: 1.45;
  text-align: center;
}


/* ========== PRODUCTS ========== */
.product-grid {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(118px, 148px);
  grid-template-columns: none;
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 4px;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  scrollbar-color: var(--red) transparent;
}
.product-card {
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg-card);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  scroll-snap-align: start;
  transition: transform var(--transition), border-color var(--transition);
}
.product-card:hover {
  transform: translateY(-2px);
  border-color: rgba(232,228,228,0.2);
}
.product-grid.is-wrap {
  grid-auto-flow: row;
  grid-auto-columns: unset;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  overflow-x: visible;
  scroll-snap-type: none;
}
.product-grid.is-wrap .product-card {
  scroll-snap-align: unset;
  width: auto;
}
.product-card .media {
  position: relative;
  aspect-ratio: 3 / 4;
  background: #050505 center/contain no-repeat;
}
.wish {
  position: absolute;
  top: 8px;
  right: 8px;
  left: auto;
  z-index: 2;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(0,0,0,0.35);
  color: var(--text);
  backdrop-filter: blur(4px);
}
.wish svg { width: 20px; height: 20px; }
.wish.active { color: var(--red); }

.product-card .body {
  padding: 8px 8px 10px;
  display: grid;
  gap: 6px;
  flex: 1;
}
.product-card .title {
  margin: 0;
  font-size: clamp(0.68rem, 2vw, 0.82rem);
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.02em;
}
.product-card .meta {
  direction: ltr;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6px;
}
.product-card .meta .price {
  direction: rtl;
}
.price {
  font-weight: 800;
  font-size: clamp(0.68rem, 2vw, 0.8rem);
  white-space: nowrap;
  color: var(--text);
}
.price b {
  font-weight: 800;
  color: var(--text);
}
.price em {
  font-style: normal;
  color: var(--red);
  margin-inline-start: 2px;
}
.add-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--red);
  color: var(--text);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  box-shadow: 0 4px 14px var(--red-glow);
  transition: transform var(--transition), background var(--transition);
}
.add-btn:hover { background: var(--red-deep); transform: scale(1.06); }
.add-btn svg { width: 18px; height: 18px; }

.section-cta {
  display: flex;
  justify-content: center;
  padding: 14px 0 6px;
}
.section-cta .btn-outline-wide {
  max-width: 280px;
  min-height: 42px;
  font-size: 0.82rem;
}

/* ========== INSTAGRAM / WARRANTY ========== */
.social-banner {
  position: relative;
  margin: 14px 0 28px;
  direction: ltr;
  display: grid;
  /* مطابق رفرنس: اینستا چپ · عکس وسط · ضمانت راست */
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 1.35fr) minmax(0, 0.95fr);
  align-items: center;
  justify-items: stretch;
  gap: 8px 12px;
  padding: 18px 18px;
  min-height: 176px;
  border-radius: var(--radius);
  border: none;
  overflow: hidden;
  isolation: isolate;
  background:
    linear-gradient(90deg,
      rgba(0,0,0,0.55) 0%,
      rgba(0,0,0,0.28) 22%,
      rgba(0,0,0,0.08) 45%,
      rgba(0,0,0,0.1) 58%,
      rgba(0,0,0,0.45) 78%,
      rgba(0,0,0,0.8) 100%),
    url("../assets/ui/social-hand.png?v=6") center center / contain no-repeat,
    #050505;
  box-shadow: 0 10px 28px rgba(0,0,0,0.45);
}
/* بوردر جگری تیره · ضخیم‌تر · بیشتر به سمت مشکی */
.social-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  border-radius: inherit;
  padding: 2.5px;
  background: linear-gradient(
    145deg,
    #5c1216 0%,
    #2a080a 28%,
    #0d0405 52%,
    #1a0608 72%,
    #4a0e12 100%
  );
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
.social-banner .ig-side {
  direction: ltr;
  justify-self: start;
  align-self: center;
  width: auto;
  max-width: 360px;
  display: grid;
  gap: 0;
  position: relative;
  z-index: 2;
  padding: 0;
}
.ig-top {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 12px;
}
.ig-icon {
  width: 58px;
  height: 58px;
  flex-shrink: 0;
  margin-top: 2px;
  color: #ffb0b0;
  filter: drop-shadow(0 0 3px rgba(227, 6, 19, 0.45));
}
.ig-copy {
  direction: rtl;
  display: grid;
  gap: 10px;
  justify-items: end;
  text-align: right;
  min-width: 0;
  flex: 0 1 auto;
  width: max-content;
  max-width: 240px;
}
.ig-title {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.35;
  color: #ffffff;
  text-align: right;
  width: 100%;
}
.ig-desc {
  margin: 0;
  font-size: 0.72rem;
  font-weight: 400;
  line-height: 1.55;
  color: #ffffff;
  text-align: right;
  width: 100%;
}
.ig-handle {
  direction: ltr;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: fit-content;
  min-width: 148px;
  min-height: 36px;
  margin: 2px 0 0;
  padding: 7px 14px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.4);
  color: #ffffff;
  font-family: var(--font-en);
  font-size: 0.82rem;
  font-weight: 600;
  text-decoration: none;
  justify-self: end;
  transition: border-color var(--transition), background var(--transition);
}
.ig-handle-name {
  text-align: left;
  letter-spacing: 0.01em;
  line-height: 1.2;
}
.ig-handle-arrow {
  font-size: 0.9rem;
  line-height: 1;
  opacity: 0.95;
}
.ig-handle:hover {
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(0, 0, 0, 0.55);
}

/* ستون وسط خالی · عکس پس‌زمینه وسط دیده شود */
.social-photo {
  width: 100%;
  min-height: 148px;
  background: transparent;
  border: none;
  box-shadow: none;
  justify-self: center;
  align-self: stretch;
}

.warranty {
  --social-h: 168px;
  justify-self: end;
  align-self: center;
  position: relative;
  z-index: 1;
  width: var(--social-h);
  height: var(--social-h);
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  box-shadow: none;
  display: grid;
  place-items: center;
  isolation: isolate;
}
/* گلو داخل خود تصویر بج هست · فقط سایه ملایم */
.warranty::before {
  content: none;
}
.warranty::after {
  content: none;
}
.warranty-ring {
  display: none !important;
}
.warranty-img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  max-height: 100%;
  display: block;
  object-fit: contain;
  transform: none;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.55));
}

/* ========== BOTTOM NAV ========== */
.bottom-nav {
  position: fixed;
  bottom: 0;
  inset-inline: 0;
  z-index: 60;
  direction: ltr;
  height: calc(var(--nav-h) + env(safe-area-inset-bottom, 0px));
  padding: 4px 4px calc(4px + env(safe-area-inset-bottom, 0px));
  background: rgba(8, 8, 8, 0.97);
  border-top: 1px solid rgba(232,228,228,0.1);
  backdrop-filter: blur(14px);
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  align-items: end;
  max-width: 560px;
  margin-inline: auto;
  left: 0;
  right: 0;
}
.bottom-nav a {
  display: grid;
  justify-items: center;
  align-content: center;
  gap: 2px;
  height: 100%;
  color: #cfcfcf;
  position: relative;
  font-size: 0.58rem;
  font-weight: 600;
  line-height: 1.2;
  text-align: center;
  padding-bottom: 2px;
}
.bottom-nav a span:not(.fab) {
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  padding-inline: 2px;
}
.bottom-nav a.active { color: var(--red); }
.bottom-nav a svg { width: 20px; height: 20px; }
.bottom-nav .nav-order {
  align-content: start;
}
.bottom-nav .fab {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--red);
  color: var(--text);
  display: grid;
  place-items: center;
  margin-top: -22px;
  box-shadow: 0 8px 28px rgba(227, 6, 19, 0.55), 0 0 0 5px #000;
  transition: transform var(--transition);
}
.bottom-nav .fab:hover { transform: scale(1.05); }
.bottom-nav .fab svg { width: 24px; height: 24px; }
.bottom-nav .nav-order > span:not(.fab) {
  margin-top: 2px;
  color: var(--text);
}

/* ========== PAGE: COLLECTIONS ========== */
.page-hero {
  padding: 18px 0 8px;
}
.page-hero h1 {
  margin: 0 0 8px;
  font-size: clamp(1.35rem, 4vw, 1.8rem);
  font-weight: 800;
  text-align: center;
}
.page-hero h1::after {
  content: "";
  display: block;
  width: 48px;
  height: 3px;
  margin: 10px auto 0;
  background: var(--red);
  border-radius: 2px;
  box-shadow: 0 0 10px var(--red-glow);
}
.page-hero p {
  margin: 12px auto 0;
  max-width: 36ch;
  text-align: center;
  color: var(--muted);
  font-size: 0.88rem;
}

.cat-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  padding: 12px 0 20px;
}
.cat-tile {
  position: relative;
  aspect-ratio: 1;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  background: #080808 center/cover no-repeat;
}
.cat-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(0,0,0,0.85) 100%);
}
.cat-tile .info {
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  z-index: 1;
  padding: 12px;
}
.cat-tile .info strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 800;
}
.cat-tile .info span {
  font-size: 0.75rem;
  color: var(--muted);
}
.cat-tile:hover { border-color: rgba(227,6,19,0.5); }

.value-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  padding: 8px 0 24px;
  text-align: center;
}
.value-row div {
  display: grid;
  gap: 6px;
  justify-items: center;
  font-size: 0.72rem;
  color: var(--muted);
}
.value-row svg {
  width: 22px;
  height: 22px;
  color: var(--red);
}

/* ========== PAGE: CATEGORY LIST ========== */
.subhead {
  display: grid;
  grid-template-columns: 44px 1fr 44px;
  align-items: center;
  padding: 8px 0;
}
.page-subhead {
  margin-top: 4px;
}
.subhead h1,
.pdp-head-title {
  margin: 0;
  text-align: center;
  font-size: 1.15rem;
  font-weight: 800;
  font-family: var(--font-en);
  letter-spacing: 0.04em;
}
.pdp-head-title {
  font-size: clamp(0.95rem, 2.8vw, 1.1rem);
}
.subhead .count {
  display: block;
  font-size: 0.75rem;
  color: var(--muted);
  font-family: var(--font);
  font-weight: 500;
  letter-spacing: 0;
}
.pdp-info .price {
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
  font-size: 1.05rem;
}
.pdp-info .price b { color: var(--text); }
.pdp-info .price em {
  font-style: normal;
  color: var(--red);
}

.cat-banner {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  aspect-ratio: 16 / 7;
  background: #111 center/cover no-repeat;
  margin-bottom: 12px;
}
.cat-desc {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 0.85rem;
  text-align: center;
}

.toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 14px;
  padding: 8px 10px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #0a0a0a;
}
.toolbar button,
.toolbar .sort {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  color: #ddd;
  padding: 6px 8px;
  border-radius: 8px;
}
.toolbar button:hover { background: rgba(232,228,228,0.05); }

/* ========== PAGE: PDP ========== */
.pdp-gallery {
  direction: ltr; /* رفرنس موبایل: تصویر اصلی چپ · بندانگشتی راست */
  display: grid;
  grid-template-columns: minmax(0, 1fr) 68px;
  gap: 10px;
  margin-bottom: 16px;
}
.pdp-main {
  aspect-ratio: 1;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: #080808 center/cover no-repeat;
  overflow: hidden;
}
.pdp-thumbs {
  display: grid;
  gap: 8px;
  align-content: start;
}
.pdp-thumbs button {
  aspect-ratio: 1;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: #080808 center/cover no-repeat;
  overflow: hidden;
  padding: 0;
}
.pdp-thumbs button.active,
.pdp-thumbs button:hover {
  border-color: var(--red);
  box-shadow: 0 0 0 1px var(--red);
}

.pdp-info h1 {
  margin: 0 0 6px;
  font-size: clamp(1.35rem, 4vw, 1.7rem);
  font-family: var(--font-en);
  font-weight: 800;
  letter-spacing: 0.02em;
}
.pdp-info .price {
  font-size: 1.15rem;
  display: block;
  margin-bottom: 8px;
}
.rating {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  color: var(--muted);
  font-size: 0.85rem;
}
.rating .stars { color: var(--gold); font-size: 0.95rem; }

.pdp-feats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 16px;
  text-align: center;
}
.pdp-feats div {
  display: grid;
  gap: 6px;
  justify-items: center;
  font-size: 0.72rem;
  color: var(--muted);
}
.pdp-feats svg { width: 22px; height: 22px; color: var(--red); }

.qty {
  direction: ltr;
  display: grid;
  grid-template-columns: 48px 1fr 48px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #0c0c0c;
  margin-bottom: 12px;
  overflow: hidden;
}
.qty button {
  height: 46px;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text);
  background: #141414;
}
.qty button:hover { background: #1c1c1c; }
.qty output {
  text-align: center;
  font-weight: 800;
  font-size: 1.05rem;
}

.pdp-actions {
  display: grid;
  gap: 10px;
  margin-bottom: 18px;
}

.accordion details {
  border-bottom: 1px solid var(--line);
}
.accordion summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 2px;
  font-weight: 700;
  cursor: pointer;
}
.accordion summary::-webkit-details-marker { display: none; }
.accordion summary .mark {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
  display: grid;
  place-items: center;
  font-size: 1rem;
  color: var(--muted);
}
.accordion details[open] summary .mark { color: var(--red); border-color: var(--red); }
.accordion details[open] summary .mark::before { content: "−"; }
.accordion details:not([open]) summary .mark::before { content: "+"; }
.accordion .content {
  padding: 0 2px 14px;
  color: var(--muted);
  font-size: 0.88rem;
}

/* ========== COMPARE / DEMO NAV ========== */
.demo-switch {
  position: fixed;
  top: 12px;
  inset-inline-start: 12px;
  z-index: 80;
  display: none;
}

/* ========== RESPONSIVE ========== */
/* موبایل: مطابق رفرنس‌های آیفون کارفرما — بدون بریدگی و بدون گرید دسکتاپ */
@media (max-width: 639px) {
  .container { width: min(100% - 24px, var(--max)); }

  .usp-strip {
    padding: 8px 6px;
    min-height: 58px;
    width: min(100% - 8px, var(--max));
  }
  .usp-item {
    flex-direction: column;
    gap: 4px;
    padding-inline: 4px;
    font-size: 0.62rem;
    line-height: 1.25;
  }
  .usp-item span {
    white-space: normal;
    overflow: visible;
    text-overflow: unset;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
  }
  .usp-item svg {
    width: 20px;
    height: 20px;
  }

  .hero {
    min-height: 0;
  }
  .hero-stage {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    gap: 8px;
    padding: 12px 0 16px;
    min-height: 0;
    align-items: center;
  }
  .hero-inner {
    max-width: none;
    width: 100%;
    gap: 10px;
  }
  .hero-media {
    min-height: 200px;
    max-height: 260px;
    justify-content: flex-end;
    align-items: center;
  }
  .hero-media img {
    width: 118%;
    height: 100%;
    max-height: 260px;
    object-fit: contain;
    object-position: center right;
    transform: scale(1.04);
    transform-origin: center right;
  }
  .hero h1 {
    font-size: clamp(1.15rem, 5.4vw, 1.5rem);
  }
  .hero-benefits {
    font-size: 0.78rem;
  }
  .hero-ctas {
    max-width: 100%;
  }
  .hero-ctas .btn {
    min-height: 40px;
    padding: 8px 10px;
    font-size: 0.78rem;
    gap: 8px;
  }
  .hero-ctas .btn svg {
    width: 18px;
    height: 18px;
  }

  .trust-row {
    padding: 10px 4px;
    min-height: 0;
  }
  .trust-item {
    flex-direction: column;
    gap: 6px;
    padding: 4px 2px;
  }
  .trust-copy {
    justify-items: center;
    text-align: center;
  }
  .trust-item strong {
    white-space: normal;
    overflow: visible;
    text-overflow: unset;
    text-align: center;
    font-size: 0.62rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
  }
  .trust-item span { display: none; }
  .trust-item svg { width: 22px; height: 22px; }

  .custom-banner {
    grid-template-columns: 1fr;
    min-height: 0;
    padding: 14px 12px 16px;
    gap: 14px;
  }
  .custom-left {
    grid-template-columns: 58px minmax(0, 1fr);
    gap: 8px 12px;
    padding-inline-start: 0;
  }
  .custom-banner .blank {
    width: 58px;
    max-width: 58px;
  }
  .custom-copy {
    max-width: none;
  }
  .custom-copy h3 {
    font-size: 0.95rem;
    margin-bottom: 4px;
  }
  .custom-copy p {
    font-size: 0.7rem;
    margin-bottom: 8px;
  }
  .custom-copy .btn,
  .btn-custom-order {
    padding: 6px 12px 8px;
    font-size: 0.74rem;
    min-height: 36px;
  }
  .steps { gap: 0; }
  .step { max-width: none; }
  .step-icon {
    width: 42px;
    height: 42px;
    margin-bottom: 4px;
  }
  .step-icon svg { width: 18px; height: 18px; }
  .step:not(:last-child)::after {
    top: 14px;
    font-size: 0.8rem;
    content: "›";
  }
  .step-num {
    width: 1rem;
    height: 1rem;
    font-size: 0.6rem;
    margin-bottom: 3px;
  }
  .step strong { font-size: 0.68rem; }
  .step span { display: none; }

  .social-banner {
    grid-template-columns: minmax(0, 1fr) auto;
    text-align: right;
    justify-items: stretch;
    margin-bottom: 28px;
    gap: 8px;
    padding: 12px 10px;
    min-height: 132px;
    background-size: cover;
    background-position: center 40%;
  }
  .social-photo { display: none; }
  .warranty { --social-h: 86px; }
  .social-banner .ig-side { max-width: none; width: 100%; }
  .ig-top { gap: 8px; }
  .ig-icon { width: 34px; height: 34px; }
  .ig-copy {
    max-width: none;
    width: auto;
    gap: 6px;
  }
  .ig-title { font-size: 0.78rem; }
  .ig-desc { font-size: 0.6rem; }
  .ig-handle {
    min-width: 0;
    min-height: 28px;
    padding: 5px 10px;
    font-size: 0.68rem;
    gap: 10px;
  }

  .section-head {
    flex-direction: row;
    justify-content: center;
  }
  .section-head .btn-pill {
    font-size: 0.78rem;
    padding: 5px 12px 7px 10px;
  }

  .product-grid {
    grid-auto-columns: minmax(132px, 46vw);
  }
  .product-grid.is-wrap {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }
  .product-card .title { font-size: 0.72rem; }
  .product-card .meta .price,
  .price { font-size: 0.72rem; }
  .add-btn { width: 34px; height: 34px; }
  .add-btn svg { width: 16px; height: 16px; }

  .cat-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }
  .cat-tile .info { padding: 10px; }
  .cat-tile .info strong { font-size: 0.82rem; }

  .page-hero h1 { font-size: 1.35rem; }
  .page-hero p { font-size: 0.82rem; }

  .pdp-head-title { visibility: hidden; }
  .pdp-info { text-align: center; }
  .pdp-info h1 { text-align: center; }
  .pdp-info .price {
    justify-content: center;
    width: 100%;
  }
  .rating { justify-content: center; }
  .pdp-gallery {
    grid-template-columns: minmax(0, 1fr) 58px;
    gap: 8px;
  }

  .bottom-nav {
    max-width: none;
    width: 100%;
  }
}

@media (min-width: 640px) {
  .hero-inner { max-width: 440px; }
  .hero h1 .line2 { white-space: nowrap; }
  .product-grid {
    grid-auto-columns: minmax(140px, 1fr);
  }
  .custom-banner {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.75fr);
    min-height: 178px;
    padding: 18px 20px;
  }
  .custom-banner .blank { width: clamp(72px, 9vw, 100px); max-width: 100px; }
  .step:not(:last-child)::after { display: block; top: 20px; }
}

@media (min-width: 768px) {
  .cat-grid { grid-template-columns: repeat(3, 1fr); }
  .product-grid.is-wrap {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 900px) {
  body { padding-bottom: calc(var(--nav-h) + 24px + env(safe-area-inset-bottom, 0px)); }
  .bottom-nav {
    max-width: none;
    width: min(100%, 520px);
    border-radius: 18px 18px 0 0;
    left: 50%;
    right: auto;
    transform: translateX(-50%);
  }
  .hero { min-height: 520px; }
  .hero-stage {
    padding-block: 36px 44px;
    min-height: 480px;
    grid-template-columns: minmax(300px, 0.9fr) minmax(340px, 1.15fr);
  }
  .hero-media { min-height: 440px; }
  .hero-media img {
    width: 112%;
    max-height: 500px;
    object-fit: contain;
    object-position: center right;
    transform: scale(1.08);
    transform-origin: center right;
  }
  .product-grid:not(.is-wrap) {
    grid-auto-flow: dense;
    grid-template-columns: repeat(6, 1fr);
    grid-auto-columns: unset;
    overflow: visible;
  }
  .cat-scroll {
    grid-auto-flow: dense;
    grid-template-columns: repeat(5, 1fr);
    grid-auto-columns: unset;
    overflow: visible;
  }
  .cat-grid { grid-template-columns: repeat(4, 1fr); gap: 16px; }
  .trust-row { padding: 14px 16px; min-height: 64px; }
  .trust-item svg { width: 40px; height: 40px; }
  .social-banner {
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 1.4fr) minmax(0, 1fr);
    padding: 22px 26px;
    margin-bottom: 32px;
    gap: 14px 18px;
    min-height: 210px;
  }
  .warranty { --social-h: 196px; }
  .social-banner .ig-side { max-width: 400px; }
  .ig-icon { width: 62px; height: 62px; }
  .ig-copy { max-width: 260px; }
  .ig-title { font-size: 1.02rem; }
  .ig-desc { font-size: 0.76rem; }
  .ig-handle {
    min-width: 160px;
    min-height: 40px;
    padding: 8px 16px;
    font-size: 0.88rem;
  }
  .pdp-layout {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 28px;
    align-items: start;
  }
  .pdp-info { text-align: start; }
  .pdp-gallery { margin-bottom: 0; }
}

@media (min-width: 1100px) {
  .product-grid.is-wrap { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
  }
}

/* subtle entrance */
@keyframes rise {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: none; }
}
.hero-inner, .trust-row, .section-head, .cat-card, .product-card, .custom-banner, .social-banner {
  animation: rise 0.55s var(--transition) both;
}
.product-card:nth-child(2) { animation-delay: 0.05s; }
.product-card:nth-child(3) { animation-delay: 0.1s; }
.product-card:nth-child(4) { animation-delay: 0.15s; }
