:root {
  --bg: #090806;
  --surface: #13100c;
  --surface-2: #1d1710;
  --gold: #c99d55;
  --gold-light: #f4d79c;
  --ink: #f7f0e4;
  --muted: #b9ac99;
  --line: rgba(244, 215, 156, 0.22);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.45);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  overflow-x: hidden;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

.promo-strip {
  position: relative;
  z-index: 25;
  overflow: hidden;
  color: #15100a;
  background: linear-gradient(90deg, var(--gold-light), var(--gold), var(--gold-light));
  border-bottom: 1px solid rgba(9, 8, 6, 0.28);
}

.promo-track {
  display: flex;
  width: max-content;
  animation: promo-marquee 26s linear infinite;
}

.promo-track span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 34px;
  font-size: 0.9rem;
  font-weight: 900;
  text-transform: uppercase;
  white-space: nowrap;
}

@keyframes promo-marquee {
  from {
    transform: translateX(0);
  }

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

.topbar {
  position: sticky;
  top: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 20px;
  padding: 14px clamp(16px, 4vw, 56px);
  background: rgba(11, 9, 7, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.brand img {
  display: block;
  width: 92px;
  height: 58px;
  object-fit: contain;
  object-position: center;
}

.nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(12px, 2vw, 26px);
  color: var(--ink);
  font-size: 0.96rem;
  font-weight: 800;
  text-transform: uppercase;
}

.nav a,
.nav-link {
  color: rgba(247, 240, 228, 0.82);
  transition: color 180ms ease;
}

.nav a:hover,
.nav-link:hover,
.nav a.is-active,
.nav-link.is-active {
  color: var(--gold-light);
}

.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0;
  background: transparent;
  border: 0;
  cursor: pointer;
  font-weight: 900;
  text-transform: uppercase;
}

.nav-link svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
  transition: transform 180ms ease;
}

.category-toggle[aria-expanded="true"] svg {
  transform: rotate(180deg);
}

.category-menu {
  position: relative;
  flex: 0 0 auto;
  width: max-content;
}

.category-panel {
  position: absolute;
  top: calc(100% + 18px);
  left: 50%;
  z-index: 35;
  display: grid;
  width: min(320px, 82vw);
  padding: 10px;
  background: linear-gradient(135deg, #18120c, #090806 62%, #21170e);
  border: 1px solid rgba(244, 215, 156, 0.38);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.58);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate(-50%, 10px);
  transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
}

.category-panel.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.category-link,
.subcategory-panel button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 42px;
  padding: 0 12px;
  color: var(--ink);
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(244, 215, 156, 0.12);
  cursor: pointer;
  font-size: 0.88rem;
  font-weight: 800;
  text-align: left;
  text-transform: none;
}

.category-link:hover,
.category-link.is-active,
.subcategory-panel button:hover,
.subcategory-panel button.is-active {
  color: #15100a;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
}

.category-item {
  position: relative;
}

.category-item.has-submenu > .category-link::after {
  content: ">";
  color: currentColor;
  font-weight: 900;
}

.subcategory-panel {
  position: absolute;
  top: 0;
  left: 100%;
  display: grid;
  width: min(300px, 76vw);
  padding: 10px;
  background: linear-gradient(135deg, #18120c, #090806 62%, #21170e);
  border: 1px solid rgba(244, 215, 156, 0.38);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.58);
  opacity: 0;
  pointer-events: none;
  transform: translateX(8px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.subcategory-panel::before {
  content: "";
  position: absolute;
  top: 0;
  right: 100%;
  width: 12px;
  height: 100%;
}

.category-item:hover .subcategory-panel,
.category-item:focus-within .subcategory-panel {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.search {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 250px;
  padding: 9px 12px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
}

.search-icon {
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  color: var(--gold-light);
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

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

.cart-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 62px;
  height: 42px;
  color: var(--bg);
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  border: 0;
  cursor: pointer;
  font-weight: 800;
}

.cart-svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.mobile-menu-toggle {
  display: none;
  place-items: center;
  width: 42px;
  height: 42px;
  padding: 0;
  color: #15100a;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  border: 0;
  cursor: pointer;
}

.mobile-menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: currentColor;
}

.mobile-menu-toggle span + span {
  margin-top: 4px;
}

.hero {
  position: relative;
  min-height: calc(100vh - 83px);
  display: flex;
  align-items: center;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.hero-image,
.hero-video {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-video {
  filter: brightness(0.64) contrast(0.92) saturate(0.9) blur(1.1px);
  transform: scale(1.035);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at center, rgba(0, 0, 0, 0.08) 0%, rgba(0, 0, 0, 0.24) 46%, rgba(0, 0, 0, 0.66) 100%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.86) 0%, rgba(0, 0, 0, 0.55) 46%, rgba(0, 0, 0, 0.26) 100%),
    linear-gradient(0deg, rgba(9, 8, 6, 0.96) 0%, rgba(9, 8, 6, 0.12) 38%, rgba(9, 8, 6, 0.34) 100%);
}

.hero-content {
  position: relative;
  width: min(640px, calc(100% - 32px));
  margin-left: clamp(18px, 7vw, 96px);
  padding: 56px 0;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold-light);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: Cinzel, Georgia, serif;
}

h1 {
  font-size: clamp(3rem, 8vw, 7rem);
  line-height: 0.95;
}

h2 {
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1.05;
}

h3 {
  font-size: 1.35rem;
}

.hero-content > p:not(.eyebrow),
.section-heading p,
.feature-band p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

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

.primary-button,
.ghost-button,
.add-cart,
.filter {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid transparent;
  cursor: pointer;
  font-weight: 800;
}

.primary-button,
.add-cart {
  color: #15100a;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  box-shadow: 0 14px 35px rgba(201, 157, 85, 0.22);
}

.ghost-button,
.filter {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--line);
}

.benefits-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
}

.benefits-strip article {
  padding: clamp(22px, 4vw, 38px);
  background: var(--surface);
}

.benefits-strip strong,
.benefits-strip span {
  display: block;
}

.benefits-strip strong {
  color: var(--gold-light);
  margin-bottom: 8px;
  font-family: Cinzel, Georgia, serif;
  font-size: 1.2rem;
}

.benefits-strip span {
  color: var(--muted);
  line-height: 1.55;
}

.section {
  padding: clamp(64px, 8vw, 112px) clamp(16px, 4vw, 56px);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 28px;
}

.catalog-status {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  margin: 0 0 28px;
  padding: 0 14px;
  color: #15100a;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

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

.filter.active {
  color: var(--bg);
  background: var(--gold-light);
}

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

.product-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.product-card:hover {
  transform: translateY(-6px) scale(1.02);
  border-color: rgba(244, 215, 156, 0.58);
  box-shadow: 0 30px 84px rgba(0, 0, 0, 0.58);
}

.product-card.is-hidden {
  display: none;
}

.empty-products {
  margin: 28px 0 0;
  padding: 22px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
  line-height: 1.6;
}

.product-media {
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: #050505;
  border-bottom: 1px solid var(--line);
}

.product-open {
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
  color: inherit;
  background: transparent;
  border: 0;
  cursor: zoom-in;
  text-align: inherit;
}

.product-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 240ms ease;
}

.product-card:hover .product-media img {
  transform: scale(1.07);
}

.product-card--contain-image .product-media {
  background: radial-gradient(circle at center, rgba(244, 215, 156, 0.08), #050505 68%);
}

.product-card--contain-image .product-media img {
  object-fit: contain;
  padding: 10px;
}

.product-card--contain-image:hover .product-media img {
  transform: scale(1.02);
}

.title-button {
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
}

.title-button:hover {
  color: var(--gold-light);
}

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

.tag {
  margin: 0 0 10px;
  color: var(--gold-light);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.product-body p:not(.tag) {
  color: var(--muted);
  line-height: 1.55;
}

.variant-label {
  display: grid;
  gap: 8px;
  margin-top: auto;
  padding-top: 18px;
  color: var(--gold-light);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.combo-variant-label {
  display: none;
}

.variant-select,
.combo-choice-select {
  width: 100%;
  min-height: 42px;
  color: #15100a;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  border: 1px solid rgba(244, 215, 156, 0.78);
  padding: 0 12px;
  outline: 0;
  font-weight: 800;
  text-transform: none;
}

.variant-select option,
.combo-choice-select option {
  color: #15100a;
  background: var(--gold-light);
}

.combo-options,
.modal-combo-options {
  display: grid;
  gap: 12px;
  margin-top: 12px;
}

.modal-combo-options[hidden] {
  display: none;
}

.combo-choice-label {
  margin-top: 0;
  padding-top: 0;
}

.product-card[data-category~="combos"] .combo-options {
  margin-top: auto;
  padding-top: 18px;
}

.product-card[data-category~="combos"] .product-body > .price-row {
  margin-top: auto;
}

.product-card[data-category~="combos"] .combo-options + .price-row {
  margin-top: 18px;
}

.combo-choice-select.is-invalid {
  border-color: #ffdf91;
  box-shadow: 0 0 0 3px rgba(244, 215, 156, 0.24);
}

.price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 18px;
}

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

.add-cart {
  min-height: 38px;
  padding: 0 14px;
}

.product-modal,
.cart-backdrop {
  position: fixed;
  inset: 0;
  z-index: 40;
  pointer-events: none;
  opacity: 0;
  transition: opacity 180ms ease;
}

.product-modal.is-open,
.cart-backdrop.is-open {
  pointer-events: auto;
  opacity: 1;
}

.modal-backdrop,
.cart-backdrop {
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(10px);
}

.modal-backdrop {
  position: absolute;
  inset: 0;
}

.modal-card {
  position: relative;
  z-index: 41;
  display: grid;
  grid-template-columns: minmax(360px, 1.05fr) minmax(390px, 0.95fr);
  align-items: start;
  gap: clamp(18px, 3vw, 34px);
  width: min(1220px, calc(100% - 28px));
  max-height: calc(100vh - 40px);
  margin: 20px auto;
  overflow: auto;
  background: var(--surface);
  border: 1px solid rgba(244, 215, 156, 0.42);
  box-shadow: 0 32px 100px rgba(0, 0, 0, 0.68);
}

.modal-media {
  position: relative;
  overflow: hidden;
  height: clamp(370px, 62vh, 620px);
  min-height: 0;
  background: #050505;
}

.product-modal.has-gallery .modal-media {
  display: block;
}

.modal-media > img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  object-position: center;
}

.product-modal.is-contain-image .modal-media {
  background: radial-gradient(circle at center, rgba(244, 215, 156, 0.08), #050505 68%);
}

.product-modal.is-contain-image .modal-media > img {
  object-fit: contain;
  padding: 14px;
}

.modal-gallery {
  position: absolute;
  left: 50%;
  bottom: 12px;
  display: flex;
  max-width: calc(100% - 24px);
  gap: 8px;
  overflow-x: auto;
  padding: 8px;
  background: rgba(9, 8, 6, 0.72);
  border: 1px solid rgba(244, 215, 156, 0.28);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.38);
  transform: translateX(-50%);
  backdrop-filter: blur(10px);
}

.modal-gallery[hidden] {
  display: none;
}

.modal-gallery-button {
  flex: 0 0 auto;
  overflow: hidden;
  width: 86px;
  height: 62px;
  padding: 0;
  background: var(--surface-2);
  border: 1px solid rgba(244, 215, 156, 0.26);
  cursor: pointer;
  opacity: 0.72;
  transition: border-color 160ms ease, opacity 160ms ease, transform 160ms ease;
}

.modal-gallery-button:hover,
.modal-gallery-button.is-active {
  border-color: var(--gold-light);
  opacity: 1;
}

.modal-gallery-button.is-active {
  transform: translateY(-2px);
}

.modal-gallery-button img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.modal-info {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-height: clamp(370px, 62vh, 620px);
  padding: clamp(22px, 3.5vw, 42px);
}

.modal-info h2 {
  font-size: clamp(1.7rem, 3vw, 2.8rem);
}

.modal-info > p:not(.tag) {
  color: var(--muted);
  max-height: min(34vh, 280px);
  overflow: auto;
  padding-right: 8px;
  font-size: 0.96rem;
  line-height: 1.55;
  scrollbar-color: rgba(244, 215, 156, 0.72) rgba(255, 255, 255, 0.05);
  scrollbar-width: thin;
  white-space: pre-line;
}

.modal-info > p:not(.tag)::-webkit-scrollbar {
  width: 8px;
}

.modal-info > p:not(.tag)::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(244, 215, 156, 0.12);
}

.modal-info > p:not(.tag)::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--gold-light), var(--gold));
  border: 2px solid #15100b;
}

.modal-info > p:not(.tag)::-webkit-scrollbar-thumb:hover {
  background: var(--gold-light);
}

.combo-note {
  display: block;
  margin-top: 12px;
  color: var(--gold-light);
  font-size: 0.86rem;
  font-weight: 900;
}

.site-toast {
  position: fixed;
  left: 50%;
  bottom: 22px;
  z-index: 100;
  width: min(420px, calc(100% - 32px));
  padding: 14px 18px;
  color: #15100a;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  border: 1px solid rgba(244, 215, 156, 0.82);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.46);
  font-size: 0.92rem;
  font-weight: 900;
  line-height: 1.4;
  text-align: center;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 16px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.site-toast.is-open {
  opacity: 1;
  transform: translate(-50%, 0);
}

.modal-price-row {
  margin-top: 22px;
}

.icon-button {
  display: inline-grid;
  place-items: center;
  width: 40px;
  height: 40px;
  color: var(--bg);
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  border: 0;
  cursor: pointer;
  font-weight: 900;
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 42;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 50;
  display: flex;
  flex-direction: column;
  width: min(430px, 100%);
  height: 100vh;
  padding: 22px;
  color: var(--ink);
  background: var(--surface);
  border-left: 1px solid rgba(244, 215, 156, 0.42);
  box-shadow: -28px 0 80px rgba(0, 0, 0, 0.55);
  transform: translateX(100%);
  transition: transform 220ms ease;
}

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

.cart-header,
.cart-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.cart-header {
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.cart-header h2 {
  font-size: 2rem;
}

.cart-items {
  display: grid;
  gap: 14px;
  overflow: auto;
  padding: 18px 0;
}

.cart-item {
  display: grid;
  grid-template-columns: 78px 1fr;
  gap: 12px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
}

.cart-item img {
  width: 78px;
  height: 78px;
  object-fit: cover;
}

.cart-item h3 {
  font-size: 1rem;
}

.cart-item p {
  margin: 6px 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.cart-item-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
}

.qty-button,
.remove-item {
  display: inline-grid;
  place-items: center;
  min-width: 32px;
  min-height: 32px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--line);
  cursor: pointer;
  font-weight: 800;
}

.remove-item {
  padding: 0 10px;
  color: var(--gold-light);
}

.cart-summary {
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.cart-summary strong {
  color: var(--gold-light);
  font-size: 1.25rem;
}

.checkout-button {
  width: 100%;
  margin-top: 16px;
}

.empty-cart {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

body.modal-open,
body.cart-open,
body.panel-open {
  overflow: hidden;
}

.feature-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: clamp(42px, 6vw, 72px) clamp(16px, 4vw, 56px);
  background: linear-gradient(135deg, #1c1309, #090806 58%, #21170e);
  border-block: 1px solid var(--line);
}

.feature-band div {
  max-width: 740px;
}

.information-section {
  scroll-margin-top: 128px;
  background:
    linear-gradient(180deg, rgba(244, 215, 156, 0.04), rgba(9, 8, 6, 0)),
    var(--bg);
  border-bottom: 1px solid var(--line);
}

.information-section .section-heading {
  margin-inline: auto;
  text-align: center;
}

.information-image {
  display: flex;
  justify-content: center;
  margin: 0;
}

.information-image img {
  display: block;
  width: min(100%, 920px);
  height: auto;
  border: 1px solid rgba(244, 215, 156, 0.34);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.52);
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.65fr);
  gap: clamp(24px, 6vw, 80px);
  align-items: start;
}

.contact-form {
  display: grid;
  gap: 12px;
  padding: 24px;
  background: var(--surface);
  border: 1px solid var(--line);
}

.contact-form input,
.contact-form select {
  width: 100%;
  min-height: 48px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
  padding: 0 14px;
  outline: 0;
}

.contact-form select {
  color-scheme: dark;
  appearance: none;
  background:
    linear-gradient(45deg, transparent 50%, var(--gold-light) 50%) right 18px center / 7px 7px no-repeat,
    linear-gradient(135deg, rgba(29, 23, 16, 0.96), rgba(9, 8, 6, 0.96));
  padding-right: 42px;
}

.contact-form option {
  color: var(--ink);
  background: #15100b;
}

.site-footer {
  color: var(--ink);
  background: #050403;
  border-top: 1px solid rgba(244, 215, 156, 0.34);
}

.newsletter {
  display: grid;
  grid-template-columns: 1fr minmax(280px, 520px);
  gap: 24px;
  align-items: center;
  padding: 24px clamp(16px, 6vw, 96px);
  color: #15100a;
  background: linear-gradient(90deg, var(--gold-light), var(--gold), var(--gold-light));
  border-bottom: 1px solid rgba(9, 8, 6, 0.32);
}

.newsletter-title {
  display: flex;
  align-items: center;
  gap: 14px;
  color: #15100a;
  font-weight: 900;
  text-transform: uppercase;
}

.newsletter-title svg,
.footer-column svg,
.social-link svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: var(--gold-light);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.newsletter-title svg {
  stroke: #15100a;
}

.newsletter-form {
  display: flex;
  overflow: hidden;
  min-height: 56px;
  border: 2px solid rgba(21, 16, 10, 0.72);
  border-radius: 999px;
  background: rgba(21, 16, 10, 0.08);
}

.newsletter-form input {
  flex: 1;
  min-width: 0;
  color: #15100a;
  background: transparent;
  border: 0;
  padding: 0 20px;
  outline: 0;
}

.newsletter-form input::placeholder {
  color: rgba(21, 16, 10, 0.66);
}

.newsletter-form button {
  width: 86px;
  color: var(--gold-light);
  background: #15100a;
  border: 0;
  cursor: pointer;
  font-weight: 800;
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(120px, 0.7fr) repeat(3, minmax(210px, 1fr));
  gap: clamp(24px, 5vw, 74px);
  padding: clamp(34px, 5vw, 58px) clamp(16px, 6vw, 96px);
  background: linear-gradient(135deg, #17130d, #0c0a08 54%, #20160d);
  border-top: 1px solid rgba(244, 215, 156, 0.16);
  border-bottom: 1px solid rgba(244, 215, 156, 0.2);
}

.footer-logo img {
  width: 132px;
  max-width: 100%;
  height: 132px;
  object-fit: contain;
}

.footer-column h2 {
  margin: 0 0 22px;
  color: var(--ink);
  font-family: Inter, system-ui, sans-serif;
  font-size: 1rem;
  font-weight: 900;
  text-transform: uppercase;
}

.footer-column p,
.social-link {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 16px;
  color: var(--ink);
}

.footer-column a:hover,
.social-link:hover,
.footer-link:hover {
  color: var(--gold-light);
}

.footer-link {
  display: block;
  margin: 0 0 12px;
  padding: 0;
  color: var(--ink);
  background: transparent;
  border: 0;
  cursor: pointer;
  text-align: left;
}

.footer-bottom {
  display: flex;
  justify-content: center;
  padding: 14px clamp(16px, 6vw, 96px);
  color: var(--muted);
  background: #050403;
  font-size: 0.88rem;
}

.info-panel {
  position: fixed;
  inset: 0;
  z-index: 70;
  pointer-events: none;
  opacity: 0;
  transition: opacity 180ms ease;
}

.info-panel.is-open {
  pointer-events: auto;
  opacity: 1;
}

.info-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(10px);
}

.info-card {
  position: relative;
  z-index: 71;
  width: min(1180px, calc(100% - 28px));
  max-height: calc(100vh - 40px);
  margin: 20px auto;
  overflow: auto;
  padding: clamp(24px, 5vw, 58px);
  background: linear-gradient(135deg, #15100b, #090806 58%, #1c1309);
  border: 1px solid rgba(244, 215, 156, 0.42);
  box-shadow: 0 32px 100px rgba(0, 0, 0, 0.68);
}

.info-close {
  position: absolute;
  top: 16px;
  right: 16px;
}

.panel-view {
  display: none;
}

.panel-view.is-active {
  display: block;
}

.panel-view h2 {
  margin-bottom: 26px;
}

.panel-view h3 {
  margin: 24px 0 12px;
  color: var(--gold-light);
  font-family: Inter, system-ui, sans-serif;
  font-size: 1.2rem;
}

.panel-view ul {
  display: grid;
  gap: 14px;
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
  line-height: 1.7;
}

.panel-view a {
  color: var(--gold-light);
}

.panel-contact-form {
  display: grid;
  gap: 20px;
}

.panel-contact-form label {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 20px;
  align-items: center;
}

.panel-contact-form label > span {
  color: var(--ink);
  text-align: right;
}

.panel-contact-form input,
.panel-contact-form textarea {
  width: 100%;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(244, 215, 156, 0.62);
  padding: 0 16px;
  outline: 0;
}

.panel-contact-form input {
  min-height: 48px;
}

.panel-contact-form textarea {
  min-height: 120px;
  padding-top: 14px;
  resize: vertical;
}

.panel-contact-form input::placeholder,
.panel-contact-form textarea::placeholder {
  color: rgba(247, 240, 228, 0.45);
}

.file-row {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  min-height: 50px;
  border: 1px solid rgba(244, 215, 156, 0.62);
  background: rgba(255, 255, 255, 0.04);
}

.file-input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.file-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  padding: 0 26px;
  color: #15100a;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  cursor: pointer;
  font-weight: 900;
  text-transform: uppercase;
}

.file-name {
  padding: 0 18px;
  color: rgba(247, 240, 228, 0.48);
}

.panel-submit {
  justify-self: end;
  min-width: 130px;
  margin-top: 10px;
}

.about-placeholder {
  min-height: 260px;
  padding: 24px;
  color: var(--muted);
  border: 1px dashed rgba(244, 215, 156, 0.42);
  background: rgba(255, 255, 255, 0.03);
}

@media (max-width: 980px) {
  .topbar {
    grid-template-columns: auto auto;
  }

  .nav {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-content: flex-start;
    flex-wrap: wrap;
    overflow: visible;
    padding-bottom: 4px;
  }

  .category-panel {
    position: absolute;
    top: calc(100% + 12px);
    right: auto;
    left: 0;
    width: min(320px, calc(100vw - 32px));
    max-height: min(70vh, 520px);
    overflow: auto;
    transform: translateY(10px);
  }

  .category-panel.is-open {
    transform: translateY(0);
  }

  .subcategory-panel {
    position: static;
    width: 100%;
    padding: 4px 0 8px 12px;
    background: transparent;
    border: 0;
    border-left: 1px solid rgba(244, 215, 156, 0.22);
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .header-actions {
    justify-content: end;
  }

  .search {
    min-width: 190px;
  }

  .product-grid,
  .benefits-strip {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .modal-card {
    grid-template-columns: 1fr;
  }

  .modal-media {
    height: clamp(260px, 42vh, 380px);
  }

  .modal-media > img {
    min-height: 0;
  }

  .modal-gallery-button {
    width: 76px;
    height: 54px;
  }

  .modal-info {
    min-height: 0;
  }

  .modal-info > p:not(.tag) {
    max-height: none;
  }

  .newsletter,
  .footer-main {
    grid-template-columns: 1fr;
  }

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

  .panel-contact-form label > span {
    text-align: left;
  }
}

@media (max-width: 640px) {
  .topbar {
    grid-template-columns: auto minmax(0, 1fr);
    gap: 8px 10px;
    width: 100%;
    max-width: 100vw;
    padding: 8px 10px;
  }

  .promo-track span {
    min-height: 30px;
    padding: 0 18px;
    font-size: 0.68rem;
  }

  .brand img {
    width: 52px;
    height: 38px;
  }

  .nav {
    display: none;
    grid-column: 1 / -1;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 9px;
    width: 100%;
    margin-top: 4px;
    padding: 12px;
    background:
      linear-gradient(135deg, rgba(29, 23, 16, 0.98), rgba(9, 8, 6, 0.98) 58%, rgba(33, 23, 14, 0.98));
    border: 1px solid rgba(244, 215, 156, 0.28);
    box-shadow: 0 18px 46px rgba(0, 0, 0, 0.38);
    font-size: 0.72rem;
    line-height: 1.2;
  }

  .nav.is-open {
    display: grid;
  }

  .nav a,
  .nav-link {
    justify-content: center;
    width: 100%;
    min-height: 38px;
    padding: 0 8px;
    color: var(--gold-light);
    background: rgba(244, 215, 156, 0.07);
    border: 1px solid rgba(244, 215, 156, 0.25);
    text-align: center;
    box-shadow: inset 0 0 0 1px rgba(9, 8, 6, 0.22);
  }

  .nav a:hover,
  .nav-link:hover,
  .nav a.is-active,
  .nav-link.is-active {
    color: #15100a;
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    border-color: rgba(244, 215, 156, 0.74);
  }

  .nav-link {
    gap: 4px;
  }

  .nav-link svg {
    width: 13px;
    height: 13px;
  }

  .category-menu {
    grid-column: 1 / -1;
    width: 100%;
  }

  .category-panel {
    display: none;
    position: static;
    width: 100%;
    max-height: 56vh;
    margin-top: 8px;
    padding: 8px;
    background: rgba(9, 8, 6, 0.78);
    border-color: rgba(244, 215, 156, 0.24);
    box-shadow: inset 0 0 0 1px rgba(244, 215, 156, 0.06);
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .category-panel.is-open {
    display: grid;
  }

  .category-link,
  .subcategory-panel button {
    justify-content: center;
    min-height: 38px;
    color: var(--gold-light);
    background: rgba(244, 215, 156, 0.055);
    border: 1px solid rgba(244, 215, 156, 0.14);
    border-bottom: 1px solid rgba(244, 215, 156, 0.14);
    text-align: center;
  }

  .category-item.has-submenu > .category-link::after {
    margin-left: 8px;
  }

  .subcategory-panel {
    padding: 8px 0 4px;
  }

  .subcategory-panel button {
    margin-top: 6px;
    font-size: 0.78rem;
  }

  .header-actions {
    min-width: 0;
    justify-content: end;
    gap: 5px;
  }

  .search {
    min-width: 0;
    width: min(40vw, 150px);
    min-height: 38px;
    padding: 6px 9px;
  }

  .search-icon {
    width: 16px;
    height: 16px;
  }

  .search input {
    font-size: 0.86rem;
  }

  .cart-button {
    width: 42px;
    height: 38px;
    gap: 5px;
  }

  .cart-svg {
    width: 19px;
    height: 19px;
  }

  .mobile-menu-toggle {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 38px;
  }

  .mobile-menu-toggle[aria-expanded="true"] {
    color: var(--gold-light);
    background: #15100a;
    border: 1px solid rgba(244, 215, 156, 0.52);
  }

  .hero {
    min-height: min(440px, 60svh);
    align-items: end;
  }

  .hero-image,
  .hero-video {
    object-position: 58% center;
  }

  .hero-overlay {
    background:
      radial-gradient(ellipse at center, rgba(0, 0, 0, 0.14) 0%, rgba(0, 0, 0, 0.4) 54%, rgba(0, 0, 0, 0.76) 100%),
      linear-gradient(0deg, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.74) 44%, rgba(0, 0, 0, 0.28) 100%),
      linear-gradient(90deg, rgba(0, 0, 0, 0.42), rgba(0, 0, 0, 0.14));
  }

  .hero-content {
    margin: 0 auto;
    padding: 42px 0 34px;
  }

  .hero-content > p:not(.eyebrow) {
    font-size: 0.98rem;
    line-height: 1.55;
  }

  h1 {
    font-size: clamp(2.8rem, 15vw, 4.25rem);
  }

  .benefits-strip,
  .product-grid {
    grid-template-columns: 1fr;
  }

  .feature-band {
    align-items: flex-start;
    flex-direction: column;
  }

  .modal-card {
    width: calc(100% - 20px);
    max-height: calc(100vh - 20px);
    margin: 10px auto;
  }

  .modal-media {
    height: clamp(220px, 36vh, 300px);
  }

  .modal-media > img {
    min-height: 0;
  }

  .modal-gallery {
    bottom: 8px;
    gap: 6px;
    padding: 7px;
  }

  .modal-gallery-button {
    width: 66px;
    height: 48px;
  }

  .product-modal.is-contain-image .modal-media > img {
    padding: 8px;
  }

  .cart-drawer {
    padding: 16px;
  }

  .newsletter-form {
    min-height: 48px;
  }

  .footer-logo img {
    width: 104px;
    height: 104px;
  }

  .info-card {
    width: calc(100% - 20px);
    max-height: calc(100vh - 20px);
    margin: 10px auto;
    padding: 22px;
  }

  .file-row {
    grid-template-columns: 1fr;
  }

  .file-button {
    width: 100%;
  }

  .file-name {
    padding: 12px 14px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .promo-track {
    animation: none;
  }
}
