:root {
  --black: #000000;
  --red: #dd0000;
  --gold: #ffce00;
  --ink: #141414;
  --muted: #666666;
  --line: #e8e1d3;
  --paper: #fffaf0;
  --white: #ffffff;
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

body.no-scroll {
  overflow: hidden;
}

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

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

button,
input,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

#splash-screen {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  background: var(--black);
  color: var(--white);
  transition: opacity 600ms ease, visibility 600ms ease;
}

#splash-screen.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.splash-mark {
  display: grid;
  gap: 18px;
  justify-items: center;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.splash-mark span {
  width: 86px;
  height: 86px;
  border: 5px solid var(--gold);
  border-top-color: var(--red);
  border-radius: 999px;
  animation: spin 1.2s linear infinite;
}

.splash-mark strong {
  font-size: clamp(1.25rem, 3vw, 2.4rem);
}

.splash-bars {
  position: fixed;
  right: 32px;
  bottom: 32px;
  display: flex;
  gap: 8px;
}

.splash-bars i {
  display: block;
  width: 34px;
  height: 8px;
}

.splash-bars i:nth-child(1) {
  background: var(--black);
  border: 1px solid var(--white);
}

.splash-bars i:nth-child(2) {
  background: var(--red);
}

.splash-bars i:nth-child(3) {
  background: var(--gold);
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.age-gate {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(0, 0, 0, 0.72);
}

.age-gate.is-visible {
  display: flex;
}

.age-panel {
  width: min(520px, 100%);
  padding: 34px;
  border: 1px solid rgba(255, 206, 0, 0.45);
  border-radius: 8px;
  background: linear-gradient(140deg, #111111, #1f0000);
  color: var(--white);
  box-shadow: var(--shadow);
}

.age-panel h2 {
  margin: 10px 0;
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1.05;
}

.age-panel p {
  color: #f4e7d0;
}

.age-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.utility-bar {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 8px clamp(18px, 4vw, 56px);
  color: var(--white);
  background: var(--black);
  font-size: 0.84rem;
}

.utility-links {
  display: flex;
  gap: 18px;
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  min-height: 74px;
  padding: 0 clamp(18px, 4vw, 56px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  color: var(--black);
  letter-spacing: 0.08em;
}

.brand-mark {
  position: relative;
  display: inline-block;
  width: 38px;
  height: 38px;
  background: var(--black);
  border-radius: 7px;
  box-shadow: inset 0 -12px 0 var(--red), inset 0 -24px 0 var(--gold);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 28px);
  color: #292929;
  font-weight: 700;
  font-size: 0.95rem;
}

.nav-links a {
  padding: 10px 0;
}

.nav-links a:hover {
  color: var(--red);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-actions select,
.catalog-toolbar input,
.catalog-toolbar select {
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: var(--white);
  color: var(--ink);
}

.nav-actions select {
  padding: 0 10px;
}

.cart-button,
.menu-toggle {
  border: 0;
  background: transparent;
}

.cart-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 12px;
  border: 1px solid var(--black);
  border-radius: 7px;
  font-weight: 800;
}

.cart-button strong {
  display: grid;
  place-items: center;
  min-width: 24px;
  height: 24px;
  border-radius: 999px;
  color: var(--black);
  background: var(--gold);
  font-size: 0.78rem;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 9px;
  border: 1px solid var(--line);
  border-radius: 7px;
}

.menu-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--black);
}

.hero-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  min-height: calc(100vh - 116px);
  padding: clamp(34px, 6vw, 92px) clamp(18px, 4vw, 56px) 48px;
  background:
    linear-gradient(90deg, rgba(255, 206, 0, 0.12), transparent 34%),
    linear-gradient(145deg, #ffffff 0%, #fff8df 46%, #ffe2e2 100%);
  overflow: hidden;
}

.hero-copy {
  align-self: center;
  max-width: 680px;
  padding: 34px 0;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-copy h1,
.section-heading h2,
.split-copy h2,
.contact-copy h2 {
  margin: 0;
  color: var(--black);
  font-weight: 950;
  line-height: 0.96;
}

.hero-copy h1 {
  max-width: 630px;
  font-size: clamp(3.3rem, 8vw, 8.4rem);
}

.hero-copy p:not(.eyebrow) {
  max-width: 570px;
  margin: 24px 0 0;
  color: #393939;
  font-size: clamp(1rem, 1.5vw, 1.22rem);
}

.hero-actions,
.catalog-toolbar,
.hero-metrics,
.payment-grid,
.keyword-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-actions {
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid var(--black);
  border-radius: 7px;
  font-weight: 900;
}

.button.primary {
  color: var(--white);
  background: var(--black);
  box-shadow: 8px 8px 0 var(--gold);
}

.button.secondary {
  color: var(--white);
  border-color: var(--red);
  background: var(--red);
}

.button.ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.35);
  background: transparent;
}

.button.full {
  width: 100%;
}

.hero-metrics {
  margin-top: 42px;
}

.hero-metrics div,
.service-strip div,
.spec-grid div {
  border-left: 5px solid var(--gold);
  padding-left: 14px;
}

.hero-metrics strong {
  display: block;
  color: var(--black);
  font-size: 2rem;
  line-height: 1;
}

.hero-metrics span,
.service-strip span,
.spec-grid span {
  display: block;
  color: var(--muted);
  font-size: 0.92rem;
}

.hero-media {
  align-self: center;
  position: relative;
}

.hero-media::before {
  content: "";
  position: absolute;
  inset: 8% 0 4% 6%;
  border: 2px solid var(--gold);
  border-radius: 8px;
  transform: rotate(-2deg);
}

.hero-media img {
  position: relative;
  width: 100%;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.service-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.service-strip div {
  min-height: 118px;
  padding: 24px;
  background: var(--white);
}

.service-strip strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1rem;
}

.section-block {
  padding: clamp(54px, 8vw, 104px) clamp(18px, 4vw, 56px);
}

.section-heading {
  max-width: 960px;
  margin-bottom: 34px;
}

.section-heading.compact {
  max-width: 760px;
}

.section-heading h2,
.split-copy h2,
.contact-copy h2 {
  font-size: clamp(2.2rem, 5vw, 5rem);
}

.section-heading p:not(.eyebrow),
.split-copy p,
.contact-copy p {
  max-width: 760px;
  color: var(--muted);
  font-size: 1.06rem;
}

.poster-band {
  color: var(--white);
  background:
    linear-gradient(115deg, #000000 0%, #250000 42%, #dd0000 76%, #ffce00 100%);
}

.poster-band .section-heading h2,
.poster-band .section-heading p {
  color: var(--white);
}

.poster-band .eyebrow {
  color: var(--gold);
}

.poster-layout {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 206, 0, 0.5);
  border-radius: 8px;
  background: var(--black);
  box-shadow: var(--shadow);
}

.poster-layout img {
  width: 100%;
  aspect-ratio: 16 / 7;
  object-fit: cover;
  opacity: 0.88;
}

.poster-copy {
  position: absolute;
  top: 24px;
  left: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  max-width: 540px;
}

.poster-tag {
  display: inline-block;
  padding: 8px 14px;
  color: var(--white);
  background: var(--black);
  border: 2px solid var(--gold);
  border-radius: 7px;
  font-size: clamp(2rem, 7vw, 6rem);
  font-weight: 950;
  line-height: 0.95;
  text-transform: uppercase;
  text-shadow: 4px 4px 0 rgba(0, 0, 0, 0.35);
}

.poster-tag.gold {
  color: var(--black);
  background: var(--gold);
}

.poster-tag.red {
  background: var(--red);
}

.catalog-toolbar {
  align-items: end;
  justify-content: space-between;
  margin-bottom: 22px;
}

.catalog-toolbar label {
  display: grid;
  gap: 6px;
  min-width: min(340px, 100%);
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 800;
}

.catalog-toolbar input,
.catalog-toolbar select {
  width: 100%;
  padding: 0 14px;
}

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

.product-card {
  position: relative;
  overflow: hidden;
  min-height: 520px;
  border: 1px solid rgba(255, 206, 0, 0.35);
  border-radius: 8px;
  color: var(--white);
  background:
    linear-gradient(165deg, rgba(221, 0, 0, 0.92), rgba(0, 0, 0, 0.96) 42%, rgba(255, 206, 0, 0.86) 120%);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.16);
}

.product-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.08), transparent 36%),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0 1px, transparent 1px 16px);
  pointer-events: none;
}

.product-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  filter: saturate(1.08) contrast(1.06);
}

.product-content {
  position: relative;
  display: grid;
  gap: 14px;
  padding: 18px;
}

.product-badges,
.flavor-list,
.product-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.product-badges span,
.flavor-list span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 4px 9px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 7px;
  color: var(--white);
  background: rgba(0, 0, 0, 0.42);
  font-size: 0.78rem;
  font-weight: 900;
}

.product-card h3 {
  margin: 0;
  color: var(--gold);
  font-size: clamp(1.7rem, 3vw, 2.6rem);
  line-height: 0.95;
  text-transform: uppercase;
  text-shadow: 3px 3px 0 rgba(0, 0, 0, 0.3);
}

.product-card p {
  margin: 0;
  color: #fff4dc;
}

.price-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
}

.price-row strong {
  color: var(--white);
  font-size: 1.8rem;
}

.price-row span {
  color: var(--gold);
  font-weight: 900;
}

.product-actions .button {
  min-height: 42px;
  flex: 1;
  padding: 0 12px;
}

.product-actions .button.primary {
  box-shadow: none;
  background: var(--black);
}

.product-actions .button.secondary {
  color: var(--black);
  border-color: var(--gold);
  background: var(--gold);
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(24px, 5vw, 68px);
  align-items: center;
  background: #fffdf7;
}

.split-section.reverse {
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  background: var(--white);
}

.split-section.reverse .split-copy {
  order: 2;
}

.split-section img {
  width: 100%;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.check-list {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 24px 0 28px;
  list-style: none;
}

.check-list li {
  padding: 12px 14px;
  border-left: 5px solid var(--red);
  background: var(--white);
  font-weight: 800;
}

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

.spec-grid div {
  padding: 18px;
  border: 1px solid var(--line);
  background: #fffdf7;
}

.spec-grid strong {
  display: block;
  color: var(--red);
  font-size: 1.4rem;
}

.payments-section,
.seo-section {
  background: #111111;
  color: var(--white);
}

.payments-section .section-heading h2,
.payments-section .section-heading p,
.seo-section .section-heading h2,
.seo-section .section-heading p {
  color: var(--white);
}

.payment-grid span,
.keyword-row span {
  display: inline-flex;
  align-items: center;
  min-height: 52px;
  padding: 0 18px;
  border: 1px solid rgba(255, 206, 0, 0.4);
  border-radius: 7px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  font-weight: 900;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(22px, 5vw, 68px);
  align-items: start;
  background: linear-gradient(135deg, #fffaf0, #ffffff);
}

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

.contact-grid a {
  min-height: 136px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.06);
}

.contact-grid strong {
  display: block;
  color: var(--red);
  font-size: 1.1rem;
}

.contact-grid span {
  display: block;
  margin-top: 16px;
  color: var(--black);
  font-size: clamp(1rem, 2vw, 1.5rem);
  font-weight: 900;
  overflow-wrap: anywhere;
}

.floating-contact {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 45;
  display: grid;
  gap: 8px;
}

.floating-contact a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 112px;
  min-height: 42px;
  padding: 0 12px;
  border: 1px solid rgba(255, 206, 0, 0.55);
  border-radius: 7px;
  color: var(--white);
  background: var(--black);
  font-size: 0.84rem;
  font-weight: 900;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
}

.floating-contact a:first-child {
  background: var(--red);
}

.cart-drawer {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: none;
  justify-content: flex-end;
  background: rgba(0, 0, 0, 0.52);
}

.cart-drawer.is-open {
  display: flex;
}

.cart-panel {
  display: grid;
  grid-template-rows: auto 1fr auto;
  width: min(440px, 100%);
  height: 100%;
  background: var(--white);
}

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

.cart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cart-header h2 {
  margin: 0;
}

.cart-header button {
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: var(--white);
  font-size: 1.5rem;
}

.cart-items {
  overflow: auto;
  padding: 18px 20px;
}

.cart-item {
  display: grid;
  grid-template-columns: 66px 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}

.cart-item img {
  width: 66px;
  height: 66px;
  border-radius: 7px;
  object-fit: cover;
}

.cart-item h3,
.cart-item p {
  margin: 0;
}

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

.cart-item p {
  color: var(--muted);
  font-size: 0.86rem;
}

.cart-item button {
  width: 32px;
  height: 32px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: var(--white);
}

.cart-footer {
  border-top: 1px solid var(--line);
  border-bottom: 0;
}

.cart-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
  font-size: 1.2rem;
}

.cart-total strong {
  color: var(--red);
}

.cart-footer p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.site-footer {
  display: grid;
  grid-template-columns: 1.3fr repeat(3, minmax(0, 0.7fr));
  gap: 24px;
  padding: 44px clamp(18px, 4vw, 56px);
  color: var(--white);
  background: var(--black);
}

.site-footer > div {
  display: grid;
  align-content: start;
  gap: 10px;
}

.site-footer a,
.site-footer span,
.site-footer p {
  color: #dfdfdf;
}

.site-footer strong {
  color: var(--gold);
}

.footer-brand,
.footer-brand span {
  color: var(--white);
}

.empty-cart {
  padding: 24px;
  color: var(--muted);
  border: 1px dashed var(--line);
  border-radius: 8px;
  text-align: center;
}

@media (max-width: 1020px) {
  .hero-section,
  .split-section,
  .split-section.reverse,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .split-section.reverse .split-copy {
    order: 0;
  }

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

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

  .site-footer {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .utility-bar {
    display: none;
  }

  .nav-shell {
    min-height: 68px;
  }

  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    display: none;
    padding: 16px 18px 22px;
    border-top: 1px solid var(--line);
    background: var(--white);
  }

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

  .nav-actions {
    margin-left: auto;
  }

  .cart-button span {
    display: none;
  }

  .hero-section {
    min-height: auto;
    padding-top: 42px;
  }

  .hero-copy h1 {
    font-size: clamp(3rem, 16vw, 5.8rem);
  }

  .product-grid,
  .service-strip,
  .contact-grid,
  .spec-grid,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .product-card {
    min-height: 0;
  }

  .poster-layout img {
    aspect-ratio: 4 / 5;
  }

  .poster-copy {
    top: 14px;
    left: 14px;
  }

  .floating-contact {
    left: 12px;
    right: 12px;
    grid-template-columns: repeat(3, 1fr);
  }

  .floating-contact a {
    min-width: 0;
  }
}

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