:root {
  color-scheme: light;
  --ink: #f5f5f5;
  --navy: #300000;
  --slate: #c6c6c6;
  --muted: #9ca3af;
  --mist: #161616;
  --paper: #0c0c0d;
  --line: #2a2a2d;
  --teal: #c11622;
  --blue: #c11622;
  --gold: #d4af37;
  --success: #14795c;
  --danger: #a83b3b;
  --shadow: 0 24px 60px rgba(48, 0, 0, 0.16);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 20% 0%, rgba(193, 22, 34, 0.12), transparent 28%),
    linear-gradient(180deg, #0b0b0c 0%, #151515 42%, #0d0d0e 100%);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.5;
}

body.cart-open {
  overflow: hidden;
}

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

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

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

.notice-bar {
  align-items: center;
  background: #c11622;
  color: #f3f3f3;
  display: flex;
  gap: 16px;
  justify-content: center;
  min-height: 42px;
  padding: 8px 18px;
  text-align: center;
}

.notice-bar a {
  border-bottom: 1px solid rgba(255, 255, 255, 0.65);
  color: #fff;
  font-weight: 700;
}

.site-header {
  align-items: center;
  background: rgba(15, 15, 16, 0.96);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  height: 76px;
  justify-content: space-between;
  padding: 0 clamp(18px, 4vw, 56px);
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(16px);
  color: #fff;
}

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

.header-brand {
  gap: 0;
}

.brand-mark {
  align-items: center;
  background: #0b0b0c;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  display: inline-flex;
  height: 38px;
  justify-content: center;
  overflow: hidden;
  width: 38px;
}

.header-brand-logo {
  background: transparent;
  border: 0;
  border-radius: 8px;
  height: 60px;
  width: 148px;
}

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

.header-brand-logo img {
  object-fit: contain;
}

.desktop-nav {
  align-items: center;
  display: flex;
  gap: 26px;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 750;
}

.desktop-nav a:hover,
.mobile-nav a:hover,
.footer-links a:hover {
  color: var(--gold);
}

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

.icon-button,
.menu-button,
.cart-button {
  align-items: center;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  color: #fff;
  cursor: pointer;
  display: inline-flex;
  font-size: 14px;
  font-weight: 800;
  gap: 8px;
  min-height: 42px;
  padding: 0 14px;
}

.cart-button span {
  align-items: center;
  background: var(--gold);
  border-radius: 999px;
  color: #1a0000;
  display: inline-flex;
  font-size: 12px;
  height: 22px;
  justify-content: center;
  min-width: 22px;
  padding: 0 6px;
}

.menu-button {
  display: none;
}

.mobile-nav {
  background: #111111;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  color: #fff;
  display: none;
  gap: 14px;
  padding: 14px 18px 18px;
  z-index: 19;
}

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

.hero {
  background:
    radial-gradient(circle at 72% 18%, rgba(193, 22, 34, 0.28), transparent 28%),
    linear-gradient(135deg, #1a0000 0%, #300000 44%, #111111 100%);
  color: #fff;
  display: block;
  min-height: 380px;
  overflow: hidden;
  position: relative;
}

.hero-copy {
  align-content: center;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.66), rgba(0, 0, 0, 0.36) 62%, transparent);
  display: grid;
  min-height: 380px;
  padding: clamp(32px, 4vw, 48px) clamp(18px, 6vw, 72px);
  position: relative;
  z-index: 2;
  width: min(760px, 100%);
}

.eyebrow {
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  margin: 0 0 10px;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  font-size: clamp(34px, 4vw, 50px);
  line-height: 1;
  margin-bottom: 16px;
  max-width: 760px;
}

h2 {
  font-size: clamp(30px, 4vw, 50px);
  line-height: 1.04;
  margin-bottom: 14px;
}

h3 {
  font-size: 20px;
  line-height: 1.18;
  margin-bottom: 8px;
}

.hero-lede,
.section-heading p,
.split-heading > p,
.contact-copy p {
  color: var(--slate);
  max-width: 720px;
}

.hero-lede {
  font-size: clamp(16px, 1.6vw, 19px);
}

.hero .hero-lede {
  color: rgba(255, 255, 255, 0.82);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 14px 0 16px;
}

.button {
  align-items: center;
  border: 1px solid transparent;
  border-radius: 8px;
  cursor: pointer;
  display: inline-flex;
  font-weight: 900;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
}

.button.primary {
  background: var(--blue);
  color: #fff;
}

.button.secondary {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--line);
  color: #fff;
}

.button.ghost {
  background: transparent;
  border-color: var(--line);
  color: var(--navy);
}

.button.full {
  width: 100%;
}

.button:disabled {
  cursor: wait;
  opacity: 0.7;
}

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.trust-strip span {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  padding: 8px 12px;
}

.hero-media {
  inset: 0;
  min-height: 100%;
  overflow: hidden;
  position: absolute;
  z-index: 0;
}

.hero-media img {
  height: 100%;
  object-fit: cover;
  object-position: 62% center;
  opacity: 0.9;
  width: 100%;
}

.hero-logo-media {
  background:
    radial-gradient(circle at 72% 50%, rgba(193, 22, 34, 0.18), transparent 26%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.68));
}

.hero-logo-media img {
  object-fit: contain;
  object-position: 72% center;
  opacity: 0.72;
  padding: clamp(24px, 4vw, 54px) clamp(18px, 7vw, 96px) clamp(24px, 4vw, 54px) clamp(220px, 28vw, 520px);
}

.section-heading {
  margin: 0 auto 28px;
  max-width: 1180px;
  padding: 0 clamp(18px, 4vw, 56px);
}

.split-heading {
  align-items: end;
  display: grid;
  gap: 28px;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.58fr);
}

.shop-band,
.testing-section,
.resources-section,
.faq-section,
.contact-section,
.quality-section,
.collections-section,
.disclaimer-section {
  padding: clamp(58px, 8vw, 96px) 0;
}

.shop-band,
.resources-section {
  background: rgba(255, 255, 255, 0.03);
}

.shop-toolbar,
.coa-controls {
  align-items: end;
  display: grid;
  gap: 14px;
  grid-template-columns: minmax(280px, 1fr) 220px 220px;
  margin: 0 auto 18px;
  max-width: 1180px;
  padding: 0 clamp(18px, 4vw, 56px);
}

label {
  color: var(--slate);
  display: grid;
  font-size: 13px;
  font-weight: 850;
  gap: 7px;
}

input,
select,
textarea {
  background: #111113;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: #fff;
  min-height: 46px;
  outline: none;
  padding: 10px 12px;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(21, 94, 239, 0.12);
}

.product-count {
  color: var(--slate);
  font-weight: 800;
  margin: 0 auto 16px;
  max-width: 1180px;
  padding: 0 clamp(18px, 4vw, 56px);
}

.product-grid,
.coa-grid,
.quality-grid,
.collection-grid,
.resource-list,
.disclaimer-grid {
  display: grid;
  gap: 18px;
  margin: 0 auto;
  max-width: 1180px;
  padding: 0 clamp(18px, 4vw, 56px);
}

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

.product-card,
.coa-card,
.quality-grid article,
.resource-list article,
.contact-form,
.quick-view,
.cart-drawer {
  background: #151517;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.product-card {
  display: grid;
  grid-template-rows: 210px 1fr;
  min-height: 100%;
  overflow: hidden;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.28);
}

.product-visual {
  align-items: center;
  background:
    radial-gradient(circle at 65% 20%, rgba(193, 22, 34, 0.2), transparent 30%),
    linear-gradient(135deg, #0d0d0d, #2a0507 54%, #202024);
  display: grid;
  height: 210px;
  justify-items: center;
  overflow: hidden;
  position: relative;
}

.product-photo {
  background: #111;
  border: 1px solid rgba(48, 0, 0, 0.08);
  border-radius: 8px;
  box-shadow: 0 18px 34px rgba(48, 0, 0, 0.12);
  display: block;
  max-height: 190px;
  max-width: calc(100% - 24px);
  object-fit: contain;
  object-position: center;
  position: relative;
  z-index: 1;
}

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

.is-hidden {
  display: none;
}

.vial {
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.75), rgba(145, 174, 203, 0.38));
  border: 2px solid rgba(11, 37, 69, 0.24);
  border-radius: 18px 18px 10px 10px;
  box-shadow: 0 18px 30px rgba(7, 17, 31, 0.14);
  height: 128px;
  position: relative;
  width: 58px;
}

.vial::before {
  background: var(--blue);
  border-radius: 8px 8px 3px 3px;
  content: "";
  height: 24px;
  left: 8px;
  position: absolute;
  top: -22px;
  width: 42px;
}

.vial::after {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(11, 37, 69, 0.12);
  border-radius: 5px;
  bottom: 28px;
  content: attr(data-label);
  color: var(--navy);
  font-size: 11px;
  font-weight: 900;
  left: 7px;
  line-height: 1.1;
  padding: 9px 4px;
  position: absolute;
  text-align: center;
  width: 40px;
}

.product-body {
  display: grid;
  gap: 10px;
  padding: 18px;
  position: relative;
  z-index: 2;
}

.meta-row,
.product-actions,
.coa-actions,
.cart-line,
.cart-total {
  align-items: center;
  display: flex;
  gap: 10px;
  justify-content: space-between;
}

.category-tag,
.status-tag,
.coa-tag {
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  padding: 5px 8px;
}

.category-tag {
  background: rgba(193, 22, 34, 0.16);
  color: var(--blue);
}

.status-tag {
  background: rgba(20, 121, 92, 0.18);
  color: var(--success);
}

.status-tag.sale {
  background: rgba(212, 175, 55, 0.16);
  color: #725400;
}

.coa-tag {
  background: rgba(212, 175, 55, 0.16);
  color: #725400;
}

.product-price {
  font-size: 24px;
  font-weight: 950;
}

.product-title {
  font-size: 19px;
  min-height: 46px;
  overflow-wrap: anywhere;
}

.microcopy {
  color: var(--muted);
  font-size: 12px;
  margin: 0;
}

.product-description {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
  margin: 0;
}

.product-disclaimer {
  background: rgba(196, 31, 43, 0.12);
  border: 1px solid rgba(196, 31, 43, 0.28);
  border-radius: 8px;
  color: #fff;
  font-size: 12px;
  font-weight: 850;
  line-height: 1.35;
  margin: 0;
  padding: 8px 10px;
}

.product-actions {
  margin-top: 4px;
}

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

.quantity-picker {
  align-items: center;
  display: flex;
  gap: 10px;
  justify-content: space-between;
}

.quantity-picker span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.quantity-picker input {
  min-height: 38px;
  padding: 6px 8px;
  text-align: center;
  width: 76px;
}

.product-quantity {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 8px 10px;
}

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

.quality-grid article,
.resource-list article {
  padding: 24px;
}

.step-number {
  color: var(--blue);
  display: block;
  font-weight: 950;
  margin-bottom: 18px;
}

.testing-section {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(193, 22, 34, 0.06));
}

.coa-controls {
  grid-template-columns: minmax(280px, 1fr) minmax(320px, 0.9fr);
}

.filter-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.filter-pills button {
  background: #151517;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--slate);
  cursor: pointer;
  font-weight: 850;
  min-height: 38px;
  padding: 0 13px;
}

.filter-pills button.active {
  background: var(--blue);
  border-color: var(--blue);
  color: #fff;
}

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

.coa-card {
  display: grid;
  gap: 14px;
  padding: 20px;
}

.coa-metrics {
  border-top: 1px solid var(--line);
  display: grid;
  gap: 8px;
  padding-top: 12px;
}

.coa-metrics div {
  align-items: baseline;
  display: flex;
  justify-content: space-between;
  gap: 14px;
}

.coa-metrics dt {
  color: var(--muted);
  font-size: 13px;
  font-weight: 850;
}

.coa-metrics dd {
  font-weight: 900;
  margin: 0;
  text-align: right;
}

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

.collection-grid a {
  align-items: end;
  background:
    linear-gradient(140deg, rgba(48, 0, 0, 0.92), rgba(179, 0, 0, 0.78)),
    var(--navy);
  border-radius: var(--radius);
  color: #fff;
  display: flex;
  font-size: 22px;
  font-weight: 950;
  min-height: 170px;
  padding: 22px;
}

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

.disclaimer-section {
  background: #1a0000;
  color: #fff;
}

.disclaimer-section .section-heading p {
  color: #d4d4d4;
}

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

.disclaimer-grid article {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  padding: 22px;
}

.disclaimer-grid h3 {
  color: #fff;
}

.disclaimer-grid p {
  color: #d4d4d4;
  margin-bottom: 0;
}

.faq-list {
  display: grid;
  gap: 10px;
  margin: 0 auto;
  max-width: 920px;
  padding: 0 clamp(18px, 4vw, 56px);
}

details {
  background: #151517;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px 20px;
}

summary {
  cursor: pointer;
  font-weight: 950;
}

details p {
  color: var(--slate);
  margin: 12px 0 0;
}

.contact-section {
  align-items: start;
  display: grid;
  gap: 36px;
  grid-template-columns: minmax(0, 0.75fr) minmax(320px, 0.65fr);
  margin: 0 auto;
  max-width: 1180px;
  padding-left: clamp(18px, 4vw, 56px);
  padding-right: clamp(18px, 4vw, 56px);
}

.contact-form {
  display: grid;
  gap: 14px;
  padding: 22px;
}

.contact-details {
  display: grid;
  gap: 12px;
  margin-top: 26px;
}

.contact-details div {
  background: #151517;
  border: 1px solid var(--line);
  border-left: 4px solid var(--blue);
  border-radius: var(--radius);
  display: grid;
  gap: 4px;
  padding: 14px 16px;
}

.contact-details span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-details a,
.contact-details strong {
  color: var(--ink);
  font-size: 18px;
  font-weight: 950;
}

.cart-drawer {
  bottom: 0;
  box-shadow: var(--shadow);
  display: grid;
  grid-template-rows: auto auto auto;
  max-width: min(430px, calc(100vw - 16px));
  max-height: 100dvh;
  min-width: 0;
  overflow-y: auto;
  overflow-x: hidden;
  position: fixed;
  right: 8px;
  top: 0;
  transform: translateX(110%);
  transition: transform 180ms ease;
  width: min(430px, calc(100vw - 16px));
  z-index: 40;
}

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

.cart-header,
.cart-footer {
  padding: 18px;
}

.cart-header {
  align-items: center;
  border-bottom: 1px solid var(--line);
  display: flex;
  gap: 12px;
  justify-content: space-between;
  min-width: 0;
}

.cart-header h2 {
  font-size: 24px;
  margin: 0;
}

.cart-items {
  display: grid;
  gap: 12px;
  min-width: 0;
  padding: 18px;
}

.cart-line {
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: 10px;
  grid-template-columns: 58px minmax(0, 1fr) auto;
  min-width: 0;
  padding-bottom: 12px;
}

.cart-thumb {
  border-radius: 8px;
  height: 58px;
  object-fit: cover;
  width: 58px;
}

.cart-line strong {
  display: block;
}

.cart-line-main {
  display: grid;
  gap: 7px;
  min-width: 0;
}

.cart-line-main strong,
.cart-line-main span {
  overflow-wrap: anywhere;
}

.cart-quantity {
  align-items: center;
  display: inline-flex;
  gap: 6px;
}

.cart-quantity button {
  align-items: center;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid var(--line);
  border-radius: 6px;
  color: #fff;
  cursor: pointer;
  display: inline-flex;
  font-weight: 950;
  height: 30px;
  justify-content: center;
  width: 30px;
}

.cart-quantity input {
  min-height: 30px;
  padding: 4px;
  text-align: center;
  width: 54px;
}

.cart-line .remove-line {
  background: transparent;
  border: 0;
  color: var(--danger);
  cursor: pointer;
  font-weight: 900;
  justify-self: end;
  padding: 4px 0;
  white-space: nowrap;
}

.cart-footer {
  border-top: 1px solid var(--line);
  display: grid;
  gap: 14px;
  min-width: 0;
}

.shipping-tracker {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  display: grid;
  gap: 10px;
  padding: 12px;
}

.shipping-tracker-copy {
  align-items: center;
  display: flex;
  gap: 10px;
  justify-content: space-between;
}

.shipping-tracker-copy span {
  color: #fff;
  font-size: 14px;
  font-weight: 850;
}

.shipping-tracker-copy strong {
  color: var(--gold);
  font-size: 13px;
}

.shipping-progress {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  height: 9px;
  overflow: hidden;
}

.shipping-progress span {
  background: linear-gradient(90deg, var(--blue), var(--gold));
  border-radius: inherit;
  display: block;
  height: 100%;
  transition: width 180ms ease;
  width: 0%;
}

.customer-details {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 12px;
}

.cart-footer > *,
.customer-details *,
.payment-methods *,
.shipping-methods * {
  max-width: 100%;
  min-width: 0;
}

.customer-details legend {
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  padding: 0 4px;
}

.customer-details label {
  display: grid;
  gap: 6px;
}

.customer-details label span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.customer-details input,
.customer-details textarea {
  min-height: 38px;
  padding: 8px 10px;
  width: 100%;
}

.checkout-name-grid {
  display: grid;
  gap: 10px;
  grid-template-columns: 1fr 1fr;
}

.payment-methods,
.shipping-methods {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 12px;
}

.payment-methods legend,
.shipping-methods legend {
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  padding: 0 4px;
}

.payment-methods label,
.shipping-methods label {
  align-items: center;
  border-radius: 8px;
  cursor: pointer;
  display: grid;
  gap: 10px;
  grid-template-columns: 18px 1fr;
  padding: 8px;
}

.payment-methods label:has(input:checked),
.shipping-methods label:has(input:checked) {
  background: rgba(196, 31, 43, 0.18);
  outline: 1px solid rgba(196, 31, 43, 0.42);
}

.payment-methods input,
.shipping-methods input {
  accent-color: var(--red);
  min-height: auto;
}

.payment-methods span,
.shipping-methods span {
  color: #fff;
  font-size: 14px;
  font-weight: 800;
}

.payment-methods strong,
.shipping-methods strong {
  color: var(--gold);
  font-size: 12px;
  white-space: nowrap;
}

.shipping-methods.needs-attention {
  border-color: rgba(196, 31, 43, 0.9);
  box-shadow: 0 0 0 3px rgba(196, 31, 43, 0.22);
}

.cart-fee-row {
  align-items: center;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--line);
  border-radius: 8px;
  color: #fff;
  display: flex;
  font-size: 14px;
  justify-content: space-between;
  padding: 10px 12px;
}

.cart-fee-row[hidden] {
  display: none;
}

.cart-fee-row strong {
  color: var(--gold);
}

.acknowledgement {
  align-items: start;
  display: grid;
  gap: 10px;
  grid-template-columns: 18px 1fr;
  scroll-margin: 24px;
}

.acknowledgement.needs-attention {
  background: rgba(196, 31, 43, 0.16);
  border: 1px solid rgba(196, 31, 43, 0.48);
  border-radius: var(--radius);
  padding: 12px;
}

.acknowledgement input {
  min-height: auto;
  margin-top: 3px;
}

.overlay {
  background: rgba(7, 17, 31, 0.44);
  inset: 0;
  opacity: 0;
  pointer-events: none;
  position: fixed;
  transition: opacity 180ms ease;
  z-index: 30;
}

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

.quick-view,
.offline-payment-dialog,
.age-modal {
  background: #151517;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  color: var(--ink);
  max-width: min(760px, calc(100vw - 28px));
  padding: 0;
  width: 760px;
}

.quick-view::backdrop,
.offline-payment-dialog::backdrop,
.age-modal::backdrop {
  background: rgba(7, 17, 31, 0.48);
}

.dialog-close {
  background: #151517;
  border: 1px solid var(--line);
  border-radius: 8px;
  cursor: pointer;
  font-weight: 850;
  color: #fff;
  min-height: 38px;
  padding: 0 12px;
  position: absolute;
  right: 16px;
  top: 16px;
}

.quick-inner {
  display: grid;
  gap: 24px;
  grid-template-columns: 260px minmax(0, 1fr);
  padding: 64px 24px 24px;
}

.quick-inner .product-visual {
  border-radius: var(--radius);
  height: 280px;
}

.spec-list {
  display: grid;
  gap: 8px;
  margin: 18px 0;
}

.spec-list div {
  align-items: baseline;
  display: flex;
  gap: 18px;
  justify-content: space-between;
}

.spec-list dt {
  color: var(--muted);
  font-weight: 850;
}

.spec-list dd {
  font-weight: 900;
  margin: 0;
  text-align: right;
}

.offline-payment-dialog {
  width: 560px;
}

.offline-payment-content {
  display: grid;
  gap: 14px;
  padding: 64px 24px 24px;
}

.offline-payment-content h2 {
  color: #fff;
  font-size: 28px;
  margin: 0;
}

.offline-payment-content p {
  margin: 0;
}

.email-preview {
  display: grid;
  gap: 8px;
}

.email-preview span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.email-preview textarea {
  font-family: Consolas, "Courier New", monospace;
  font-size: 12px;
  line-height: 1.45;
  min-height: 220px;
  resize: vertical;
}

.send-status {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--line);
  border-radius: 8px;
  min-height: 38px;
  padding: 10px 12px;
}

.offline-order-list {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  display: grid;
  gap: 8px;
  padding: 12px;
}

.offline-order-list div,
.offline-total-row {
  align-items: start;
  display: grid;
  gap: 4px 12px;
  grid-template-columns: minmax(0, 1fr) auto;
}

.offline-order-list span,
.offline-total-row span {
  color: #fff;
  font-weight: 850;
}

.offline-order-list strong,
.offline-total-row strong {
  color: var(--gold);
}

.offline-order-list small {
  color: var(--muted);
  grid-column: 1 / -1;
}

.offline-total-row {
  border-top: 1px solid var(--line);
  padding-top: 10px;
}

.offline-total-row.grand {
  font-size: 18px;
}

.offline-contact-box {
  background: rgba(196, 31, 43, 0.12);
  border: 1px solid rgba(196, 31, 43, 0.36);
  border-radius: var(--radius);
  display: grid;
  gap: 6px;
  padding: 12px;
}

.offline-contact-box strong {
  color: #fff;
}

.age-modal {
  padding: 28px;
  width: 460px;
}

.age-modal h2 {
  font-size: 28px;
}

.modal-disclaimer {
  background: var(--mist);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--slate);
  display: grid;
  gap: 10px;
  margin: 16px 0;
  max-height: 210px;
  overflow: auto;
  padding: 16px;
}

.modal-disclaimer p {
  margin: 0;
}

.modal-disclaimer strong {
  color: var(--ink);
}

.modal-ack {
  margin-bottom: 18px;
}

.site-footer {
  align-items: start;
  background: #1a0000;
  color: #fff;
  display: grid;
  gap: 28px;
  grid-template-columns: minmax(0, 1fr) auto;
  padding: 42px clamp(18px, 4vw, 56px);
}

.site-footer p {
  color: #c8d1df;
  margin: 18px 0 0;
  max-width: 760px;
}

.footer-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-weight: 850;
}

.checkout-status-page {
  align-items: center;
  display: grid;
  min-height: 100vh;
  padding: 24px;
}

.checkout-status-card {
  background: #151517;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: grid;
  gap: 16px;
  margin: 0 auto;
  max-width: 680px;
  padding: clamp(24px, 5vw, 46px);
}

.checkout-status-card h1 {
  margin-bottom: 0;
}

.checkout-status-card .button {
  width: fit-content;
}

.footer-contact {
  color: #c8d1df;
  display: grid;
  gap: 7px;
  font-size: 14px;
  justify-items: end;
}

.footer-contact a {
  color: #fff;
  font-weight: 850;
}

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

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

  .hero {
    min-height: 340px;
  }

  .hero-media {
    min-height: 100%;
  }
}

@media (max-width: 760px) {
  .desktop-nav,
  #searchToggle {
    display: none;
  }

  .menu-button {
    display: inline-flex;
  }

  .mobile-nav {
    box-shadow: 0 18px 28px rgba(0, 0, 0, 0.32);
    left: 0;
    position: fixed;
    right: 0;
    top: 68px;
    z-index: 21;
  }

  .site-header {
    height: 68px;
    padding: 0 14px;
  }

  .cart-drawer {
    max-width: calc(100vw - 12px);
    right: 6px;
    width: calc(100vw - 12px);
  }

  .brand span:last-child {
    display: none;
  }

  .hero {
    min-height: 330px;
  }

  .hero-media {
    min-height: 100%;
  }

  .hero-copy {
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.48) 72%, rgba(0, 0, 0, 0.18));
    min-height: 330px;
    padding: 28px 18px 32px;
  }

  .hero-logo-media img {
    object-position: center bottom;
    opacity: 0.38;
    padding: 92px 18px 14px;
  }

  h1 {
    font-size: 34px;
  }

  .shop-toolbar,
  .coa-controls,
  .split-heading,
  .contact-section,
  .site-footer,
  .quick-inner,
  .checkout-name-grid {
    grid-template-columns: 1fr;
  }

  .footer-contact {
    justify-items: start;
  }

  .product-grid,
  .quality-grid,
  .collection-grid,
  .coa-grid,
  .resource-list,
  .disclaimer-grid {
    grid-template-columns: 1fr;
  }

  .contact-section {
    padding-top: 58px;
    padding-bottom: 58px;
  }

  .quick-inner {
    padding: 64px 18px 18px;
  }

  .quick-inner .product-visual {
    height: 230px;
  }

  .notice-bar {
    align-items: center;
    flex-direction: column;
    gap: 3px;
    line-height: 1.25;
  }
}
