:root {
  --bg: #11100e;
  --panel: #1b1916;
  --panel-2: #24211c;
  --text: #f5efe1;
  --muted: #c8bda5;
  --line: rgba(245, 239, 225, 0.14);
  --gold: #d7aa4a;
  --gold-2: #f1d58b;
  --green: #2f7d5c;
  --red: #8f2f35;
  --shadow: 0 22px 70px rgba(0, 0, 0, 0.38);
}

* {
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, system-ui, sans-serif;
  overflow-x: hidden;
}

body.modal-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input {
  font: inherit;
}

.commerce-ribbon {
  background:
    linear-gradient(90deg, rgba(143, 47, 53, 0.26), transparent 28%, rgba(47, 125, 92, 0.22)),
    #0d0c0a;
  border-bottom: 1px solid rgba(241, 213, 139, 0.18);
  color: var(--text);
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  padding: 0 clamp(16px, 4vw, 52px);
}

.commerce-ribbon span {
  align-items: center;
  display: grid;
  gap: 3px;
  min-width: 0;
  padding: 10px 18px;
  position: relative;
}

.commerce-ribbon span::before {
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 18px rgba(215, 170, 74, 0.42);
  content: "";
  height: 6px;
  left: 2px;
  position: absolute;
  top: 18px;
  width: 6px;
}

.commerce-ribbon strong,
.trust-strip strong {
  color: var(--gold-2);
  display: block;
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  overflow: hidden;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}

.commerce-ribbon small,
.trust-strip small {
  color: var(--muted);
  display: block;
  font-size: 0.78rem;
  line-height: 1.35;
}

.site-header {
  align-items: center;
  backdrop-filter: blur(18px);
  background: rgba(17, 16, 14, 0.82);
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: 18px;
  grid-template-columns: 1fr auto auto;
  left: 0;
  padding: 14px clamp(16px, 4vw, 52px);
  position: sticky;
  right: 0;
  top: 0;
  z-index: 20;
}

.brand {
  align-items: center;
  display: inline-flex;
  gap: 12px;
  min-width: 0;
}

.brand-mark {
  align-items: center;
  background:
    radial-gradient(circle at 50% 42%, rgba(241, 213, 139, 0.2), transparent 58%),
    rgba(10, 9, 7, 0.42);
  border: 1px solid rgba(241, 213, 139, 0.56);
  border-radius: 14px;
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.36), 0 0 18px rgba(47, 125, 92, 0.18);
  display: inline-flex;
  flex: 0 0 auto;
  height: 60px;
  justify-content: center;
  overflow: hidden;
  position: relative;
  width: 60px;
  animation: brandGlow 4.8s ease-in-out infinite;
}

.brand-mark::after {
  background: linear-gradient(115deg, transparent 36%, rgba(255, 246, 205, 0.5) 48%, transparent 60%);
  content: "";
  inset: -42%;
  pointer-events: none;
  position: absolute;
  transform: translateX(-72%) rotate(16deg);
  z-index: 2;
  animation: brandSweep 6.2s ease-in-out infinite;
}

.brand-mark img,
.brand-logo {
  display: block;
  height: 100%;
  position: relative;
  width: 100%;
  z-index: 1;
}

.brand-mark img {
  filter: contrast(1.08) saturate(1.06);
  object-fit: cover;
  transform: scale(1.05);
}

.brand-logo {
  background: radial-gradient(circle at 32% 22%, rgba(241, 213, 139, 0.18), transparent 36%);
}

.logo-frame {
  fill: rgba(17, 14, 10, 0.96);
  stroke: rgba(241, 213, 139, 0.78);
  stroke-width: 2;
}

.logo-moon {
  fill: rgba(241, 213, 139, 0.9);
}

.logo-hat {
  fill: #d7aa4a;
  stroke: #f5efe1;
  stroke-linejoin: round;
  stroke-width: 1.2;
}

.logo-brim {
  fill: none;
  stroke: #f1d58b;
  stroke-linecap: round;
  stroke-width: 4;
}

.logo-spark {
  fill: #f5efe1;
}

.brand-logo text {
  fill: #f5efe1;
  font-family: Cinzel, Georgia, serif;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-anchor: middle;
}

.brand strong,
h1,
h2,
.product-title {
  font-family: Cinzel, Georgia, serif;
  letter-spacing: 0;
}

.brand small {
  color: var(--muted);
  display: block;
  font-size: 0.75rem;
  margin-top: 2px;
}

.top-nav {
  display: flex;
  gap: 20px;
}

.top-nav a {
  color: var(--muted);
  font-weight: 700;
  font-size: 0.92rem;
}

.top-nav a:hover {
  color: var(--gold-2);
}

.icon-button {
  align-items: center;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--text);
  cursor: pointer;
  display: inline-flex;
  gap: 8px;
  height: 42px;
  justify-content: center;
  min-width: 42px;
  padding: 0 12px;
}

.icon-button:hover {
  border-color: rgba(215, 170, 74, 0.55);
}

.hero {
  min-height: min(760px, calc(100vh - 70px));
  overflow: hidden;
  position: relative;
}

.hero img {
  height: 100%;
  inset: 0;
  object-fit: cover;
  position: absolute;
  width: 100%;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(8, 7, 5, 0.9) 0%, rgba(10, 9, 7, 0.68) 38%, rgba(10, 9, 7, 0.12) 100%),
    linear-gradient(0deg, var(--bg) 0%, rgba(17, 16, 14, 0.05) 32%);
  inset: 0;
  position: absolute;
}

.magic-particles {
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  position: absolute;
  z-index: 1;
}

.magic-particles span {
  background: var(--gold-2);
  clip-path: polygon(50% 0, 62% 38%, 100% 50%, 62% 62%, 50% 100%, 38% 62%, 0 50%, 38% 38%);
  filter: drop-shadow(0 0 8px rgba(241, 213, 139, 0.65));
  height: var(--size, 5px);
  left: var(--x);
  opacity: 0;
  position: absolute;
  top: var(--y);
  transform: translate3d(0, 20px, 0) scale(0.72) rotate(0deg);
  width: var(--size, 5px);
  animation: magicFloat var(--speed, 8s) linear infinite;
  animation-delay: var(--delay, 0s);
}

.magic-particles span:nth-child(1) {
  --x: 8%;
  --y: 78%;
  --size: 5px;
  --speed: 8.8s;
  --delay: -2.2s;
}

.magic-particles span:nth-child(2) {
  --x: 18%;
  --y: 36%;
  --size: 4px;
  --speed: 7.2s;
  --delay: -4.4s;
}

.magic-particles span:nth-child(3) {
  --x: 31%;
  --y: 68%;
  --size: 6px;
  --speed: 9.6s;
  --delay: -1.1s;
}

.magic-particles span:nth-child(4) {
  --x: 42%;
  --y: 26%;
  --size: 4px;
  --speed: 8.4s;
  --delay: -5.2s;
}

.magic-particles span:nth-child(5) {
  --x: 54%;
  --y: 56%;
  --size: 5px;
  --speed: 10s;
  --delay: -3.8s;
}

.magic-particles span:nth-child(6) {
  --x: 64%;
  --y: 18%;
  --size: 3px;
  --speed: 7.8s;
  --delay: -6s;
}

.magic-particles span:nth-child(7) {
  --x: 74%;
  --y: 72%;
  --size: 5px;
  --speed: 9.2s;
  --delay: -0.7s;
}

.magic-particles span:nth-child(8) {
  --x: 84%;
  --y: 44%;
  --size: 4px;
  --speed: 8.1s;
  --delay: -4.9s;
}

.magic-particles span:nth-child(9) {
  --x: 92%;
  --y: 64%;
  --size: 6px;
  --speed: 10.4s;
  --delay: -2.9s;
}

.magic-particles span:nth-child(10) {
  --x: 23%;
  --y: 86%;
  --size: 3px;
  --speed: 7.5s;
  --delay: -3.2s;
}

.magic-particles span:nth-child(11) {
  --x: 69%;
  --y: 84%;
  --size: 4px;
  --speed: 8.7s;
  --delay: -5.7s;
}

.magic-particles span:nth-child(12) {
  --x: 47%;
  --y: 79%;
  --size: 3px;
  --speed: 7s;
  --delay: -1.8s;
}

.hero-content {
  max-width: 720px;
  padding: clamp(80px, 13vw, 150px) clamp(18px, 5vw, 72px) 120px;
  position: relative;
  z-index: 2;
}

.eyebrow {
  color: var(--gold-2);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  margin: 0 0 10px;
  text-transform: uppercase;
}

h1 {
  font-size: clamp(2.4rem, 6vw, 5.8rem);
  line-height: 0.98;
  margin: 0;
  max-width: 820px;
}

.hero p:not(.eyebrow) {
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.22rem);
  line-height: 1.7;
  margin: 24px 0 0;
  max-width: 620px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.button {
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  cursor: pointer;
  display: inline-flex;
  font-weight: 800;
  justify-content: center;
  line-height: 1.2;
  max-width: 100%;
  min-height: 46px;
  overflow: hidden;
  padding: 0 18px;
  position: relative;
  text-align: center;
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    background 0.2s ease,
    box-shadow 0.2s ease,
    color 0.2s ease;
}

.button.primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  border-color: transparent;
  color: #17120b;
}

.button.primary::after {
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.44), transparent);
  content: "";
  height: 160%;
  left: -55%;
  pointer-events: none;
  position: absolute;
  top: -30%;
  transform: translateX(-140%) rotate(18deg);
  transition: transform 0.55s ease;
  width: 42%;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button.primary:hover,
.button.primary:focus-visible {
  box-shadow: 0 14px 34px rgba(215, 170, 74, 0.28);
}

.button.primary:hover::after,
.button.primary:focus-visible::after {
  transform: translateX(430%) rotate(18deg);
}

.button.ghost {
  background: rgba(255, 255, 255, 0.08);
}

.button.ghost:hover,
.button.ghost:focus-visible {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(215, 170, 74, 0.42);
}

.trust-strip {
  border-block: 1px solid var(--line);
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(3, 1fr);
}

.trust-strip span {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), transparent),
    #151410;
  min-width: 0;
  padding: 20px clamp(16px, 4vw, 52px);
  text-align: center;
}

.featured-picks {
  background:
    radial-gradient(circle at 86% 10%, rgba(215, 170, 74, 0.13), transparent 32%),
    radial-gradient(circle at 12% 82%, rgba(47, 125, 92, 0.16), transparent 30%),
    #11100e;
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  position: relative;
}

.featured-picks::before {
  background: linear-gradient(90deg, transparent, rgba(241, 213, 139, 0.12), transparent);
  content: "";
  height: 1px;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}

.featured-head {
  align-items: start;
}

.featured-intro {
  color: var(--muted);
  line-height: 1.65;
  margin: 0;
  max-width: 420px;
}

.featured-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: 1.15fr repeat(2, minmax(0, 1fr));
}

.featured-card {
  animation: featureRise 0.55s ease both;
  animation-delay: var(--feature-delay, 0ms);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), transparent),
    var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  min-height: 430px;
  overflow: hidden;
  position: relative;
  transition:
    border-color 0.24s ease,
    box-shadow 0.24s ease,
    transform 0.24s ease;
}

.featured-card::before {
  background: linear-gradient(120deg, transparent 0%, rgba(241, 213, 139, 0.15) 44%, transparent 58%);
  content: "";
  inset: 0;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  transform: translateX(-45%);
  transition:
    opacity 0.24s ease,
    transform 0.58s ease;
  z-index: 2;
}

.featured-card:hover,
.featured-card:focus-visible {
  border-color: rgba(241, 213, 139, 0.5);
  box-shadow: 0 30px 84px rgba(0, 0, 0, 0.46), 0 0 28px rgba(215, 170, 74, 0.12);
  transform: translateY(-5px);
}

.featured-card:hover::before,
.featured-card:focus-visible::before {
  opacity: 1;
  transform: translateX(45%);
}

.featured-label {
  background: rgba(13, 12, 10, 0.78);
  border: 1px solid rgba(241, 213, 139, 0.34);
  border-radius: 999px;
  color: var(--gold-2);
  font-size: 0.72rem;
  font-weight: 900;
  left: 14px;
  letter-spacing: 0.06em;
  padding: 7px 10px;
  position: absolute;
  text-transform: uppercase;
  top: 14px;
  z-index: 3;
}

.featured-media {
  align-items: center;
  aspect-ratio: 1 / 0.76;
  background:
    radial-gradient(circle at 50% 36%, rgba(241, 213, 139, 0.18), transparent 35%),
    linear-gradient(135deg, rgba(143, 47, 53, 0.28), rgba(47, 125, 92, 0.22)),
    #201d18;
  display: flex;
  justify-content: center;
  overflow: hidden;
  padding: 24px;
}

.featured-card.is-lead .featured-media {
  aspect-ratio: 1 / 0.68;
}

.featured-media img {
  filter: drop-shadow(0 18px 24px rgba(0, 0, 0, 0.42));
  height: 100%;
  max-width: 100%;
  object-fit: contain;
  transition:
    filter 0.24s ease,
    transform 0.24s ease;
}

.featured-card:hover .featured-media img,
.featured-card:focus-visible .featured-media img {
  filter: drop-shadow(0 22px 28px rgba(0, 0, 0, 0.5));
  transform: scale(1.05) rotate(-1deg);
}

.featured-content {
  display: grid;
  flex: 1;
  gap: 10px;
  padding: 18px;
}

.featured-mini-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.featured-mini-badge {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  color: var(--text);
  font-size: 0.64rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  padding: 5px 7px;
  text-transform: uppercase;
}

.featured-mini-badge.gold {
  background: rgba(139, 98, 25, 0.72);
}

.featured-mini-badge.green {
  background: rgba(26, 95, 70, 0.72);
}

.featured-mini-badge.red {
  background: rgba(126, 42, 48, 0.76);
}

.featured-universe {
  color: var(--gold-2);
  font-size: 0.78rem;
  font-weight: 900;
}

.featured-content h3 {
  font-size: 1.1rem;
  line-height: 1.25;
  margin: 0;
}

.featured-content p {
  color: var(--muted);
  line-height: 1.55;
  margin: 0;
}

.featured-cta {
  align-self: end;
  color: var(--gold-2);
  font-weight: 900;
  margin-top: 4px;
}

@keyframes featureRise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.featured-picks,
.catalog-shell,
.guides,
.offer-band,
.animated-banners {
  padding: 68px clamp(16px, 4vw, 52px);
  scroll-margin-top: 96px;
}

.section-head {
  align-items: end;
  display: flex;
  gap: 18px;
  justify-content: space-between;
  margin-bottom: 26px;
  min-width: 0;
}

.section-head > div {
  min-width: 0;
}

h2 {
  font-size: clamp(1.8rem, 3vw, 3rem);
  line-height: 1.05;
  margin: 0;
}

.result-meta {
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.45;
  margin: 10px 0 0;
}

.catalog-tools {
  align-items: stretch;
  display: grid;
  gap: 10px;
  grid-template-columns: minmax(260px, 430px) minmax(190px, 230px);
  max-width: 100%;
}

.search-box {
  align-items: center;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  display: flex;
  gap: 10px;
  min-height: 48px;
  padding: 0 14px;
  width: min(430px, 100%);
}

.sort-box {
  align-items: center;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  gap: 2px;
  min-height: 48px;
  min-width: 0;
  padding: 6px 12px;
}

.sort-box span {
  color: var(--gold-2);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}

.sort-box select {
  appearance: none;
  background:
    linear-gradient(45deg, transparent 50%, var(--gold-2) 50%) right 5px center / 7px 7px no-repeat,
    transparent;
  border: 0;
  color: var(--text);
  cursor: pointer;
  font-weight: 800;
  max-width: 100%;
  outline: 0;
  padding: 0 18px 0 0;
}

.sort-box select option {
  background: #151410;
  color: var(--text);
}

.search-box input {
  background: transparent;
  border: 0;
  color: var(--text);
  min-width: 0;
  outline: 0;
  width: 100%;
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 26px;
}

.filter {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--muted);
  cursor: pointer;
  font-weight: 800;
  min-height: 40px;
  overflow: hidden;
  padding: 0 14px;
  position: relative;
  transition:
    background 0.22s ease,
    border-color 0.22s ease,
    color 0.22s ease,
    transform 0.22s ease;
}

.filter::after {
  background: linear-gradient(90deg, transparent, rgba(241, 213, 139, 0.42), transparent);
  bottom: 0;
  content: "";
  height: 2px;
  left: 14px;
  opacity: 0;
  position: absolute;
  right: 14px;
  transform: translateX(-65%);
  transition:
    opacity 0.22s ease,
    transform 0.32s ease;
}

.filter.active,
.filter:hover {
  background: rgba(215, 170, 74, 0.14);
  border-color: rgba(215, 170, 74, 0.48);
  color: var(--gold-2);
}

.filter:hover {
  transform: translateY(-1px);
}

.filter.active::after,
.filter:hover::after {
  opacity: 1;
  transform: translateX(0);
}

.product-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.product-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  min-height: 100%;
  opacity: 0;
  overflow: hidden;
  position: relative;
  transform: translateY(20px) scale(0.985);
  transition:
    opacity 0.42s ease,
    transform 0.42s ease,
    border-color 0.22s ease,
    box-shadow 0.22s ease;
  transition-delay: var(--reveal-delay, 0ms);
  will-change: transform, opacity;
}

.product-card::before {
  background: linear-gradient(135deg, rgba(241, 213, 139, 0.18), transparent 34%, rgba(47, 125, 92, 0.12));
  content: "";
  inset: 0;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  transition: opacity 0.22s ease;
  z-index: 1;
}

.product-card.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.product-card.is-visible:hover,
.product-card.is-visible:focus-within {
  border-color: rgba(241, 213, 139, 0.48);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.48), 0 0 0 1px rgba(241, 213, 139, 0.1);
  transform: translateY(-6px) scale(1.01);
}

.product-card:hover::before,
.product-card:focus-within::before {
  opacity: 1;
}

.product-art {
  align-items: center;
  aspect-ratio: 1 / 0.78;
  background:
    radial-gradient(circle at 70% 20%, rgba(215, 170, 74, 0.25), transparent 28%),
    linear-gradient(135deg, rgba(47, 125, 92, 0.35), rgba(143, 47, 53, 0.22)),
    #24211c;
  display: flex;
  justify-content: center;
  overflow: hidden;
  padding: 20px;
  position: relative;
}

.product-art::before {
  background: linear-gradient(110deg, transparent 0%, transparent 42%, rgba(255, 247, 210, 0.5) 50%, transparent 58%, transparent 100%);
  content: "";
  inset: 0;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  transform: translateX(-120%);
  transition:
    opacity 0.24s ease,
    transform 0.68s ease;
  z-index: 3;
}

.product-art.has-image {
  background:
    radial-gradient(circle at 18% 18%, rgba(215, 170, 74, 0.26), transparent 32%),
    radial-gradient(circle at 86% 22%, rgba(47, 125, 92, 0.18), transparent 34%),
    linear-gradient(145deg, #fffaf0 0%, #f5ead3 54%, #e5d2a7 100%);
  padding: 12px;
}

.product-art.has-image::after {
  background: linear-gradient(180deg, transparent 55%, rgba(17, 16, 14, 0.28));
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
}

.product-art img {
  filter: drop-shadow(0 14px 18px rgba(17, 16, 14, 0.16));
  height: 100%;
  max-width: 100%;
  object-fit: contain;
  position: relative;
  transition:
    filter 0.25s ease,
    transform 0.25s ease;
  width: 100%;
  z-index: 1;
}

.product-card:hover .product-art img {
  filter: drop-shadow(0 20px 24px rgba(17, 16, 14, 0.24));
  transform: scale(1.06) rotate(-0.7deg);
}

.product-card:hover .product-art::before,
.product-card:focus-within .product-art::before {
  opacity: 0.75;
  transform: translateX(120%);
}

.commerce-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  left: 10px;
  pointer-events: none;
  position: absolute;
  right: 10px;
  top: 10px;
  z-index: 3;
}

.commerce-badge {
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
  color: #fff8e7;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.03em;
  line-height: 1;
  max-width: 100%;
  overflow: hidden;
  padding: 7px 8px;
  text-overflow: ellipsis;
  text-transform: uppercase;
  transition:
    box-shadow 0.22s ease,
    transform 0.22s ease;
  white-space: nowrap;
}

.commerce-badge.gold {
  background: rgba(139, 98, 25, 0.88);
  border-color: rgba(241, 213, 139, 0.56);
}

.commerce-badge.green {
  background: rgba(26, 95, 70, 0.88);
  border-color: rgba(124, 211, 166, 0.46);
}

.commerce-badge.red {
  background: rgba(126, 42, 48, 0.9);
  border-color: rgba(242, 154, 139, 0.42);
}

.product-card:hover .commerce-badge,
.product-card:focus-within .commerce-badge {
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.24);
  transform: translateY(-2px);
}

.product-badge {
  background: rgba(17, 16, 14, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  bottom: 10px;
  color: var(--gold-2);
  font-size: 0.72rem;
  font-weight: 800;
  left: 10px;
  max-width: calc(100% - 20px);
  overflow: hidden;
  padding: 6px 8px;
  position: absolute;
  text-overflow: ellipsis;
  transition:
    background 0.22s ease,
    border-color 0.22s ease,
    transform 0.22s ease;
  white-space: nowrap;
  z-index: 2;
}

.product-card:hover .product-badge,
.product-card:focus-within .product-badge {
  background: rgba(17, 16, 14, 0.92);
  border-color: rgba(241, 213, 139, 0.45);
  transform: translateY(-2px);
}

.product-symbol {
  align-items: center;
  border: 1px solid rgba(245, 239, 225, 0.25);
  border-radius: 50%;
  color: var(--gold-2);
  display: inline-flex;
  font-family: Cinzel, Georgia, serif;
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 800;
  height: min(132px, 70%);
  justify-content: center;
  text-shadow: 0 0 25px rgba(215, 170, 74, 0.6);
  width: min(132px, 70%);
}

.product-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 12px;
  padding: 18px;
  position: relative;
  z-index: 2;
}

.product-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.product-tags span {
  background: rgba(255, 255, 255, 0.07);
  border-radius: 8px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
  padding: 6px 8px;
}

.product-title {
  font-size: 1.08rem;
  line-height: 1.3;
  margin: 0;
}

.product-desc {
  color: var(--muted);
  flex: 1;
  font-size: 0.92rem;
  line-height: 1.55;
  margin: 0;
}

.price-row {
  align-items: center;
  display: flex;
  justify-content: space-between;
}

.price-row strong {
  color: var(--gold-2);
  font-size: 1.14rem;
}

.rating {
  color: #f3cf71;
  font-size: 0.9rem;
}

.card-actions {
  display: grid;
  gap: 8px;
  grid-template-columns: 1fr 44px;
}

.favorite-toggle {
  font-size: 1.35rem;
  padding: 0;
  transition:
    transform 0.18s ease,
    border-color 0.2s ease,
    background 0.2s ease,
    color 0.2s ease;
}

.favorite-toggle:hover,
.favorite-toggle:focus-visible {
  color: var(--gold-2);
  transform: translateY(-2px) scale(1.04);
}

.favorite-toggle.is-favorite {
  animation: favoritePulse 0.28s ease;
  background: rgba(215, 170, 74, 0.14);
  border-color: rgba(215, 170, 74, 0.5);
  color: var(--gold-2);
}

@keyframes favoritePulse {
  0% {
    transform: scale(0.92);
  }

  55% {
    transform: scale(1.12);
  }

  100% {
    transform: scale(1);
  }
}

@keyframes brandGlow {
  0%,
  100% {
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.32), 0 0 0 rgba(241, 213, 139, 0);
  }

  50% {
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.36), 0 0 26px rgba(241, 213, 139, 0.34);
  }
}

@keyframes brandSweep {
  0%,
  64%,
  100% {
    transform: translateX(-72%) rotate(16deg);
  }

  78% {
    transform: translateX(72%) rotate(16deg);
  }
}

@keyframes magicFloat {
  0% {
    opacity: 0;
    transform: translate3d(0, 22px, 0) scale(0.72) rotate(0deg);
  }

  15% {
    opacity: 0.78;
  }

  52% {
    opacity: 0.45;
  }

  100% {
    opacity: 0;
    transform: translate3d(18px, -78px, 0) scale(1.12) rotate(210deg);
  }
}

.guides {
  background: #151410;
}

.guide-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.guide-panel {
  background: var(--panel-2);
  border: 1px solid var(--line);
  border-radius: 8px;
  min-height: 164px;
  padding: 24px;
}

.guide-panel:hover {
  border-color: rgba(215, 170, 74, 0.55);
}

.guide-panel strong {
  display: block;
  font-family: Cinzel, Georgia, serif;
  font-size: 1.35rem;
  margin-bottom: 10px;
}

.guide-panel span,
.offer-band p,
.site-footer span,
.legal-page p,
.legal-page li,
.signup-page p,
.signup-page li {
  color: var(--muted);
  line-height: 1.65;
}

.offer-band {
  align-items: center;
  background:
    linear-gradient(90deg, rgba(47, 125, 92, 0.28), transparent),
    var(--panel);
  border-block: 1px solid var(--line);
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr auto;
}

.animated-banners {
  background:
    radial-gradient(circle at 18% 20%, rgba(143, 47, 53, 0.2), transparent 28%),
    radial-gradient(circle at 88% 18%, rgba(215, 170, 74, 0.16), transparent 32%),
    linear-gradient(180deg, #11100e, #151410);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  position: relative;
}

.animated-banners::before {
  background: linear-gradient(90deg, transparent, rgba(241, 213, 139, 0.16), transparent);
  content: "";
  height: 1px;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}

.banner-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.animated-banner {
  animation: bannerRise 0.58s ease both;
  animation-delay: var(--banner-delay, 0ms);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.06), transparent 54%),
    var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 10px;
  grid-template-columns: 1.08fr 0.92fr;
  min-height: 245px;
  overflow: hidden;
  padding: 22px;
  position: relative;
  transition:
    border-color 0.24s ease,
    box-shadow 0.24s ease,
    transform 0.24s ease;
}

.animated-banner::before {
  animation: bannerGlow 5.8s ease-in-out infinite;
  background: linear-gradient(115deg, transparent 32%, rgba(255, 246, 205, 0.22) 48%, transparent 64%);
  content: "";
  inset: -45%;
  pointer-events: none;
  position: absolute;
  transform: translateX(-42%) rotate(12deg);
  z-index: 2;
}

.animated-banner.gold {
  background:
    radial-gradient(circle at 82% 22%, rgba(241, 213, 139, 0.24), transparent 32%),
    linear-gradient(135deg, rgba(139, 98, 25, 0.22), rgba(47, 125, 92, 0.12)),
    var(--panel);
}

.animated-banner.green {
  background:
    radial-gradient(circle at 84% 22%, rgba(47, 125, 92, 0.32), transparent 34%),
    linear-gradient(135deg, rgba(47, 125, 92, 0.2), rgba(143, 47, 53, 0.12)),
    var(--panel);
}

.animated-banner.red {
  background:
    radial-gradient(circle at 84% 22%, rgba(143, 47, 53, 0.34), transparent 34%),
    linear-gradient(135deg, rgba(143, 47, 53, 0.22), rgba(215, 170, 74, 0.1)),
    var(--panel);
}

.animated-banner:hover,
.animated-banner:focus-visible {
  border-color: rgba(241, 213, 139, 0.52);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.48), 0 0 26px rgba(215, 170, 74, 0.12);
  transform: translateY(-5px);
}

.banner-copy {
  align-content: center;
  display: grid;
  gap: 10px;
  min-width: 0;
  position: relative;
  z-index: 3;
}

.banner-copy span {
  color: var(--gold-2);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.banner-copy strong {
  color: var(--text);
  font-family: Cinzel, Georgia, serif;
  font-size: clamp(1.3rem, 2vw, 1.75rem);
  line-height: 1.1;
}

.banner-copy p {
  color: var(--muted);
  line-height: 1.5;
  margin: 0;
}

.banner-copy b {
  color: var(--gold-2);
  font-size: 0.95rem;
}

.banner-product {
  align-items: center;
  display: flex;
  justify-content: center;
  min-width: 0;
  position: relative;
  z-index: 3;
}

.banner-product img {
  animation: bannerFloat 4.8s ease-in-out infinite;
  filter: drop-shadow(0 20px 26px rgba(0, 0, 0, 0.45));
  max-height: 190px;
  max-width: 100%;
  object-fit: contain;
}

.banner-marquee {
  border: 1px solid rgba(241, 213, 139, 0.18);
  border-radius: 8px;
  margin-top: 18px;
  overflow: hidden;
  position: relative;
}

.banner-marquee::before,
.banner-marquee::after {
  content: "";
  inset-block: 0;
  pointer-events: none;
  position: absolute;
  width: 120px;
  z-index: 2;
}

.banner-marquee::before {
  background: linear-gradient(90deg, #11100e, transparent);
  left: 0;
}

.banner-marquee::after {
  background: linear-gradient(90deg, transparent, #11100e);
  right: 0;
}

.banner-marquee-track {
  animation: bannerMarquee 24s linear infinite;
  color: var(--gold-2);
  display: flex;
  font-size: 0.78rem;
  font-weight: 900;
  gap: 28px;
  letter-spacing: 0.08em;
  padding: 12px 0;
  text-transform: uppercase;
  white-space: nowrap;
  width: max-content;
}

@keyframes bannerRise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes bannerGlow {
  0%,
  58%,
  100% {
    transform: translateX(-42%) rotate(12deg);
  }

  72% {
    transform: translateX(42%) rotate(12deg);
  }
}

@keyframes bannerFloat {
  0%,
  100% {
    transform: translateY(0) rotate(-1deg);
  }

  50% {
    transform: translateY(-9px) rotate(1deg);
  }
}

@keyframes bannerMarquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

code {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 6px;
  color: var(--gold-2);
  padding: 2px 6px;
}

.drawer {
  background: rgba(0, 0, 0, 0.55);
  inset: 0;
  opacity: 0;
  pointer-events: none;
  position: fixed;
  transition: opacity 0.2s ease;
  z-index: 40;
}

.drawer.open {
  opacity: 1;
  pointer-events: auto;
}

.drawer-panel {
  background: var(--panel);
  border-left: 1px solid var(--line);
  height: 100%;
  margin-left: auto;
  max-width: 430px;
  overflow: auto;
  padding: 22px;
  transform: translateX(100%);
  transition: transform 0.2s ease;
  width: 90vw;
}

.drawer.open .drawer-panel {
  transform: translateX(0);
}

.drawer-head {
  align-items: center;
  display: flex;
  justify-content: space-between;
}

.favorite-list {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.favorite-item {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 14px;
}

.favorite-item strong {
  display: block;
  margin-bottom: 8px;
}

.empty-state {
  border: 1px dashed var(--line);
  border-radius: 8px;
  color: var(--muted);
  padding: 22px;
}

.site-footer {
  background:
    radial-gradient(circle at 12% 0%, rgba(215, 170, 74, 0.14), transparent 28%),
    linear-gradient(180deg, rgba(18, 17, 14, 0.98), #0d0c0a);
  border-top: 1px solid var(--line);
  padding: 28px clamp(16px, 4vw, 52px);
}

.footer-grid {
  display: grid;
  gap: 28px;
  grid-template-columns: minmax(260px, 1.45fr) repeat(3, minmax(160px, 1fr));
  margin: 0 auto;
  max-width: 1180px;
}

.footer-brand {
  align-items: flex-start;
  display: flex;
  gap: 16px;
}

.footer-logo {
  flex: 0 0 58px;
  height: 58px;
  width: 58px;
}

.footer-brand strong,
.footer-column strong {
  color: var(--text);
  display: block;
  font-family: Cinzel, Georgia, serif;
  margin-bottom: 10px;
}

.footer-brand a,
.footer-column a {
  color: var(--gold);
  display: block;
  font-weight: 700;
  margin: 8px 0;
  text-decoration: none;
}

.footer-brand a:hover,
.footer-column a:hover {
  color: #ffe2a0;
}

.footer-bottom {
  border-top: 1px solid var(--line);
  display: grid;
  gap: 12px;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  margin: 26px auto 0;
  max-width: 1180px;
  padding-top: 18px;
}

.site-footer {
  padding-block: clamp(34px, 5vw, 64px) 28px;
}

.footer-cta,
.footer-grid,
.footer-trust,
.footer-bottom {
  max-width: 1220px;
}

.footer-cta {
  align-items: center;
  background:
    linear-gradient(135deg, rgba(215, 170, 74, 0.18), rgba(47, 125, 92, 0.16)),
    rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(241, 213, 139, 0.22);
  border-radius: 8px;
  display: grid;
  gap: 22px;
  grid-template-columns: minmax(0, 1fr) auto;
  margin: 0 auto 34px;
  overflow: hidden;
  padding: clamp(18px, 3vw, 26px);
  position: relative;
}

.footer-cta::after {
  background: linear-gradient(115deg, transparent, rgba(255, 246, 205, 0.22), transparent);
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
  transform: translateX(-68%) skewX(-16deg);
  animation: brandSweep 8s ease-in-out infinite;
}

.footer-cta-brand {
  align-items: center;
  display: flex;
  gap: 18px;
  min-width: 0;
  position: relative;
  z-index: 1;
}

.footer-cta-brand strong {
  color: var(--text);
  display: block;
  font-family: Cinzel, Georgia, serif;
  font-size: clamp(1.3rem, 2vw, 2rem);
  line-height: 1.12;
  max-width: 760px;
}

.footer-cta-brand p {
  color: var(--muted);
  line-height: 1.55;
  margin: 8px 0 0;
}

.footer-kicker {
  color: var(--gold-2) !important;
  display: block;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.footer-cta-button {
  justify-self: end;
  min-width: 172px;
  position: relative;
  z-index: 1;
}

.footer-grid {
  gap: 26px;
  grid-template-columns: minmax(250px, 1.35fr) repeat(4, minmax(145px, 1fr));
}

.footer-column {
  min-width: 0;
}

.footer-column span,
.footer-steps {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.6;
}

.footer-steps {
  counter-reset: footer-step;
  display: grid;
  gap: 10px;
  list-style: none;
  margin: 8px 0 0;
  padding: 0;
}

.footer-steps li {
  counter-increment: footer-step;
  display: grid;
  gap: 8px;
  grid-template-columns: 24px minmax(0, 1fr);
}

.footer-steps li::before {
  align-items: center;
  background: rgba(215, 170, 74, 0.14);
  border: 1px solid rgba(241, 213, 139, 0.28);
  border-radius: 50%;
  color: var(--gold-2);
  content: counter(footer-step);
  display: inline-flex;
  font-size: 0.72rem;
  font-weight: 900;
  height: 24px;
  justify-content: center;
  width: 24px;
}

.footer-trust {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 30px auto 0;
}

.footer-trust span {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(245, 239, 225, 0.12);
  border-radius: 8px;
  padding: 14px;
}

.footer-trust strong {
  color: var(--gold-2);
  display: block;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  margin-bottom: 5px;
  text-transform: uppercase;
}

.footer-bottom a {
  color: var(--gold-2);
  font-weight: 800;
}

.footer-hero {
  align-items: center;
  background:
    linear-gradient(135deg, rgba(215, 170, 74, 0.16), rgba(47, 125, 92, 0.13)),
    rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(241, 213, 139, 0.2);
  border-radius: 8px;
  display: grid;
  gap: 22px;
  grid-template-columns: minmax(0, 1fr) auto;
  margin: 0 auto 28px;
  max-width: 1220px;
  padding: clamp(18px, 3vw, 26px);
}

.footer-hero .footer-brand {
  align-items: center;
}

.footer-hero .footer-logo {
  flex-basis: 74px;
  height: 74px;
  width: 74px;
}

.footer-hero .footer-brand strong {
  font-size: clamp(1.4rem, 2.3vw, 2.25rem);
  margin-bottom: 4px;
}

.site-footer .footer-grid {
  grid-template-columns: repeat(4, minmax(170px, 1fr));
}

.site-footer .footer-column a[data-footer-info] {
  align-items: center;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(245, 239, 225, 0.1);
  border-radius: 8px;
  color: var(--gold-2);
  display: flex;
  gap: 10px;
  justify-content: space-between;
  margin: 8px 0;
  padding: 9px 11px;
  transition: border-color 0.18s ease, background 0.18s ease, transform 0.18s ease;
}

.site-footer .footer-column a[data-footer-info]::after {
  color: var(--muted);
  content: "+";
  font-weight: 900;
}

.site-footer .footer-column a[data-footer-info]:hover,
.site-footer .footer-column a[data-footer-info]:focus-visible {
  background: rgba(215, 170, 74, 0.09);
  border-color: rgba(241, 213, 139, 0.28);
  transform: translateY(-1px);
}

.footer-bottom {
  grid-template-columns: 1fr;
  margin-top: 30px;
  text-align: center;
}

.footer-bottom span {
  display: block;
  width: 100%;
}

.footer-modal {
  align-items: center;
  display: grid;
  inset: 0;
  justify-items: center;
  opacity: 0;
  pointer-events: none;
  position: fixed;
  transition: opacity 0.2s ease;
  z-index: 60;
}

.footer-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.footer-modal.is-closing {
  opacity: 0;
}

.footer-modal-backdrop {
  backdrop-filter: blur(8px);
  background: rgba(0, 0, 0, 0.68);
  inset: 0;
  position: absolute;
}

.footer-modal-panel {
  background:
    radial-gradient(circle at 16% 0%, rgba(241, 213, 139, 0.16), transparent 32%),
    linear-gradient(180deg, #181510, #0e0d0b);
  border: 1px solid rgba(241, 213, 139, 0.32);
  border-radius: 8px;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.55);
  max-height: min(78vh, 720px);
  max-width: min(620px, calc(100vw - 36px));
  overflow: auto;
  padding: clamp(22px, 4vw, 34px);
  position: relative;
  transform: scale(0.88) translateY(18px);
  transition: transform 0.22s ease, opacity 0.22s ease;
  width: 100%;
  z-index: 1;
}

.footer-modal.is-open .footer-modal-panel {
  transform: scale(1) translateY(0);
}

.footer-modal.is-closing .footer-modal-panel {
  transform: scale(0.9) translateY(14px);
}

.footer-modal-close {
  position: absolute;
  right: 18px;
  top: 18px;
}

.footer-modal-panel h2 {
  font-family: Cinzel, Georgia, serif;
  font-size: clamp(1.65rem, 3vw, 2.35rem);
  line-height: 1.12;
  margin: 0 48px 16px 0;
}

.footer-modal-body {
  color: var(--muted);
  display: grid;
  gap: 14px;
  line-height: 1.7;
}

.footer-modal-body p,
.footer-modal-body ol {
  margin: 0;
}

.footer-modal-body ol {
  padding-left: 22px;
}

.footer-modal-body li + li {
  margin-top: 8px;
}

.footer-modal-body a {
  color: var(--gold-2);
  font-weight: 800;
}

.legal-page,
.signup-page {
  background:
    radial-gradient(circle at 80% 0%, rgba(143, 47, 53, 0.18), transparent 30%),
    radial-gradient(circle at 15% 12%, rgba(215, 170, 74, 0.12), transparent 28%),
    var(--bg);
  min-height: 100vh;
}

.simple-main {
  margin: 0 auto;
  max-width: 980px;
  padding: 112px clamp(18px, 5vw, 56px) 64px;
}

.simple-main h1 {
  max-width: 14ch;
}

.simple-panel,
.signup-form {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  margin-top: 24px;
  padding: clamp(20px, 4vw, 34px);
}

.simple-panel h2,
.signup-form h2 {
  font-size: clamp(1.2rem, 3vw, 1.65rem);
  margin-top: 0;
}

.simple-panel a {
  color: var(--gold);
  font-weight: 700;
}

.signup-form {
  display: grid;
  gap: 16px;
}

.form-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.form-field {
  display: grid;
  gap: 8px;
}

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

.form-field label {
  color: var(--text);
  font-weight: 800;
}

.form-field input,
.form-field select,
.form-field textarea {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--text);
  font: inherit;
  padding: 13px 14px;
  width: 100%;
}

.form-field textarea {
  min-height: 118px;
  resize: vertical;
}

.form-note {
  color: var(--muted);
  font-size: 0.92rem;
}

.back-link {
  color: var(--gold);
  display: inline-flex;
  font-weight: 800;
  margin-bottom: 18px;
  text-decoration: none;
}

@media (max-width: 1060px) {
  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 760px) {
  .commerce-ribbon {
    display: flex;
    gap: 0;
    overflow-x: auto;
    padding: 0 20px;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .commerce-ribbon::-webkit-scrollbar {
    display: none;
  }

  .commerce-ribbon span {
    flex: 0 0 min(82vw, 300px);
    padding: 10px 18px 10px 16px;
  }

  .commerce-ribbon strong {
    font-size: 0.74rem;
    white-space: normal;
  }

  .commerce-ribbon small {
    font-size: 0.74rem;
  }

  .site-header {
    gap: 12px;
    grid-template-columns: 1fr auto;
    padding: 12px 20px;
  }

  .site-header > .icon-button {
    justify-self: end;
    padding: 0 10px;
  }

  .top-nav {
    display: none;
  }

  .brand {
    gap: 10px;
  }

  .brand-mark {
    border-radius: 12px;
    height: 50px;
    width: 50px;
  }

  .brand strong {
    font-size: 0.96rem;
  }

  .hero {
    min-height: 760px;
  }

  .hero img {
    object-position: 56% center;
  }

  .hero-shade {
    background:
      linear-gradient(180deg, rgba(8, 7, 5, 0.74) 0%, rgba(9, 8, 6, 0.36) 44%, var(--bg) 100%),
      linear-gradient(90deg, rgba(8, 7, 5, 0.9) 0%, rgba(10, 9, 7, 0.52) 58%, rgba(10, 9, 7, 0.12) 100%);
  }

  .hero-content {
    max-width: none;
    padding: 104px 24px 72px;
    width: 100%;
  }

  h1 {
    font-size: clamp(2.05rem, 9vw, 3.3rem);
    line-height: 1.05;
    max-width: 11ch;
  }

  .hero p:not(.eyebrow) {
    font-size: 1rem;
    line-height: 1.55;
    max-width: 34ch;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    max-width: 360px;
  }

  .hero-actions .button {
    width: 100%;
  }

  .trust-strip,
  .featured-grid,
  .product-grid,
  .banner-grid,
  .offer-band {
    grid-template-columns: 1fr;
  }

  .trust-strip span {
    font-size: 0.92rem;
    line-height: 1.35;
    overflow-wrap: anywhere;
    padding: 15px 20px;
    white-space: normal;
  }

  .trust-strip small {
    line-height: 1.4;
    margin-inline: auto;
    max-width: 34ch;
  }

  .trust-strip strong {
    white-space: normal;
  }

  .featured-picks,
  .catalog-shell,
  .guides,
  .offer-band,
  .animated-banners {
    padding: 48px 20px;
    scroll-margin-top: 86px;
  }

  .featured-card {
    min-height: auto;
  }

  .featured-media,
  .featured-card.is-lead .featured-media {
    aspect-ratio: 1 / 0.62;
  }

  .featured-intro {
    max-width: 36ch;
  }

  .section-head {
    align-items: stretch;
    flex-direction: column;
    gap: 16px;
  }

  h2 {
    font-size: clamp(1.65rem, 7.4vw, 2.2rem);
    line-height: 1.08;
    max-width: 100%;
    overflow-wrap: break-word;
  }

  .search-box {
    width: 100%;
  }

  .catalog-tools {
    grid-template-columns: 1fr;
    width: 100%;
  }

  .sort-box {
    width: 100%;
  }

  .filters {
    flex-wrap: nowrap;
    margin-inline: -20px;
    overflow-x: auto;
    padding-inline: 20px;
    padding-bottom: 8px;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .filters::-webkit-scrollbar {
    display: none;
  }

  .filter {
    flex: 0 0 auto;
    white-space: nowrap;
  }

  .product-grid {
    gap: 16px;
  }

  .animated-banner {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 20px;
  }

  .banner-copy {
    align-content: start;
  }

  .banner-product {
    min-height: 160px;
  }

  .banner-product img {
    max-height: 170px;
  }

  .banner-marquee::before,
  .banner-marquee::after {
    width: 58px;
  }

  .product-art {
    aspect-ratio: 1 / 0.72;
  }

  .commerce-badges {
    gap: 5px;
    left: 8px;
    right: 8px;
    top: 8px;
  }

  .commerce-badge {
    font-size: 0.62rem;
    padding: 6px 7px;
  }

  .product-body {
    padding: 16px;
  }

  .product-title {
    font-size: 1rem;
  }

  .card-actions {
    grid-template-columns: minmax(0, 1fr) 44px;
  }

  .site-footer {
    padding-inline: 20px;
  }

  .footer-grid,
  .footer-hero,
  .footer-cta,
  .footer-trust,
  .footer-bottom {
    grid-template-columns: 1fr;
  }

  .footer-cta-button {
    justify-self: stretch;
  }

  .footer-cta-brand {
    align-items: flex-start;
  }

  .footer-hero {
    align-items: stretch;
  }

  .footer-hero .footer-brand {
    align-items: flex-start;
  }

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

@media (max-width: 460px) {
  .brand small {
    display: none;
  }

  .hero-content {
    padding: 96px 20px 64px;
  }

  h1 {
    font-size: clamp(1.95rem, 9.2vw, 2.55rem);
    max-width: 10.8ch;
  }

  .hero-actions,
  .hero-actions .button {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }

  .button:hover,
  .button:focus-visible,
  .favorite-toggle:hover,
  .favorite-toggle:focus-visible,
  .product-card,
  .product-card.is-visible,
  .product-card.is-visible:hover,
  .product-card.is-visible:focus-within {
    transform: none;
  }

  .product-card {
    opacity: 1;
  }

  .product-card:hover .product-art img {
    transform: none;
  }

  .brand-mark::after,
  .magic-particles {
    display: none;
  }

  .product-art::before,
  .filter::after {
    opacity: 0;
  }
}
