@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Mono:wght@400;500;600;700&family=Marcellus&family=Public+Sans:wght@400;500;600;700;800&display=swap');

/* AZUR THEME LOCK: black / red / silver collector layout only. Do not restore blue, white, tan, handyman, roofing, or service themes. */
:root {
  --bg: #070708;
  --surface: #101113;
  --surface-strong: rgba(18, 19, 22, 0.94);
  --surface-muted: #17181c;
  --text: #f4ede5;
  --muted: #b7aaa0;
  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.18);
  --primary: #9d1c17;
  --primary-strong: #66100d;
  --accent: #ff8d66;
  --accent-soft: rgba(255, 141, 102, 0.12);
  --success: #49b987;
  --shadow: 0 28px 72px rgba(0, 0, 0, 0.4);
  --shadow-soft: 0 14px 36px rgba(0, 0, 0, 0.24);
  --radius: 24px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  background:
    radial-gradient(circle at top left, rgba(157, 28, 23, 0.28), transparent 28%),
    radial-gradient(circle at top right, rgba(255, 141, 102, 0.1), transparent 18%),
    linear-gradient(180deg, #090909 0%, #111111 42%, #070708 100%);
  color: var(--text);
  font-family: "Public Sans", "Segoe UI", sans-serif;
  line-height: 1.65;
}

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

a {
  color: var(--primary);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

h1,
h2,
h3 {
  font-family: "Marcellus", Georgia, serif;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin: 0 0 14px;
}

p {
  margin: 0 0 16px;
}

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

.header {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(12px);
  background: rgba(8, 8, 10, 0.88);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.brand:hover {
  text-decoration: none;
}

.brand img {
  width: 58px;
  height: 58px;
  object-fit: cover;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.32);
}

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

.nav__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 8px 14px;
  border-radius: 999px;
  color: var(--text);
  font-size: 14px;
  font-weight: 700;
}

.nav__link:hover {
  background: rgba(255, 255, 255, 0.06);
  text-decoration: none;
}

.nav__link.is-active {
  background: var(--primary);
  color: #fff;
}

.nav-toggle {
  display: none;
  border: 1px solid var(--border);
  background: var(--surface-strong);
  color: var(--text);
  border-radius: 12px;
  padding: 10px 12px;
}

.section {
  padding: 72px 0;
}

.section--tight {
  padding-top: 32px;
}

.section--muted {
  background: rgba(255, 255, 255, 0.02);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  color: var(--primary);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 1px;
  background: rgba(255, 141, 102, 0.45);
}

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

.section-heading h2 {
  font-size: clamp(30px, 5vw, 44px);
}

.section-copy,
.muted,
.note,
.price-note,
.section-intro,
.card p,
.trust-item p,
.mini-card p {
  color: var(--muted);
}

.hero {
  padding: 86px 0 40px;
}

.hero-shell,
.split-layout,
.marketplace-grid,
.contact-grid {
  display: grid;
  gap: 28px;
}

.hero-shell {
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  align-items: center;
}

.hero-copy h1 {
  font-size: clamp(42px, 6vw, 64px);
  margin-bottom: 18px;
}

.hero-copy p {
  max-width: 720px;
  font-size: 19px;
}

.proof-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.proof-pill {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text);
  font-size: 13px;
  font-weight: 700;
}

.buttons,
.card-actions,
.shop-cta-row,
.hero-contact,
.inline-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.buttons {
  margin-top: 28px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 15px;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.btn:hover {
  transform: translateY(-1px);
  text-decoration: none;
}

.btn-primary {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
  box-shadow: 0 16px 30px rgba(157, 28, 23, 0.28);
}

.btn-primary:hover {
  background: var(--primary-strong);
  border-color: var(--primary-strong);
}

.btn-ghost {
  background: transparent;
  border-color: var(--border-strong);
  color: var(--text);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.7);
}

.btn-disabled,
.btn-disabled:hover {
  background: rgba(31, 39, 50, 0.08);
  border-color: rgba(31, 39, 50, 0.12);
  color: var(--text);
  transform: none;
  box-shadow: none;
}

.hero-contact {
  margin-top: 22px;
  align-items: center;
  color: var(--muted);
  font-size: 14px;
}

.hero-contact span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.hero-social a {
  font-size: 18px;
}

.card,
.hero-panel,
.callout,
.mini-card,
.soft-card,
.trust-item,
.contact-panel {
  background: var(--surface-strong);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.card,
.hero-panel,
.callout,
.mini-card,
.soft-card,
.contact-panel {
  padding: 28px;
}

.hero-panel {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(250, 245, 238, 0.98)),
    var(--surface-strong);
}

.hero-panel h2 {
  font-size: 28px;
}

.panel-list,
.feature-list,
.list-check,
.fit-list,
.details-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
}

.panel-list li,
.feature-list li,
.list-check li,
.fit-list li {
  position: relative;
  padding-left: 26px;
}

.panel-list li::before,
.feature-list li::before,
.list-check li::before,
.fit-list li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--success);
  font-weight: 800;
}

.offer-card {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.offer-card h2 {
  font-size: 28px;
}

.offer-note {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255, 141, 102, 0.14);
  color: #ffb59a;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.card-grid,
.trust-grid,
.compact-grid,
.process-grid {
  display: grid;
  gap: 20px;
}

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

.compact-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.trust-grid,
.process-grid {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  margin-top: 22px;
}

.trust-item,
.process-item {
  padding: 22px;
}

.process-item__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  margin-bottom: 14px;
  border-radius: 50%;
  background: rgba(255, 141, 102, 0.14);
  color: #ffb59a;
  font-weight: 800;
}

.callout {
  background:
    linear-gradient(135deg, rgba(157, 28, 23, 0.16), rgba(255, 141, 102, 0.08)),
    var(--surface-strong);
  border-color: rgba(255, 141, 102, 0.16);
}

.marketplace-panel {
  background:
    linear-gradient(135deg, rgba(183, 96, 55, 0.08), rgba(255, 255, 255, 0.96)),
    var(--surface-strong);
  border-color: rgba(183, 96, 55, 0.22);
}

.marketplace-grid {
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  align-items: start;
}

.marketplace-link {
  font-weight: 800;
  word-break: break-word;
}

.mini-card {
  background: rgba(21, 22, 25, 0.9);
}

.split-layout {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
}

.page-hero {
  padding: 72px 0 20px;
}

.page-hero h1 {
  font-size: clamp(36px, 5vw, 52px);
}

.contact-grid {
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: start;
}

.contact-method {
  padding: 16px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.contact-method:first-child {
  border-top: 0;
  padding-top: 0;
}

.opt-in-form {
  display: grid;
  gap: 16px;
}

.opt-in-form label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-weight: 700;
}

.opt-in-form input {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  padding: 13px 14px;
  font: inherit;
}

.opt-in-form input:focus {
  outline: 2px solid rgba(255, 141, 102, 0.42);
  border-color: rgba(255, 141, 102, 0.55);
}

.opt-in-form__check {
  grid-template-columns: 18px 1fr;
  align-items: start;
  font-weight: 500;
}

.opt-in-form__check input {
  width: auto;
  margin-top: 5px;
}

.opt-in-form__hidden {
  position: absolute;
  left: -9999px;
}

.topic-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 10px;
  margin: 2px 0;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.035);
}

.topic-grid legend {
  padding: 0 8px;
  color: var(--text);
  font-family: "IBM Plex Mono", monospace;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.topic-choice {
  position: relative;
  display: flex !important;
  align-items: center;
  gap: 9px !important;
  min-height: 44px;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.045);
  color: var(--text) !important;
  cursor: pointer;
}

.topic-choice input {
  width: auto;
  accent-color: var(--primary);
}

.topic-choice:has(input:checked) {
  border-color: rgba(255, 141, 102, 0.42);
  background: rgba(255, 141, 102, 0.12);
  box-shadow: inset 0 0 0 1px rgba(255, 141, 102, 0.08);
}

.opt-in-perks {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 16px 0 20px;
}

.opt-in-perks span,
.opt-in-status {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.045);
}

.opt-in-perks span {
  padding: 8px 12px;
  color: var(--text);
  font-weight: 800;
}

.opt-in-status {
  flex-wrap: wrap;
  gap: 8px;
  min-height: 42px;
  padding: 9px 12px;
}

.opt-in-status__links {
  display: inline-flex;
  gap: 8px;
  white-space: nowrap;
}

.opt-in-status__links a {
  color: currentColor;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.opt-in-status--success {
  color: #d9fff0;
  border-color: rgba(73, 185, 135, 0.34);
  background: rgba(73, 185, 135, 0.14);
}

.opt-in-status--error {
  color: #ffd8d2;
  border-color: rgba(255, 141, 102, 0.45);
  background: rgba(157, 28, 23, 0.18);
}

.price-tag {
  color: var(--primary-strong);
  font-size: 40px;
  font-weight: 800;
  line-height: 1;
}

.price-note {
  font-size: 14px;
}

.shop-hero,
.shop-hero .section-intro {
  max-width: 860px;
}

.storefront-layout,
.checkout-layout {
  display: grid;
  gap: 24px;
  align-items: start;
}

.storefront-layout {
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
}

.checkout-layout {
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
}

.catalog-tools {
  display: grid;
  gap: 18px;
  margin-bottom: 20px;
}

.search-shell {
  display: grid;
  gap: 10px;
}

.filter-chips,
.feature-pills,
.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.filter-chip,
.feature-pill,
.status-pill,
.inline-stat {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.88);
  color: var(--text);
  font-size: 13px;
  font-weight: 700;
}

.filter-chip {
  cursor: pointer;
}

.filter-chip.is-active {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}

.status-pill {
  background: rgba(183, 96, 55, 0.12);
  border-color: rgba(183, 96, 55, 0.25);
  color: var(--accent);
}

.feature-pill {
  min-height: 32px;
  padding: 6px 10px;
  font-size: 12px;
}

.catalog-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
  margin-bottom: 18px;
}

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.product-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-height: 100%;
}

.price-row {
  display: flex;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 12px;
}

.compare-price {
  color: var(--muted);
  font-size: 16px;
  font-weight: 700;
  text-decoration: line-through;
}

.meta-stack,
.summary-rows,
.checkout-summary {
  display: grid;
  gap: 12px;
}

.meta-row,
.summary-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.meta-row {
  padding-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 14px;
}

.meta-row span,
.summary-row span {
  color: var(--muted);
}

.cart-panel {
  position: sticky;
  top: 92px;
  display: grid;
  gap: 18px;
}

.cart-item,
.checkout-card {
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  background: rgba(20, 21, 24, 0.9);
}

.cart-item__top,
.cart-item__bottom {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
}

.cart-item__bottom {
  align-items: center;
  margin-top: 14px;
}

.summary-row.total {
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-weight: 800;
}

.summary-row.total strong {
  font-size: 20px;
}

.icon-button,
.qty-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  background: var(--surface-strong);
  color: var(--text);
  cursor: pointer;
}

.icon-button {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 18px;
}

.qty-controls {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 4px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--surface);
}

.qty-button {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  font-weight: 800;
}

.empty-state {
  padding: 24px;
  border: 1px dashed rgba(255, 255, 255, 0.14);
  border-radius: 22px;
  background: rgba(20, 21, 24, 0.9);
  color: var(--muted);
}

.checkout-actions {
  display: grid;
  gap: 16px;
}

.form {
  display: grid;
  gap: 16px;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}

.form input,
.form textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: var(--surface-strong);
  color: var(--text);
  font: inherit;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 12px;
}

.social-links i,
.card h3 i {
  margin-right: 6px;
}

.footer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 28px 0 36px;
  color: var(--muted);
  text-align: center;
}

.hotline-bubble {
  position: fixed;
  right: 18px;
  bottom: 18px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 52px;
  padding: 0 18px;
  border-radius: 999px;
  background: var(--primary);
  color: #fff;
  box-shadow: 0 16px 30px rgba(157, 28, 23, 0.28);
  z-index: 40;
}

.hotline-bubble:hover {
  background: var(--primary-strong);
  text-decoration: none;
}

:root {
  --bg: #070708;
  --surface: #101113;
  --surface-strong: rgba(18, 19, 22, 0.94);
  --surface-muted: #17181c;
  --text: #f4ede5;
  --muted: #b7aaa0;
  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.18);
  --primary: #9d1c17;
  --primary-strong: #66100d;
  --accent: #ff8d66;
  --accent-soft: rgba(255, 141, 102, 0.12);
  --success: #49b987;
  --shadow: 0 28px 72px rgba(0, 0, 0, 0.4);
  --shadow-soft: 0 14px 36px rgba(0, 0, 0, 0.24);
  --radius: 24px;
}

body {
  background:
    radial-gradient(circle at top left, rgba(157, 28, 23, 0.28), transparent 28%),
    radial-gradient(circle at top right, rgba(255, 141, 102, 0.1), transparent 18%),
    linear-gradient(180deg, #090909 0%, #111111 42%, #070708 100%);
}

h1,
h2,
h3 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 600;
}

.header {
  background: rgba(8, 8, 10, 0.88);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.brand {
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.nav__link--ebay {
  background: rgba(255, 141, 102, 0.1);
  color: #ffd7ca;
  border: 1px solid rgba(255, 141, 102, 0.22);
}

.nav__link--ebay:hover {
  background: rgba(255, 141, 102, 0.16);
}

.trust-banner {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(90deg, rgba(18, 18, 20, 0.99), rgba(28, 10, 10, 0.98)),
    #111214;
  color: #f4ede5;
}

.trust-banner__row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: center;
  padding: 14px 0;
}

.trust-banner__pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  color: #f4ede5;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero,
.page-hero {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.hero::before,
.page-hero::before,
.footer::before {
  content: "";
  position: absolute;
  background: url("../img/business/azur-live-on-whatnot-20260522.png") center/contain no-repeat;
  pointer-events: none;
}

.hero::before {
  top: -120px;
  right: -140px;
  width: min(56vw, 760px);
  height: min(56vw, 760px);
  opacity: 0.085;
}

.page-hero::before {
  top: -120px;
  right: -160px;
  width: min(52vw, 640px);
  height: min(52vw, 640px);
  opacity: 0.07;
}

.hero-shell,
.page-hero .container,
.footer .container {
  position: relative;
  z-index: 1;
}

.hero {
  padding: 96px 0 56px;
}

.hero-panel,
.callout,
.mini-card,
.soft-card,
.trust-item,
.contact-panel,
.card {
  backdrop-filter: blur(10px);
}

.hero-panel,
.callout,
.mini-card,
.soft-card,
.contact-panel,
.card {
  border-color: rgba(255, 255, 255, 0.08);
}

.hero-panel {
  background:
    linear-gradient(180deg, rgba(23, 24, 28, 0.98), rgba(15, 16, 19, 0.96)),
    rgba(18, 19, 22, 0.94);
  box-shadow: var(--shadow);
}

.hero-copy h1,
.page-hero h1 {
  color: var(--primary-strong);
}

.hero-copy p,
.section-intro {
  font-size: 18px;
}

.proof-strip {
  margin-top: 32px;
}

.proof-pill {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-soft);
}

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

.proof-card {
  display: grid;
  gap: 8px;
  padding: 16px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(21, 22, 25, 0.9);
  color: var(--text);
  box-shadow: var(--shadow-soft);
}

.proof-card:hover {
  text-decoration: none;
  transform: translateY(-2px);
}

.proof-card strong {
  font-size: 18px;
  color: var(--primary-strong);
}

.proof-card span:last-child {
  color: var(--muted);
  font-size: 14px;
}

.callout {
  background:
    linear-gradient(135deg, rgba(157, 28, 23, 0.16), rgba(255, 141, 102, 0.08)),
    var(--surface-strong);
  border-color: rgba(255, 141, 102, 0.16);
}

.marketplace-panel {
  background:
    linear-gradient(180deg, rgba(16, 16, 18, 0.99), rgba(7, 7, 8, 1)),
    #090909;
  color: #f4ede5;
  border-color: rgba(255, 255, 255, 0.12);
}

.marketplace-panel h2,
.marketplace-panel p,
.marketplace-panel .eyebrow,
.marketplace-panel .marketplace-link,
.marketplace-panel .note,
.marketplace-panel .mini-card p {
  color: inherit;
}

.marketplace-panel .eyebrow::before {
  background: rgba(244, 229, 200, 0.52);
}

.marketplace-panel .btn-ghost {
  border-color: rgba(255, 255, 255, 0.14);
  color: #f7f2e8;
}

.marketplace-panel .btn-ghost:hover {
  background: rgba(255, 255, 255, 0.08);
}

.marketplace-panel .mini-card {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.12);
}

.lane-grid,
.credential-grid,
.sidebar-stack {
  display: grid;
  gap: 20px;
}

.lane-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.lane-card {
  padding: 24px;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(29, 31, 35, 0.98), rgba(14, 15, 18, 0.94)),
    rgba(15, 16, 18, 0.9);
  box-shadow: var(--shadow-soft);
}

.lane-card h3 {
  font-size: 28px;
}

.credential-grid {
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  align-items: start;
}

.certificate-card {
  display: grid;
  gap: 22px;
}

.certificate-preview {
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(21, 22, 25, 0.9);
  box-shadow: var(--shadow-soft);
}

.certificate-preview img {
  width: 100%;
  height: auto;
}

.credential-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.credential-list li {
  position: relative;
  padding-left: 28px;
  color: var(--muted);
}

.credential-list li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent);
  font-weight: 800;
}

.ebay-spotlight {
  display: grid;
  gap: 16px;
  padding: 24px;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background:
    linear-gradient(180deg, rgba(16, 16, 18, 0.99), rgba(7, 7, 8, 1)),
    #090909;
  color: #f4ede5;
  box-shadow: var(--shadow);
}

.ebay-spotlight h3,
.ebay-spotlight p,
.ebay-spotlight a {
  color: inherit;
}

.ebay-spotlight .offer-note {
  background: rgba(255, 141, 102, 0.14);
  color: #ffb59a;
}

.catalog-grid {
  grid-template-columns: repeat(auto-fit, minmax(285px, 1fr));
  gap: 24px;
}

.product-card {
  gap: 0;
  overflow: hidden;
  padding: 0;
  background:
    linear-gradient(180deg, rgba(23, 24, 28, 0.98), rgba(15, 16, 19, 0.96)),
    rgba(18, 19, 22, 0.94);
}

.product-card__media {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background:
    radial-gradient(circle at top, rgba(157, 28, 23, 0.2), transparent 45%),
    linear-gradient(180deg, #17181b 0%, #0f1012 100%);
}

.product-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.product-card:hover .product-card__media img {
  transform: scale(1.04);
}

.product-card__content {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 16px;
  padding: 22px 24px 26px;
}

.product-card h3 {
  font-size: 30px;
  margin-bottom: 10px;
}

.btn-proof {
  background: rgba(255, 141, 102, 0.12);
  border-color: rgba(255, 141, 102, 0.18);
}

.btn-proof:hover {
  background: rgba(255, 141, 102, 0.18);
}

.catalog-meta {
  margin-bottom: 24px;
}

.inline-stat {
  background: rgba(255, 255, 255, 0.04);
  box-shadow: var(--shadow-soft);
}

.sidebar-stack {
  margin-top: 18px;
}

.trust-card {
  padding: 22px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(21, 22, 25, 0.9);
  box-shadow: var(--shadow-soft);
}

.trust-card h3 {
  font-size: 28px;
}

.trust-card .marketplace-link {
  color: var(--primary-strong);
}

.credential-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
}

.footer {
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(16, 16, 18, 0.99), rgba(7, 7, 8, 1)),
    #090909;
  color: rgba(244, 237, 229, 0.78);
}

.footer::before {
  right: -120px;
  bottom: -120px;
  width: 360px;
  height: 360px;
  opacity: 0.07;
}

.footer a,
.social-links a {
  color: #ffd0c0;
}

/* Final locked pass: black / red / silver only. */
:root {
  --bg: #070708;
  --surface: #101113;
  --surface-strong: rgba(18, 19, 22, 0.94);
  --surface-muted: #17181c;
  --text: #f4ede5;
  --muted: #b7aaa0;
  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.18);
  --primary: #9d1c17;
  --primary-strong: #66100d;
  --accent: #ff8d66;
  --accent-soft: rgba(255, 141, 102, 0.12);
  --success: #49b987;
  --shadow: 0 28px 72px rgba(0, 0, 0, 0.4);
  --shadow-soft: 0 14px 36px rgba(0, 0, 0, 0.24);
  --radius: 24px;
}

body {
  background:
    radial-gradient(circle at top left, rgba(157, 28, 23, 0.28), transparent 28%),
    radial-gradient(circle at top right, rgba(255, 141, 102, 0.1), transparent 18%),
    linear-gradient(180deg, #090909 0%, #111111 42%, #070708 100%);
  color: var(--text);
  font-family: "Public Sans", "Segoe UI", sans-serif;
}

h1,
h2,
h3 {
  font-family: "Marcellus", Georgia, serif;
  letter-spacing: -0.02em;
}

.header {
  background: rgba(8, 8, 10, 0.88);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.brand,
.nav__link,
.btn,
.trust-banner__pill,
.offer-note {
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand {
  font-size: 15px;
}

.nav__link {
  min-height: 42px;
  padding: 10px 14px;
  border-radius: 14px;
  font-size: 12px;
}

.nav__link:hover {
  background: rgba(255, 255, 255, 0.06);
}

.nav__link--ebay {
  background: rgba(255, 141, 102, 0.1);
  border-color: rgba(255, 141, 102, 0.22);
  color: #ffd7ca;
}

.nav__link--owner {
  border: 1px solid rgba(255, 141, 102, 0.28);
  background:
    linear-gradient(180deg, rgba(195, 53, 42, 0.18), rgba(125, 23, 18, 0.12)),
    rgba(255, 255, 255, 0.03);
  color: #ffd7ca;
}

.btn,
.proof-pill,
.filter-chip,
.feature-pill,
.status-pill,
.inline-stat,
.trust-banner__pill,
.offer-note,
.hotline-bubble {
  border-radius: 14px;
}

.btn {
  min-height: 52px;
  padding: 0 20px;
  font-size: 12px;
}

.btn-primary {
  background: linear-gradient(180deg, #c3352a, #7d1712);
  border-color: #7d1712;
  box-shadow: 0 16px 30px rgba(157, 28, 23, 0.28);
}

.btn-primary:hover {
  background: linear-gradient(180deg, #de4739, #901912);
  border-color: #901912;
}

.btn-ghost {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
}

.trust-banner {
  background:
    linear-gradient(90deg, rgba(18, 18, 20, 0.99), rgba(28, 10, 10, 0.98)),
    #111214;
}

.hero-panel,
.callout,
.mini-card,
.soft-card,
.trust-item,
.contact-panel,
.card,
.lane-card,
.trust-card,
.certificate-preview {
  background: rgba(21, 22, 25, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-soft);
}

.hero-panel {
  background:
    linear-gradient(180deg, rgba(23, 24, 28, 0.98), rgba(15, 16, 19, 0.96)),
    rgba(18, 19, 22, 0.94);
}

.section--muted {
  background: rgba(255, 255, 255, 0.02);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.hero::before,
.page-hero::before,
.footer::before {
  opacity: 0.05;
}

.page-hero::before {
  right: -110px;
}

.hero-copy h1,
.page-hero h1 {
  max-width: 900px;
  font-size: clamp(40px, 5.2vw, 62px);
}

.hero-copy p,
.section-intro {
  max-width: 900px;
  font-size: 17px;
}

.proof-pill,
.inline-stat {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.08);
}

.offer-note {
  background: rgba(255, 141, 102, 0.14);
  border: 1px solid rgba(255, 141, 102, 0.18);
  color: #ffb59a;
}

.status-pill {
  background: rgba(255, 141, 102, 0.14);
  border-color: rgba(255, 141, 102, 0.18);
  color: #ffb59a;
}

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

.inventory-tile {
  display: grid;
  gap: 0;
  overflow: hidden;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(16, 17, 19, 0.94);
  box-shadow: var(--shadow-soft);
  color: var(--text);
}

.inventory-tile:hover {
  transform: translateY(-2px);
  text-decoration: none;
}

.inventory-tile img {
  width: 100%;
  height: 250px;
  object-fit: contain;
  padding: 18px;
  background:
    radial-gradient(circle at top, rgba(157, 28, 23, 0.18), transparent 46%),
    linear-gradient(180deg, #18191c 0%, #101114 100%);
}

.inventory-tile__body {
  display: grid;
  gap: 8px;
  padding: 18px 18px 20px;
}

.inventory-tile__body strong {
  font-family: "Marcellus", Georgia, serif;
  font-size: 22px;
  line-height: 1.05;
}

.inventory-tile__body span:last-child {
  color: #ff9a74;
  font-size: 18px;
  font-weight: 800;
}

.catalog-grid {
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
}

.storefront-layout {
  grid-template-columns: minmax(0, 1.45fr) minmax(300px, 0.55fr);
}

.product-card {
  overflow: hidden;
  padding: 0;
}

.product-card__media {
  aspect-ratio: 1 / 1;
  padding: 18px;
  background:
    radial-gradient(circle at top, rgba(157, 28, 23, 0.2), transparent 45%),
    linear-gradient(180deg, #17181b 0%, #0f1012 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.product-card__media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 18px;
  background: #151618;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.28);
}

.product-card__content {
  padding: 24px 24px 26px;
}

.product-card h3 {
  font-size: 28px;
}

.meta-row {
  border-top-color: rgba(255, 255, 255, 0.08);
}

.marketplace-panel,
.ebay-spotlight,
.footer {
  background:
    linear-gradient(180deg, rgba(16, 16, 18, 0.99), rgba(7, 7, 8, 1)),
    #090909;
}

.marketplace-panel .mini-card,
.ebay-spotlight {
  border-color: rgba(255, 255, 255, 0.12);
}

.credential-link,
.inventory-tile__body span:last-child,
.footer a,
.social-links a {
  color: #ffd0c0;
}

.credential-link {
  color: #ffb59a;
}

.btn-proof {
  background: rgba(255, 141, 102, 0.12);
  border-color: rgba(255, 141, 102, 0.18);
}

.btn-proof:hover {
  background: rgba(255, 141, 102, 0.18);
}

.sidebar-stack,
.proof-card-grid,
.lane-grid,
.trust-grid,
.process-grid {
  gap: 22px;
}

.callout,
.mini-card,
.soft-card,
.trust-card,
.lane-card,
.certificate-preview,
.cart-item,
.checkout-card,
.empty-state,
.filter-chip,
.feature-pill,
.status-pill,
.inline-stat,
.form input,
.form textarea,
.qty-controls,
.icon-button,
.qty-button {
  background-color: rgba(20, 21, 24, 0.9);
  color: var(--text);
}

.empty-state {
  border-color: rgba(255, 255, 255, 0.14);
}

.filter-chip.is-active {
  background: linear-gradient(180deg, #c3352a, #7d1712);
  border-color: #7d1712;
}

.btn-ghost:hover,
.icon-button:hover,
.qty-button:hover {
  background: rgba(255, 255, 255, 0.06);
}

.hero-copy h1,
.page-hero h1,
.hero-copy p,
.section-intro,
.trust-card .marketplace-link,
.price-tag {
  color: var(--text);
}

.price-tag {
  color: #ff9a74;
}

@media (max-width: 920px) {
  .inventory-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .proof-card-grid,
  .credential-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 920px) {
  .hero-shell,
  .marketplace-grid,
  .split-layout,
  .contact-grid,
  .storefront-layout,
  .checkout-layout {
    grid-template-columns: 1fr;
  }

  .header-row {
    align-items: flex-start;
  }

  .cart-panel {
    position: static;
  }
}

@media (max-width: 760px) {
  .inventory-strip {
    grid-template-columns: 1fr;
  }

  .inventory-tile img {
    height: 220px;
  }

  .trust-banner__row {
    justify-content: flex-start;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav {
    width: 100%;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding-top: 10px;
  }

  .nav.open,
  .nav.is-open {
    display: flex;
  }

  .nav__link {
    width: 100%;
  }

  .hero {
    padding-top: 62px;
  }

  .hero::before,
  .page-hero::before {
    right: -160px;
    width: 420px;
    height: 420px;
  }

  .section {
    padding: 56px 0;
  }

  .buttons,
  .card-actions,
  .shop-cta-row {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    width: 100%;
  }

  .hero-contact {
    flex-direction: column;
    align-items: flex-start;
  }

  .hotline-bubble {
    right: 12px;
    bottom: 12px;
    min-height: 48px;
    padding: 0 16px;
    font-size: 14px;
  }
}

/* Brand-led storefront cleanup: stronger AZ mark, tighter cards, clearer vendor lanes */
.brand {
  gap: 12px;
  font-size: 16px;
}

.brand img {
  width: 58px;
  height: 58px;
}

.hero-shell,
.shop-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.88fr);
  align-items: center;
  gap: 34px;
}

.shop-hero {
  padding: 82px 0 48px;
}

.hero::before {
  top: 50%;
  right: -110px;
  width: min(62vw, 860px);
  height: min(62vw, 860px);
  opacity: 0.14;
  transform: translateY(-50%);
}

.page-hero::before {
  top: 50%;
  right: -130px;
  width: min(56vw, 720px);
  height: min(56vw, 720px);
  opacity: 0.12;
  transform: translateY(-50%);
}

.hero-copy h1,
.page-hero h1 {
  max-width: 12.5ch;
}

.hero-copy p,
.section-intro,
.section-copy {
  max-width: 62ch;
}

.hero-panel--brand {
  display: grid;
  gap: 18px;
}

.hero-brand-plate {
  width: min(360px, 100%);
  max-width: 100%;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(9, 10, 12, 0.74);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.36);
}

.brand-badges,
.mini-vendor-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.mini-vendor-chip {
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  color: #f3e8df;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.vendor-wall {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}

.vendor-badge {
  display: grid;
  gap: 8px;
  padding: 18px 18px 20px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(29, 31, 35, 0.98), rgba(14, 15, 18, 0.94)),
    rgba(15, 16, 18, 0.9);
  box-shadow: var(--shadow-soft);
}

.vendor-badge strong {
  font-family: "Marcellus", Georgia, serif;
  font-size: 22px;
  line-height: 1.02;
  color: #f7f0e6;
}

.vendor-badge__eyebrow {
  color: #ffb59a;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.vendor-badge span:last-child {
  color: var(--muted);
  font-size: 14px;
}

.catalog-tools {
  gap: 20px;
}

.vault-trigger {
  display: grid;
  gap: 8px;
  padding: 18px 20px;
  border-radius: 22px;
  border: 1px solid rgba(255, 71, 71, 0.22);
  background:
    radial-gradient(circle at top right, rgba(255, 71, 71, 0.16), transparent 38%),
    linear-gradient(180deg, rgba(20, 23, 27, 0.96), rgba(10, 12, 15, 0.98));
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.28);
}

.vault-trigger:hover {
  text-decoration: none;
  border-color: rgba(255, 71, 71, 0.38);
}

.vault-trigger__label {
  color: #fff2ec;
  font-family: "IBM Plex Mono", monospace;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.vault-trigger__meta {
  color: rgba(245, 236, 231, 0.66);
  font-size: 13px;
}

.catalog-tools .note,
.shop-hero__panel .note {
  margin: 0;
  max-width: 58ch;
}

.catalog-grid {
  grid-template-columns: repeat(auto-fill, minmax(246px, 1fr));
  gap: 20px;
}

.catalog-grid--home {
  margin-bottom: 28px;
}

.product-card {
  overflow: hidden;
  border-radius: 24px;
}

.product-card__media {
  aspect-ratio: 4 / 4.7;
  padding: 14px;
  background:
    radial-gradient(circle at top, rgba(157, 28, 23, 0.22), transparent 45%),
    linear-gradient(180deg, #17181b 0%, #0f1012 100%);
}

.product-card__media img {
  object-fit: contain;
  border-radius: 16px;
}

.product-card__media.is-missing,
.featured-card__media.is-missing {
  display: grid;
  place-items: center;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-card__media.is-missing::after,
.featured-card__media.is-missing::after {
  content: "Image pending";
}

.product-price-note {
  margin-top: -8px;
  font-size: 12px;
}

.product-card__content {
  display: grid;
  gap: 14px;
  padding: 20px 20px 22px;
}

.product-card h3 {
  font-size: 22px;
  line-height: 1.08;
}

.product-card__summary {
  margin: 0;
  color: var(--muted);
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.catalog-grid--home .product-card__summary {
  -webkit-line-clamp: 2;
}

.meta-stack {
  gap: 10px;
}

.meta-row strong {
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.card-actions {
  gap: 10px;
}

.card-actions .btn {
  flex: 1 1 180px;
}

.feature-pills {
  gap: 8px;
}

.feature-pill {
  font-size: 11px;
}

.credential-grid,
.proof-card-grid,
.marketplace-grid {
  gap: 22px;
}

@media (max-width: 920px) {
  .hero-shell,
  .shop-hero {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 760px) {
  .brand img {
    width: 50px;
    height: 50px;
  }

  .hero-brand-plate {
    width: min(280px, 100%);
    max-width: 100%;
  }

  .vendor-wall {
    grid-template-columns: 1fr;
  }

  .catalog-grid {
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  }

  .card-actions .btn {
    flex-basis: 100%;
  }
}

/* Layout reset: cleaner hero flow, lighter homepage, and more compact catalog cards */
.hero--home {
  padding: 72px 0 56px;
}

.hero-home {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.72fr);
  gap: 28px;
  align-items: center;
}

.hero-home__copy h1 {
  max-width: 12ch;
  font-size: clamp(38px, 4.9vw, 58px);
  line-height: 0.95;
}

.hero-home__copy p {
  max-width: 58ch;
  margin-bottom: 24px;
}

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

.hero-home__panel {
  display: grid;
  gap: 20px;
  padding: 24px;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(19, 21, 25, 0.98), rgba(11, 13, 16, 0.96)),
    rgba(16, 18, 22, 0.94);
  box-shadow: var(--shadow-soft);
}

.hero-home__stats {
  display: grid;
  gap: 14px;
}

.mini-stat {
  display: grid;
  gap: 6px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.mini-stat:first-child {
  padding-top: 0;
  border-top: 0;
}

.mini-stat strong {
  font-size: 18px;
  color: #f6eee4;
}

.mini-stat span {
  color: var(--muted);
  font-size: 14px;
}

.section-heading--compact {
  margin-bottom: 22px;
}

.catalog-grid--home {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.featured-card {
  overflow: hidden;
  border-radius: 24px;
}

.featured-card__media {
  aspect-ratio: 1 / 1;
  padding: 14px;
  background:
    radial-gradient(circle at top, rgba(157, 28, 23, 0.18), transparent 42%),
    linear-gradient(180deg, #18191c 0%, #101114 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.featured-card__media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 14px;
  background: #141518;
}

.featured-card__content {
  display: grid;
  gap: 14px;
  padding: 18px 18px 20px;
}

.featured-card h3 {
  font-size: 22px;
  line-height: 1.08;
}

.source-band {
  display: grid;
  gap: 22px;
  align-items: center;
}

.source-band__copy {
  max-width: 760px;
}

.source-band__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

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

.trust-split__card {
  display: grid;
  gap: 14px;
}

.page-hero--shop {
  padding: 62px 0 34px;
}

.shop-hero--simple {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.62fr);
  gap: 28px;
  align-items: end;
}

.shop-hero--simple .section-intro {
  max-width: 56ch;
}

.shop-hero__copy h1 {
  max-width: 11ch;
  font-size: clamp(36px, 4.7vw, 54px);
  line-height: 0.96;
}

.shop-hero__aside {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.shop-hero__aside .mini-vendor-strip {
  justify-content: flex-end;
}

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

.product-card--shop {
  overflow: hidden;
  border-radius: 22px;
}

.product-card--shop .product-card__media {
  aspect-ratio: 1 / 1;
  padding: 12px;
}

.product-card--shop .product-card__content {
  gap: 12px;
  padding: 18px;
}

.product-card--shop h3 {
  font-size: 20px;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.product-card__meta-inline {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  color: var(--muted);
  font-size: 13px;
}

.product-card__meta-inline strong {
  color: #f0e7dd;
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.product-card--shop .product-card__summary {
  font-size: 14px;
  -webkit-line-clamp: 2;
}

.product-card--shop .price-tag {
  font-size: 28px;
}

.product-card--shop .compare-price {
  font-size: 14px;
}

.product-card--shop .card-actions .btn {
  min-height: 44px;
}

@media (max-width: 1100px) {
  .catalog-grid--home {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 920px) {
  .hero-home,
  .shop-hero--simple,
  .trust-split {
    grid-template-columns: 1fr;
  }

  .hero-home__copy h1 {
    max-width: 13ch;
  }

  .shop-hero__aside {
    justify-content: flex-start;
  }

  .shop-hero__aside .mini-vendor-strip {
    justify-content: flex-start;
  }
}

@media (max-width: 760px) {
  .hero--home,
  .page-hero--shop {
    padding-top: 62px;
  }

  .hero-home__copy h1 {
    font-size: clamp(40px, 13vw, 58px);
  }

  .catalog-grid--home,
  .trust-split {
    grid-template-columns: 1fr;
  }

  .product-card__meta-inline {
    flex-direction: column;
    gap: 8px;
  }
}
