/* ============================================================
   آذربو — Luxury Commerce UI
   Pattern adapted from Zafaraneh (Figma Make)
   UI/UX fixes: CTA contrast, touch wishlist, responsive trust,
   no emoji chrome, focus rings, reliable product media
   ============================================================ */

@font-face {
  font-family: 'Peyda';
  src: url('https://cdn.jsdelivr.net/gh/AmirAbbasVafaee/persian-fonts-cdn@main/fonts/peyda/peydaWeb-light.woff2') format('woff2');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Peyda';
  src: url('https://cdn.jsdelivr.net/gh/AmirAbbasVafaee/persian-fonts-cdn@main/fonts/peyda/PeydaWeb-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Peyda';
  src: url('https://cdn.jsdelivr.net/gh/AmirAbbasVafaee/persian-fonts-cdn@main/fonts/peyda/PeydaWeb-Medium.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Peyda';
  src: url('https://cdn.jsdelivr.net/gh/AmirAbbasVafaee/persian-fonts-cdn@main/fonts/peyda/PeydaWeb-SemiBold.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Peyda';
  src: url('https://cdn.jsdelivr.net/gh/AmirAbbasVafaee/persian-fonts-cdn@main/fonts/peyda/PeydaWeb-Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Peyda';
  src: url('https://cdn.jsdelivr.net/gh/AmirAbbasVafaee/persian-fonts-cdn@main/fonts/peyda/PeydaWeb-ExtraBold.woff2') format('woff2');
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Peyda';
  src: url('https://cdn.jsdelivr.net/gh/AmirAbbasVafaee/persian-fonts-cdn@main/fonts/peyda/PeydaWeb-Black.woff2') format('woff2');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

:root {
  /* Logo colors swapped: purple as primary, gold as accent */
  --charcoal: #1A1520;
  --charcoal-soft: #2A2233;
  --ink: #1A1520;
  --ink-muted: #6A6270;
  --ivory: #F7F3EF;
  --ivory-dark: #EDE6E1;
  --white: #FFFFFF;
  --saffron: #6B2D8B;
  --saffron-deep: #4E1F68;
  --saffron-soft: #F4EAF8;
  --brand-purple: #E8B820;
  --brand-purple-soft: #FFF8E1;
  --barberry: #D32F45;
  --barberry-soft: #FCE8EB;
  --line: #E5DED6;
  --mist: #D8D0C8;
  --success: #2F6B4F;
  --radius: 8px;
  --radius-sm: 6px;
  --radius-btn: 999px;
  --container: 72rem;
  --font: 'Peyda', Tahoma, system-ui, sans-serif;
  --shadow-card: 0 1px 0 rgba(26, 21, 32, 0.04), 0 10px 28px rgba(26, 21, 32, 0.07);
  --shadow-btn: 0 6px 18px rgba(107, 45, 139, 0.28);
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --grad-gold: linear-gradient(135deg, #8E44AD 0%, var(--saffron) 52%, var(--saffron-deep) 100%);
  --grad-gold-deep: linear-gradient(145deg, var(--saffron), var(--brand-purple));
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  background: var(--ivory);
  color: var(--ink);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
ul { list-style: none; margin: 0; padding: 0; }
h1,h2,h3,h4,p { margin: 0; }

.container {
  width: min(100% - 2rem, var(--container));
  margin-inline: auto;
}
.container-wide {
  width: min(100% - 2rem, var(--container));
  margin-inline: auto;
}

:focus-visible {
  outline: 2px solid var(--saffron);
  outline-offset: 3px;
}
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
.select2-selection:focus-visible,
button.lx-checkout-coupon-toggle:focus-visible {
  outline: none;
}

/* ---------- Topbar ---------- */
.lx-topbar {
  background: var(--charcoal);
  color: rgba(255,255,255,0.88);
  font-size: 0.72rem;
  text-align: center;
  padding: 0.4rem 1rem;
  letter-spacing: 0.01em;
}
.lx-topbar span { opacity: 0.45; margin-inline: 0.55rem; }

/* ---------- Header ---------- */
.lx-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow 0.25s ease;
}
.lx-header.is-scrolled { box-shadow: 0 8px 24px rgba(27,23,19,0.08); }
.lx-header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
  min-height: 60px;
  width: min(100% - 2rem, var(--container));
  margin-inline: auto;
}
.lx-logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}
.lx-logo img {
  height: 38px;
  width: auto;
  object-fit: contain;
}
.lx-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}
.lx-logo-text strong {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--charcoal);
}
.lx-logo-text em {
  font-style: normal;
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  color: var(--brand-purple);
  font-weight: 600;
  text-transform: uppercase;
}
.lx-nav {
  display: flex;
  justify-content: center;
  gap: 1.35rem;
  flex-wrap: wrap;
}
.lx-nav a {
  font-size: 0.84rem;
  font-weight: 500;
  color: var(--ink);
  position: relative;
  padding: 0.25rem 0;
  transition: color 0.2s ease;
}
.lx-nav a:hover,
.lx-nav a.is-active { color: var(--brand-purple); }
.lx-nav a.is-active::after {
  content: '';
  position: absolute;
  inset-inline: 0;
  bottom: -2px;
  height: 2px;
  background: var(--saffron);
  border-radius: 2px;
}
.lx-actions {
  display: flex;
  align-items: center;
  gap: 0.2rem;
}
.lx-icon {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border: none;
  background: transparent;
  color: var(--charcoal);
  position: relative;
  border-radius: 50%;
  transition: background 0.2s ease, color 0.2s ease;
}
.lx-icon svg { width: 18px; height: 18px; }
.lx-icon:hover {
  color: var(--saffron-deep);
  background: var(--saffron-soft);
}
.lx-cart-count {
  position: absolute;
  top: 4px;
  left: 4px;
  min-width: 16px;
  height: 16px;
  padding: 0 4px;
  border-radius: 999px;
  background: var(--saffron);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  display: grid;
  place-items: center;
}
.lx-menu-toggle { display: none; }

/* ---------- Hero ---------- */
.lx-hero {
  position: relative;
  min-height: min(78vh, 640px);
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--charcoal-soft);
  color: #fff;
}
.lx-hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background: var(--charcoal);
}
.lx-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(105deg, rgba(27,23,19,0.88) 0%, rgba(27,23,19,0.58) 48%, rgba(27,23,19,0.4) 100%);
  pointer-events: none;
}
.lx-hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.06);
  filter: saturate(1.08) contrast(1.04);
}
@keyframes heroKen {
  from { transform: scale(1.04) translate(0, 0); }
  to { transform: scale(1.1) translate(-1.5%, 1%); }
}
.lx-hero-inner {
  position: relative;
  z-index: 1;
  width: min(100% - 2rem, 34rem);
  margin-inline-start: max(1rem, calc((100% - min(100% - 2rem, var(--container))) / 2));
  margin-inline-end: auto;
  padding-block: clamp(2.25rem, 5vw, 3.5rem) 3.5rem;
}
.lx-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--saffron);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 0.85rem;
  opacity: 0;
  animation: fadeUp 0.7s var(--ease-out) 0.1s forwards;
}
.lx-eyebrow::after {
  content: '';
  width: 1.75rem;
  height: 1px;
  background: var(--saffron);
}
.lx-hero h1 {
  font-size: clamp(2rem, 5vw, 3.15rem);
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 0.75rem;
  opacity: 0;
  animation: fadeUp 0.75s var(--ease-out) 0.2s forwards;
}
.lx-hero h1 span {
  display: block;
  color: #E8B45A;
  font-size: 0.58em;
  font-weight: 700;
  margin-top: 0.12em;
}
.lx-hero-lead {
  color: rgba(255,255,255,0.78);
  font-size: 0.92rem;
  line-height: 1.75;
  max-width: 34ch;
  margin-bottom: 1.35rem;
  opacity: 0;
  animation: fadeUp 0.75s var(--ease-out) 0.32s forwards;
}
.lx-hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 1.75rem;
  opacity: 0;
  animation: fadeUp 0.75s var(--ease-out) 0.42s forwards;
}
.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  min-height: 42px;
  padding: 0.55rem 1.2rem;
  background: var(--grad-gold);
  color: #fff;
  font-weight: 700;
  font-size: 0.84rem;
  border: none;
  border-radius: var(--radius-btn);
  box-shadow: var(--shadow-btn);
  position: relative;
  overflow: hidden;
  transition: transform 0.2s var(--ease-out), box-shadow 0.2s ease, filter 0.2s ease;
}
.btn-gold::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 40%, rgba(255,255,255,0.28) 50%, transparent 60%);
  transform: translateX(-120%);
  transition: transform 0.55s ease;
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(184, 120, 26, 0.38);
  filter: brightness(1.05);
}
.btn-gold:hover::after { transform: translateX(120%); }
.btn-gold:active { transform: translateY(0); }
.btn-gold svg { width: 14px; height: 14px; position: relative; z-index: 1; }
.btn-gold > * { position: relative; z-index: 1; }
.btn-ghost-light {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0.55rem 1.15rem;
  background: rgba(255,255,255,0.08);
  color: #fff;
  font-weight: 600;
  font-size: 0.84rem;
  border: 1px solid rgba(255,255,255,0.5);
  border-radius: var(--radius-btn);
  backdrop-filter: blur(6px);
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}
.btn-ghost-light:hover {
  background: rgba(255,255,255,0.16);
  border-color: #fff;
  transform: translateY(-2px);
}
.lx-hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 1.35rem;
  padding-top: 1.15rem;
  border-top: 1px solid rgba(255,255,255,0.14);
  opacity: 0;
  animation: fadeUp 0.75s var(--ease-out) 0.55s forwards;
}
.lx-hero-stats div { min-width: 5.5rem; }
.lx-hero-stats strong {
  display: block;
  font-size: 1.1rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 0.1rem;
}
.lx-hero-stats span {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.55);
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: none; }
}
.lx-scroll-hint {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.55);
  font-size: 0.72rem;
}
.lx-scroll-hint i {
  width: 1px;
  height: 28px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.6), transparent);
  display: block;
  animation: scrollPulse 1.6s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.35; transform: scaleY(0.85); }
  50% { opacity: 1; transform: scaleY(1); }
}

/* ---------- Trust bar ---------- */
.lx-trust {
  background: var(--white);
  border-bottom: 1px solid var(--line);
  padding: 1rem 0;
}
.lx-trust-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
}
.lx-trust-item {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  padding: 0.65rem 0.85rem;
  border-inline-start: 1px solid var(--line);
}
.lx-trust-item:first-child { border-inline-start: 0; }
.lx-trust-item svg {
  width: 18px;
  height: 18px;
  color: var(--saffron);
  flex-shrink: 0;
  margin-top: 0.1rem;
  transition: transform 0.3s var(--ease-out);
}
.lx-trust-item:hover svg { transform: translateY(-2px) scale(1.08); }
.lx-trust-item strong {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 0.1rem;
}
.lx-trust-item span {
  font-size: 0.7rem;
  color: var(--ink-muted);
  line-height: 1.45;
}

/* ---------- Section heads ---------- */
.lx-section { padding: clamp(2.5rem, 5vw, 3.75rem) 0; }
.lx-section.bg-ivory { background: var(--ivory); }
.lx-section.bg-ivory-dark { background: var(--ivory-dark); }
.lx-section.bg-white { background: var(--white); }
.lx-section.bg-saffron-soft { background: var(--saffron-soft); }
.lx-section.bg-charcoal {
  background: var(--charcoal);
  color: #fff;
}
.lx-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}
.lx-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--brand-purple);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.4rem;
}
.lx-kicker::before,
.lx-kicker::after {
  content: '';
  width: 1.1rem;
  height: 1px;
  background: var(--saffron);
}
.lx-kicker.solo::before { display: none; }
.lx-head h2,
.lx-block h2 {
  font-size: clamp(1.3rem, 2.4vw, 1.75rem);
  font-weight: 800;
  line-height: 1.35;
  color: inherit;
}
.lx-link-more {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--saffron-deep);
}
.lx-link-more:hover { color: var(--charcoal); }
.lx-link-more svg { width: 15px; height: 15px; }

/* ---------- Product cards ---------- */
.lx-products {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.lx-products-3 {
  grid-template-columns: repeat(3, 1fr);
}
.lx-card {
  --go: 2.75rem;
  --card-r: 1rem;
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--card-r);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out), border-color 0.25s ease;
}
.lx-card:hover {
  transform: translateY(-4px);
  border-color: rgba(184, 120, 26, 0.28);
  box-shadow: 0 14px 36px rgba(27, 23, 19, 0.1);
}
.lx-card-inner {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-width: 0;
}
.lx-card-media {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  background: #EFE8DC;
}
.lx-card-media > a {
  display: block;
  width: 100%;
  height: 100%;
}
.lx-card-media > a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s var(--ease-out);
}
.lx-card:hover .lx-card-media img { transform: scale(1.05); }

/* ---------- Flash sale — clean amazing box ---------- */
.lx-amazing {
  display: grid;
  grid-template-columns: 11.5rem 1fr;
  gap: 0.85rem;
  align-items: stretch;
  padding: 0.85rem;
  border-radius: 1.25rem;
  background: linear-gradient(145deg, #9B1B33 0%, #7A1528 100%);
  box-shadow: 0 12px 32px rgba(122, 21, 40, 0.22);
}
.lx-amazing-promo {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 0.85rem;
  padding: 1rem 0.5rem;
  color: #fff;
}
.lx-amazing-icon {
  width: 3.25rem;
  height: 3.25rem;
}
.lx-amazing-icon svg { width: 100%; height: 100%; }
.lx-amazing-promo h2 {
  font-size: 1.35rem;
  font-weight: 800;
  line-height: 1.2;
  margin: 0;
}
.lx-amazing-timer {
  display: flex;
  align-items: center;
  gap: 0.28rem;
  direction: ltr;
}
.lx-amazing-timer b {
  min-width: 2.15rem;
  padding: 0.28rem 0.2rem;
  background: #fff;
  color: #1B1713;
  border-radius: 6px;
  font-size: 0.92rem;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
  line-height: 1.2;
  text-align: center;
}
.lx-amazing-timer span {
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
  opacity: 0.9;
}
.lx-amazing-all {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 0.15rem;
  padding: 0.45rem 0.95rem;
  background: rgba(255,255,255,0.94);
  color: #1B1713;
  font-size: 0.78rem;
  font-weight: 700;
  border-radius: 999px;
  transition: background 0.2s ease, transform 0.2s ease;
}
.lx-amazing-all svg { width: 14px; height: 14px; }
.lx-amazing-all:hover {
  background: #fff;
  transform: translateY(-1px);
}
.lx-amazing-scroller {
  position: relative;
  min-width: 0;
  display: flex;
  align-items: center;
}
.lx-amazing-track {
  display: flex;
  gap: 0.75rem;
  overflow-x: auto;
  overflow-y: hidden;
  width: 100%;
  padding: 0.15rem 0.35rem 0.45rem;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-x: contain;
  cursor: grab;
  scrollbar-width: none;
}
.lx-amazing-track.is-dragging {
  cursor: grabbing;
  scroll-behavior: auto;
  scroll-snap-type: none;
}
.lx-amazing-track.is-dragging a { pointer-events: none; }
.lx-amazing-track::-webkit-scrollbar { display: none; }
.lx-amazing-nav {
  position: absolute;
  top: 50%;
  z-index: 3;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 50%;
  background: #fff;
  color: #1B1713;
  display: grid;
  place-items: center;
  box-shadow: 0 6px 18px rgba(0,0,0,0.18);
  transition: opacity 0.2s ease, transform 0.2s ease, background 0.2s ease;
}
.lx-amazing-nav svg { width: 16px; height: 16px; }
.lx-amazing-nav:hover {
  background: #F8F4ED;
  transform: translateY(-50%) scale(1.05);
}
.lx-amazing-nav:disabled {
  opacity: 0;
  pointer-events: none;
}
.lx-amazing-nav.is-prev { inset-inline-start: 0.35rem; }
.lx-amazing-nav.is-next { inset-inline-end: 0.35rem; }
.lx-amazing-card {
  position: relative;
  flex: 0 0 11.5rem;
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 0.85rem;
  overflow: hidden;
  scroll-snap-align: start;
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s ease;
  user-select: none;
}
.lx-amazing-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(0,0,0,0.14);
}
.lx-amazing-media {
  position: relative;
  display: block;
  aspect-ratio: 1;
  background: #F3EEE6;
  overflow: hidden;
}
.lx-amazing-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s var(--ease-out);
}
.lx-amazing-card:hover .lx-amazing-media img { transform: scale(1.04); }
.lx-amazing-off {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  z-index: 1;
  padding: 0.15rem 0.4rem;
  background: #9B1B33;
  color: #fff;
  font-size: 0.68rem;
  font-weight: 800;
  border-radius: 6px;
}
.lx-amazing-body {
  padding: 0.65rem 0.7rem 0.85rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  flex: 1;
}
.lx-amazing-body h3 {
  font-size: 0.78rem;
  font-weight: 600;
  line-height: 1.55;
  color: var(--ink);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 2.4em;
}
.lx-amazing-price {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  margin-top: auto;
}
.lx-amazing-price strong {
  font-size: 0.86rem;
  font-weight: 800;
  color: var(--ink);
}
.lx-amazing-price strong::after {
  content: ' تومان';
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--ink-muted);
}
.lx-amazing-price del {
  font-size: 0.72rem;
  color: var(--mist);
}

@media (max-width: 860px) {
  .lx-amazing {
    grid-template-columns: 1fr;
    padding: 0.75rem;
  }
  .lx-amazing-promo {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 0.75rem 1rem;
    padding: 0.35rem 0.25rem 0.65rem;
  }
  .lx-amazing-icon { width: 2.4rem; height: 2.4rem; }
  .lx-amazing-promo h2 { font-size: 1.15rem; margin-inline-end: auto; }
  .lx-amazing-card { flex-basis: 10.25rem; }
}
@media (max-width: 560px) {
  .lx-amazing-all { padding-inline: 0.8rem; }
  .lx-amazing-card { flex-basis: 9.5rem; }
}
.lx-badge {
  position: absolute;
  top: 0.65rem;
  right: 0.65rem;
  padding: 0.2rem 0.5rem;
  font-size: 0.66rem;
  font-weight: 700;
  z-index: 2;
  border-radius: var(--radius-sm);
}
.lx-badge.sale {
  background: var(--barberry-soft);
  color: var(--barberry);
}
.lx-badge.tag {
  background: rgba(27,23,19,0.88);
  color: #fff;
}
.lx-wish {
  position: absolute;
  top: 0.65rem;
  left: 0.65rem;
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,0.94);
  border: none;
  border-radius: 50%;
  color: var(--ink-muted);
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.2s ease, color 0.2s ease, background 0.2s ease, transform 0.2s ease;
  z-index: 2;
  box-shadow: 0 4px 12px rgba(27,23,19,0.1);
}
.lx-card:hover .lx-wish,
.lx-wish.is-on {
  opacity: 1;
  transform: none;
}
.lx-wish:hover,
.lx-wish.is-on { color: var(--barberry); }
.lx-wish svg { width: 14px; height: 14px; }
.lx-card-body {
  position: relative;
  padding: 0.85rem 0.95rem 1rem;
  /* space for circular CTA on the left (RTL end) */
  padding-inline-end: calc(var(--go) + 1rem);
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  flex: 1;
}
.lx-card-cat {
  font-size: 0.66rem;
  color: var(--ink-muted);
  font-weight: 600;
}
.lx-card-body h3 {
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.45;
}
.lx-card-body h3 a:hover { color: var(--saffron-deep); }
.lx-card-meta {
  margin-top: auto;
  padding-top: 0.5rem;
}
.lx-price {
  text-align: right;
}
.lx-price strong {
  display: block;
  font-size: 0.92rem;
  font-weight: 800;
  line-height: 1.35;
}
.lx-price del {
  font-size: 0.7rem;
  color: #9A9185;
}
.lx-card-go {
  position: absolute;
  z-index: 3;
  left: 0.75rem;
  bottom: 0.75rem;
  width: var(--go);
  height: var(--go);
  border: none;
  border-radius: 50%;
  background: var(--charcoal);
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 6px 16px rgba(27, 23, 19, 0.2);
  transition: background 0.25s ease, transform 0.2s var(--ease-out), box-shadow 0.25s ease;
}
.lx-card-go svg {
  width: 1.05rem;
  height: 1.05rem;
}
.lx-card:hover .lx-card-go {
  background: var(--grad-gold);
  box-shadow: 0 8px 18px rgba(184, 120, 26, 0.32);
}
.lx-card-go:active { transform: scale(0.94); }
.lx-card-go.is-added {
  background: var(--success);
  box-shadow: none;
}

/* ---------- Categories ---------- */
.lx-cats {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.7rem;
}
.lx-cat {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--charcoal);
  color: #fff;
  border-radius: var(--radius);
}
.lx-cat img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s var(--ease-out);
  opacity: 0.88;
}
.lx-cat::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(27,23,19,0.82) 0%, transparent 55%);
  transition: background 0.3s ease;
}
.lx-cat:hover img { transform: scale(1.07); }
.lx-cat:hover::after {
  background: linear-gradient(to top, rgba(27,23,19,0.9) 0%, rgba(184,120,26,0.15) 55%, transparent 75%);
}
.lx-cat-label {
  position: absolute;
  inset-inline: 0.75rem;
  bottom: 0.75rem;
  z-index: 1;
}
.lx-cat-label strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 0.15rem;
}
.lx-cat-label span {
  font-size: 0.72rem;
  opacity: 0.75;
  transition: opacity 0.2s ease, letter-spacing 0.2s ease;
}
.lx-cat:hover .lx-cat-label span {
  opacity: 1;
  letter-spacing: 0.04em;
}

/* ---------- Story / Feature blocks ---------- */
.lx-split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(1.5rem, 4vw, 3.5rem);
  align-items: center;
}
.lx-split.reverse { direction: ltr; }
.lx-split.reverse > * { direction: rtl; }
.lx-split-media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/5;
  background: var(--ivory-dark);
  border-radius: var(--radius);
}
.lx-split-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease-out);
}
.lx-split:hover .lx-split-media img { transform: scale(1.04); }
.lx-split-copy p {
  color: var(--ink-muted);
  margin: 0.85rem 0 1.15rem;
  max-width: 40ch;
  font-size: 0.9rem;
}
.lx-section.bg-charcoal .lx-split-copy p { color: rgba(255,255,255,0.7); }
.lx-checks {
  display: grid;
  gap: 0.55rem;
  margin-bottom: 1.5rem;
}
.lx-checks li {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  font-size: 0.9rem;
}
.lx-checks svg {
  width: 18px;
  height: 18px;
  color: var(--saffron);
  flex-shrink: 0;
  margin-top: 0.15rem;
}

/* ---------- Gift tabs ---------- */
.lx-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 1.25rem;
}
.lx-tab {
  min-height: 36px;
  padding: 0.35rem 0.9rem;
  border: 1px solid var(--mist);
  background: transparent;
  font-weight: 600;
  font-size: 0.8rem;
  color: var(--ink-muted);
  border-radius: var(--radius-btn);
  transition: all 0.2s ease;
}
.lx-tab:hover { border-color: var(--saffron); color: var(--saffron-deep); }
.lx-tab.is-active {
  background: var(--charcoal);
  border-color: var(--charcoal);
  color: #fff;
  box-shadow: 0 4px 12px rgba(27,23,19,0.15);
}

/* ---------- Why / features ---------- */
.lx-why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}
.lx-why-points {
  display: grid;
  gap: 1.15rem;
}
.lx-why-point {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.75rem;
  padding: 0.85rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s ease, border-color 0.25s ease;
}
.lx-why-point:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-card);
  border-color: rgba(184,120,26,0.25);
}
.lx-why-point b {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  background: var(--saffron-soft);
  color: var(--saffron-deep);
  font-size: 0.72rem;
  font-weight: 800;
  border-radius: var(--radius-sm);
}
.lx-why-point strong {
  display: block;
  margin-bottom: 0.15rem;
  font-size: 0.88rem;
}
.lx-why-point span {
  font-size: 0.8rem;
  color: var(--ink-muted);
}

.lx-head-lead {
  color: var(--ink-muted);
  margin-top: 0.45rem;
  max-width: 40ch;
  font-size: 0.9rem;
}

/* ---------- Magazine ---------- */
.lx-posts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.15rem;
}
.lx-post {
  background: var(--white);
  border: 1px solid var(--line);
  overflow: hidden;
  border-radius: var(--radius);
  transition: box-shadow 0.3s ease, transform 0.3s var(--ease-out);
}
.lx-post:hover {
  box-shadow: var(--shadow-card);
  transform: translateY(-3px);
}
.lx-post-media {
  aspect-ratio: 16/10;
  overflow: hidden;
  background: var(--ivory-dark);
}
.lx-post-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}
.lx-post:hover .lx-post-media img { transform: scale(1.04); }
.lx-post-body { padding: 1rem 1.05rem 1.2rem; }
.lx-post-meta {
  display: flex;
  gap: 0.75rem;
  font-size: 0.72rem;
  color: var(--saffron-deep);
  font-weight: 700;
  margin-bottom: 0.45rem;
}
.lx-post-body h3 {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.5;
}
.lx-post-body h3 a {
  color: inherit;
  text-decoration: none;
}
.lx-post-body h3 a:hover { color: var(--saffron-deep); }
.lx-post-excerpt {
  margin: 0.45rem 0 0.75rem;
  font-size: 0.84rem;
  color: var(--ink-muted);
  line-height: 1.65;
}
.lx-post-placeholder {
  display: block;
  width: 100%;
  height: 100%;
  background:
    linear-gradient(145deg, #efe4d2, #f7f1e6),
    radial-gradient(circle at 30% 40%, rgba(184,120,26,0.18), transparent 55%);
}
.lx-post-meta a {
  color: inherit;
  text-decoration: none;
}
.lx-post .lx-link-more {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--saffron-deep);
  text-decoration: none;
}
.lx-post .lx-link-more svg {
  width: 14px;
  height: 14px;
  transform: scaleX(-1);
}

/* ---------- CTA band ---------- */
.lx-cta {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(160deg, #1a1612 0%, #2a2218 48%, #1c1814 100%);
  color: #fff;
  text-align: center;
  padding: clamp(3.25rem, 7vw, 5rem) 1.25rem;
}
.lx-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(232,180,90,0.22), transparent 55%),
    radial-gradient(circle at 12% 80%, rgba(184,120,26,0.18), transparent 38%),
    radial-gradient(circle at 88% 70%, rgba(184,120,26,0.12), transparent 40%);
  animation: ctaGlow 10s ease-in-out infinite alternate;
}
.lx-cta::after {
  content: '';
  position: absolute;
  inset: 1.25rem;
  border: 1px solid rgba(232,180,90,0.18);
  border-radius: 12px;
  pointer-events: none;
}
@keyframes ctaGlow {
  from { opacity: 0.75; transform: scale(1); }
  to { opacity: 1; transform: scale(1.06); }
}
.lx-cta-inner {
  position: relative;
  z-index: 1;
  max-width: 42rem;
  margin-inline: auto;
}
.lx-cta-eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #E8B45A;
  font-weight: 700;
  margin-bottom: 0.85rem;
  opacity: 0.95;
}
.lx-cta h2 {
  font-size: clamp(1.55rem, 3.4vw, 2.35rem);
  font-weight: 800;
  line-height: 1.35;
  margin-bottom: 0.85rem;
  letter-spacing: -0.01em;
}
.lx-cta p {
  color: rgba(255,255,255,0.72);
  max-width: 38ch;
  margin: 0 auto 1.5rem;
  font-size: 0.95rem;
  line-height: 1.75;
}
.lx-cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}
.lx-cta-actions .btn-gold {
  gap: 0.45rem;
  min-height: 48px;
  padding-inline: 1.45rem;
  font-size: 0.92rem;
}
.lx-cta-perks {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.65rem 1.35rem;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.58);
}
.lx-cta-perks li {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.lx-cta-perks li::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #E8B45A;
  opacity: 0.85;
}

/* ---------- Footer ---------- */
.lx-footer {
  background: var(--charcoal);
  color: rgba(255,255,255,0.72);
  padding: 3.5rem 0 1.5rem;
}
.lx-footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 2.5rem;
}
.lx-footer h4 {
  color: #fff;
  font-size: 0.92rem;
  margin-bottom: 1rem;
  font-weight: 700;
}
.lx-footer a {
  display: block;
  padding: 0.28rem 0;
  font-size: 0.86rem;
  color: rgba(255,255,255,0.65);
}
.lx-footer a:hover { color: #E8B45A; }
.lx-footer-brand p {
  margin-top: 0.85rem;
  font-size: 0.86rem;
  max-width: 28ch;
  line-height: 1.75;
}
.lx-social {
  display: flex;
  gap: 0.5rem;
  margin-top: 1.1rem;
}
.lx-social a {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,0.18);
  padding: 0;
}
.lx-social a:hover {
  border-color: var(--saffron);
  color: var(--saffron);
}
.lx-social svg { width: 16px; height: 16px; }
.lx-footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1.15rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.45);
}

/* ---------- Drawers / overlay (keep JS compatible) ---------- */
.overlay {
  position: fixed;
  inset: 0;
  background: rgba(27,23,19,0.48);
  backdrop-filter: blur(2px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.28s ease;
  z-index: 50;
}
.overlay.is-open { opacity: 1; pointer-events: auto; }
.drawer {
  position: fixed;
  top: 0;
  bottom: 0;
  width: min(100%, 400px);
  background: var(--ivory);
  z-index: 60;
  transform: translateX(110%);
  transition: transform 0.38s var(--ease-out);
  display: flex;
  flex-direction: column;
  box-shadow: -12px 0 40px rgba(27, 23, 19, 0.12);
}
.drawer-cart { left: 0; right: auto; transform: translateX(-110%); box-shadow: 12px 0 40px rgba(27, 23, 19, 0.12); }
.drawer-menu { right: 0; background: var(--white); }
.drawer.is-open { transform: none; }
.drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.15rem 1.25rem;
  background: var(--white);
  border-bottom: 1px solid var(--line);
}
.drawer-head-text { display: grid; gap: 0.1rem; }
.drawer-kicker {
  margin: 0;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--saffron);
}
.drawer-head h3 {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 800;
}
.drawer-body {
  padding: 1rem 1.1rem;
  overflow: auto;
  flex: 1;
}
.drawer-foot {
  padding: 1.1rem 1.25rem 1.35rem;
  background: var(--white);
  border-top: 1px solid var(--line);
  display: grid;
  gap: 0.55rem;
  box-shadow: 0 -8px 24px rgba(27, 23, 19, 0.04);
}
.cart-foot-note {
  margin: -0.15rem 0 0.15rem;
  font-size: 0.72rem;
  color: var(--ink-muted);
  text-align: center;
}
.btn-icon {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--white);
  color: var(--ink);
  transition: background 0.2s ease, border-color 0.2s ease;
}
.btn-icon:hover {
  background: var(--ivory);
  border-color: var(--mist);
}
.btn-icon svg { width: 16px; height: 16px; }

/* Cart lines */
.cart-empty {
  display: grid;
  place-items: center;
  gap: 0.75rem;
  text-align: center;
  padding: 2.5rem 1rem;
  color: var(--ink-muted);
}
.cart-empty svg {
  width: 48px;
  height: 48px;
  opacity: 0.45;
}
.cart-empty p {
  margin: 0;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--ink);
}
.cart-empty span {
  font-size: 0.78rem;
}
.cart-line {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 0.85rem;
  padding: 0.85rem;
  margin-bottom: 0.65rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 1rem;
  align-items: start;
  transition: border-color 0.2s ease, box-shadow 0.25s ease;
}
.cart-line:hover {
  border-color: rgba(184, 120, 26, 0.28);
  box-shadow: 0 8px 20px rgba(27, 23, 19, 0.05);
}
.cart-line-media {
  position: relative;
  width: 72px;
  height: 72px;
  border-radius: 0.75rem;
  overflow: hidden;
  background: var(--ivory-dark);
}
.cart-line-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cart-line-body {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  min-width: 0;
}
.cart-line-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.5rem;
}
.cart-line h4 {
  margin: 0;
  font-size: 0.86rem;
  font-weight: 700;
  line-height: 1.45;
}
.cart-line .meta {
  font-size: 0.7rem;
  color: var(--ink-muted);
  font-weight: 600;
}
.cart-line-remove {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border: none;
  border-radius: 50%;
  background: transparent;
  color: var(--ink-muted);
  transition: background 0.2s ease, color 0.2s ease;
}
.cart-line-remove:hover {
  background: var(--barberry-soft);
  color: var(--barberry);
}
.cart-line-remove svg { width: 14px; height: 14px; }
.cart-line-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  margin-top: 0.15rem;
}
.cart-line .line-price {
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--ink);
}
.cart-line .qty {
  display: inline-flex;
  align-items: center;
  gap: 0;
  background: var(--ivory);
  border: 1px solid var(--line);
  border-radius: 999px;
  overflow: hidden;
}
.cart-line .qty button {
  width: 30px;
  height: 30px;
  border: none;
  background: transparent;
  color: var(--ink);
  font-size: 1rem;
  font-weight: 600;
  display: grid;
  place-items: center;
  transition: background 0.15s ease;
}
.cart-line .qty button:hover { background: rgba(184, 120, 26, 0.12); }
.cart-line .qty span {
  min-width: 1.6rem;
  text-align: center;
  font-size: 0.8rem;
  font-weight: 700;
}
.cart-summary {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-weight: 700;
  margin-bottom: 0.1rem;
  padding: 0.15rem 0;
}
.cart-summary span {
  font-size: 0.84rem;
  color: var(--ink-muted);
  font-weight: 600;
}
.cart-summary strong {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--ink);
}

.search-modal {
  position: fixed;
  inset: 0;
  z-index: 70;
  background: rgba(27,23,19,0.5);
  display: none;
  align-items: flex-start;
  justify-content: center;
  padding: 12vh 1rem;
}
.search-modal.is-open { display: flex; }
.search-panel {
  width: min(100%, 560px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 1rem;
  padding: 1rem;
  box-shadow: 0 20px 50px rgba(27, 23, 19, 0.18);
}
.search-field {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border-bottom: 1px solid var(--line);
  padding-bottom: 0.65rem;
}
.search-field input {
  flex: 1;
  border: none;
  outline: none;
  font: inherit;
  font-size: 1rem;
  background: transparent;
}

/* Toasts — unified luxury */
.toast-stack {
  position: fixed;
  bottom: max(1.25rem, env(safe-area-inset-bottom));
  inset-inline-start: 1.25rem;
  inset-inline-end: auto;
  z-index: 9999;
  display: grid;
  gap: 0.55rem;
  pointer-events: none;
  width: min(100% - 2rem, 22rem);
}
.toast {
  pointer-events: auto;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.8rem 0.95rem;
  background: rgba(27, 23, 19, 0.94);
  color: #fff;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 600;
  line-height: 1.35;
  box-shadow: 0 12px 32px rgba(27, 23, 19, 0.28);
  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(10px);
  opacity: 1;
  transform: none;
}
.toast-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(184, 120, 26, 0.25);
  color: var(--saffron);
}
.toast-icon svg { width: 14px; height: 14px; }
.toast--success .toast-icon { background: rgba(47, 107, 79, 0.28); color: #7dcea0; }
.toast--wish .toast-icon { background: rgba(139, 26, 46, 0.28); color: #f0a0b0; }
.toast--info .toast-icon { background: rgba(255,255,255,0.1); color: #f0e6d4; }
.toast--remove .toast-icon { background: rgba(139, 26, 46, 0.22); color: #f0a0b0; }
.toast.is-out {
  opacity: 0;
  transform: translateY(8px) scale(0.96);
}
.mobile-bar {
  display: none;
  position: fixed;
  inset-inline: 0;
  bottom: 0;
  z-index: 45;
  background: var(--white);
  border-top: 1px solid var(--line);
  grid-template-columns: repeat(5, 1fr);
  padding: 0.35rem 0 calc(0.35rem + env(safe-area-inset-bottom));
}
.mobile-bar a {
  display: grid;
  place-items: center;
  gap: 0.15rem;
  font-size: 0.65rem;
  color: var(--ink-muted);
  padding: 0.35rem;
}
.mobile-bar a.is-active,
.mobile-bar a:hover { color: var(--saffron-deep); }
.mobile-bar svg { width: 18px; height: 18px; }
.btn-primary, .btn-dark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0.55rem 1rem;
  font-weight: 700;
  font-size: 0.84rem;
  border: none;
  text-align: center;
  border-radius: var(--radius-btn);
  transition: transform 0.15s ease, filter 0.2s ease;
}
.btn-primary { background: var(--grad-gold); color: #fff; }
.btn-dark { background: var(--charcoal); color: #fff; }
.btn-primary:hover, .btn-dark:hover { filter: brightness(1.06); transform: translateY(-1px); }
.btn-icon {
  width: 36px;
  height: 36px;
  border: none;
  background: transparent;
  display: grid;
  place-items: center;
}
.btn-icon svg { width: 18px; height: 18px; }

/* ---------- Responsive ---------- */
@media (max-width: 1100px) {
  .lx-products,
  .lx-products-3 { grid-template-columns: repeat(2, 1fr); }
  .lx-cats { grid-template-columns: repeat(3, 1fr); }
  .lx-trust-grid { grid-template-columns: repeat(3, 1fr); }
  .lx-trust-item { border-inline-start: 0; border-top: 1px solid var(--line); }
  .lx-trust-item:nth-child(-n+3) { border-top: 0; }
  .lx-footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 860px) {
  .lx-nav { display: none; }
  .lx-menu-toggle { display: grid; }
  .lx-split,
  .lx-split.reverse,
  .lx-why-grid { grid-template-columns: 1fr; }
  .lx-split.reverse { direction: rtl; }
  .lx-posts { grid-template-columns: 1fr; }
  .lx-cta::after { inset: 0.85rem; }
  .lx-cats { grid-template-columns: repeat(2, 1fr); }
  .lx-hero-inner { margin-inline: auto; max-width: none; }
  .mobile-bar { display: grid; }
  body { padding-bottom: 64px; }
}
@media (max-width: 560px) {
  .lx-products { grid-template-columns: 1fr; }
  .lx-trust-grid { grid-template-columns: 1fr 1fr; }
  .lx-cats { grid-template-columns: 1fr 1fr; }
  .lx-footer-grid { grid-template-columns: 1fr; }
  .lx-cta-perks { gap: 0.45rem 0.9rem; font-size: 0.72rem; }
  /* UX fix: wishlist always visible on touch */
  .lx-wish { opacity: 1; }
}
@media (hover: none) {
  .lx-wish { opacity: 1; transform: none; }
}

/* Soft scroll reveals — site life */
.lx-reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.lx-reveal.is-in {
  opacity: 1;
  transform: none;
}
.lx-card.lx-reveal { transition-duration: 0.55s; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
  }
  .lx-reveal,
  .lx-eyebrow,
  .lx-hero h1,
  .lx-hero-lead,
  .lx-hero-cta,
  .lx-hero-stats {
    opacity: 1 !important;
    transform: none !important;
  }
  .lx-hero-video { transform: none !important; }
  .lx-hero-bg { transform: none !important; animation: none !important; }
}

/* ============================================================
   Inner pages — shop / product / cart / checkout
   ============================================================ */
.lx-page-hero {
  padding: 1.75rem 0 1.25rem;
  background: var(--ivory);
  border-bottom: 1px solid var(--line);
}
.lx-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  color: var(--ink-muted);
  margin-bottom: 0.65rem;
}
.lx-breadcrumb a:hover { color: var(--saffron-deep); }
.lx-breadcrumb span[aria-hidden] { opacity: 0.45; }
.lx-page-hero h1 {
  font-size: clamp(1.45rem, 3vw, 1.95rem);
  font-weight: 800;
  line-height: 1.3;
  margin: 0;
}
.lx-page-hero .lead {
  margin-top: 0.45rem;
  color: var(--ink-muted);
  max-width: 48ch;
  font-size: 0.92rem;
}

/* Shop */
.lx-shop {
  display: grid;
  grid-template-columns: 15.5rem 1fr;
  gap: 1.5rem;
  padding: 1.75rem 0 3rem;
  align-items: start;
}
.lx-filters {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 1.1rem 1rem 1.25rem;
  position: sticky;
  top: 5.5rem;
}
.lx-filters h4 {
  font-size: 0.82rem;
  font-weight: 800;
  margin: 0 0 0.65rem;
}
.lx-filter-group + .lx-filter-group {
  margin-top: 1.15rem;
  padding-top: 1.05rem;
  border-top: 1px solid var(--line);
}
.lx-filters label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.84rem;
  color: var(--ink);
  padding: 0.28rem 0;
  cursor: pointer;
}
.lx-filters input[type="checkbox"],
.lx-filters input[type="radio"] {
  accent-color: var(--saffron-deep);
}
.lx-shop-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 1.1rem;
}
.lx-shop-toolbar span {
  font-size: 0.86rem;
  color: var(--ink-muted);
}
.lx-shop-toolbar select {
  font-family: inherit;
  font-size: 0.84rem;
  padding: 0.45rem 0.75rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-btn);
  background: var(--white);
  color: var(--ink);
  min-height: 40px;
}

/* PDP */
.lx-pdp {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 2rem;
  padding: 1.5rem 0 2rem;
  align-items: start;
}
.lx-gallery {
  display: grid;
  grid-template-columns: 4.25rem 1fr;
  gap: 0.75rem;
  position: sticky;
  top: 5.5rem;
}
.lx-thumbs {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.lx-thumbs button {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0;
  overflow: hidden;
  background: var(--ivory);
  aspect-ratio: 1;
  cursor: pointer;
}
.lx-thumbs button.is-active {
  border-color: var(--saffron);
  box-shadow: 0 0 0 1px var(--saffron);
}
.lx-thumbs img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.lx-gallery-main {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  background: var(--ivory-dark);
  aspect-ratio: 1;
  cursor: zoom-in;
}
.lx-gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s var(--ease-out);
}
.lx-gallery-main:hover img { transform: scale(1.03); }
.lx-gallery-zoom {
  position: absolute;
  left: 0.75rem;
  bottom: 0.75rem;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(27,23,19,0.72);
  color: #fff;
  display: grid;
  place-items: center;
  backdrop-filter: blur(6px);
}
.lx-gallery-zoom svg { width: 16px; height: 16px; }
.lx-pdp-info .lx-kicker { margin-bottom: 0.4rem; }
.lx-pdp-info h1 {
  font-size: clamp(1.3rem, 2.6vw, 1.75rem);
  font-weight: 800;
  line-height: 1.35;
  margin-bottom: 0.55rem;
}
.lx-pdp-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem 1rem;
  font-size: 0.82rem;
  color: var(--ink-muted);
  margin-bottom: 0.85rem;
}
.lx-pdp-meta .stock {
  color: var(--success);
  font-weight: 700;
  background: rgba(47,107,79,0.08);
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
}
.lx-pdp-rating {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: var(--ink-muted);
}
.lx-pdp-rating:hover { color: var(--saffron-deep); }
.lx-pdp-rating .stars,
.lx-review-card .stars,
.lx-reviews-score .stars {
  color: var(--saffron);
  letter-spacing: 0.05em;
  font-size: 0.78rem;
}
.lx-pdp-rating .sep { opacity: 0.45; }
.lx-pdp-desc {
  font-size: 0.9rem;
  line-height: 1.8;
  color: var(--ink-muted);
  margin-bottom: 1rem;
}
.lx-pdp-purchase {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  background: linear-gradient(180deg, #fff 0%, var(--ivory) 100%);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1rem 1.05rem 1.05rem;
  margin-bottom: 0.85rem;
  box-shadow: 0 10px 28px rgba(27,23,19,0.05);
}
.lx-pdp-price {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px dashed var(--line);
}
.lx-pdp-price .current {
  display: block;
  font-size: 1.22rem;
  font-weight: 800;
  color: var(--ink);
  line-height: 1.2;
}
.lx-pdp-price .old {
  display: inline-block;
  margin-top: 0.15rem;
  font-size: 0.82rem;
  color: var(--mist);
  text-decoration: line-through;
}
.lx-pdp-save {
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--barberry);
  background: var(--barberry-soft);
  padding: 0.28rem 0.55rem;
  border-radius: 999px;
  white-space: nowrap;
}
.lx-pdp-purchase .lx-variants {
  padding-bottom: 0.85rem;
  border-bottom: 1px solid rgba(229,222,210,0.95);
}
.lx-pdp-purchase .lx-variants h4 {
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--ink-muted);
  margin: 0 0 0.5rem;
  letter-spacing: 0.02em;
}
.lx-variant-opts {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin: 0;
}
.lx-variant-opts button {
  min-height: 36px;
  padding: 0.3rem 0.75rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-btn);
  background: var(--white);
  font-family: inherit;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--ink);
  transition: border-color 0.2s, background 0.2s, color 0.2s, box-shadow 0.2s;
}
.lx-variant-opts button.is-active,
.lx-variant-opts button:hover {
  border-color: var(--charcoal);
  background: var(--charcoal);
  color: #fff;
  box-shadow: 0 6px 14px rgba(27,23,19,0.12);
}
.lx-pdp-buy {
  display: flex;
  flex-wrap: nowrap;
  align-items: stretch;
  gap: 0.65rem;
}
.lx-pdp-buy .qty {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  background: var(--white);
  flex-shrink: 0;
}
.lx-pdp-buy .qty button {
  width: 36px;
  height: 46px;
  border: 0;
  background: transparent;
  font-size: 1.05rem;
  color: var(--ink);
}
.lx-pdp-buy .qty span {
  min-width: 1.6rem;
  text-align: center;
  font-weight: 700;
  font-size: 0.9rem;
}
.lx-pdp-buy .btn-gold {
  flex: 0 0 auto;
  width: auto;
  justify-content: center;
  min-height: 46px;
  height: 46px;
  padding-inline: 1.35rem;
  font-size: 0.9rem;
  border-radius: 12px;
}
.lx-pdp-wish {
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--white);
  color: var(--ink);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.lx-pdp-wish svg { width: 18px; height: 18px; }
.lx-pdp-wish:hover {
  border-color: var(--barberry);
  color: var(--barberry);
  background: var(--barberry-soft);
}
.lx-pdp-perks {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.55rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
.lx-pdp-perks li {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.65rem 0.7rem;
  background: var(--ivory);
  border: 1px solid var(--line);
  border-radius: 10px;
}
.lx-perk-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--line);
  color: var(--saffron-deep);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.lx-perk-icon svg { width: 16px; height: 16px; }
.lx-pdp-perks strong {
  display: block;
  font-size: 0.76rem;
  font-weight: 800;
  color: var(--ink);
  line-height: 1.3;
}
.lx-pdp-perks small {
  display: block;
  font-size: 0.68rem;
  color: var(--ink-muted);
  margin-top: 0.1rem;
}

.lx-pdp-tabs-wrap {
  padding-bottom: 1.5rem;
}
.lx-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  border-bottom: 1px solid var(--line);
  margin-bottom: 1.25rem;
}
.lx-tabs button {
  border: 0;
  background: transparent;
  font-family: inherit;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--ink-muted);
  padding: 0.7rem 1rem;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
}
.lx-tabs button.is-active {
  color: var(--charcoal);
  border-bottom-color: var(--saffron);
}
.lx-tab-panel {
  display: none;
  font-size: 0.92rem;
  line-height: 1.85;
  color: var(--ink-muted);
  padding-bottom: 1.5rem;
}
.lx-tab-panel.is-active { display: block; }
.lx-pdp-prose p { margin: 0 0 0.85rem; max-width: 68ch; }

/* Specs — stacked */
.lx-specs {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  width: 100%;
}
.lx-specs-group {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1rem 1.15rem 1.05rem;
  box-shadow: 0 6px 18px rgba(27,23,19,0.03);
}
.lx-specs-group h3 {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.92rem;
  font-weight: 800;
  color: var(--ink);
  margin: 0 0 0.75rem;
  padding-bottom: 0.65rem;
  border-bottom: 1px solid var(--line);
}
.lx-specs-group h3 span {
  display: inline-grid;
  place-items: center;
  min-width: 1.85rem;
  height: 1.85rem;
  padding-inline: 0.35rem;
  border-radius: 8px;
  background: var(--saffron-soft);
  color: var(--saffron-deep);
  font-size: 0.72rem;
  font-weight: 800;
}
.lx-specs-group dl { margin: 0; }
.lx-specs-group dl > div {
  display: grid;
  grid-template-columns: minmax(7rem, 11rem) 1fr;
  gap: 0.75rem 1.25rem;
  align-items: baseline;
  padding: 0.55rem 0;
  border-bottom: 1px dashed rgba(229,222,210,0.95);
}
.lx-specs-group dl > div:last-child { border-bottom: 0; padding-bottom: 0.15rem; }
.lx-specs-group dt {
  font-size: 0.8rem;
  color: var(--ink-muted);
  font-weight: 500;
}
.lx-specs-group dd {
  margin: 0;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--ink);
  text-align: start;
}

/* Reviews */
.lx-reviews {
  display: grid;
  grid-template-columns: 16rem 1fr;
  gap: 1.25rem;
  align-items: start;
}
.lx-reviews-summary {
  background: var(--ivory);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 1.15rem 1.05rem;
  position: sticky;
  top: 5.5rem;
}
.lx-reviews-score {
  text-align: center;
  margin-bottom: 1rem;
}
.lx-reviews-score strong {
  display: block;
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--ink);
  line-height: 1;
}
.lx-reviews-score .stars {
  display: block;
  margin: 0.35rem 0 0.25rem;
  font-size: 0.95rem;
}
.lx-reviews-score small {
  font-size: 0.75rem;
  color: var(--ink-muted);
}
.lx-reviews-bars {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.4rem;
}
.lx-reviews-bars li {
  display: grid;
  grid-template-columns: 1rem 1fr 1.4rem;
  gap: 0.45rem;
  align-items: center;
  font-size: 0.72rem;
  color: var(--ink-muted);
}
.lx-reviews-bars i {
  display: block;
  height: 6px;
  border-radius: 999px;
  background: var(--line);
  position: relative;
  overflow: hidden;
}
.lx-reviews-bars i::after {
  content: '';
  position: absolute;
  inset-inline-start: 0;
  top: 0;
  bottom: 0;
  width: var(--w, 0);
  background: linear-gradient(90deg, var(--saffron), #F0C93A);
  border-radius: inherit;
}
.lx-reviews-note {
  margin: 0.9rem 0 0;
  font-size: 0.76rem;
  color: var(--ink-muted);
  line-height: 1.6;
  text-align: center;
}
.lx-reviews-list {
  display: grid;
  gap: 0.75rem;
}
.lx-review-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 1rem 1.05rem;
}
.lx-review-card header {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 0.65rem;
}
.lx-review-card header b {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--charcoal);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 0.82rem;
  flex-shrink: 0;
}
.lx-review-card header div { flex: 1; min-width: 0; }
.lx-review-card header strong {
  display: block;
  font-size: 0.88rem;
  color: var(--ink);
}
.lx-review-card header small {
  display: block;
  font-size: 0.72rem;
  color: var(--ink-muted);
  margin-top: 0.1rem;
}
.lx-review-card p {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.8;
  color: var(--ink);
}
.lx-review-card time {
  display: block;
  margin-top: 0.65rem;
  font-size: 0.72rem;
  color: var(--ink-muted);
}

/* Lightbox */
.lx-lightbox {
  position: fixed;
  inset: 0;
  z-index: 1200;
  background: rgba(15,12,10,0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  animation: lx-lb-in 0.28s var(--ease-out);
}
@keyframes lx-lb-in {
  from { opacity: 0; }
  to { opacity: 1; }
}
.lx-lightbox[hidden] { display: none !important; }
.lx-lightbox-stage {
  margin: 0;
  text-align: center;
  max-width: min(92vw, 980px);
  max-height: calc(100vh - 2.5rem);
  position: relative;
  z-index: 1;
}
.lx-lightbox-stage img {
  display: block;
  margin-inline: auto;
  max-width: 100%;
  max-height: calc(100vh - 5rem);
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 10px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.35);
  animation: lx-lb-img 0.32s var(--ease-out);
}
@keyframes lx-lb-img {
  from { opacity: 0; transform: scale(0.97); }
  to { opacity: 1; transform: scale(1); }
}
.lx-lightbox-stage figcaption {
  margin-top: 0.75rem;
  color: rgba(255,255,255,0.7);
  font-size: 0.82rem;
  font-variant-numeric: tabular-nums;
}
.lx-lightbox-close,
.lx-lightbox-nav {
  position: absolute;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  color: #fff;
  display: grid;
  place-items: center;
  backdrop-filter: blur(6px);
  transition: background 0.2s;
  cursor: pointer;
  z-index: 2;
}
.lx-lightbox-close:hover,
.lx-lightbox-nav:hover { background: rgba(255,255,255,0.22); }
.lx-lightbox-close {
  top: 1rem;
  left: 1rem;
}
.lx-lightbox-nav {
  top: 50%;
  transform: translateY(-50%);
}
.lx-lightbox-nav.is-prev { right: 1rem; }
.lx-lightbox-nav.is-next { left: 1rem; }
.lx-lightbox-close svg,
.lx-lightbox-nav svg { width: 18px; height: 18px; }

@media (max-width: 980px) {
  .lx-pdp-perks { grid-template-columns: 1fr; }
  .lx-reviews { grid-template-columns: 1fr; }
  .lx-reviews-summary { position: static; }
  .lx-specs-group dl > div { grid-template-columns: 1fr; gap: 0.15rem; }
}
@media (max-width: 560px) {
  .lx-pdp-buy { flex-wrap: wrap; gap: 0.55rem; }
  .lx-pdp-buy .btn-gold { flex: 1 1 auto; order: 2; }
  .lx-lightbox-nav.is-prev { right: 0.65rem; }
  .lx-lightbox-nav.is-next { left: 0.65rem; }
}

/* Cart & checkout panels */
.lx-cart-layout,
.lx-checkout-layout {
  display: grid;
  grid-template-columns: 1.4fr 0.85fr;
  gap: 1.25rem;
  padding: 1.75rem 0 3rem;
  align-items: start;
}
.lx-panel {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 1.25rem 1.2rem 1.4rem;
}
.lx-panel h2 {
  font-size: 1.05rem;
  font-weight: 800;
  margin: 0 0 1rem;
}
.lx-summary-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.88rem;
  color: var(--ink-muted);
  padding: 0.45rem 0;
}
.lx-summary-row.total {
  margin-top: 0.5rem;
  padding-top: 0.85rem;
  border-top: 1px solid var(--line);
  color: var(--ink);
  font-size: 0.95rem;
}
.lx-summary-row.total strong { font-size: 1.05rem; }
.lx-panel .btn-gold,
.lx-panel .btn-ghost,
.lx-panel .btn-primary {
  width: 100%;
  justify-content: center;
  margin-top: 0.65rem;
}
.lx-panel .lx-summary-actions .btn-gold,
.lx-panel .lx-summary-actions .btn-ghost,
.lx-panel .lx-summary-actions .wc-proceed-to-checkout {
  margin-top: 0;
}
.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0.55rem 1.15rem;
  background: transparent;
  color: var(--ink);
  font-weight: 600;
  font-size: 0.84rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-btn);
  transition: background 0.2s, border-color 0.2s;
}
.btn-ghost:hover {
  background: var(--ivory);
  border-color: var(--mist);
}
.lx-cart-empty {
  text-align: center;
  padding: 2rem 1rem;
  color: var(--ink-muted);
}
.lx-cart-empty .btn-gold { width: auto; margin-inline: auto; margin-top: 1rem; }

.lx-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem 1rem;
}
.lx-field {
  display: grid;
  gap: 0.35rem;
}
.lx-field.full { grid-column: 1 / -1; }
.lx-field label {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--ink);
}
.lx-field input,
.lx-field select,
.lx-field textarea {
  font-family: inherit;
  font-size: 0.9rem;
  padding: 0.65rem 0.8rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  min-height: 44px;
}
.lx-field textarea {
  min-height: 96px;
  resize: vertical;
}
.lx-field input:focus,
.lx-field select:focus,
.lx-field textarea:focus {
  outline: 2px solid rgba(184, 120, 26, 0.35);
  border-color: var(--saffron);
}
.lx-pay-options {
  display: grid;
  gap: 0.55rem;
  margin-top: 0.35rem;
}
.lx-pay-option {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  padding: 0.85rem 0.95rem;
  border: 1px solid var(--line);
  border-radius: 10px;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}
.lx-pay-option:hover,
.lx-pay-option:has(input:checked) {
  border-color: rgba(184, 120, 26, 0.45);
  background: var(--saffron-soft);
}
.lx-pay-option input { accent-color: var(--saffron-deep); margin-top: 0.2rem; }
.lx-pay-option strong { font-size: 0.9rem; }
.lx-pay-option small { font-size: 0.76rem; color: var(--ink-muted); }

@media (max-width: 980px) {
  .lx-shop { grid-template-columns: 1fr; }
  .lx-filters { position: static; }
  .lx-pdp { grid-template-columns: 1fr; }
  .lx-gallery { grid-template-columns: 1fr; position: static; }
  .lx-thumbs { flex-direction: row; order: 2; }
  .lx-thumbs button { width: 4.25rem; flex: 0 0 auto; }
  .lx-gallery-main { order: 1; }
  .lx-cart-layout,
  .lx-checkout-layout { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .lx-form-grid { grid-template-columns: 1fr; }
}
