/* Shop landing — mobile first, hairlines not shadows */
.shop-landing .section {
  padding: 48px 0;
}
@media (min-width: 761px) {
  .shop-landing .section { padding: 80px 0; }
}

.shop-hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  border-bottom: 1px solid var(--hairline);
  overflow: hidden;
  background: var(--bg);
}
.shop-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 30%;
  transform: scale(1.02);
}
.shop-hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,10,10,.22) 0%, rgba(10,10,10,.42) 42%, rgba(10,10,10,.88) 100%);
}
.shop-hero__inner {
  position: relative;
  z-index: 1;
  padding: 28px 0 104px;
  max-width: 36rem;
}
@media (min-width: 1121px) {
  .shop-hero {
    min-height: min(72vh, 640px);
  }
  .shop-hero__bg {
    background-position: center;
  }
  .shop-hero__bg::after {
    background: linear-gradient(105deg, rgba(0,0,0,.88) 0%, rgba(0,0,0,.55) 48%, rgba(0,0,0,.35) 100%);
  }
  .shop-hero__inner {
    padding: 72px 0 64px;
  }
}
.shop-hero__inner h1 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(2.75rem, 5vw, 3.25rem);
  line-height: 1.1;
  margin: 0 0 14px;
  color: var(--text);
}
.shop-hero__inner .lead {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.55;
  margin: 0 0 22px;
}
.shop-hero--simulator {
  align-items: stretch;
  min-height: auto;
  display: block;
}
.shop-hero--simulator .shop-hero__copy {
  padding: 48px 0 8px;
  max-width: 40rem;
}
.shop-hero--simulator .shop-hero__grid {
  position: relative;
  z-index: 1;
  display: block;
  padding: 0 0 72px;
}
@media (min-width: 901px) {
  .shop-hero--simulator .shop-hero__grid {
    grid-template-columns: none;
    gap: 40px;
    padding: 64px 0;
    align-items: center;
  }
}

/* Tint shade simulator (hero) */
.shade-sim {
  border: 1px solid var(--hairline);
  border-radius: 8px;
  background: var(--surface);
  padding: 18px;
}
.shade-sim__glass {
  position: relative;
  height: 220px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--border);
  background:
    linear-gradient(160deg, #3a4a58 0%, #1a2228 45%, #0d1216 100%);
}
.shade-sim__glass::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,.08) 50%, transparent 100%);
}
.shade-sim__film {
  position: absolute;
  inset: 0;
  background: #05070a;
  opacity: 0.45;
  transition: opacity .35s ease;
}
.shade-sim__meta {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-top: 14px;
  gap: 12px;
}
.shade-sim__meta strong {
  font-family: var(--font-head);
  font-size: 1.05rem;
}
.shade-sim__meta span {
  font-size: .8rem;
  color: var(--muted);
  letter-spacing: .06em;
  text-transform: uppercase;
  font-weight: 600;
}
.shade-sim__swatches {
  display: flex;
  gap: 10px;
  margin-top: 14px;
  flex-wrap: wrap;
}
.shade-sim__swatch {
  width: 40px;
  height: 40px;
  border-radius: 4px;
  border: 1px solid var(--hairline);
  cursor: pointer;
  padding: 0;
  background: #111;
}
.shade-sim__swatch[aria-pressed="true"] {
  outline: 2px solid var(--cta);
  outline-offset: 2px;
}
.shade-sim__swatch:focus-visible {
  outline: 2px solid var(--cta);
  outline-offset: 2px;
}

.shop-cats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 12px;
}
.shop-cat {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 88px;
  padding: 18px 14px;
  border-radius: 8px;
  border: 1px solid var(--hairline);
  background: var(--surface);
  color: var(--text);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: border-color .2s ease, background .2s ease;
}
.shop-cat:hover {
  border-color: rgba(var(--accent-rgb), .55);
  background: var(--surface-2, #1A1A1A);
}

.shop-build-promo {
  border-block: 1px solid var(--hairline);
  background:
    radial-gradient(ellipse at 20% 0%, rgba(var(--cta-rgb), .18), transparent 55%),
    var(--bg-alt, #111);
}
.shop-build-promo__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
}
.shop-build-promo h2 {
  font-family: var(--font-head);
  font-size: clamp(1.75rem, 3vw, 2rem);
  margin: 8px 0 10px;
}
.shop-build-promo p {
  color: var(--muted);
  max-width: 40rem;
  margin: 0;
}

.shop-products {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 18px;
}
.product-card {
  border: 1px solid var(--hairline);
  border-radius: 8px;
  background: var(--surface);
  padding: 18px 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  box-shadow: none;
}
.product-card__media {
  height: 150px;
  border-radius: 8px;
  border: 1px solid var(--border);
  background:
    radial-gradient(circle at 50% 40%, rgba(var(--accent-rgb), .16), transparent 62%),
    linear-gradient(180deg, var(--surface-2, #1A1A1A), var(--bg));
  display: flex;
  align-items: center;
  justify-content: center;
  /* Placeholder until knocked-out WebP packshots ship */
}
.product-card__media span {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.65rem;
  letter-spacing: .04em;
  color: rgba(var(--accent-rgb), .55);
}
.product-card__brand {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: .10em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 2px 0 0;
}
.product-card__name {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 17px;
  color: var(--text);
  margin: 0;
  line-height: 1.25;
}
.product-card__why {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 14px;
  color: var(--muted);
  margin: 0;
  line-height: 1.45;
  flex: 1;
}
.product-card__price {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 16px;
  font-variant-numeric: tabular-nums;
  color: var(--text);
  margin: 0;
}
.product-card__price small {
  display: block;
  font-weight: 500;
  font-size: 12px;
  color: var(--muted);
  margin-top: 2px;
}
.product-card__stock {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 13px;
  color: var(--muted);
  margin: 0;
}
.product-card .btn {
  border-radius: 4px;
  align-self: stretch;
  text-align: center;
  box-shadow: none;
}

.shop-claim {
  border-block: 1px solid var(--hairline);
  text-align: center;
}
.shop-claim blockquote {
  margin: 0 auto;
  max-width: 46rem;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: clamp(1.35rem, 2.4vw, 1.75rem);
  line-height: 1.35;
  color: var(--text);
}
.shop-claim cite {
  display: block;
  margin-top: 16px;
  font-style: normal;
  font-family: var(--font-body);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
}

.shop-pickup {
  border: 1px solid var(--hairline);
  border-radius: 8px;
  background: var(--surface);
  padding: 28px 28px 30px;
  max-width: 52rem;
}
.shop-pickup h2 {
  font-family: var(--font-head);
  font-size: 1.5rem;
  margin: 0 0 10px;
}
.shop-pickup p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}
.shop-pickup__extra {
  margin-top: 12px !important;
  color: var(--text) !important;
  font-weight: 500;
}

.shop-xsell {
  border-top: 1px solid var(--hairline);
  padding: 28px 0 8px;
  color: var(--muted);
  font-size: .95rem;
}
.shop-xsell a {
  color: var(--text);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.shop-xsell a:hover { color: var(--accent); }

.shop-alarm-note {
  margin-top: 18px;
  font-size: .9rem;
  color: var(--muted);
}
.shop-alarm-note a { color: var(--text); }

.shop-section-head {
  margin-bottom: 28px;
}
.shop-section-head h2 {
  font-family: var(--font-head);
  font-size: 2rem;
  margin: 0 0 8px;
}
.shop-section-head p {
  margin: 0;
  color: var(--muted);
  max-width: 40rem;
}

.shop-landing .btn-cta,
.shop-landing .btn-call {
  box-shadow: none;
}
.shop-landing .btn-cta:hover,
.shop-landing .btn-call:hover {
  box-shadow: none;
}
