:root {
  --bg: #08090d;
  --bg-soft: #101218;
  --panel: rgba(18, 20, 29, 0.86);
  --panel-solid: #141722;
  --text: #f6f8ff;
  --muted: #9da8bf;
  --line: rgba(255, 255, 255, 0.1);
  --gold: #f5c451;
  --gold-strong: #ffd66d;
  --blue: #65b7ff;
  --green: #49d889;
  --red: #ff6a73;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.42);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  font-family: "Segoe UI", Arial, Helvetica, sans-serif;
  background:
    radial-gradient(circle at 20% 0%, rgba(245, 196, 81, 0.14), transparent 30%),
    radial-gradient(circle at 90% 20%, rgba(101, 183, 255, 0.12), transparent 28%),
    linear-gradient(180deg, #08090d 0%, #101018 45%, #08090d 100%);
  line-height: 1.6;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.72), transparent 72%);
}

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

button,
input,
textarea {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid var(--line);
  background: rgba(8, 9, 13, 0.84);
  backdrop-filter: blur(18px);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  max-width: 1180px;
  margin: 0 auto;
  padding: 16px 22px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-mark {
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  place-items: center;
  border: 1px solid rgba(245, 196, 81, 0.45);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 50% 20%, rgba(245, 196, 81, 0.2), transparent 58%),
    rgba(8, 12, 26, 0.88);
  box-shadow: 0 0 26px rgba(245, 196, 81, 0.18);
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-links a,
.nav-cta,
.button,
.filter-button,
.chat-form button {
  border-radius: var(--radius);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.nav-links a {
  padding: 10px 12px;
  color: var(--muted);
}

.nav-links a:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
}

.nav-cta,
.button-primary,
.chat-form button {
  color: #111520;
  background: linear-gradient(135deg, var(--gold), var(--gold-strong));
  box-shadow: 0 12px 34px rgba(245, 196, 81, 0.22);
}

.nav-cta {
  padding: 10px 15px;
  font-weight: 800;
}

.section-shell {
  max-width: 1180px;
  margin: 0 auto;
  padding: 88px 22px;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: 42px;
  align-items: center;
  min-height: 680px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 54px 22px 40px;
  z-index: -1;
  border-radius: 28px;
  background:
    linear-gradient(120deg, rgba(245, 196, 81, 0.1), transparent 34%),
    radial-gradient(circle at 74% 24%, rgba(255, 214, 109, 0.18), transparent 22%),
    radial-gradient(circle at 88% 68%, rgba(101, 183, 255, 0.14), transparent 26%);
  filter: blur(2px);
}

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

h1,
h2 {
  margin: 0;
  line-height: 1.05;
  letter-spacing: 0;
}

h1 {
  max-width: 780px;
  font-size: clamp(2.8rem, 8vw, 5.9rem);
}

h2 {
  font-size: clamp(2rem, 5vw, 3.6rem);
}

.hero-subtitle,
.section-heading p {
  color: var(--muted);
  font-size: 1.05rem;
}

.hero-subtitle {
  max-width: 540px;
  margin: 22px 0 0;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border: 1px solid transparent;
  cursor: pointer;
  font-weight: 800;
}

.button:hover,
.nav-cta:hover,
.filter-button:hover,
.chat-form button:hover {
  transform: translateY(-2px);
}

.button-secondary {
  color: var(--text);
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.06);
}

.hero-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  max-width: 1180px;
  margin: -42px auto 0;
  padding: 0 22px;
}

.trust-strip div {
  min-height: 92px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(135deg, rgba(245, 196, 81, 0.09), rgba(101, 183, 255, 0.045)),
    rgba(16, 21, 31, 0.86);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.trust-strip div:first-child {
  border-radius: var(--radius) 0 0 var(--radius);
}

.trust-strip div:last-child {
  border-radius: 0 var(--radius) var(--radius) 0;
}

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

.trust-strip strong {
  color: var(--text);
  font-weight: 900;
}

.trust-strip span {
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.45;
}

.video-showcase {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(320px, 1.18fr);
  gap: 34px;
  align-items: center;
  padding-top: 74px;
  padding-bottom: 52px;
}

.video-copy {
  max-width: 460px;
}

.video-copy p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.7;
}

.video-frame {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(245, 196, 81, 0.24);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(245, 196, 81, 0.12), rgba(101, 183, 255, 0.08)),
    rgba(12, 17, 28, 0.88);
  box-shadow: 0 28px 72px rgba(0, 0, 0, 0.34), 0 0 52px rgba(245, 196, 81, 0.1);
  aspect-ratio: 16 / 9;
}

.video-frame iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-preview {
  position: relative;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  width: 100%;
  height: 100%;
  padding: 28px;
  border: 0;
  color: var(--text);
  cursor: pointer;
  text-align: left;
  background:
    linear-gradient(90deg, rgba(5, 8, 16, 0.76), rgba(5, 8, 16, 0.28)),
    linear-gradient(180deg, transparent 35%, rgba(5, 8, 16, 0.88)),
    url("https://i.ytimg.com/vi/aM6lTrQ3LAY/maxresdefault.jpg") center / cover no-repeat;
}

.video-preview::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 44px 44px;
  opacity: 0.55;
}

.video-preview > span {
  position: relative;
  z-index: 1;
}

.video-preview strong,
.video-preview small {
  display: block;
}

.video-preview strong {
  font-size: clamp(1.45rem, 3vw, 2.35rem);
  line-height: 1.05;
}

.video-preview small {
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.95rem;
}

.play-icon {
  flex: 0 0 74px;
  width: 74px;
  height: 74px;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 999px;
  background:
    linear-gradient(135deg, var(--gold), var(--gold-strong));
  box-shadow: 0 18px 44px rgba(245, 196, 81, 0.24);
}

.play-icon::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  margin: 24px 0 0 29px;
  border-top: 13px solid transparent;
  border-bottom: 13px solid transparent;
  border-left: 18px solid #14100a;
}

.hero-visual {
  grid-column: 1 / -1;
  position: relative;
  min-height: 470px;
  padding: 28px;
  overflow: hidden;
  border: 1px solid rgba(245, 196, 81, 0.28);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(8, 12, 26, 0.08), rgba(8, 12, 26, 0.54)),
    url("images/prime-tcg-hero-pattern.svg") center / cover no-repeat,
    var(--panel);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.32), 0 0 48px rgba(245, 196, 81, 0.12);
}

.hero-visual::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 52%;
  background: linear-gradient(180deg, transparent, rgba(7, 9, 16, 0.86));
}

.hero-visual-logo {
  position: absolute;
  top: 22px;
  left: 22px;
  z-index: 2;
  width: 92px;
  height: 92px;
  border: 1px solid rgba(245, 196, 81, 0.32);
  border-radius: var(--radius);
  object-fit: cover;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.34);
}

.hero-visual-copy {
  position: absolute;
  left: 28px;
  bottom: 28px;
  z-index: 3;
  max-width: clamp(160px, 34%, 250px);
}

.hero-visual-copy strong {
  display: block;
  margin: 10px 0 8px;
  font-size: 2.25rem;
  line-height: 1.03;
}

.hero-visual-copy span:last-child {
  color: var(--muted);
}

.hero-product-stack {
  position: absolute;
  right: 12px;
  top: 112px;
  z-index: 2;
  width: min(58%, 350px);
  height: 248px;
}

.hero-product-stack img {
  position: absolute;
  object-fit: contain;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 50% 28%, rgba(245, 196, 81, 0.14), transparent 58%),
    rgba(4, 7, 16, 0.72);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.38);
  filter: contrast(1.05) saturate(1.06);
  transform-origin: center;
  backface-visibility: hidden;
}

.hero-stack-single {
  left: 2%;
  bottom: 20px;
  z-index: 3;
  width: 32%;
  aspect-ratio: 3 / 4;
  transform: rotate(-3deg) translateZ(0);
}

.hero-stack-sealed {
  left: 25%;
  bottom: 18px;
  z-index: 2;
  width: 58%;
  aspect-ratio: 1 / 1;
  transform: rotate(0deg) translateZ(0);
}

.hero-stack-booster {
  right: 2%;
  bottom: 18px;
  z-index: 4;
  width: 29%;
  aspect-ratio: 9 / 16;
  transform: rotate(3deg) translateZ(0);
}

.hero-card,
.hero-stat,
.contact-item,
.product-card,
.chat-window {
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.035));
  box-shadow: var(--shadow);
}

.hero-card-large {
  grid-column: 1 / -1;
  min-height: 230px;
  padding: 26px;
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(245, 196, 81, 0.2), rgba(101, 183, 255, 0.08)),
    var(--panel);
}

.hero-card strong {
  display: block;
  max-width: 320px;
  margin: 30px 0 8px;
  font-size: 2rem;
  line-height: 1.1;
}

.hero-label {
  color: var(--gold);
  font-weight: 800;
}

.hero-stat {
  padding: 22px;
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.035)),
    rgba(18, 25, 42, 0.78);
}

.hero-stat strong {
  display: block;
  color: var(--gold-strong);
  font-size: 2.1rem;
  line-height: 1;
}

.hero-stat span,
.hero-card span {
  color: var(--muted);
}

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

.inventory-tools {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 24px;
}

.inventory {
  position: relative;
}

.inventory::before {
  content: "";
  position: absolute;
  top: 38px;
  right: 22px;
  width: min(28vw, 260px);
  aspect-ratio: 1;
  pointer-events: none;
  background: url("images/prime-tcg-logo.png") center / contain no-repeat;
  opacity: 0.055;
  filter: drop-shadow(0 0 34px rgba(245, 196, 81, 0.28));
}

.search-wrap,
.sort-wrap,
.availability-toggle {
  display: grid;
  gap: 8px;
}

.search-wrap {
  width: min(100%, 380px);
}

.sort-wrap {
  width: min(100%, 190px);
}

.availability-toggle {
  min-height: 46px;
  grid-template-columns: auto 1fr;
  align-items: center;
  align-self: end;
  gap: 10px;
  padding: 0 14px;
  color: var(--text);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  cursor: pointer;
  background:
    linear-gradient(135deg, rgba(245, 196, 81, 0.08), rgba(255, 255, 255, 0.04)),
    rgba(255, 255, 255, 0.04);
  font-size: 0.92rem;
  font-weight: 800;
  white-space: nowrap;
}

.availability-toggle input {
  width: 18px;
  height: 18px;
  accent-color: var(--gold);
}

.search-wrap label,
.sort-wrap label {
  color: var(--muted);
  font-size: 0.9rem;
}

.search-wrap input,
.sort-wrap select,
.chat-form textarea {
  width: 100%;
  color: var(--text);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  outline: none;
  background: rgba(255, 255, 255, 0.06);
}

.search-wrap input {
  min-height: 46px;
  padding: 0 14px;
}

.sort-wrap select {
  min-height: 46px;
  padding: 0 36px 0 12px;
  cursor: pointer;
  appearance: none;
  background:
    linear-gradient(45deg, transparent 50%, var(--gold) 50%) right 16px center / 7px 7px no-repeat,
    linear-gradient(135deg, rgba(245, 196, 81, 0.1), rgba(255, 255, 255, 0.04)),
    rgba(255, 255, 255, 0.06);
}

.search-wrap input:focus,
.sort-wrap select:focus,
.chat-form textarea:focus {
  border-color: rgba(245, 196, 81, 0.58);
  box-shadow: 0 0 0 4px rgba(245, 196, 81, 0.1);
}

.inventory-updated {
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.95rem;
}

.inventory-updated strong {
  color: var(--gold-strong);
}

.result-count {
  margin: -8px 0 18px;
  color: var(--muted);
  font-size: 0.95rem;
}

.request-list-bar {
  position: fixed;
  right: 24px;
  bottom: 96px;
  z-index: 28;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px 14px;
  width: min(390px, calc(100vw - 40px));
  max-height: calc(100vh - 126px);
  padding: 12px 14px;
  border: 1px solid rgba(72, 216, 119, 0.28);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 8% 0%, rgba(72, 216, 119, 0.2), transparent 36%),
    linear-gradient(135deg, rgba(72, 216, 119, 0.12), rgba(245, 196, 81, 0.08)),
    rgba(13, 18, 26, 0.97);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.44), 0 0 0 1px rgba(255, 255, 255, 0.03) inset;
  backdrop-filter: blur(18px);
}

.request-list-bar.expanded {
  width: min(460px, calc(100vw - 40px));
}

.request-list-bar[hidden] {
  display: none;
}

.request-list-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-width: 0;
}

.request-list-summary strong,
.request-list-summary span {
  display: block;
}

.request-list-summary span {
  color: var(--muted);
  font-size: 0.84rem;
}

.request-list-total {
  flex: 0 0 auto;
  padding: 7px 10px;
  border: 1px solid rgba(245, 196, 81, 0.22);
  border-radius: 999px;
  color: var(--gold-strong);
  background: rgba(245, 196, 81, 0.08);
  font-weight: 900;
}

.request-list-toggle {
  min-height: 42px;
  padding: 0 15px;
  color: #10141d;
  border: 0;
  border-radius: var(--radius);
  cursor: pointer;
  background: linear-gradient(135deg, var(--gold), var(--gold-strong));
  box-shadow: 0 14px 34px rgba(245, 196, 81, 0.2);
  font-weight: 900;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.request-list-toggle:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 38px rgba(245, 196, 81, 0.26);
}

.request-list-panel {
  display: none;
  grid-column: 1 / -1;
  gap: 12px;
  padding-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.request-list-bar.expanded .request-list-panel {
  display: grid;
}

.request-list-items {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  max-height: min(30vh, 240px);
  overflow: auto;
  padding: 2px 2px 4px;
  scrollbar-width: thin;
}

.request-list-item {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) 68px 30px;
  gap: 8px;
  align-items: center;
  padding: 6px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.045);
}

.request-list-item img {
  width: 40px;
  height: 40px;
  border-radius: var(--radius);
  object-fit: contain;
  background: rgba(0, 0, 0, 0.26);
}

.request-list-product {
  display: grid;
  min-width: 0;
  gap: 2px;
}

.request-list-product strong,
.request-list-product span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.request-list-product strong {
  font-size: 0.86rem;
  line-height: 1.2;
}

.request-list-product span {
  color: var(--muted);
  font-size: 0.76rem;
}

.request-quantity {
  display: grid;
  gap: 4px;
}

.request-quantity span {
  color: var(--muted);
  font-size: 0.72rem;
}

.request-quantity input {
  width: 100%;
  min-height: 30px;
  padding: 0 8px;
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius);
  background: rgba(0, 0, 0, 0.18);
}

.request-remove {
  width: 28px;
  height: 28px;
  color: var(--muted);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  cursor: pointer;
  background: rgba(255, 255, 255, 0.05);
  font-weight: 900;
}

.request-remove:hover {
  color: var(--text);
  border-color: rgba(255, 106, 115, 0.48);
  background: rgba(255, 106, 115, 0.12);
}

.request-list-actions {
  display: grid;
  flex: 0 0 auto;
  grid-template-columns: 1fr 0.72fr;
  gap: 10px;
}

.featured-products {
  margin: 0 0 22px;
}

.featured-heading {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 10px;
}

.featured-heading span {
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.featured-heading strong {
  color: var(--muted);
  font-size: 0.95rem;
}

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

.featured-card {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  min-height: 88px;
  padding: 10px;
  color: var(--text);
  border: 1px solid rgba(245, 196, 81, 0.2);
  border-radius: var(--radius);
  cursor: pointer;
  background:
    linear-gradient(135deg, rgba(245, 196, 81, 0.08), rgba(101, 183, 255, 0.06)),
    rgba(255, 255, 255, 0.035);
  text-align: left;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.featured-card:hover {
  transform: translateY(-2px);
  border-color: rgba(245, 196, 81, 0.46);
}

.featured-card img {
  width: 58px;
  height: 68px;
  flex: 0 0 auto;
  border-radius: var(--radius);
  object-fit: contain;
  background: rgba(0, 0, 0, 0.3);
}

.featured-card span {
  display: grid;
  min-width: 0;
  gap: 4px;
}

.featured-card strong,
.featured-card small {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.featured-card strong {
  font-size: 0.92rem;
  line-height: 1.25;
}

.featured-card small {
  color: var(--muted);
}

.filter-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.filter-button {
  min-height: 42px;
  padding: 9px 13px;
  color: var(--text);
  border: 1px solid var(--line);
  cursor: pointer;
  background: rgba(255, 255, 255, 0.05);
}

.filter-button.active {
  color: #10131d;
  border-color: transparent;
  background: linear-gradient(135deg, var(--gold), var(--gold-strong));
}

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

.product-card {
  display: flex;
  min-height: 300px;
  flex-direction: column;
  padding: 20px;
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.025)),
    rgba(18, 20, 29, 0.94);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease, opacity 180ms ease;
}

.product-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at top right, rgba(245, 196, 81, 0.16), transparent 35%);
  opacity: 0;
  transition: opacity 180ms ease;
}

.product-card::after {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 1px;
  pointer-events: none;
  background: linear-gradient(90deg, transparent, rgba(245, 196, 81, 0.55), transparent);
  opacity: 0.55;
}

.product-card:hover {
  transform: translateY(-6px);
  border-color: rgba(245, 196, 81, 0.38);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.5);
}

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

.product-card.sold-out {
  opacity: 0.52;
  filter: grayscale(0.35);
}

.product-media {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 18px;
  padding: 6px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--radius);
  background: rgba(0, 0, 0, 0.18);
}

.product-media.single-image {
  grid-template-columns: 1fr;
}

.product-media.single-image img {
  aspect-ratio: 16 / 12;
}

.product-media.showcase-media {
  position: relative;
  grid-template-columns: 1fr;
  min-height: 228px;
  overflow: hidden;
}

.product-media.showcase-media .primary-image img {
  aspect-ratio: 16 / 11;
  object-fit: contain;
}

.product-media.showcase-media .secondary-image {
  position: absolute;
  right: 14px;
  bottom: 14px;
  width: min(34%, 118px);
  border-radius: var(--radius);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.42);
}

.product-media.showcase-media .secondary-image img {
  aspect-ratio: 3 / 4;
  background: rgba(5, 8, 14, 0.92);
}

.product-media img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: contain;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 50% 20%, rgba(245, 196, 81, 0.08), transparent 48%),
    rgba(3, 5, 12, 0.56);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.product-image-button {
  display: block;
  padding: 0;
  border: 0;
  cursor: zoom-in;
  background: transparent;
}

.product-image-button:hover img {
  transform: scale(1.015);
  border-color: rgba(245, 196, 81, 0.58);
  box-shadow: 0 0 28px rgba(245, 196, 81, 0.16);
}

.product-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.product-card h3 {
  display: -webkit-box;
  overflow: hidden;
  margin: 0;
  font-size: 1.16rem;
  line-height: 1.25;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.product-pills,
.detail-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
}

.category-pill {
  display: inline-flex;
  width: fit-content;
  padding: 5px 8px;
  border: 1px solid rgba(101, 183, 255, 0.28);
  border-radius: 999px;
  color: #bcdcff;
  background: rgba(101, 183, 255, 0.08);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.product-label {
  display: inline-flex;
  width: fit-content;
  padding: 5px 8px;
  border: 1px solid rgba(245, 196, 81, 0.28);
  border-radius: 999px;
  color: var(--gold-strong);
  background: rgba(245, 196, 81, 0.08);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.product-label[hidden] {
  display: none;
}

.badge {
  flex: 0 0 auto;
  padding: 6px 9px;
  border-radius: 999px;
  font-size: 0.74rem;
  font-weight: 800;
}

.badge.in-stock {
  color: #092014;
  background: var(--green);
}

.badge.low-stock {
  color: #211607;
  background: var(--gold);
}

.badge.sold-out {
  color: #260d10;
  background: var(--red);
}

.price {
  margin: 18px 0 6px;
  color: var(--gold-strong);
  font-size: 1.8rem;
  font-weight: 900;
}

.stock,
.description {
  color: var(--muted);
}

.product-meta,
.detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 12px;
}

.product-meta span,
.detail-meta span {
  display: inline-flex;
  width: fit-content;
  padding: 5px 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  color: #d8e5fb;
  background: rgba(255, 255, 255, 0.055);
  font-size: 0.74rem;
  font-weight: 800;
}

.description {
  margin: 12px 0 20px;
  line-height: 1.65;
  overflow-wrap: break-word;
  display: -webkit-box;
  min-height: 3.3em;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.product-actions {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.9fr);
  gap: 10px;
  margin-top: 10px;
}

.details-button,
.list-button {
  min-height: 44px;
  border-radius: var(--radius);
  cursor: pointer;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.list-button:disabled {
  cursor: not-allowed;
  opacity: 0.55;
  transform: none;
  box-shadow: none;
}

.details-button,
.marketplace-button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 0 12px;
  color: var(--text);
  border: 1px solid rgba(245, 196, 81, 0.32);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(245, 196, 81, 0.08), rgba(255, 255, 255, 0.04)),
    rgba(255, 255, 255, 0.03);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  font-weight: 800;
  text-align: center;
  text-decoration: none;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.details-button {
  color: var(--text);
}

.marketplace-button:hover {
  transform: translateY(-1px);
  border-color: rgba(245, 196, 81, 0.58);
  background:
    linear-gradient(135deg, rgba(245, 196, 81, 0.16), rgba(255, 255, 255, 0.06)),
    rgba(255, 255, 255, 0.04);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 14px 30px rgba(0, 0, 0, 0.24);
}

.details-button:hover {
  transform: translateY(-1px);
  border-color: rgba(101, 183, 255, 0.45);
  background:
    linear-gradient(135deg, rgba(101, 183, 255, 0.14), rgba(245, 196, 81, 0.07)),
    rgba(255, 255, 255, 0.05);
}

.list-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-top: auto;
  padding: 0 14px;
  color: #111520;
  border: 0;
  background: linear-gradient(135deg, var(--gold), var(--gold-strong));
  box-shadow: 0 12px 28px rgba(245, 196, 81, 0.16);
  text-align: center;
}

.list-button:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 34px rgba(245, 196, 81, 0.22);
}

.list-button.active {
  color: var(--gold-strong);
  border: 1px solid rgba(245, 196, 81, 0.38);
  background:
    linear-gradient(135deg, rgba(245, 196, 81, 0.1), rgba(101, 183, 255, 0.07)),
    rgba(255, 255, 255, 0.04);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

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

.reset-filters {
  display: block;
  min-height: 44px;
  margin: 14px auto 0;
  padding: 0 18px;
  color: var(--text);
  border: 1px solid rgba(245, 196, 81, 0.28);
  border-radius: var(--radius);
  cursor: pointer;
  background:
    linear-gradient(135deg, rgba(245, 196, 81, 0.1), rgba(255, 255, 255, 0.04)),
    rgba(255, 255, 255, 0.035);
  font-weight: 900;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.reset-filters:hover {
  transform: translateY(-1px);
  border-color: rgba(245, 196, 81, 0.5);
  background:
    linear-gradient(135deg, rgba(245, 196, 81, 0.16), rgba(255, 255, 255, 0.05)),
    rgba(255, 255, 255, 0.045);
}

.reset-filters[hidden] {
  display: none;
}

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

.contact-item {
  min-height: 150px;
  padding: 20px;
  border-radius: var(--radius);
}

.contact-item span {
  color: var(--gold);
  font-weight: 900;
}

.contact-item p {
  margin: 18px 0 0;
  font-size: 1.05rem;
}

.pickup-location {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1.15fr);
  gap: 22px;
  align-items: stretch;
  margin-top: 18px;
  padding: 22px;
  overflow: hidden;
  border: 1px solid rgba(245, 196, 81, 0.24);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 12% 15%, rgba(245, 196, 81, 0.18), transparent 28%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.025)),
    rgba(18, 20, 29, 0.88);
  box-shadow: var(--shadow);
}

.pickup-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}

.pickup-copy h3 {
  margin: 0;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  line-height: 1.08;
}

.pickup-copy p:not(.eyebrow) {
  margin: 14px 0 22px;
  color: var(--muted);
}

.pickup-copy .button {
  width: fit-content;
}

.location-map {
  overflow: hidden;
  min-height: 260px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: #141414;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 22px 50px rgba(0, 0, 0, 0.28);
}

.map-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  color: var(--text);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: #141414;
  font-weight: 850;
}

.map-header svg {
  width: 22px;
  height: 22px;
  fill: var(--gold-strong);
}

.map-canvas {
  position: relative;
  height: 220px;
  overflow: hidden;
  background:
    linear-gradient(rgba(120, 109, 91, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(120, 109, 91, 0.08) 1px, transparent 1px),
    linear-gradient(135deg, #eee6d4 0%, #f8f1df 48%, #e8deca 100%);
  background-size: 42px 42px, 42px 42px, auto;
}

.map-canvas::before,
.map-canvas::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.map-canvas::before {
  inset: 0;
  background:
    radial-gradient(ellipse at 12% 18%, rgba(201, 217, 188, 0.42), transparent 34%),
    radial-gradient(ellipse at 92% 82%, rgba(201, 217, 188, 0.34), transparent 32%);
  opacity: 0.72;
}

.map-canvas::after {
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(80, 60, 35, 0.06));
}

.map-road {
  position: absolute;
  z-index: 1;
  display: block;
  height: 18px;
  border-radius: 999px;
  background: #fffdf8;
  box-shadow:
    0 0 0 2px rgba(159, 144, 118, 0.14),
    inset 0 0 0 1px rgba(228, 220, 202, 0.86);
}

.map-road-a {
  top: 46px;
  left: -30px;
  width: 78%;
  transform: rotate(-16deg);
}

.map-road-b {
  top: 94px;
  right: -36px;
  width: 86%;
  transform: rotate(18deg);
}

.map-road-c {
  bottom: 50px;
  left: 8%;
  width: 78%;
  transform: rotate(-8deg);
}

.map-road-d {
  top: -8px;
  left: 34%;
  width: 58%;
  transform: rotate(72deg);
}

.map-road-e {
  top: 12px;
  right: 15%;
  width: 52%;
  transform: rotate(103deg);
}

.map-label {
  position: absolute;
  z-index: 3;
  color: rgba(45, 42, 36, 0.7);
  font-size: 0.84rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  line-height: 1.15;
  max-width: 48%;
  text-transform: uppercase;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.55);
}

.map-label-top {
  top: 24px;
  left: 17%;
}

.map-label-left {
  bottom: 42px;
  left: 5%;
}

.map-label-right {
  right: 5%;
  bottom: 62px;
}

.location-radius {
  position: absolute;
  z-index: 4;
  top: 48%;
  left: 49%;
  display: grid;
  width: 118px;
  height: 118px;
  place-items: center;
  border: 1px solid rgba(215, 132, 86, 0.38);
  border-radius: 50%;
  background: rgba(220, 139, 92, 0.32);
  transform: translate(-50%, -50%);
}

.location-radius span {
  display: none;
}

.contact-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 18px;
  padding: 22px;
  border: 1px solid rgba(245, 196, 81, 0.28);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(245, 196, 81, 0.14), rgba(101, 183, 255, 0.06)),
    var(--panel);
  box-shadow: var(--shadow);
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.contact-cta strong,
.contact-cta span {
  display: block;
}

.contact-cta strong {
  font-size: 1.25rem;
}

.contact-cta span {
  color: var(--muted);
}

.faq-block {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.faq-item {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.025)),
    rgba(18, 20, 29, 0.86);
}

.faq-item h3 {
  margin: 0 0 8px;
  font-size: 1rem;
  line-height: 1.28;
}

.faq-item p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.chat-toggle {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 30;
  display: inline-flex;
  min-height: 56px;
  align-items: center;
  gap: 10px;
  padding: 0 18px;
  color: #04160b;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  background: linear-gradient(135deg, #35d06f, #c5ffd6);
  box-shadow: 0 18px 50px rgba(53, 208, 111, 0.3), 0 0 0 1px rgba(255, 255, 255, 0.16) inset;
  font-weight: 900;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.chat-toggle:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 58px rgba(53, 208, 111, 0.38), 0 0 0 1px rgba(255, 255, 255, 0.2) inset;
}

.chat-toggle-icon {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.chat-window {
  position: fixed;
  right: 22px;
  bottom: 96px;
  z-index: 35;
  display: flex;
  width: min(410px, calc(100vw - 32px));
  max-height: min(680px, calc(100vh - 116px));
  flex-direction: column;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(72, 216, 119, 0.24);
  background:
    radial-gradient(circle at 18% 0%, rgba(72, 216, 119, 0.17), transparent 34%),
    linear-gradient(180deg, rgba(20, 25, 39, 0.98), rgba(8, 11, 19, 0.99));
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.62);
}

.chat-window[hidden] {
  display: none;
}

.chat-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.05);
}

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

.chat-identity img {
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  border: 1px solid rgba(245, 196, 81, 0.35);
  border-radius: var(--radius);
  object-fit: cover;
  box-shadow: 0 0 24px rgba(245, 196, 81, 0.16);
}

.chat-header span {
  display: flex;
  align-items: center;
  gap: 7px;
  color: var(--muted);
  font-size: 0.82rem;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #35d06f;
  box-shadow: 0 0 14px rgba(53, 208, 111, 0.88);
}

.chat-header button {
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  color: var(--text);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  cursor: pointer;
  background: rgba(255, 255, 255, 0.06);
}

.chat-body {
  display: grid;
  gap: 14px;
  padding: 16px;
  overflow-y: auto;
}

.chat-intro,
.chat-note {
  margin: 0;
  color: var(--muted);
}

.chat-intro {
  padding: 14px;
  border: 1px solid rgba(245, 196, 81, 0.18);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(245, 196, 81, 0.11), rgba(72, 216, 119, 0.08)),
    rgba(255, 255, 255, 0.04);
}

.quick-replies {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.quick-replies button {
  min-height: 36px;
  padding: 8px 10px;
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  cursor: pointer;
  background: rgba(255, 255, 255, 0.06);
  font-size: 0.9rem;
  font-weight: 800;
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.quick-replies button:hover {
  transform: translateY(-1px);
  border-color: rgba(72, 216, 119, 0.42);
  background: rgba(72, 216, 119, 0.1);
}

.chat-form {
  display: grid;
  gap: 9px;
}

.chat-form label {
  color: var(--muted);
  font-size: 0.86rem;
}

.chat-form textarea {
  min-height: 118px;
  resize: vertical;
  padding: 12px;
  line-height: 1.5;
}

.chat-form button {
  min-height: 46px;
  border: 0;
  padding: 0 15px;
  cursor: pointer;
  color: #04160b;
  border-radius: var(--radius);
  background: linear-gradient(135deg, #35d06f, #c5ffd6);
  box-shadow: 0 14px 32px rgba(53, 208, 111, 0.2);
  font-weight: 900;
}

.chat-note {
  font-size: 0.82rem;
}

.product-detail-modal {
  position: fixed;
  inset: 0;
  z-index: 55;
  display: grid;
  place-items: center;
  padding: 22px;
  background: rgba(0, 0, 0, 0.78);
  backdrop-filter: blur(12px);
}

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

.product-detail-panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(320px, 1.1fr);
  gap: 22px;
  width: min(1040px, 100%);
  max-height: min(88vh, 820px);
  overflow: auto;
  padding: 22px;
  border: 1px solid rgba(245, 196, 81, 0.28);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 14% 0%, rgba(245, 196, 81, 0.16), transparent 32%),
    linear-gradient(180deg, rgba(24, 29, 42, 0.98), rgba(9, 12, 20, 0.98));
  box-shadow: 0 34px 110px rgba(0, 0, 0, 0.66);
}

.detail-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  width: 38px;
  height: 38px;
  color: var(--text);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  cursor: pointer;
  background: rgba(255, 255, 255, 0.08);
  font-weight: 900;
}

.detail-images {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  align-content: start;
}

.detail-images:has(.detail-image-button:only-child) {
  grid-template-columns: 1fr;
}

.detail-image-button {
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: var(--radius);
  cursor: zoom-in;
  background: rgba(0, 0, 0, 0.24);
}

.detail-image-button img {
  display: block;
  width: 100%;
  max-height: 520px;
  object-fit: contain;
  border-radius: calc(var(--radius) - 2px);
}

.detail-content {
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: center;
  padding: 20px 12px 8px;
}

.detail-content h2 {
  font-size: clamp(1.8rem, 4vw, 3rem);
}

.detail-price {
  margin-top: 18px;
  color: var(--gold-strong);
  font-size: 2.2rem;
  font-weight: 950;
}

.detail-stock,
.detail-description {
  color: var(--muted);
}

.detail-description {
  margin: 0;
  line-height: 1.75;
}

.detail-meta {
  margin: 12px 0 6px;
}

.detail-description-block {
  display: grid;
  gap: 8px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.035);
}

.detail-description-block h3 {
  margin: 0;
  color: var(--text);
  font-size: 0.94rem;
}

.detail-sections {
  display: grid;
  gap: 10px;
  margin: 10px 0 18px;
}

.detail-section {
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(245, 196, 81, 0.055), rgba(101, 183, 255, 0.045)),
    rgba(255, 255, 255, 0.03);
}

.detail-section h3 {
  margin: 0 0 8px;
  color: var(--gold-strong);
  font-size: 0.88rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.detail-section ul {
  display: grid;
  gap: 5px;
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
}

.quantity-control {
  display: grid;
  width: min(100%, 180px);
  gap: 8px;
  margin: 12px 0 18px;
  color: var(--muted);
  font-size: 0.9rem;
}

.quantity-control input {
  min-height: 44px;
  padding: 0 12px;
  color: var(--text);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
}

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

.image-lightbox {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: grid;
  place-items: center;
  padding: 22px;
  background: rgba(0, 0, 0, 0.86);
  backdrop-filter: blur(10px);
}

.image-lightbox[hidden] {
  display: none;
}

.image-lightbox img {
  max-width: min(94vw, 920px);
  max-height: 90vh;
  object-fit: contain;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.65);
}

.lightbox-close {
  position: fixed;
  top: 18px;
  right: 18px;
  width: 42px;
  height: 42px;
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  cursor: pointer;
  background: rgba(255, 255, 255, 0.1);
  font-size: 1.2rem;
  font-weight: 900;
}

.product-toast {
  position: fixed;
  left: 50%;
  right: auto;
  bottom: 24px;
  z-index: 70;
  max-width: min(420px, calc(100vw - 32px));
  padding: 14px 16px;
  border: 1px solid rgba(72, 216, 119, 0.34);
  border-radius: var(--radius);
  color: var(--text);
  background:
    linear-gradient(135deg, rgba(72, 216, 119, 0.18), rgba(245, 196, 81, 0.08)),
    rgba(11, 16, 23, 0.96);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.46);
  font-weight: 900;
  opacity: 0;
  text-align: center;
  transform: translate(-50%, 10px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.product-toast.show {
  opacity: 1;
  transform: translate(-50%, 0);
}

.site-footer {
  display: grid;
  gap: 6px;
  padding: 34px 22px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  text-align: center;
}

.footer-logo {
  width: 72px;
  height: 72px;
  margin: 0 auto 6px;
  border: 1px solid rgba(245, 196, 81, 0.26);
  border-radius: var(--radius);
  object-fit: cover;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.28);
}

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

@media (max-width: 920px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .trust-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: -12px;
  }

  .trust-strip div:first-child {
    border-radius: var(--radius) 0 0 0;
  }

  .trust-strip div:nth-child(2) {
    border-radius: 0 var(--radius) 0 0;
  }

  .trust-strip div:nth-child(3) {
    border-radius: 0 0 0 var(--radius);
  }

  .trust-strip div:last-child {
    border-radius: 0 0 var(--radius) 0;
  }

  .video-showcase {
    grid-template-columns: 1fr;
    padding-top: 62px;
  }

  .video-copy {
    max-width: 620px;
  }

  .inventory-tools {
    align-items: stretch;
    flex-direction: column;
  }

  .sort-wrap {
    width: min(100%, 380px);
  }

  .availability-toggle {
    width: min(100%, 380px);
  }

  .hero-visual {
    min-height: 430px;
  }

  .filter-buttons {
    justify-content: flex-start;
  }

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

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

  .pickup-location {
    grid-template-columns: 1fr;
  }

  .product-detail-panel {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .navbar {
    align-items: stretch;
    flex-direction: column;
    gap: 12px;
  }

  .nav-links {
    justify-content: space-between;
  }

  .nav-cta {
    text-align: center;
  }

  .section-shell {
    padding: 64px 16px;
  }

  .hero::before {
    inset: 34px 12px 24px;
  }

  .hero-actions,
  .filter-buttons {
    display: grid;
    grid-template-columns: 1fr;
  }

  .button,
  .filter-button,
  .availability-toggle {
    width: 100%;
  }

  .hero-panel,
  .product-grid,
  .contact-grid,
  .faq-block,
  .featured-list {
    grid-template-columns: 1fr;
  }

  .trust-strip {
    grid-template-columns: 1fr;
    padding: 0 16px;
  }

  .trust-strip div,
  .trust-strip div:first-child,
  .trust-strip div:nth-child(2),
  .trust-strip div:nth-child(3),
  .trust-strip div:last-child {
    border-radius: var(--radius);
  }

  .video-showcase {
    gap: 20px;
  }

  .video-preview {
    align-items: flex-start;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px;
  }

  .play-icon {
    width: 58px;
    height: 58px;
    flex-basis: 58px;
  }

  .play-icon::after {
    margin: 18px 0 0 23px;
    border-top-width: 11px;
    border-bottom-width: 11px;
    border-left-width: 16px;
  }

  .request-list-bar {
    bottom: 88px;
    right: 12px;
    left: 12px;
    grid-template-columns: 1fr;
    width: auto;
    padding: 12px;
  }

  .request-list-bar.expanded {
    width: auto;
  }

  .request-list-summary {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .request-list-items {
    grid-template-columns: 1fr;
    max-height: 32vh;
  }

  .request-list-item {
    grid-template-columns: 44px minmax(0, 1fr) 72px 30px;
  }

  .request-list-actions {
    align-self: stretch;
  }

  .request-list-toggle,
  .request-list-actions,
  .detail-actions,
  .product-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-visual {
    display: flex;
    min-height: auto;
    flex-direction: column;
    gap: 20px;
    padding: 22px;
  }

  .hero-visual-logo,
  .hero-visual-copy,
  .hero-product-stack {
    position: relative;
    inset: auto;
  }

  .hero-visual-logo {
    width: 78px;
    height: 78px;
  }

  .hero-visual-copy {
    max-width: none;
  }

  .hero-visual-copy strong {
    font-size: 1.85rem;
  }

  .hero-product-stack {
    width: 100%;
    height: 270px;
  }

  .hero-stack-single {
    left: 4%;
    bottom: 18px;
    width: 31%;
  }

  .hero-stack-sealed {
    left: 28%;
    bottom: 18px;
    width: 56%;
  }

  .hero-stack-booster {
    right: 5%;
    bottom: 22px;
    width: 28%;
  }

  .contact-cta {
    align-items: stretch;
    flex-direction: column;
  }

  .contact-actions {
    justify-content: stretch;
  }

  .pickup-location {
    padding: 18px;
  }

  .pickup-copy .button {
    width: 100%;
  }

  .location-map {
    min-height: 240px;
  }

  .map-canvas {
    height: 198px;
  }

  .chat-toggle {
    right: 16px;
    bottom: 16px;
  }

  .chat-window {
    right: 16px;
    bottom: 92px;
  }

  .product-detail-modal {
    padding: 12px;
  }

  .product-detail-panel {
    max-height: 92vh;
    padding: 16px;
  }

  .detail-images {
    grid-template-columns: 1fr;
  }
}
