:root {
  --cmb-brand-primary: #ff6411;
  --cmb-brand-primary-hover: #e95608;
  --cmb-brand-secondary: #3a3028;
  --cmb-brand-secondary-hover: #493b31;
  --cmb-brand-secondary-soft: #5a4a3e;
  --cmb-background: #f5f1ea;
  --cmb-surface: #fffdf9;
  --cmb-surface-muted: #f4ece2;
  --cmb-border: #ded4c8;
  --cmb-text-primary: #27221e;
  --cmb-text-secondary: #746a61;
  --cmb-text-on-dark: #fffaf4;
  --cmb-success: #197443;
  --cmb-warning: #a64d00;
  --cmb-danger: #a73125;
  --club-orange: var(--cmb-brand-primary);
  --club-orange-dark: var(--cmb-brand-primary-hover);
  --club-orange-soft: #fff0e2;
  --club-cream: var(--cmb-surface);
  --club-ink: var(--cmb-text-primary);
  --club-muted: var(--cmb-text-secondary);
  --club-border: rgba(58, 48, 40, 0.10);
  --club-shadow: 0 20px 50px rgba(58, 48, 40, 0.10);
}

body.club-page {
  background:
    radial-gradient(circle at top left, rgba(255, 106, 0, 0.14), transparent 26%),
    radial-gradient(circle at top right, rgba(255, 170, 87, 0.14), transparent 20%),
    linear-gradient(180deg, #fffdfb 0%, #fff8f2 100%);
  color: var(--club-ink);
}

body.club-auth-page {
  overflow-x: hidden;
}

body.club-stock-page {
  padding-bottom: 86px;
}

.club-topbar {
  background: rgba(255, 255, 255, 0.92);
}

.club-nav {
  gap: 10px;
}

.club-brand .brand-title {
  font-size: 15px;
}

.pill-primary {
  background: var(--club-orange);
  color: #fff;
  border-color: transparent;
}

.pill-primary:hover {
  background: var(--club-orange-dark);
}

.club-page .btn-primary {
  background: var(--club-orange);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 12px 28px rgba(255, 106, 0, 0.18);
}

.club-page .btn-primary:hover {
  background: var(--club-orange-dark);
}

.club-page .btn-secondary {
  background: #fff;
  color: var(--club-ink);
  border-color: #ded4c8;
}

.club-page .btn-secondary:hover {
  background: #f7f2eb;
  border-color: #ded4c8;
}

.club-main {
  padding-bottom: 40px;
}

.club-stock-page .club-main {
  padding-bottom: 18px;
}

.club-hero {
  padding: 30px 0 14px;
}

.club-hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 24px;
  align-items: center;
}

.club-hero-grid-single {
  grid-template-columns: 1fr;
  max-width: none;
  width: 100%;
  padding-inline: clamp(12px, 2vw, 24px);
  box-sizing: border-box;
}

.club-hero-copy {
  padding: 14px 0;
}

.club-landing-page .club-hero {
  padding: 22px 0 10px;
}

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

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

.club-benefit-card {
  display: grid;
  gap: 10px;
  padding: 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid var(--club-border);
  box-shadow: var(--club-shadow);
}

.club-benefit-card .material-symbols-outlined {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--club-orange-dark);
  background: var(--club-orange-soft);
}

.club-benefit-card strong {
  font-size: 18px;
}

.club-benefit-card p {
  margin: 0;
  color: var(--club-muted);
  line-height: 1.5;
}

.club-stock-main {
  padding-bottom: 0;
}

.club-storefront-page {
  padding-bottom: 220px;
}

.club-storefront-page .club-main {
  padding-bottom: 24px;
}

.club-storefront-hero {
  display: grid;
  gap: 8px;
  padding-top: 16px;
  padding-bottom: 8px;
}

.club-storefront-hero h1 {
  margin: 0;
  font-size: clamp(28px, 3.4vw, 40px);
  line-height: 1;
  letter-spacing: -0.05em;
}

.club-storefront-hero-badges {
  margin-top: 4px;
  gap: 6px;
}

.club-storefront-identity {
  position: relative;
  height: clamp(260px, 32vw, 420px);
  overflow: hidden;
  border-radius: 30px;
  background: linear-gradient(135deg, #342b24 0%, #5a4a3e 58%, #ff6a00 140%);
  box-shadow: 0 22px 54px rgba(58, 48, 40, .18);
  color: #fff;
}

.club-storefront-identity__cover {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 82% 18%, rgba(255, 106, 0, .32), transparent 36%);
}

.club-storefront-identity__cover img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

.club-storefront-identity__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(58, 48, 40, .94) 0%, rgba(58, 48, 40, .62) 42%, rgba(58, 48, 40, .10) 100%);
}

.club-storefront-identity__content {
  position: relative;
  z-index: 1;
  height: 100%;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 18px;
  align-items: end;
  padding: clamp(22px, 3vw, 38px);
}

.club-storefront-identity__logo {
  width: clamp(78px, 8vw, 112px);
  height: clamp(78px, 8vw, 112px);
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 5px solid rgba(255, 255, 255, .96);
  border-radius: 26px;
  background: #fff;
  color: #27221e;
  box-shadow: 0 16px 36px rgba(0, 0, 0, .24);
  font-size: 38px;
  font-weight: 900;
}

.club-storefront-identity__logo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  grid-area: 1 / 1;
}

.club-storefront-identity__logo .club-advertiser-identity-fallback {
  grid-area: 1 / 1;
}

.club-storefront-identity__copy {
  min-width: 0;
  display: grid;
  gap: 7px;
  text-shadow: 0 2px 16px rgba(0, 0, 0, .28);
}

.club-storefront-identity__eyebrow {
  color: #ffb078;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .1em;
}

.club-storefront-identity__copy h1 {
  margin: 0;
  color: #fff;
  font-size: clamp(32px, 4.6vw, 62px);
  line-height: .98;
}

.club-storefront-identity__copy p {
  max-width: 720px;
  margin: 0;
  color: rgba(255, 255, 255, .88);
  font-size: clamp(14px, 1.5vw, 18px);
  line-height: 1.45;
}

.club-storefront-identity__location {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: rgba(255, 255, 255, .82);
  font-size: 13px;
  font-weight: 750;
}

.club-storefront-identity__location .material-symbols-outlined {
  font-size: 18px;
}

.club-storefront-identity__verification {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  gap: 5px;
  padding: 5px 9px;
  border: 1px solid rgba(171, 248, 202, .42);
  border-radius: 999px;
  background: rgba(18, 119, 72, .72);
  color: #e8fff0;
  font-size: 12px;
  font-weight: 850;
  text-shadow: none;
}

.club-storefront-identity__verification .material-symbols-outlined {
  font-size: 16px;
}

.club-storefront-identity__contacts {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
  max-width: 260px;
}

.club-storefront-identity__contacts a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 13px;
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: 999px;
  background: rgba(58, 48, 40, .70);
  color: #fff;
  font-size: 12px;
  font-weight: 850;
  text-decoration: none;
  backdrop-filter: blur(12px);
}

.club-storefront-identity__contacts a:hover,
.club-storefront-identity__contacts a:focus-visible {
  background: #ff6a00;
  border-color: #ff6a00;
}

.club-storefront-identity__contacts .material-symbols-outlined {
  font-size: 18px;
}

.club-storefront-results-head {
  align-items: start;
}

.club-storefront-footer-info {
  display: grid;
  gap: 12px;
  margin-top: 12px;
  padding: 18px 20px 12px;
  border-top: 1px solid rgba(58, 48, 40, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 248, 239, 0.96) 0%, rgba(255, 255, 255, 0.98) 100%);
  border-radius: 28px 28px 0 0;
}

@media (max-width: 759px) {
  .club-storefront-hero {
    padding-top: 10px;
  }

  .club-storefront-identity {
    height: 360px;
    border-radius: 22px;
  }

  .club-storefront-identity__content {
    grid-template-columns: auto minmax(0, 1fr);
    gap: 12px;
    align-content: end;
    align-items: end;
    padding: 18px;
  }

  .club-storefront-identity__logo {
    width: 74px;
    height: 74px;
    border-width: 4px;
    border-radius: 20px;
    font-size: 30px;
  }

  .club-storefront-identity__copy {
    gap: 5px;
  }

  .club-storefront-identity__copy h1 {
    font-size: clamp(28px, 9vw, 40px);
    overflow-wrap: anywhere;
  }

  .club-storefront-identity__copy p {
    font-size: 13px;
    line-height: 1.35;
  }

  .club-storefront-identity__contacts {
    grid-column: 1 / -1;
    justify-content: flex-start;
    max-width: none;
  }

  .club-storefront-identity__contacts a {
    min-height: 40px;
    padding: 8px 11px;
  }
}

/* Public storefront identity and closing information: light presentation layer. */
body.club-storefront-page .club-storefront-hero {
  width: min(calc(100% - 32px), 1240px);
  padding-top: 18px;
}

body.club-storefront-page .club-storefront-identity {
  height: clamp(210px, 20vw, 270px);
  border: 1px solid rgba(31, 41, 55, .08);
  border-radius: 24px;
  background: #fff;
  color: var(--club-ink);
  box-shadow: 0 16px 38px rgba(31, 41, 55, .08);
}

body.club-storefront-page .club-storefront-identity__cover {
  left: 42%;
  background: #fff;
}

body.club-storefront-page .club-storefront-identity__cover img {
  opacity: .46;
  object-position: center;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 35%, #000 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 35%, #000 100%);
}

body.club-storefront-page .club-storefront-identity__overlay {
  background: linear-gradient(90deg, #fff 0%, rgba(255, 255, 255, .98) 22%, rgba(255, 255, 255, .78) 52%, rgba(255, 255, 255, .2) 100%);
}

body.club-storefront-page .club-storefront-identity__content {
  align-items: center;
  grid-template-columns: auto minmax(0, 1fr);
  padding: clamp(22px, 3vw, 38px);
}

body.club-storefront-page .club-storefront-identity__logo {
  width: clamp(128px, 13vw, 190px);
  height: clamp(128px, 13vw, 190px);
  border: 1px solid rgba(31, 41, 55, .1);
  border-radius: 20px;
  box-shadow: 0 8px 22px rgba(31, 41, 55, .06);
  color: var(--club-orange);
}

body.club-storefront-page .club-storefront-identity__copy {
  gap: 8px;
  text-shadow: none;
}

body.club-storefront-page .club-storefront-identity__eyebrow {
  width: fit-content;
  padding: 6px 11px;
  border: 1px solid rgba(255, 106, 0, .35);
  border-radius: 999px;
  color: var(--club-orange-dark);
  background: rgba(255, 255, 255, .8);
  font-size: 11px;
}

body.club-storefront-page .club-storefront-identity__copy h1 {
  color: var(--club-ink);
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1;
}

body.club-storefront-page .club-storefront-identity__copy p {
  color: var(--club-muted);
  font-size: clamp(14px, 1.5vw, 18px);
}

body.club-storefront-page .club-storefront-identity__location {
  color: var(--club-muted);
}

body.club-storefront-page .club-storefront-footer-info {
  display: grid;
  gap: 18px;
  width: min(calc(100% - 32px), 1240px);
  padding: clamp(22px, 2.6vw, 30px);
  border: 1px solid rgba(31, 41, 55, .1);
  border-radius: 20px;
  background: #fff;
  color: var(--club-ink);
  box-shadow: 0 10px 28px rgba(31, 41, 55, .06);
}

body.club-storefront-page .club-storefront-footer-kicker {
  color: var(--club-orange-dark);
  letter-spacing: .08em;
}

body.club-storefront-page .club-storefront-footer-identity strong,
body.club-storefront-page .club-storefront-footer-field strong {
  color: var(--club-ink);
}

body.club-storefront-page .club-storefront-footer-description,
body.club-storefront-page .club-storefront-footer-field small {
  color: var(--club-muted);
}

body.club-storefront-page .club-storefront-footer-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

body.club-storefront-page .club-storefront-footer-field {
  padding: 7px 0;
  color: var(--club-muted);
}

body.club-storefront-page .club-storefront-footer-field > .material-symbols-outlined {
  color: var(--club-orange);
}

body.club-storefront-page .club-storefront-footer-actions .btn {
  border-color: rgba(255, 106, 0, .7);
  background: #fff;
  color: var(--club-orange-dark);
}

body.club-storefront-page .club-storefront-footer-actions .btn-primary,
body.club-storefront-page .club-storefront-footer-actions .club-storefront-footer-whatsapp {
  background: var(--club-orange);
  color: #fff;
}

body.club-storefront-page .club-storefront-disclaimer {
  border: 1px solid rgba(255, 106, 0, .16);
  background: #fffaf5;
  color: var(--club-ink);
}

body.club-storefront-page .club-storefront-disclaimer strong {
  color: var(--club-orange-dark);
}

body.club-storefront-page .club-storefront-disclaimer p {
  color: var(--club-muted);
}

@media (max-width: 759px) {
  body.club-storefront-page .club-storefront-hero,
  body.club-storefront-page .club-storefront-footer-info {
    width: calc(100% - 24px);
  }

  body.club-storefront-page .club-storefront-identity {
    height: 214px;
    border-radius: 18px;
  }

  body.club-storefront-page .club-storefront-identity__cover {
    left: 38%;
  }

  body.club-storefront-page .club-storefront-identity__content {
    gap: 12px;
    padding: 14px;
  }

  body.club-storefront-page .club-storefront-identity__logo {
    width: 88px;
    height: 88px;
    border-radius: 16px;
  }

  body.club-storefront-page .club-storefront-identity__copy h1 {
    font-size: clamp(22px, 7vw, 31px);
  }

  body.club-storefront-page .club-storefront-identity__copy p {
    font-size: 12px;
  }

  body.club-storefront-page .club-storefront-footer-grid {
    grid-template-columns: 1fr;
  }
}

/* Compact institutional footer: secondary to the vehicle inventory. */
@media (min-width: 901px) {
  body.club-storefront-page .club-storefront-footer-info {
    grid-template-columns: minmax(220px, 1.15fr) minmax(240px, 1fr) minmax(220px, .9fr);
    align-items: start;
    gap: 16px 28px;
    padding: 24px 28px 20px;
  }

  body.club-storefront-page .club-storefront-footer-head {
    grid-column: 1;
    gap: 6px;
  }

  body.club-storefront-page .club-storefront-footer-grid {
    grid-column: 2;
    grid-template-columns: 1fr;
    gap: 0;
  }

  body.club-storefront-page .club-storefront-footer-field,
  body.club-storefront-page .club-storefront-footer-field-wide {
    grid-column: 1;
    padding: 4px 0;
  }

  body.club-storefront-page .club-storefront-footer-actions {
    grid-column: 3;
    display: grid;
    align-content: start;
    gap: 7px;
    margin-top: 0;
  }

  body.club-storefront-page .club-storefront-footer-actions .btn {
    width: 100%;
    min-height: 40px;
    padding: 8px 12px;
    font-size: 13px;
  }

  body.club-storefront-page .club-storefront-disclaimer {
    grid-column: 1 / -1;
    grid-template-columns: 20px minmax(0, 1fr);
    gap: 8px;
    padding: 9px 12px;
  }

  body.club-storefront-page .club-storefront-disclaimer > div {
    display: block;
  }

  body.club-storefront-page .club-storefront-disclaimer strong::after {
    content: ' — ';
    color: rgba(234, 243, 253, .5);
  }

  body.club-storefront-page .club-storefront-disclaimer p {
    display: inline;
    font-size: 12px;
  }
}

body.club-storefront-page .club-storefront-footer-kicker {
  font-size: 11px;
}

body.club-storefront-page .club-storefront-footer-identity strong {
  font-size: clamp(20px, 2vw, 26px);
}

body.club-storefront-page .club-storefront-footer-description {
  font-size: 13px;
  line-height: 1.35;
}

body.club-storefront-page .club-storefront-footer-field > .material-symbols-outlined {
  font-size: 17px;
}

body.club-storefront-page .club-storefront-footer-field small {
  font-size: 9px;
}

body.club-storefront-page .club-storefront-footer-field strong {
  font-size: 13px;
}

body.club-storefront-page .club-storefront-footer-info {
  gap: 16px;
}

@media (max-width: 900px) {
  body.club-storefront-page .club-storefront-footer-info {
    padding: 22px 22px 18px;
    gap: 16px;
  }

  body.club-storefront-page .club-storefront-footer-actions .btn {
    min-height: 40px;
    padding: 8px 12px;
    font-size: 13px;
  }
}

@media (max-width: 759px) {
  body.club-storefront-page .club-storefront-footer-info {
    padding: 18px 16px 16px;
    gap: 13px;
  }

  body.club-storefront-page .club-storefront-footer-identity strong {
    font-size: 21px;
  }

  body.club-storefront-page .club-storefront-footer-description {
    font-size: 12px;
  }

  body.club-storefront-page .club-storefront-footer-field {
    padding: 3px 0;
  }

  body.club-storefront-page .club-storefront-footer-actions {
    gap: 6px;
  }

  body.club-storefront-page .club-storefront-footer-actions .btn {
    min-height: 38px;
    font-size: 12px;
  }

  body.club-storefront-page .club-storefront-disclaimer {
    padding: 9px 10px;
  }

  body.club-storefront-page .club-storefront-disclaimer p {
    font-size: 11px;
    line-height: 1.35;
  }
}

@media (max-width: 374px) {
  .club-storefront-identity {
    height: 380px;
  }

  .club-storefront-identity__content {
    padding: 14px;
  }

  .club-storefront-identity__logo {
    width: 68px;
    height: 68px;
  }

  .club-storefront-identity__contacts {
    gap: 6px;
  }
}

.club-storefront-footer-head {
  display: grid;
  gap: 6px;
  margin-bottom: 0;
}

.club-storefront-footer-identity {
  display: grid;
  gap: 4px;
}

.club-storefront-footer-identity strong {
  font-size: 16px;
  line-height: 1.2;
}

.club-storefront-footer-description {
  margin: 0;
  color: var(--club-muted);
  font-size: 13px;
  line-height: 1.45;
  max-width: 60rem;
}

.club-storefront-footer-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 8px 14px;
}

.club-storefront-footer-field {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 6px;
  align-items: baseline;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  grid-column: span 6;
}

.club-storefront-footer-field span {
  color: var(--club-muted);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.club-storefront-footer-field strong {
  font-size: 14px;
  line-height: 1.4;
  font-weight: 600;
  word-break: break-word;
}

.club-storefront-footer-field-wide {
  grid-column: 1 / -1;
}

.club-storefront-footer-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 2px;
}

.club-storefront-disclaimer {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: baseline;
  padding: 10px 12px;
  border-left: 3px solid rgba(255, 106, 0, 0.72);
  border-radius: 10px;
  background: rgba(255, 248, 239, 0.88);
  border-top: 1px solid rgba(255, 106, 0, 0.1);
  border-right: 1px solid rgba(255, 106, 0, 0.1);
  border-bottom: 1px solid rgba(255, 106, 0, 0.1);
}

.club-storefront-disclaimer strong {
  font-size: 13px;
}

.club-storefront-disclaimer p {
  margin: 0;
  color: var(--club-muted);
  font-size: 13px;
  line-height: 1.45;
}

.club-storefront-searchbar {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: calc(18px + env(safe-area-inset-bottom, 0px));
  z-index: 90;
  pointer-events: none;
}

.club-storefront-searchbar-panel {
  width: min(100%, 760px);
  margin: 0 auto;
  padding: 10px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(31, 41, 55, 0.08);
  box-shadow: 0 18px 44px rgba(58, 48, 40, 0.14);
  backdrop-filter: blur(18px);
  pointer-events: auto;
}

.club-storefront-searchbar-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  align-items: center;
}

.club-storefront-searchbox {
  min-width: 0;
}

.club-storefront-searchbox input {
  width: 100%;
}

.club-verification-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.club-verification-badge .material-symbols-outlined {
  font-size: 11px;
  line-height: 1;
}

.club-stock-intro {
  display: grid;
  gap: 10px;
  padding-top: 18px;
}

.club-stock-intro h1 {
  margin: 0;
  font-size: clamp(30px, 4vw, 44px);
  line-height: 0.98;
  letter-spacing: -0.06em;
}

.club-stock-intro p {
  margin: 0;
  max-width: 760px;
  color: var(--club-muted);
  line-height: 1.6;
}

.club-storefront-profile {
  margin: 18px auto 0;
  overflow: hidden;
  display: grid;
  gap: 0;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid var(--club-border);
  box-shadow: var(--club-shadow);
}

.club-storefront-profile-cover {
  aspect-ratio: 4 / 1.15;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(255, 106, 0, 0.12), rgba(255, 255, 255, 0.9));
}

.club-storefront-profile-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.club-storefront-profile-body {
  display: grid;
  gap: 16px;
  padding: 18px;
}

.club-storefront-profile-header {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.club-storefront-profile-logo {
  width: 66px;
  height: 66px;
  flex: 0 0 auto;
  padding: 8px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid rgba(31, 41, 55, 0.08);
}

.club-storefront-profile-logo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}

.club-storefront-profile-copy {
  display: grid;
  gap: 3px;
}

.club-storefront-profile-copy strong {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--club-orange-dark);
}

.club-storefront-profile-copy p,
.club-storefront-profile-description {
  margin: 0;
  color: var(--club-ink);
  line-height: 1.55;
}

.club-storefront-profile-description {
  color: var(--club-muted);
}

.club-storefront-profile-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.club-storefront-profile-field {
  display: grid;
  gap: 4px;
  padding: 14px 15px;
  border-radius: 18px;
  background: rgba(255, 250, 245, 0.9);
  border: 1px solid rgba(255, 106, 0, 0.1);
}

.club-storefront-profile-field-wide {
  grid-column: 1 / -1;
}

.club-storefront-profile-field span {
  color: var(--club-muted);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.club-storefront-profile-field strong {
  color: var(--club-ink);
  font-size: 14px;
  line-height: 1.45;
}

.club-storefront-profile-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.club-storefront-profile-actions .btn {
  min-width: 180px;
}

.club-stock-initial-head {
  margin-top: 2px;
  margin-bottom: 8px;
}

body.club-stock-page.is-stock-search-active .club-stock-toolbar {
  display: none !important;
}

.club-stock-toolbar {
  display: grid;
  gap: 10px;
  padding-top: 18px;
}

.club-stock-chat-lead {
  margin: 0;
  max-width: 34rem;
  color: var(--club-muted);
  font-size: 14px;
  line-height: 1.55;
}

.club-stock-ai-hint {
  margin: 0;
  color: var(--club-muted);
  font-size: 13px;
  line-height: 1.45;
}

.club-stock-assistant {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: calc(22px + env(safe-area-inset-bottom, 0px));
  z-index: 90;
}

.club-stock-assistant-toggle {
  display: none;
  width: 58px;
  height: 58px;
  margin-left: auto;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--club-orange), #ff8a37);
  color: #fff;
  box-shadow: 0 18px 36px rgba(255, 106, 0, 0.28);
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.club-stock-assistant-toggle .material-symbols-outlined {
  font-size: 24px;
}

.club-stock-assistant-toggle[hidden] {
  display: none !important;
}

.club-vehicle-assistant {
  display: grid;
  justify-items: center;
  gap: 10px;
}

.club-stock-assistant:not(.is-expanded) {
  pointer-events: none;
}

.club-stock-assistant:not(.is-expanded) .club-stock-assistant-inputbar {
  pointer-events: auto;
}

.club-stock-assistant.is-expanded {
  pointer-events: auto;
}

.club-stock-assistant-panel {
  width: min(100%, 760px);
  margin: 0 auto;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto auto;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(31, 41, 55, 0.08);
  border-radius: 24px;
  box-shadow: 0 18px 44px rgba(58, 48, 40, 0.14);
  backdrop-filter: blur(18px);
  overflow: hidden;
  transition: max-height .25s ease, border-radius .25s ease, box-shadow .25s ease;
}

.club-stock-assistant.is-expanded .club-stock-assistant-panel {
  max-height: min(65vh, 560px);
  border-radius: 28px;
  box-shadow: 0 24px 64px rgba(58, 48, 40, 0.18);
}

.club-stock-assistant-header {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px 14px;
  border-bottom: 1px solid rgba(31, 41, 55, 0.08);
  opacity: 0;
  visibility: hidden;
  max-height: 0;
  overflow: hidden;
  padding-top: 0;
  padding-bottom: 0;
  transition: opacity .18s ease, max-height .25s ease, padding .25s ease;
}

.club-stock-assistant.is-expanded .club-stock-assistant-header {
  opacity: 1;
  visibility: visible;
  max-height: 88px;
  padding-top: 18px;
  padding-bottom: 14px;
}

.club-stock-assistant-header strong {
  display: block;
  font-size: 20px;
}

.club-stock-assistant-header span {
  display: block;
  margin-top: 4px;
  color: var(--club-muted);
  font-size: 13px;
  line-height: 1.45;
}

.club-stock-assistant-close,
.club-stock-assistant-send {
  border: 0;
  border-radius: 999px;
  background: #f5f1ea;
  color: var(--club-ink);
  cursor: pointer;
}

.club-stock-assistant-close {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.club-stock-assistant-body {
  display: grid;
  min-height: 0;
  opacity: 0;
  visibility: hidden;
  max-height: 0;
  overflow: hidden;
  transition: opacity .18s ease, max-height .25s ease;
}

.club-stock-assistant.is-expanded .club-stock-assistant-body {
  opacity: 1;
  visibility: visible;
  max-height: 260px;
}

.club-stock-assistant-messages {
  overflow-y: auto;
  padding: 18px 20px;
  display: grid;
  gap: 12px;
  align-content: start;
  background:
    radial-gradient(circle at top center, rgba(255, 106, 0, 0.07), transparent 30%),
    linear-gradient(180deg, #fffefd 0%, #fffaf5 100%);
}

.club-ai-message {
  max-width: 88%;
  display: grid;
  gap: 10px;
  padding: 14px 16px;
  border-radius: 22px;
}

.club-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.club-ai-message p {
  margin: 0;
  line-height: 1.55;
}

.club-ai-message-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.club-ai-action-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(37, 211, 102, 0.24);
  background: rgba(37, 211, 102, 0.12);
  color: #167a3f;
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
  transition: transform .16s ease, box-shadow .16s ease, background .16s ease;
}

.club-ai-action-button:hover {
  transform: translateY(-1px);
  background: rgba(37, 211, 102, 0.16);
  box-shadow: 0 10px 22px rgba(22, 122, 63, 0.12);
}

.club-ai-message-assistant {
  background: #eef2f8;
  color: var(--club-ink);
  justify-self: start;
}

.club-ai-message-user {
  background: linear-gradient(135deg, rgba(255, 106, 0, 0.16), rgba(255, 106, 0, 0.08));
  color: var(--club-ink);
  justify-self: end;
}

.club-ai-message.is-loading {
  opacity: 0.75;
}

.club-chat-typing {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 18px;
  padding: 2px 0;
}

.club-chat-typing-dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #7b8aa6;
  opacity: 0.55;
  animation: clubTypingDot 1.05s infinite ease-in-out;
  transform: translateY(0);
}

.club-chat-typing-dot:nth-child(2) {
  animation-delay: 120ms;
}

.club-chat-typing-dot:nth-child(3) {
  animation-delay: 240ms;
}

.club-chat-typing-message {
  min-width: 76px;
}

@keyframes clubTypingDot {
  0%, 80%, 100% {
    transform: translateY(0);
    opacity: 0.45;
  }
  40% {
    transform: translateY(-4px);
    opacity: 1;
  }
}

.club-stock-assistant-suggestions,
.club-ai-inline-suggestions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.club-stock-assistant-suggestions {
  padding: 0;
  opacity: 0;
  visibility: hidden;
  max-height: 0;
  overflow: hidden;
  transition: opacity .18s ease, max-height .25s ease, padding .25s ease;
}

.club-stock-assistant.is-expanded .club-stock-assistant-suggestions {
  opacity: 1;
  visibility: visible;
  max-height: 120px;
  padding: 0 20px 16px;
}

.club-ai-suggestion {
  border: 1px solid rgba(255, 106, 0, 0.14);
  background: #fff;
  color: var(--club-ink);
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
}

.club-stock-assistant-inputbar {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  min-width: 0;
  padding: 10px;
  border-top: 1px solid rgba(31, 41, 55, 0.06);
}

.club-stock-assistant-inputwrap {
  flex: 1 1 auto;
  min-width: 0;
  display: grid;
  gap: 6px;
}

.club-vehicle-assistant .club-stock-assistant-messages {
  max-height: min(34vh, 300px);
}

.club-stock-assistant:not(.is-expanded) .club-stock-assistant-inputbar {
  border-top: 0;
}

.club-stock-assistant-input {
  flex: 1 1 auto;
  min-width: 0;
  min-height: 54px;
  border-radius: 20px;
  border: 0;
  background: #fff7f0;
  padding: 0 18px;
  font-size: 15px;
  color: var(--club-ink);
  outline: 0;
}

.club-stock-assistant-feedback {
  font-size: 11px;
  line-height: 1.2;
  display: none;
  padding: 0 4px;
}

.club-stock-assistant-feedback.is-visible {
  display: block;
}

.club-stock-assistant-feedback.is-error {
  color: #dc2626;
}

.club-stock-assistant-input.is-error {
  box-shadow: inset 0 0 0 1px rgba(220, 38, 38, 0.24);
}

.club-stock-assistant-send {
  flex: 0 0 auto;
  width: 54px;
  height: 54px;
  background: linear-gradient(135deg, var(--club-orange), #ff8a37);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 14px 28px rgba(255, 106, 0, 0.24);
}

.club-stock-assistant-disclaimer {
  margin: 0;
  padding: 0;
  text-align: center;
  color: var(--club-muted);
  font-size: 12px;
  opacity: 0;
  visibility: hidden;
  max-height: 0;
  overflow: hidden;
  transition: opacity .18s ease, max-height .25s ease, padding .25s ease;
}

.club-stock-assistant.is-expanded .club-stock-assistant-disclaimer {
  opacity: 1;
  visibility: visible;
  max-height: 36px;
  padding: 0 20px 16px;
}

.club-ai-result-card {
  display: grid;
  grid-template-columns: 84px minmax(0, 1fr);
  gap: 12px;
  padding: 10px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(31, 41, 55, 0.08);
}

.club-ai-result-card img {
  width: 100%;
  height: 112px;
  object-fit: cover;
  border-radius: 14px;
  display: block;
}

.club-ai-result-body {
  display: grid;
  gap: 6px;
  align-content: start;
  min-width: 0;
}

.club-ai-result-top {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.club-ai-result-body strong {
  font-size: 15px;
  line-height: 1.25;
}

.club-ai-result-body span,
.club-ai-result-economy {
  color: var(--club-muted);
  font-size: 12px;
  line-height: 1.45;
}

.club-ai-result-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: var(--club-orange-soft);
  color: var(--club-orange-dark);
  font-size: 12px;
  font-weight: 800;
  text-decoration: none;
  width: fit-content;
}

.club-stock-results {
  padding-top: 14px;
  padding-bottom: 132px;
}

.club-stock-active-filters {
  display: grid;
  gap: 8px;
  margin-top: 10px;
}

.club-stock-active-filters[hidden] {
  display: none !important;
}

.club-stock-active-filters__label {
  color: var(--club-muted);
  font-size: 12px;
  font-weight: 700;
}

.club-stock-active-filters__list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.club-stock-filter-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 32px;
  padding: 0 12px;
  border: 1px solid rgba(255, 106, 0, 0.14);
  border-radius: 999px;
  background: rgba(255, 248, 239, 0.92);
  color: var(--club-orange-dark);
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  transition: transform .16s ease, border-color .16s ease, background .16s ease;
}

.club-stock-filter-chip:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 106, 0, 0.28);
  background: rgba(255, 240, 226, 0.98);
}

.club-stock-filter-chip span[aria-hidden="true"] {
  font-size: 15px;
  line-height: 1;
}

.club-stock-grid {
  display: grid;
  gap: 10px;
  position: relative;
  z-index: 1;
}

.club-stock-headline {
  display: flex;
  flex-wrap: wrap;
  gap: 3px;
  align-items: center;
}

.club-member-label {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
  font-size: inherit;
}

.club-member-label .material-symbols-outlined {
  font-size: 14px;
  line-height: 1;
}

.club-stock-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

.club-stock-tag {
  display: inline-flex;
  align-items: center;
  min-height: 22px;
  padding: 0 8px;
  border-radius: 999px;
  background: #f7f2eb;
  border: 1px solid rgba(31, 41, 55, 0.08);
  color: #746a61;
  font-size: 9px;
  font-weight: 700;
  line-height: 1;
}

.club-stock-page .club-mobile-nav,
.club-stock-page .club-footer {
  display: none !important;
}

.club-stock-page .club-main {
  padding-bottom: 0;
}

@media (min-width: 768px) {
  .club-stock-results {
    max-width: 1180px;
    margin-left: auto;
    margin-right: auto;
  }

  .club-stock-grid {
    grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
    gap: 14px;
  }

  .club-stock-assistant {
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    width: min(100% - 32px, 760px);
  }

  .club-storefront-searchbar {
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    width: min(100% - 32px, 760px);
  }
}

.club-mobile-nav {
  position: fixed;
  left: 50%;
  bottom: 10px;
  transform: translateX(-50%);
  width: min(100% - 22px, 520px);
  display: none;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  padding: 10px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(31, 41, 55, 0.08);
  box-shadow: 0 18px 50px rgba(58, 48, 40, 0.16);
  z-index: 70;
  backdrop-filter: blur(16px);
}

.club-mobile-nav-item {
  display: grid;
  gap: 4px;
  justify-items: center;
  padding: 10px 6px;
  border-radius: 16px;
  color: var(--club-muted);
  text-decoration: none;
  font-size: 11px;
  font-weight: 800;
}

.club-mobile-nav-item .material-symbols-outlined {
  font-size: 20px;
}

.club-mobile-nav-item.is-active {
  background: var(--club-orange-soft);
  color: var(--club-orange-dark);
}

.club-kicker,
.club-section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--club-orange-soft);
  color: var(--club-orange-dark);
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.02em;
}

.club-hero h1,
.club-section-head h2,
.club-final-cta h2,
.club-offers-intro h1,
.club-detail-card h1 {
  margin: 14px 0 0;
  line-height: 0.95;
  letter-spacing: -0.06em;
}

.club-hero h1 {
  font-size: clamp(42px, 6vw, 72px);
}

.club-landing-page .club-hero h1 {
  font-size: clamp(36px, 5.2vw, 64px);
}

.club-hero p {
  margin: 16px 0 0;
  max-width: 620px;
  color: var(--club-muted);
  font-size: 17px;
  line-height: 1.65;
}

.club-hero-lead {
  font-size: 18px;
  color: var(--club-ink);
}

.club-hero-actions {
  margin-top: 24px;
}

.club-hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.club-mini-badge,
.club-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 6px 10px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid rgba(255, 106, 0, 0.14);
  color: var(--club-orange-dark);
  font-size: 11px;
  font-weight: 700;
  box-shadow: 0 10px 24px rgba(255, 106, 0, 0.07);
}

.club-hero-panel {
  display: grid;
  gap: 16px;
}

.club-hero-grid-single .club-hero-panel {
  display: none;
}

.club-hero-card,
.club-hero-feature,
.club-step-card,
.club-offer-card,
.club-final-cta,
.club-detail-card,
.club-lockbox,
.club-note-card,
.club-empty-state,
.club-offers-note {
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid var(--club-border);
  border-radius: 26px;
  box-shadow: var(--club-shadow);
}

.club-hero-card {
  padding: 24px;
}

.club-panel-label {
  display: inline-flex;
  margin-bottom: 10px;
  color: var(--club-orange-dark);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.club-hero-card strong {
  display: block;
  font-size: 21px;
  line-height: 1.1;
}

.club-hero-card p,
.club-hero-feature p,
.club-step-card p,
.club-final-cta p,
.club-detail-card p,
.club-empty-state p,
.club-offers-note span,
.club-note-card span {
  color: var(--club-muted);
  line-height: 1.6;
}

.club-alert,
.club-flash {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 14px 16px;
  margin: 0 0 18px;
  border-radius: 18px;
  border: 1px solid transparent;
  font-weight: 600;
}

.club-flash .material-symbols-outlined {
  margin-top: 1px;
}

.club-flash-success {
  background: #ecfdf5;
  border-color: #bbf7d0;
  color: #166534;
}

.club-flash-error {
  background: #fff1f2;
  border-color: #fecdd3;
  color: #9f1239;
}

.club-status-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.club-status-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 12px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  border: 1px solid var(--club-border);
  background: #fff;
}

.club-status-pill.is-success {
  background: #ecfdf5;
  color: #166534;
  border-color: #bbf7d0;
}

.club-status-pill.is-warning {
  background: #fffbeb;
  color: #92400e;
  border-color: #fde68a;
}

.club-status-pill.is-danger {
  background: #fff1f2;
  color: #9f1239;
  border-color: #fecdd3;
}

.club-status-pill.is-muted {
  background: #f3f4f6;
  color: #746a61;
  border-color: #ded4c8;
}

.club-action-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.club-action-stack .btn,
.club-action-stack .pill {
  min-width: 0;
}

.club-button.is-disabled,
.club-helper-links .is-disabled {
  pointer-events: none;
  opacity: 0.58;
  cursor: not-allowed;
}

.club-action-stack .is-disabled,
.club-next-step-button.is-disabled {
  pointer-events: none;
  opacity: 0.58;
  cursor: not-allowed;
}

.club-stat-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.club-stat-grid div {
  border-radius: 18px;
  background: var(--club-cream);
  padding: 14px;
}

.club-stat-grid strong {
  display: block;
  font-size: 18px;
  color: var(--club-ink);
}

.club-stat-grid span {
  color: var(--club-muted);
  font-size: 12px;
}

.club-hero-feature {
  display: grid;
  grid-template-columns: 132px 1fr;
  gap: 16px;
  padding: 16px;
  align-items: center;
}

.club-hero-feature img,
.club-offer-media img,
.club-detail-media img {
  width: 100%;
  display: block;
  object-fit: cover;
  border-radius: 20px;
}

.club-hero-feature img {
  aspect-ratio: 1 / 1;
}

.club-hero-feature strong {
  display: block;
  margin-top: 10px;
  font-size: 18px;
}

.club-price-line,
.club-price-block {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.club-price-line {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--club-border);
}

.club-price-line span,
.club-price-block span {
  color: var(--club-muted);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.club-price-line strong,
.club-price-block strong {
  font-size: 12px;
  color: var(--club-ink);
}

.club-section {
  padding-top: 22px;
}

.club-section-head {
  margin-bottom: 18px;
}

.club-section-head-row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
}

.club-section-head h2,
.club-offers-intro h1 {
  font-size: clamp(30px, 4vw, 48px);
}

.club-step-grid,
.club-offers-grid,
.club-detail-notes {
  display: grid;
  gap: 16px;
}

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

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

.club-step-card {
  padding: 22px;
}

.club-step-index {
  display: inline-flex;
  margin-bottom: 16px;
  color: var(--club-orange-dark);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.club-step-card strong {
  display: block;
  font-size: 18px;
  margin-bottom: 10px;
}

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

.club-offers-grid-wide {
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 12px;
}

.club-offer-card {
  background: #fff;
  border-radius: 14px;
  border: 1px solid #eeeeee;
  overflow: hidden;
  box-shadow: none;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  transition: box-shadow .18s ease, transform .18s ease;
  padding: 0;
  cursor: pointer;
  color: inherit;
  text-decoration: none;
}

.club-offer-card:hover {
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, .08);
}

.club-offer-media {
  display: block;
  position: relative;
  width: 100%;
  height: 185px;
  padding: 0;
  background: #fff;
  overflow: hidden;
}

.club-offer-media img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  display: block;
  object-fit: contain;
  border-radius: 0;
}

.club-offer-body {
  padding: 10px 12px 12px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.club-card-headline {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.club-card-headline .club-badge,
.club-card-headline .club-status-pill {
  font-size: 11px;
  padding: 5px 9px;
}

.club-offer-body h3,
.club-offer-body p {
  min-width: 0;
}

.club-offer-body h3 {
  margin: 8px 0 4px;
  font-size: 11px;
  line-height: 1.16;
  letter-spacing: 0;
  font-weight: 700;
  color: #333;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.club-offer-body p {
  margin: 0 0 6px;
  color: var(--club-muted);
  line-height: 1.3;
  font-size: 9px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.club-quick-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
}

.club-spec-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 8px;
  border-radius: 999px;
  background: #f7f2eb;
  border: 1px solid rgba(31, 41, 55, 0.08);
  color: var(--club-ink);
  font-size: 10px;
  font-weight: 600;
}

.club-spec-chip strong {
  font-weight: 800;
}

.club-price-stack {
  display: grid;
  gap: 12px;
  margin-top: 10px;
}

.club-member-price {
  padding: 10px 12px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(255, 106, 0, 0.11), rgba(255, 106, 0, 0.04));
}

.club-vehicle-specs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.club-card-button {
  width: 100%;
  margin-top: 10px;
}

.club-offers-intro {
  padding-top: 24px;
}

.club-offers-intro p {
  margin: 14px 0 0;
  max-width: 820px;
  color: var(--club-muted);
  font-size: 17px;
  line-height: 1.6;
}

.club-offers-note {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  margin-top: 18px;
  color: var(--club-ink);
}

.club-empty-state {
  padding: 28px;
  text-align: center;
}

.club-empty-state strong {
  display: block;
  font-size: 22px;
  margin-bottom: 10px;
}

.club-final-cta {
  margin-top: 24px;
  padding: 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.club-final-cta h2 {
  font-size: clamp(28px, 4vw, 42px);
}

.club-final-cta p {
  max-width: 720px;
  margin: 12px 0 0;
}

.club-footer {
  padding: 10px 0 26px;
  color: var(--club-muted);
  border-top: 1px solid rgba(31, 41, 55, 0.06);
}

.club-footer strong {
  display: block;
  color: var(--club-ink);
  margin-bottom: 8px;
}

/* Rodapé institucional público e paginação do estoque. */
.club-public-footer { margin-top: 56px; color: #eee4d9; background: var(--cmb-brand-secondary); }
.club-public-footer__main { padding: 48px 0 24px; }
.club-public-footer__grid { display: grid; grid-template-columns: minmax(250px, 1.45fr) repeat(3, minmax(150px, 1fr)); gap: 34px; }
.club-public-footer h2,
body.club-page .club-public-footer__grid > section > h2 { margin: 0 0 14px; color: #fffaf4; font-size: 15px; }
.club-public-footer p { margin: 0; color: #eee4d9; font-size: 14px; line-height: 1.55; }
.club-public-footer ul { display: grid; gap: 10px; margin: 0; padding: 0; list-style: none; }
.club-public-footer a { color: #eee4d9; text-decoration: none; }
.club-public-footer a:hover, .club-public-footer a:focus-visible { color: #ff7a1a; text-decoration: underline; }
.club-public-footer a:focus-visible { outline: 2px solid #ff7a1a; outline-offset: 3px; border-radius: 3px; }
.club-public-footer__brand { display: grid; align-content: start; gap: 13px; }
.club-public-footer__brand-title { display: inline-flex; align-items: center; gap: 10px; color: #fff; font-size: 20px; }
.club-public-footer__brand-title img { width: 34px; height: 34px; border-radius: 8px; }
.club-public-footer__contacts { display: grid; gap: 4px; color: #eee4d9; font-style: normal; font-size: 13px; }
.club-public-footer__socials { display: flex; flex-wrap: wrap; gap: 8px; }
.club-public-footer__socials a { display: inline-grid; width: 34px; height: 34px; place-items: center; border: 1px solid rgba(255, 250, 244, .26); border-radius: 50%; }
.club-public-footer__socials .material-symbols-outlined { font-size: 18px; }
.club-public-footer__muted { max-width: 240px; font-size: 13px !important; }
.club-public-footer__notice { margin-top: 36px !important; padding: 14px 16px; border: 1px solid rgba(255, 122, 26, .32); border-radius: 12px; background: rgba(255, 255, 255, .04); }
.club-public-footer__bottom { padding: 16px 0; background: var(--cmb-brand-secondary); border-top: 1px solid rgba(255, 250, 244, .14); font-size: 12px; }
.club-public-footer__bottom .container { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 8px 20px; }

.club-stock-pagination { display: grid; justify-items: center; gap: 12px; margin: 34px auto 0; padding-bottom: 10px; }
.club-stock-pagination__summary { color: var(--club-muted); font-size: 13px; }
.club-stock-pagination__controls { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 6px; }
.club-stock-pagination a, .club-stock-pagination span { display: inline-flex; min-width: 36px; min-height: 36px; align-items: center; justify-content: center; padding: 0 10px; border: 1px solid #d8e0ea; border-radius: 9px; color: var(--club-ink); font-size: 13px; font-weight: 750; text-decoration: none; }
.club-stock-pagination a:hover, .club-stock-pagination a:focus-visible { border-color: var(--club-orange); color: var(--club-orange-dark); outline: 0; }
.club-stock-pagination [aria-current="page"] { border-color: var(--club-orange); background: var(--club-orange); color: #fff; }
.club-stock-pagination .is-disabled { color: #a6b1bf; background: #f5f7fa; cursor: not-allowed; }
.club-stock-pagination__ellipsis { min-width: auto; border-color: transparent; }

@media (max-width: 767px) {
  .club-public-footer { margin-top: 40px; }
  .club-public-footer__main { padding: 34px 0 20px; }
  .club-public-footer__grid { grid-template-columns: 1fr 1fr; gap: 28px 20px; }
  .club-public-footer__brand { grid-column: 1 / -1; }
  .club-public-footer__bottom .container { display: grid; gap: 7px; }
  .club-stock-pagination { margin-top: 28px; padding-inline: 10px; }
  .club-stock-pagination a, .club-stock-pagination span { min-width: 34px; min-height: 34px; padding: 0 8px; }
}

.club-detail-layout {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 22px;
  padding: 26px 0 10px;
}

.club-detail-media {
  overflow: hidden;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid var(--club-border);
  box-shadow: var(--club-shadow);
  padding: 14px;
}

.club-detail-media img {
  aspect-ratio: 16 / 10;
}

.club-vehicle-gallery {
  display: grid;
  gap: 10px;
}

.club-vehicle-gallery-main {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 20px;
}

.club-vehicle-thumbs {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 2px;
}

.club-vehicle-thumbs img {
  width: 76px;
  height: 92px;
  object-fit: cover;
  border-radius: 12px;
  flex: 0 0 auto;
  cursor: pointer;
  opacity: 0.72;
  border: 2px solid transparent;
  transition: opacity .16s ease, border-color .16s ease, transform .16s ease, box-shadow .16s ease;
}

.club-vehicle-thumbs img.is-active {
  opacity: 1;
  border-color: rgba(255, 106, 0, 0.45);
  box-shadow: 0 10px 24px rgba(255, 106, 0, 0.12);
}

.club-vehicle-thumbs img:hover {
  transform: translateY(-1px);
  opacity: 0.92;
}

.club-detail-card {
  padding: 22px;
}

.club-detail-card h1 {
  font-size: clamp(30px, 4.2vw, 48px);
}

.club-detail-prices {
  margin-top: 16px;
}

.club-whatsapp-actions {
  display: grid;
  gap: 12px;
  margin-top: 26px;
}

.club-whatsapp-actions .club-whatsapp-button {
  width: 100%;
  min-height: 52px;
}

.club-whatsapp-member-card {
  display: grid;
  gap: 10px;
  padding: 16px 16px 15px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(255, 106, 0, 0.14);
  box-shadow: 0 12px 26px rgba(58, 48, 40, 0.06);
}

.club-whatsapp-member-card.is-member {
  background: linear-gradient(180deg, rgba(255, 106, 0, 0.08), rgba(255, 255, 255, 0.96));
}

.club-whatsapp-member-card-head {
  display: flex;
  align-items: center;
  gap: 8px;
}

.club-whatsapp-member-card-head strong {
  font-size: 14px;
  line-height: 1.25;
}

.club-whatsapp-member-card-head .material-symbols-outlined {
  color: var(--club-orange-dark);
  font-size: 20px;
  line-height: 1;
}

.club-whatsapp-member-card p {
  margin: 0;
  color: var(--club-muted);
  line-height: 1.5;
  font-size: 14px;
}

.club-whatsapp-member-cta {
  justify-content: center;
  width: fit-content;
}

.club-contact-warning-note {
  border-left: 4px solid var(--club-orange);
}

.club-detail-responsible {
  margin: 10px 0 0;
  color: var(--club-muted);
  font-size: 13px;
  line-height: 1.45;
}

.club-detail-responsible__name {
  color: var(--club-navy);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: rgba(255, 107, 15, .45);
  text-underline-offset: 3px;
}

.club-detail-responsible__store-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-left: 10px;
  color: var(--club-orange-dark);
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
}

.club-detail-responsible__store-link .material-symbols-outlined {
  font-size: 16px;
  line-height: 1;
}

@media (max-width: 640px) {
  .club-detail-responsible__store-link {
    display: flex;
    width: fit-content;
    margin: 6px 0 0;
  }
}

.club-detail-location { margin: 8px 0 0; }
.club-detail-location .club-status-pill { padding: 7px 10px; }

body.club-modal-open {
  overflow: hidden;
}

.club-modal {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.club-modal.is-visible {
  display: flex;
}

.club-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(58, 48, 40, 0.64);
}

.club-modal-panel {
  position: relative;
  z-index: 1;
  width: min(720px, 100%);
  max-height: min(86vh, 760px);
  overflow: auto;
  display: grid;
  gap: 18px;
  padding: 24px;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 30px 80px rgba(58, 48, 40, 0.22);
}

.club-modal-header strong {
  display: block;
  font-size: 20px;
  line-height: 1.2;
  letter-spacing: -0.03em;
  color: var(--club-ink);
}

.club-modal-body {
  display: grid;
  gap: 12px;
  color: var(--club-ink);
}

.club-modal-body p {
  margin: 0;
  line-height: 1.6;
}

.club-modal-body ul {
  margin: 0;
  padding-left: 18px;
  display: grid;
  gap: 6px;
  line-height: 1.5;
}

.club-modal-footer {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
  flex-wrap: wrap;
}

.club-modal-footer .btn {
  min-width: 170px;
}

.club-detail-section {
  margin-top: 18px;
  padding: 16px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid var(--club-border);
  box-shadow: var(--club-shadow);
}

.club-detail-section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.club-detail-section-head strong {
  color: var(--club-ink);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.club-detail-summary p {
  margin: 0;
  color: var(--club-muted);
  line-height: 1.55;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.club-detail-card .club-badge,
.club-detail-card .club-status-pill {
  margin-top: 8px;
}

.club-detail-teaser {
  margin-top: 14px;
  font-size: 15px;
  color: var(--club-muted);
  line-height: 1.55;
}

.club-detail-tags {
  margin-top: 14px;
}

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

.club-characteristic-item {
  display: grid;
  gap: 4px;
  padding: 12px 12px 11px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid rgba(31, 41, 55, 0.06);
}

.club-characteristic-item span {
  color: var(--club-muted);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.club-characteristic-item strong {
  color: var(--club-ink);
  font-size: 14px;
  line-height: 1.25;
}

.club-detail-actions {
  margin-top: 20px;
}

body.club-proposal-open {
  overflow: hidden;
}

.club-proposal-trigger {
  width: 100%;
}

.club-proposal-modal {
  z-index: 130;
  display: none;
  align-items: flex-end;
  justify-content: center;
  padding: 12px;
}

.club-proposal-modal.is-open {
  display: flex;
}

.club-proposal-modal .lead-modal__backdrop {
  background: rgba(58, 48, 40, 0.64);
}

.club-proposal-modal__dialog {
  width: min(760px, calc(100% - 8px));
  margin: 0;
  border-radius: 26px 26px 18px 18px;
  max-height: calc(100vh - 24px);
  overflow: auto;
}

.club-proposal-modal__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.club-proposal-modal__header h3 {
  margin-bottom: 4px;
}

.club-proposal-modal__header p {
  margin-bottom: 0;
}

.club-proposal-modal__close {
  flex: 0 0 auto;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid rgba(31, 41, 55, 0.08);
  background: #fff;
  color: var(--club-ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.club-proposal-modal__close .material-symbols-outlined {
  font-size: 20px;
}

.club-proposal-form {
  gap: 12px;
}

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

.club-proposal-field {
  display: grid;
  gap: 6px;
}

.club-proposal-field-full {
  grid-column: 1 / -1;
}

.club-proposal-field span {
  color: var(--club-muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.club-proposal-field input,
.club-proposal-field select,
.club-proposal-field textarea {
  width: 100%;
  border: 1px solid rgba(31, 41, 55, 0.12);
  border-radius: 14px;
  background: #fff;
  color: var(--club-ink);
  font: inherit;
  padding: 12px 14px;
  outline: none;
}

.club-proposal-field textarea {
  min-height: 124px;
  resize: vertical;
}

.club-proposal-field input:focus,
.club-proposal-field select:focus,
.club-proposal-field textarea:focus {
  border-color: rgba(255, 106, 0, 0.35);
  box-shadow: 0 0 0 4px rgba(255, 106, 0, 0.08);
}

.club-proposal-conditional {
  display: grid;
  gap: 10px;
}

.club-proposal-note {
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(255, 106, 0, 0.06);
  color: var(--club-muted);
  font-size: 13px;
  line-height: 1.5;
}

.club-proposal-actions {
  margin-top: 0;
}

.club-auth-page .club-main,
.club-member-page .club-main {
  padding-top: 8px;
}

.club-auth-shell {
  display: grid;
  place-items: center;
  min-height: calc(100vh - 84px);
  padding: 18px 16px 40px;
}

.club-auth-card {
  width: min(100%, 620px);
  padding: 34px 36px 32px;
}

.club-auth-card-login {
  display: grid;
  gap: 22px;
  border-radius: 28px;
  overflow: hidden;
  padding: 0;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(58, 48, 40, 0.08);
  box-shadow: 0 26px 60px rgba(58, 48, 40, 0.10);
}

.club-auth-topbar--card {
  justify-content: flex-start;
  min-height: 120px;
  padding: 20px 28px;
  background: linear-gradient(180deg, #27221e 0%, #27221e 100%);
}

.club-auth-topbar--card .club-auth-topbar__brand {
  width: 100%;
  max-width: none;
}

.club-auth-topbar--card .club-auth-topbar__text strong {
  color: #fff;
  font-size: 17px;
}

.club-auth-body {
  display: grid;
  gap: 20px;
  padding: 20px 36px 34px;
}

.club-verify-main {
  overflow-x: hidden;
}

.club-verify-shell {
  width: min(100%, 620px);
  place-items: start center;
  padding: 18px 0 22px;
}

.club-verify-card {
  width: min(100%, 580px);
  margin: 0 auto;
  display: grid;
  gap: 14px;
  padding: 24px 24px 20px;
  border-radius: 20px;
}

.club-verify-hero {
  display: grid;
  gap: 10px;
  justify-items: center;
  text-align: center;
  max-width: 620px;
  margin: 0 auto;
}

.club-verify-kicker {
  gap: 10px;
}

.club-verify-kicker .material-symbols-outlined {
  font-size: 16px;
  line-height: 1;
}

.club-verify-hero h1 {
  margin: 0;
  color: var(--club-ink);
  font-size: clamp(38px, 3.4vw, 46px);
  line-height: 1;
  letter-spacing: -0.06em;
}

.club-verify-hero p {
  margin: 0;
  color: var(--club-muted);
  font-size: 14px;
  line-height: 1.4;
  max-width: 36rem;
}

.club-verify-form-shell {
  display: grid;
  gap: 12px;
  width: min(100%, 620px);
  margin: 0 auto;
}

.club-verify-form-shell > .club-verify-support {
  justify-items: center;
  text-align: center;
}

.club-verify-card__head {
  display: none;
}

.club-verify-card .club-verify-empty,
.club-verify-card .club-verify-success {
  width: min(100%, 620px);
  margin: 0 auto;
}

.club-verify-phone-chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  min-height: 36px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255, 106, 0, 0.08);
  color: var(--club-ink);
  border: 1px solid rgba(255, 106, 0, 0.12);
}

.club-verify-phone-chip .material-symbols-outlined {
  font-size: 18px;
  line-height: 1;
  color: var(--club-orange-dark);
}

.club-verify-phone-chip strong {
  font-size: 14px;
  line-height: 1;
}

.club-verify-form {
  display: grid;
  gap: 10px;
  width: 100%;
}

.club-verify-otp-block {
  display: grid;
  gap: 8px;
}

.club-verify-otp-label {
  color: var(--club-ink);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.club-otp-grid {
  display: grid;
  grid-template-columns: repeat(6, 50px);
  justify-content: center;
  gap: 8px;
}

.club-otp-input {
  box-sizing: border-box;
  width: 50px;
  min-width: 50px;
  height: 52px;
  min-height: 52px;
  border-radius: 13px;
  border: 1px solid #ded4c8;
  background: #fff;
  color: var(--club-ink);
  text-align: center;
  font-size: 19px;
  font-weight: 800;
  letter-spacing: -0.04em;
  box-shadow: inset 0 1px 2px rgba(58, 48, 40, 0.02);
  appearance: textfield;
}

.club-otp-input:focus {
  outline: none;
  border-color: rgba(255, 106, 0, 0.58);
  box-shadow: 0 0 0 4px rgba(255, 106, 0, 0.12);
}

.club-otp-input::-webkit-outer-spin-button,
.club-otp-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.club-verify-submit {
  width: 100%;
  min-height: 52px;
  font-size: 14px;
}

.club-verify-links {
  margin-top: 0;
}

.club-verify-links--stacked {
  display: grid;
}

.club-verify-links--stacked .club-button,
.club-verify-links--stacked .club-button-secondary {
  width: 100%;
}

.club-verify-resend {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 4px;
  margin-top: 8px;
  color: var(--club-muted);
  font-size: 13px;
}

.club-verify-resend__link {
  min-height: 40px;
  padding: 8px 10px;
  border: 0;
  background: transparent;
  color: var(--club-orange-dark);
  font: inherit;
  font-weight: 800;
  text-decoration: underline;
  cursor: pointer;
}

.club-verify-resend__link:focus-visible {
  outline: 3px solid rgba(255, 106, 0, .28);
  outline-offset: 2px;
  border-radius: 6px;
}

.club-verify-resend__link:disabled { color: var(--club-muted); cursor: not-allowed; text-decoration: none; }

.club-verify-support {
  display: grid;
  gap: 4px;
  padding-top: 0;
  justify-items: center;
  text-align: center;
}

.club-verify-support p {
  margin: 0;
  color: var(--club-muted);
  font-size: 13px;
  line-height: 1.5;
}

.club-verify-empty,
.club-verify-success {
  display: grid;
  gap: 8px;
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(255, 106, 0, 0.06);
  border: 1px solid rgba(255, 106, 0, 0.12);
}

.club-verify-empty strong,
.club-verify-success strong {
  color: var(--club-ink);
  font-size: 16px;
}

.club-verify-empty p,
.club-verify-success p {
  margin: 0;
  color: var(--club-muted);
  font-size: 14px;
  line-height: 1.5;
}

.club-verify-debug {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid rgba(255, 106, 0, 0.14);
  background: linear-gradient(180deg, rgba(255, 178, 92, 0.16), rgba(255, 255, 255, 0.72));
  color: var(--club-ink);
}

.club-verify-debug .material-symbols-outlined {
  flex: 0 0 auto;
  font-size: 18px;
  line-height: 1;
  color: var(--club-orange-dark);
  margin-top: 2px;
}

.club-verify-debug__body {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.club-verify-debug__body strong {
  color: var(--club-ink);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.2;
}

.club-verify-debug__code {
  color: var(--club-orange-dark);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  font-size: 16px;
  font-weight: 900;
  letter-spacing: 0.12em;
  line-height: 1.1;
}

.club-verify-debug__body small {
  color: var(--club-muted);
  font-size: 12px;
  line-height: 1.45;
}

.club-verify-back-link {
  display: flex;
  justify-content: center;
  padding-top: 4px;
}

.club-verify-back-link a {
  color: var(--club-muted);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.club-verify-back-link a:hover {
  color: var(--club-orange-dark);
}

.club-auth-header {
  max-width: 720px;
}

.club-auth-header-login {
  max-width: 100%;
  display: grid;
  gap: 10px;
  justify-items: start;
}

.club-auth-header h1 {
  font-size: clamp(30px, 4.4vw, 48px);
}

.club-auth-header-login h1 {
  font-size: clamp(30px, 5vw, 42px);
  line-height: 0.98;
  letter-spacing: -0.06em;
  margin: 0;
}

.club-auth-header-login .club-section-label {
  width: fit-content;
}

.club-auth-header p {
  margin: 12px 0 0;
  color: var(--club-muted);
  font-size: 16px;
  line-height: 1.6;
}

.club-form {
  display: grid;
  gap: 14px;
}

.club-form-group {
  display: grid;
  gap: 8px;
}

.club-form-group label {
  font-size: 13px;
  font-weight: 800;
  color: var(--club-ink);
}

.club-input,
.club-select,
.club-textarea {
  width: 100%;
  min-height: 50px;
  border-radius: 16px;
  border: 1px solid #ded4c8;
  background: #fff;
  color: var(--club-ink);
  padding: 14px 16px;
  font-size: 15px;
  transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}

.club-textarea {
  min-height: 120px;
  resize: vertical;
}

.club-input:focus,
.club-select:focus,
.club-textarea:focus {
  outline: none;
  border-color: rgba(255, 106, 0, 0.55);
  box-shadow: 0 0 0 4px rgba(255, 106, 0, 0.12);
}

.club-password-field {
  position: relative;
}

.club-auth-form {
  gap: 16px;
}

.club-auth-actions {
  display: grid;
  gap: 10px;
  margin-top: 6px;
}

.club-auth-submit,
.club-auth-back {
  width: 100%;
  min-height: 52px;
}

.club-password-toggle {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--club-muted);
  box-shadow: none;
  appearance: none;
  cursor: pointer;
  transition: color .16s ease, transform .16s ease;
}

.club-password-toggle:hover {
  color: var(--club-orange-dark);
  transform: translateY(-50%) scale(1.04);
}

.club-password-field .club-input {
  padding-right: 34px;
}

.club-password-toggle__icon {
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: currentColor;
  flex: 0 0 auto;
}

.club-password-toggle__icon svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
  display: block;
}

.club-password-hint {
  margin: -2px 0 0;
  color: var(--club-muted);
  font-size: 12px;
  line-height: 1.45;
}

.club-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 50px;
  padding: 0 18px;
  border-radius: 16px;
  border: 1px solid transparent;
  background: var(--club-orange);
  color: #fff;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 12px 28px rgba(255, 106, 0, 0.18);
}

.club-button:hover {
  background: var(--club-orange-dark);
}

.club-button-secondary {
  background: #fff;
  color: var(--club-ink);
  border-color: #ded4c8;
  box-shadow: none;
}

.club-button-secondary:hover {
  border-color: #ded4c8;
  background: #f7f2eb;
}

.club-helper-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.club-auth-topbar {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 80px;
  padding: 14px 16px 0;
}

.club-auth-topbar__brand {
  width: min(100%, 480px);
  display: flex;
  align-items: center;
  gap: 12px;
}

.club-auth-topbar__mark {
  width: 46px;
  height: 46px;
  border-radius: 16px;
  display: block;
  object-fit: cover;
  background: rgba(255, 106, 0, 0.08);
  box-shadow: 0 8px 18px rgba(58, 48, 40, 0.06);
}

.club-auth-topbar__text {
  display: grid;
  gap: 2px;
}

.club-auth-topbar__text strong {
  font-size: 16px;
  line-height: 1.1;
}

.club-auth-topbar__text span {
  color: var(--club-muted);
  font-size: 13px;
}

.club-member-dashboard {
  display: grid;
  gap: 18px;
}

.club-member-hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 18px;
  align-items: start;
}

.club-status-card {
  padding: 18px;
  border-radius: 22px;
  background: #fff;
  border: 1px solid var(--club-border);
  box-shadow: var(--club-shadow);
}

.club-status-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.club-status-title {
  display: grid;
  gap: 4px;
}

.club-status-title strong {
  font-size: 16px;
}

.club-status-title span {
  color: var(--club-muted);
  font-size: 13px;
}

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

.club-member-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.club-onboarding-step {
  display: grid;
  gap: 10px;
  padding: 18px;
  border-radius: 22px;
  border: 1px solid var(--club-border);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--club-shadow);
}

.club-onboarding-step strong {
  font-size: 16px;
}

.club-onboarding-step p {
  margin: 0;
  color: var(--club-muted);
  line-height: 1.5;
}

.club-onboarding-step__index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: var(--club-orange-soft);
  color: var(--club-orange-dark);
  font-size: 12px;
  font-weight: 900;
}

.club-onboarding-step.is-complete {
  border-color: rgba(52, 168, 83, 0.18);
}

.club-onboarding-step.is-complete .club-onboarding-step__index {
  background: rgba(52, 168, 83, 0.12);
  color: #166534;
}

.club-onboarding-step.is-current {
  border-color: rgba(255, 106, 0, 0.2);
  box-shadow: 0 14px 32px rgba(255, 106, 0, 0.08);
}

.club-onboarding-step.is-current .club-onboarding-step__index {
  background: rgba(255, 106, 0, 0.16);
}

.club-onboarding-step.is-pending {
  opacity: 0.9;
}

.club-onboarding-main {
  min-height: 100%;
}

.club-next-step {
  display: grid;
  gap: 10px;
  padding: 20px;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(255, 106, 0, 0.12), rgba(255, 255, 255, 0.96));
  border: 1px solid rgba(255, 106, 0, 0.14);
}

.club-next-step strong {
  font-size: 18px;
  line-height: 1.4;
}

.club-next-step p {
  margin: 0;
}

.club-detail-notes {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 22px;
}

.club-note-card {
  padding: 18px;
}

.club-note-card strong {
  display: block;
  margin-bottom: 8px;
}

@media (max-width: 1100px) {
  .club-hero-grid,
  .club-detail-layout,
  .club-auth-grid,
  .club-member-hero {
    grid-template-columns: 1fr;
  }

  .club-benefits-grid {
    grid-template-columns: 1fr;
  }

  .club-step-grid,
  .club-detail-notes,
  .club-member-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .club-member-steps {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 780px) {
  .club-nav {
    gap: 8px;
  }

  .club-landing-page .nav-actions .pill:first-child,
  .club-stock-page .nav-actions .pill:first-child {
    display: none;
  }

  .club-section-head-row,
  .club-final-cta {
    flex-direction: column;
    align-items: flex-start;
  }

  .club-step-grid,
  .club-step-grid-three,
  .club-detail-notes,
  .club-stat-grid,
  .club-member-grid,
  .club-form-grid {
    grid-template-columns: 1fr;
  }

  .club-member-steps {
    grid-template-columns: 1fr;
  }

  .club-hero-feature {
    grid-template-columns: 1fr;
  }

  .club-vehicle-specs {
    grid-template-columns: 1fr;
  }

  .club-quick-specs {
    gap: 6px;
  }

  .club-detail-card,
  .club-hero-card,
  .club-step-card,
  .club-empty-state,
  .club-offers-note,
  .club-auth-card {
    padding-left: 18px;
    padding-right: 18px;
  }

  .club-auth-shell {
    min-height: calc(100vh - 72px);
    padding-top: 12px;
  }

  .club-auth-card {
    width: 100%;
    padding: 24px 16px 22px;
    border-radius: 24px;
  }

  .club-auth-card-login {
    padding: 0;
    gap: 0;
  }

  .club-auth-topbar--card {
    min-height: 92px;
    padding: 16px 18px;
  }

  .club-auth-body {
    gap: 18px;
    padding: 18px 16px 22px;
  }

  .club-auth-topbar {
    min-height: 68px;
    padding-top: 10px;
  }

  .club-auth-topbar__brand {
    width: 100%;
  }

  .club-auth-topbar__mark {
    width: 42px;
    height: 42px;
    border-radius: 14px;
  }

  .club-auth-header-login h1 {
    font-size: 28px;
  }

  .club-auth-actions {
    gap: 8px;
  }

  .club-password-field .club-input {
    padding-right: 38px;
  }

  .club-verify-shell {
    padding: 14px 10px 24px;
  }

  .club-verify-card {
    width: 100%;
    gap: 14px;
    padding: 22px 14px 18px;
    border-radius: 22px;
  }

  .club-verify-hero {
    gap: 8px;
  }

  .club-verify-hero h1 {
    font-size: 30px;
  }

  .club-verify-hero p {
    font-size: 13px;
  }

  .club-verify-phone-chip {
    min-height: 38px;
    padding-inline: 10px;
    gap: 8px;
  }

  .club-verify-phone-chip strong {
    font-size: 12px;
  }

  .club-verify-form-shell {
    width: 100%;
    gap: 10px;
  }

  .club-verify-form {
    gap: 12px;
  }

  .club-verify-otp-label {
    font-size: 14px;
  }

  .club-otp-grid {
    grid-template-columns: repeat(6, 40px);
    gap: 5px;
  }

  .club-otp-input {
    width: 40px;
    min-width: 40px;
    height: 50px;
    min-height: 50px;
    font-size: 18px;
    border-radius: 12px;
  }

  .club-verify-submit {
    min-height: 52px;
    font-size: 15px;
  }

  .club-verify-links--stacked {
    gap: 8px;
  }

  .club-verify-debug {
    gap: 10px;
    padding: 11px 12px;
  }

  .club-verify-debug__code {
    font-size: 16px;
    letter-spacing: 0.09em;
  }

  .club-verify-support p {
    font-size: 12px;
  }

  .club-hero h1 {
    font-size: 40px;
  }

  .club-benefits-grid {
    grid-template-columns: 1fr;
  }

  .club-benefits-grid-four {
    grid-template-columns: 1fr;
  }

  .club-benefit-card {
    padding: 16px;
  }

  .club-stock-intro {
    padding-top: 14px;
  }

  .club-stock-intro h1 {
    font-size: 32px;
  }

  .club-stock-assistant {
    left: 12px;
    right: 12px;
    bottom: calc(22px + env(safe-area-inset-bottom, 0px));
  }

  .club-stock-assistant.is-expanded .club-stock-assistant-panel {
    max-height: 62vh;
  }

  .club-detail-card h1 {
    font-size: 34px;
  }

  .club-detail-media {
    padding: 12px;
    border-radius: 24px;
  }

  .club-vehicle-gallery {
    gap: 8px;
  }

  .club-vehicle-thumbs {
    gap: 6px;
  }

  .club-vehicle-thumbs img {
    width: 64px;
    height: 80px;
  }

  .club-detail-card {
    padding: 18px;
  }

  .club-detail-section {
    padding: 14px;
    border-radius: 18px;
  }

  .club-characteristics-grid {
    gap: 8px;
  }

  .club-characteristic-item {
    padding: 10px 10px 9px;
    border-radius: 14px;
  }

  .club-characteristic-item strong {
    font-size: 13px;
  }

  .club-offers-grid,
  .club-offers-grid-wide {
    gap: 8px;
  }

  .club-offer-card {
    border-radius: 8px;
    min-width: 0;
  }

  .club-offer-card:active {
    transform: scale(0.99);
  }

  .club-offer-media {
    height: 180px;
  }

  .club-offer-body {
    padding: 8px 10px 10px;
    min-width: 0;
  }

  .club-card-headline {
    gap: 6px;
  }

  .club-offer-body h3 {
    font-size: 11.5px;
    line-height: 1.18;
  }

  .club-detail-layout {
    gap: 14px;
  }

  .club-detail-card h1 {
    font-size: 30px;
  }

  .club-detail-teaser {
    font-size: 14px;
  }

  .club-characteristics-grid {
    grid-template-columns: 1fr;
  }

  .club-offer-body p {
    display: none;
  }

  .club-price-stack {
    gap: 8px;
    margin-top: 8px;
  }

  .club-price-line,
  .club-price-block {
    gap: 2px;
  }

  .club-price-line span,
  .club-price-block span {
    font-size: 9px;
  }

.club-price-line strong,
.club-price-block strong {
  display: block;
  min-width: 0;
  max-width: 100%;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.02;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: clip;
  letter-spacing: -0.045em;
}
}

/* Public vehicle detail: gallery, overlapping content card and contact panel. */
.club-vehicle-detail-page .club-main {
  padding-top: 0;
  padding-bottom: 120px;
}

.club-vehicle-detail-page .club-vehicle-detail-gallery {
  position: relative;
  width: 100%;
  min-width: 0;
  height: clamp(360px, 32vw, 460px);
  overflow: hidden;
  background: #0b1f3a;
}

.club-vehicle-detail-page .club-vehicle-detail-gallery-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(300px, 44vw);
  height: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  outline: none;
  cursor: grab;
  overscroll-behavior-x: contain;
}

.club-vehicle-detail-page .club-vehicle-detail-gallery-track::-webkit-scrollbar {
  display: none;
}

.club-vehicle-detail-page .club-vehicle-detail-gallery-track:focus-visible {
  box-shadow: inset 0 0 0 3px rgba(255, 106, 0, .75);
}

.club-vehicle-detail-page .club-vehicle-detail-gallery-item {
  display: block;
  min-width: 0;
  height: 100%;
  padding: 0;
  overflow: hidden;
  border: 0;
  border-right: 3px solid rgba(255, 255, 255, .72);
  background: #ded4c8;
  scroll-snap-align: start;
  cursor: pointer;
  touch-action: pan-x pan-y;
  user-select: none;
}

.club-vehicle-detail-page .club-vehicle-detail-gallery-item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.club-vehicle-detail-page .club-vehicle-detail-gallery-arrow {
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(58, 48, 40, .14);
  background: rgba(255, 255, 255, .96);
  color: var(--club-ink);
  cursor: pointer;
}

.club-vehicle-detail-page .club-vehicle-detail-gallery-arrow {
  position: absolute;
  top: 50%;
  z-index: 1;
  width: 54px;
  height: 54px;
  border-radius: 999px;
  transform: translateY(-50%);
  box-shadow: 0 10px 28px rgba(58, 48, 40, .16);
}

.club-vehicle-detail-page .club-vehicle-detail-gallery-arrow.is-previous { left: 24px; }
.club-vehicle-detail-page .club-vehicle-detail-gallery-arrow.is-next { right: 24px; }
.club-vehicle-detail-page .club-vehicle-detail-shell {
  position: relative;
  z-index: 2;
  margin-top: -70px;
}

.club-vehicle-detail-page .club-vehicle-detail-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(310px, 360px);
  gap: 34px;
  padding: 34px;
  border: 1px solid rgba(58, 48, 40, .1);
  border-radius: 28px;
  background: rgba(255, 255, 255, .98);
  box-shadow: 0 24px 60px rgba(58, 48, 40, .14);
}

.club-vehicle-detail-page .club-vehicle-detail-main {
  min-width: 0;
}

.club-vehicle-detail-page .club-vehicle-detail-main h1 {
  margin: 12px 0 0;
  color: var(--club-ink);
  font-size: clamp(30px, 2.6vw, 38px);
  line-height: 1.08;
  letter-spacing: -.035em;
}

.club-vehicle-detail-page .club-vehicle-detail-identity {
  display: flex;
  flex-wrap: wrap;
  column-gap: .24em;
  align-items: baseline;
}

.club-vehicle-detail-page .club-vehicle-detail-identity__brand {
  color: var(--club-ink);
}

.club-vehicle-detail-page .club-vehicle-detail-identity__model {
  color: var(--club-orange);
}

.club-vehicle-detail-page .club-vehicle-detail-subtitle {
  margin: 6px 0 0;
  color: var(--club-muted);
  font-size: clamp(14px, 1.15vw, 17px);
  font-weight: 500;
  line-height: 1.35;
}

.club-vehicle-detail-page .club-vehicle-detail-badges,
.club-vehicle-detail-page .club-vehicle-detail-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.club-vehicle-detail-page .club-vehicle-detail-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 11px;
  border-radius: 999px;
  background: #f4ece2;
  color: #34435a;
  font-size: 12px;
  font-weight: 750;
}

.club-vehicle-detail-page .club-vehicle-detail-specs {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 18px 22px;
  margin-top: 28px;
  padding: 22px 0;
  border-top: 1px solid rgba(58, 48, 40, .1);
  border-bottom: 1px solid rgba(58, 48, 40, .1);
}

.club-vehicle-detail-page .club-vehicle-detail-specs div {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.club-vehicle-detail-page .club-vehicle-detail-specs span,
.club-vehicle-detail-page .club-vehicle-detail-price > span,
.club-vehicle-detail-page .club-vehicle-detail-club-price span {
  color: var(--club-muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.club-vehicle-detail-page .club-vehicle-detail-specs strong {
  color: var(--club-ink);
  font-size: 15px;
  line-height: 1.3;
  overflow-wrap: anywhere;
}

.club-vehicle-detail-page .club-vehicle-detail-description,
.club-vehicle-detail-page .club-vehicle-detail-notice {
  margin-top: 28px;
}

.club-vehicle-detail-page .club-vehicle-detail-description h2,
.club-vehicle-detail-page .club-vehicle-detail-proposal h2 {
  margin: 0;
  color: var(--club-ink);
  font-size: 19px;
  letter-spacing: -.025em;
}

.club-vehicle-detail-page .club-vehicle-detail-description p,
.club-vehicle-detail-page .club-vehicle-detail-notice p {
  margin: 12px 0 0;
  color: #44536a;
  line-height: 1.7;
}

.club-vehicle-detail-page .club-vehicle-detail-notice {
  padding: 16px 18px;
  border-radius: 16px;
  background: #f7f2eb;
  border: 1px solid rgba(58, 48, 40, .08);
}

.club-vehicle-detail-page .club-vehicle-detail-notice.is-warning {
  border-left: 4px solid var(--club-orange);
}

.club-vehicle-detail-page .club-vehicle-detail-notice p { font-size: 13px; }

.club-vehicle-detail-page .club-vehicle-report-entry {
  margin-top: 12px;
}
.club-vehicle-detail-page .club-vehicle-report-entry__trigger {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 38px;
  padding: 7px 4px;
  border: 0;
  border-radius: 7px;
  background: transparent;
  color: #75675d;
  font: inherit;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.2;
  text-decoration: none;
  cursor: pointer;
}
.club-vehicle-detail-page .club-vehicle-report-entry__trigger .material-symbols-outlined { font-size: 17px; }
.club-vehicle-detail-page .club-vehicle-report-entry__trigger:hover { color: var(--club-orange); text-decoration: underline; text-underline-offset: 3px; }
.club-vehicle-report-modal[hidden] { display: none !important; }
.club-vehicle-report-modal {
  position: fixed;
  z-index: 1400;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 20px;
}
.club-vehicle-report-modal__backdrop { position: absolute; inset: 0; width: 100%; border: 0; background: rgba(31, 26, 21, .58); backdrop-filter: blur(3px); cursor: default; }
.club-vehicle-report-modal__dialog {
  position: relative;
  width: min(560px, 100%);
  max-height: min(760px, calc(100vh - 40px));
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid #e5d5c7;
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 28px 76px rgba(35, 28, 22, .3);
  outline: 0;
}
.club-vehicle-report-modal__header { display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; padding: 22px 22px 16px; border-bottom: 1px solid #f0e8e1; background: linear-gradient(120deg, #fff7f1, #fff 65%); }
.club-vehicle-report-modal__header > div:first-child { display: flex; gap: 11px; }
.club-vehicle-report-modal__header > div:first-child > .material-symbols-outlined { display: grid; flex: 0 0 auto; width: 38px; height: 38px; place-items: center; border-radius: 12px; background: #fff0e4; color: var(--club-orange); }
.club-vehicle-report-modal__header h2 { margin: 1px 0 0; color: var(--club-ink); font-size: 22px; letter-spacing: -.035em; }
.club-vehicle-report-modal__header p { margin: 5px 0 0; color: var(--club-muted); font-size: 13px; line-height: 1.45; }
.club-vehicle-report-modal__header > button { display: grid; flex: 0 0 auto; width: 34px; height: 34px; place-items: center; border: 0; border-radius: 9px; background: transparent; color: #6d625a; cursor: pointer; }
.club-vehicle-report-modal__header > button:hover { background: #f4eee8; }
.club-vehicle-report-modal form[data-vehicle-report-form] { display: grid; flex: 1 1 auto; min-height: 0; gap: 8px; padding: 20px 22px 0; overflow-y: auto; align-content: start; }
.club-vehicle-report-modal label { color: #3d352e; font-size: 13px; font-weight: 800; }
.club-vehicle-report-modal input,
.club-vehicle-report-modal select,
.club-vehicle-report-modal textarea { width: 100%; box-sizing: border-box; border: 1px solid #d9d4ce; border-radius: 11px; background: #fff; color: var(--club-ink); font: inherit; }
.club-vehicle-report-modal input { min-height: 46px; padding: 0 11px; }
.club-vehicle-report-modal .club-vehicle-detail-honeypot { position: absolute; left: -9999px; width: 1px !important; height: 1px !important; min-height: 1px; padding: 0; opacity: 0; pointer-events: none; }
.club-vehicle-report-modal select { min-height: 46px; padding: 0 11px; }
.club-vehicle-report-modal textarea { height: 132px; min-height: 132px; max-height: 240px; padding: 11px; line-height: 1.48; resize: vertical; }
.club-vehicle-report-modal__step { display: flex; align-items: center; gap: 6px; margin: 0 0 2px; color: var(--club-orange-dark); font-size: 12px; font-weight: 850; }
.club-vehicle-report-modal__step .material-symbols-outlined { font-size: 17px; }
.club-vehicle-report-modal__help { margin: -1px 0 5px; color: #6d625a; font-size: 12px; line-height: 1.45; }
.club-vehicle-report-modal__privacy { margin: 4px 0 2px; color: #746a61; font-size: 11px; line-height: 1.45; }
.club-vehicle-report-modal__debug { display: grid; grid-template-columns: auto 1fr; gap: 2px 8px; margin-top: 4px; padding: 10px 11px; border: 1px solid #f0d8c3; border-radius: 11px; background: #fff8f2; color: #76441f; font-size: 11px; }
.club-vehicle-report-modal__debug strong { font-size: 11px; }
.club-vehicle-report-modal__debug b { color: var(--club-orange-dark); font-size: 15px; letter-spacing: .08em; }
.club-vehicle-report-modal__debug span { grid-column: 1 / -1; color: #8a7464; line-height: 1.35; }
.club-vehicle-report-modal select:focus,
.club-vehicle-report-modal input:focus,
.club-vehicle-report-modal textarea:focus,
.club-vehicle-report-entry__trigger:focus-visible,
.club-vehicle-report-modal button:focus-visible { outline: 3px solid rgba(255, 106, 0, .22); outline-offset: 2px; }
.club-vehicle-report-modal__counter { margin: -2px 0 4px; color: var(--club-muted); font-size: 11px; text-align: right; }
.club-vehicle-report-modal__feedback { margin: 2px 0 0; padding: 10px 11px; border: 1px solid #efc6aa; border-radius: 10px; background: #fff6ef; color: #91430f; font-size: 13px; line-height: 1.4; }
/* style.css has a legacy global `footer` rule with a dark background. This
   scoped footer deliberately resets it so the modal stays in the Clube UI. */
.club-vehicle-report-modal__actions { position: sticky; z-index: 1; bottom: 0; display: flex; justify-content: flex-end; gap: 10px; margin: 14px -22px 0; padding: 16px 22px 20px; border-top: 1px solid #eee6df; border-radius: 0 0 22px 22px; background: #fff !important; color: var(--club-ink); box-shadow: 0 -8px 18px rgba(62, 49, 38, .04); }
.club-vehicle-report-modal__actions .btn { min-height: 42px; }
.club-vehicle-report-modal__resend { display: flex; align-items: center; justify-content: center; gap: 7px; padding: 11px 22px 20px; color: #766b62; font-size: 12px; }
.club-vehicle-report-modal__resend input { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; pointer-events: none; }
.club-vehicle-report-modal__resend button { min-height: 0; padding: 0; border: 0; background: transparent; color: var(--club-orange-dark); font: inherit; font-weight: 800; text-decoration: underline; text-underline-offset: 3px; cursor: pointer; }
body.club-vehicle-report-modal-open { overflow: hidden; }

@media (max-width: 640px) {
  .club-vehicle-detail-page .club-vehicle-report-entry { margin-top: 10px; }
  .club-vehicle-detail-page .club-vehicle-report-entry__trigger { min-height: 42px; padding: 8px 4px; }
  .club-vehicle-report-modal { padding: 12px; }
  .club-vehicle-report-modal__dialog { max-height: calc(100vh - 24px); border-radius: 18px; }
  .club-vehicle-report-modal__header { padding: 18px 18px 14px; }
  .club-vehicle-report-modal form[data-vehicle-report-form] { padding: 16px 18px 0; }
  .club-vehicle-report-modal__actions { flex-direction: column-reverse; margin-right: -18px; margin-left: -18px; padding: 14px 18px 18px; border-radius: 0 0 18px 18px; }
  .club-vehicle-report-modal__actions .btn { width: 100%; justify-content: center; }
  .club-vehicle-report-modal__resend { padding: 10px 18px 18px; }
}

@media (max-height: 720px) {
  .club-vehicle-report-modal__header { padding-top: 16px; padding-bottom: 12px; }
  .club-vehicle-report-modal__header h2 { font-size: 20px; }
  .club-vehicle-report-modal form[data-vehicle-report-form] { gap: 6px; padding-top: 14px; }
  .club-vehicle-report-modal input,
  .club-vehicle-report-modal select { min-height: 42px; }
  .club-vehicle-report-modal textarea { height: 104px; min-height: 104px; }
  .club-vehicle-report-modal__privacy { margin-top: 1px; }
  .club-vehicle-report-modal__actions { margin-top: 10px; padding-top: 12px; padding-bottom: 14px; }
}

.club-vehicle-detail-page .club-vehicle-detail-sidebar {
  position: sticky;
  top: 84px;
  align-self: start;
  display: grid;
  gap: 16px;
  min-width: 0;
  padding: 20px;
  border: 1px solid rgba(58, 48, 40, .12);
  border-radius: 20px;
  background: #fff;
}

.club-vehicle-detail-page .club-vehicle-detail-price {
  display: grid;
  gap: 5px;
}

.club-vehicle-detail-page .club-vehicle-detail-price--mobile { display: none; }

.club-vehicle-detail-page .club-vehicle-detail-price > strong {
  color: var(--club-ink);
  font-size: clamp(30px, 3vw, 40px);
  line-height: 1;
  letter-spacing: -.045em;
}

.club-vehicle-detail-page .club-vehicle-detail-club-price {
  display: grid;
  gap: 3px;
  margin-top: 10px;
  padding: 11px 12px;
  border-radius: 14px;
  background: rgba(255, 106, 0, .08);
}

.club-vehicle-detail-page .club-vehicle-detail-club-price strong { color: var(--club-orange-dark); }
.club-vehicle-detail-page .club-vehicle-detail-price small { color: #16824b; font-weight: 800; }

.club-vehicle-detail-page .club-vehicle-detail-proposal {
  display: grid;
  gap: 10px;
}

.club-vehicle-detail-page .club-vehicle-detail-proposal label {
  display: grid;
  gap: 5px;
  color: #746a61;
  font-size: 12px;
  font-weight: 750;
}

.club-vehicle-detail-page .club-vehicle-detail-proposal input,
.club-vehicle-detail-page .club-vehicle-detail-proposal select,
.club-vehicle-detail-page .club-vehicle-detail-proposal textarea {
  width: 100%;
  min-width: 0;
  padding: 11px 12px;
  border: 1px solid #ded4c8;
  border-radius: 11px;
  background: #fff;
  color: var(--club-ink);
  font: inherit;
}

.club-vehicle-detail-page .club-vehicle-detail-proposal textarea { min-height: 104px; resize: vertical; }
.club-vehicle-detail-page .club-vehicle-detail-contact-form__intro { margin: -5px 0 14px; color: #746a61; font-size: 12px; line-height: 1.45; }
.club-vehicle-detail-page .club-vehicle-detail-proposal label span { color: #8b8075; font-size: 10px; font-weight: 600; }
.club-vehicle-detail-page .club-vehicle-detail-proposal label.club-vehicle-detail-consent { display: flex; flex-direction: row; align-items: flex-start; gap: 8px; margin-top: 12px; color: #746a61; font-size: 11px; line-height: 1.4; }
.club-vehicle-detail-page .club-vehicle-detail-consent input { width: auto; min-height: 0; margin-top: 2px; accent-color: #ff6b13; }
.club-vehicle-detail-page .club-vehicle-detail-honeypot { position: absolute; left: -9999px; width: 1px !important; height: 1px !important; opacity: 0; pointer-events: none; }
.club-vehicle-detail-page .club-vehicle-detail-proposal input:focus,
.club-vehicle-detail-page .club-vehicle-detail-proposal select:focus,
.club-vehicle-detail-page .club-vehicle-detail-proposal textarea:focus { outline: 3px solid rgba(255, 106, 0, .16); border-color: var(--club-orange); }
.club-vehicle-detail-page .club-vehicle-detail-proposal .btn,
.club-vehicle-detail-page .club-whatsapp-actions .btn { width: 100%; justify-content: center; }
.club-vehicle-detail-page .club-whatsapp-actions { margin-top: 0; gap: 9px; }
.club-vehicle-detail-page .club-whatsapp-button {
  background: #168f58;
  border-color: #168f58;
  color: #fff;
  box-shadow: 0 12px 28px rgba(22, 143, 88, .22);
}
.club-vehicle-detail-page .club-whatsapp-button:hover {
  background: #0f7548;
  border-color: #0f7548;
}
.club-vehicle-detail-page .club-whatsapp-button.is-disabled,
.club-vehicle-detail-page .club-whatsapp-button.is-disabled:hover {
  background: #e7e2dc;
  border-color: #d7cfc5;
  color: #746a61;
  box-shadow: none;
  cursor: not-allowed;
}
.club-vehicle-detail-page .club-whatsapp-actions__notice {
  margin: 0;
  color: #746a61;
  font-size: 11px;
  line-height: 1.4;
  text-align: center;
}

.club-mobile-action-bar { display: none; }

.club-action-sheet {
  position: fixed;
  inset: 0;
  z-index: 1650;
  display: block;
  visibility: hidden;
  opacity: 0;
  transition: opacity .18s ease, visibility .18s ease;
}

.club-action-sheet.is-open { visibility: visible; opacity: 1; }

.club-action-sheet__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(4, 13, 27, .48);
}

.club-action-sheet__dialog {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(460px, calc(100vw - 32px));
  max-height: min(88vh, 720px);
  overflow: auto;
  padding: 24px;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 24px 70px rgba(4, 13, 27, .28);
  transform: translate(-50%, -50%);
}

.club-action-sheet__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
  color: var(--club-ink);
  font-size: 20px;
}

.club-action-sheet__header-title {
  display: inline-flex;
  min-width: 0;
  align-items: center;
  gap: 8px;
}

.club-action-sheet__header-title .material-symbols-outlined {
  flex: 0 0 auto;
  color: #168f58;
  font-size: 20px;
}

.club-action-sheet__header-title strong {
  min-width: 0;
}

.club-action-sheet__close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 1px solid #ded4c8;
  border-radius: 50%;
  background: #fff;
  color: var(--club-ink);
  cursor: pointer;
}

.club-action-sheet__intro { display: grid; gap: 5px; margin: -4px 0 14px 28px; }
.club-action-sheet__intro > .material-symbols-outlined { color: #25d366; font-size: 30px; }
.club-action-sheet__intro h2 { margin: 0; color: var(--club-ink); font-size: 24px; letter-spacing: -.03em; }
.club-action-sheet__intro p { margin: 0; color: #746a61; font-size: 13px; line-height: 1.45; }
.club-whatsapp-contact-context { display: grid; gap: 4px; margin: 0 0 16px; padding: 13px 14px; border: 1px solid #e4ddd4; border-radius: 13px; background: #fffaf5; }
.club-whatsapp-contact-context__eyebrow { margin: 0 0 2px; color: #746a61; font-size: 11px; font-weight: 750; letter-spacing: .02em; }
.club-whatsapp-contact-context__name { display: inline-flex; align-items: center; gap: 6px; min-width: 0; color: var(--club-ink); font-size: 16px; line-height: 1.25; overflow-wrap: anywhere; }
.club-whatsapp-contact-context__name .material-symbols-outlined { flex: 0 0 auto; color: #168f58; font-size: 19px; }
.club-whatsapp-contact-context__status { color: #746a61; font-size: 12px; font-weight: 700; }
.club-whatsapp-contact-context__status.is-verified { color: #168f58; }
.club-whatsapp-contact-context__vehicle { margin: 5px 0 0; padding-top: 9px; border-top: 1px solid #e9e1d7; color: #62594f; font-size: 12px; line-height: 1.4; overflow-wrap: anywhere; }
.club-action-sheet__security { display: flex; gap: 9px; margin: 2px 0 14px; padding: 11px 12px; border-radius: 12px; background: #f2f4fa; color: #746a61; }
.club-action-sheet__security .material-symbols-outlined { color: #65718a; font-size: 20px; }
.club-action-sheet__security p { margin: 0; font-size: 11px; line-height: 1.4; }
.club-proposal-confirmation { z-index: 1750; }
.club-proposal-confirmation .club-action-sheet__body { display: grid; gap: 14px; }
.club-proposal-confirmation .club-contact-recipient-context,
.club-proposal-confirmation .club-contact-safety-notice { margin: 0; }
.club-proposal-confirmation__intro { margin: 0; color: #746a61; font-size: 13px; line-height: 1.45; }
.club-proposal-confirmation__actions { display: grid; }
.club-proposal-confirmation__actions .btn { width: 100%; justify-content: center; }
body.club-proposal-confirmation-open { overflow: hidden; }
.club-whatsapp-gate-form { display: grid; gap: 12px; }
.club-whatsapp-gate-form label { display: grid; gap: 6px; color: #746a61; font-size: 12px; font-weight: 750; }
.club-whatsapp-gate-form input[type="tel"] { width: 100%; min-height: 46px; padding: 11px 12px; border: 1px solid #ded4c8; border-radius: 11px; color: var(--club-ink); font: inherit; box-sizing: border-box; }
.club-whatsapp-gate-form input[type="tel"]::placeholder { color: #8b8075; opacity: 1; font-weight: 400; }
.club-whatsapp-gate-form input[type="tel"]:focus { outline: 3px solid rgba(37, 211, 102, .16); border-color: #25d366; }
.club-whatsapp-gate-form .club-vehicle-detail-consent { display: flex; grid-template-columns: auto 1fr; flex-direction: row; align-items: flex-start; gap: 8px; color: #746a61; font-size: 11px; line-height: 1.4; }
.club-whatsapp-gate-form .club-vehicle-detail-consent input { width: auto; min-height: 0; margin-top: 2px; accent-color: #25d366; }
.club-whatsapp-gate-form .btn { width: 100%; justify-content: center; background: #168f58; border-color: #168f58; color: #fff; }
.club-whatsapp-gate-form .btn:hover { background: #0f7548; border-color: #0f7548; }
.club-whatsapp-gate-form__consent { margin: 0; color: #746a61; font-size: 11px; line-height: 1.4; }
.club-whatsapp-gate-form .btn:disabled { opacity: .45; cursor: not-allowed; }
.club-action-sheet__feedback { min-height: 16px; margin: 0; color: #b33a25; font-size: 12px; line-height: 1.35; }
.club-action-sheet__body > .club-vehicle-detail-contact-form { max-width: none; padding: 0; border: 0; box-shadow: none; }
.club-action-sheet__body > .club-vehicle-detail-contact-form h2 { margin-top: 0; }

@media (max-width: 768px) {
  body.club-action-sheet-open { overflow: hidden; }
  .club-vehicle-detail-page { padding-bottom: calc(78px + env(safe-area-inset-bottom, 0px)); }
  body.club-vehicle-detail-page.club-public-design .club-vehicle-detail-sidebar { display: none; }
  .club-vehicle-detail-page .club-mobile-action-bar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1500;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(0, 1fr));
    gap: 6px;
    padding: 8px 10px calc(8px + env(safe-area-inset-bottom, 0px));
    border-top: 1px solid rgba(58, 48, 40, .12);
    background: rgba(255, 255, 255, .98);
    box-shadow: 0 -8px 22px rgba(58, 48, 40, .1);
  }
  .club-mobile-action-bar__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    min-width: 0;
    min-height: 54px;
    padding: 6px 3px;
    border: 1px solid transparent;
    border-radius: 12px;
    background: #3a3028;
    color: #fff;
    font: inherit;
    font-size: 10px;
    font-weight: 800;
    line-height: 1.08;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    box-shadow: 0 8px 18px rgba(4, 13, 27, .16);
    transition: background .16s ease, border-color .16s ease, transform .16s ease, box-shadow .16s ease;
  }
  .club-mobile-action-bar__button .material-symbols-outlined { font-size: 19px; }
  .club-mobile-action-bar__button.is-ai { background: #3a3028; border-color: #3a3028; }
  .club-mobile-action-bar__button.is-phone { background: #344861; border-color: #344861; }
  .club-mobile-action-bar__button.is-whatsapp { background: #168f58; border-color: #168f58; }
  .club-mobile-action-bar__button.is-whatsapp.is-disabled,
  .club-mobile-action-bar__button.is-whatsapp.is-disabled:hover,
  .club-mobile-action-bar__button.is-whatsapp.is-disabled:focus-visible {
    background: #e7e2dc;
    border-color: #d7cfc5;
    color: #746a61;
    box-shadow: none;
    cursor: not-allowed;
    transform: none;
    outline: 0;
  }
  .club-mobile-action-bar__button.is-message { background: var(--club-orange); border-color: var(--club-orange); }
  .club-mobile-action-bar__button:hover,
  .club-mobile-action-bar__button:focus-visible { transform: translateY(-1px); box-shadow: 0 10px 22px rgba(4, 13, 27, .22); outline: 3px solid rgba(255, 255, 255, .62); outline-offset: 1px; }
  .club-mobile-action-bar__button.is-ai:hover,
  .club-mobile-action-bar__button.is-ai:focus-visible { background: #123a68; border-color: #123a68; }
  .club-mobile-action-bar__button.is-phone:hover,
  .club-mobile-action-bar__button.is-phone:focus-visible { background: #746a61; border-color: #746a61; }
  .club-mobile-action-bar__button.is-whatsapp:hover,
  .club-mobile-action-bar__button.is-whatsapp:focus-visible { background: #0f7548; border-color: #0f7548; }
  .club-mobile-action-bar__button.is-message:hover,
  .club-mobile-action-bar__button.is-message:focus-visible { background: #e85c00; border-color: #e85c00; }
  .club-mobile-action-bar__button:active { transform: translateY(0); box-shadow: 0 4px 10px rgba(4, 13, 27, .16); }
  .club-vehicle-detail-page .club-whatsapp-actions { display: none; }
  .club-vehicle-detail-page .club-vehicle-assistant { bottom: calc(84px + env(safe-area-inset-bottom, 0px)); }
  .club-vehicle-detail-page .club-vehicle-assistant .club-stock-assistant-toggle { display: none; }
  .club-action-sheet__dialog {
    top: auto;
    left: 0;
    right: 0;
    bottom: 0;
    width: auto;
    max-height: min(88dvh, 720px);
    padding: 18px 18px calc(20px + env(safe-area-inset-bottom, 0px));
    border-radius: 24px 24px 0 0;
    transform: none;
  }
}

.club-visually-hidden { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }

/* Compact desktop presentation for the public vehicle detail page. */
@media (min-width: 861px) {
  .club-vehicle-detail-page .container {
    width: min(1080px, calc(100% - 32px));
  }

  .club-vehicle-detail-page .club-nav {
    min-height: 64px;
    gap: 12px;
  }

  .club-vehicle-detail-page .club-brand {
    gap: 9px;
  }

  .club-vehicle-detail-page .store-header-logo {
    width: 30px;
    height: 30px;
    border-radius: 8px;
  }

  .club-vehicle-detail-page .club-brand .brand-title {
    font-size: 14px;
  }

  .club-vehicle-detail-page .nav-actions {
    gap: 8px;
  }

  .club-vehicle-detail-page .nav-actions .pill {
    padding: 8px 12px;
    font-size: 12px;
  }

  .club-vehicle-detail-page .club-vehicle-detail-gallery {
    height: clamp(280px, 24vw, 340px);
  }

  .club-vehicle-detail-page .club-vehicle-detail-gallery-arrow {
    width: 48px;
    height: 48px;
  }

  .club-vehicle-detail-page .club-vehicle-detail-gallery-arrow.is-previous { left: 18px; }
  .club-vehicle-detail-page .club-vehicle-detail-gallery-arrow.is-next { right: 18px; }

  .club-vehicle-detail-page .club-vehicle-detail-shell {
    margin-top: -48px;
  }

  .club-vehicle-detail-page .club-vehicle-detail-card {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 350px);
    gap: 24px;
    padding: 26px;
    border-radius: 24px;
  }

  .club-vehicle-detail-page .club-vehicle-detail-main h1 {
    margin-top: 10px;
    font-size: clamp(30px, 2.5vw, 36px);
  }

  .club-vehicle-detail-page .club-vehicle-detail-subtitle {
    margin-top: 7px;
    font-size: clamp(14px, 1.15vw, 17px);
  }

  .club-vehicle-detail-page .club-vehicle-detail-badges,
  .club-vehicle-detail-page .club-vehicle-detail-tags {
    gap: 6px;
    margin-top: 12px;
  }

  .club-vehicle-detail-page .club-vehicle-detail-tags span {
    min-height: 26px;
    padding: 0 9px;
    font-size: 11px;
  }

  .club-vehicle-detail-page .club-vehicle-detail-specs {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 13px 16px;
    margin-top: 20px;
    padding: 16px 0;
  }

  .club-vehicle-detail-page .club-vehicle-detail-specs div { gap: 3px; }
  .club-vehicle-detail-page .club-vehicle-detail-specs span { font-size: 10px; }
  .club-vehicle-detail-page .club-vehicle-detail-specs strong { font-size: 14px; }

  .club-vehicle-detail-page .club-vehicle-detail-description,
  .club-vehicle-detail-page .club-vehicle-detail-notice {
    margin-top: 20px;
  }

  .club-vehicle-detail-page .club-vehicle-detail-description h2,
  .club-vehicle-detail-page .club-vehicle-detail-proposal h2 {
    font-size: 18px;
  }

  .club-vehicle-detail-page .club-vehicle-detail-description p { margin-top: 8px; line-height: 1.55; }

  .club-vehicle-detail-page .club-vehicle-detail-sidebar {
    top: 76px;
    gap: 12px;
    padding: 18px;
    border-radius: 18px;
  }

  .club-vehicle-detail-page .club-vehicle-detail-price { gap: 4px; }
  .club-vehicle-detail-page .club-vehicle-detail-price > strong { font-size: clamp(34px, 2.6vw, 40px); }
  .club-vehicle-detail-page .club-vehicle-detail-club-price { margin-top: 7px; padding: 9px 10px; }
  .club-vehicle-detail-page .club-vehicle-detail-proposal { gap: 8px; }
  .club-vehicle-detail-page .club-vehicle-detail-proposal label { gap: 4px; font-size: 11px; }
  .club-vehicle-detail-page .club-vehicle-detail-proposal input,
  .club-vehicle-detail-page .club-vehicle-detail-proposal select,
  .club-vehicle-detail-page .club-vehicle-detail-proposal textarea { padding: 9px 10px; }
  .club-vehicle-detail-page .club-vehicle-detail-proposal textarea { min-height: 84px; }
  .club-vehicle-detail-page .club-vehicle-detail-contact-form__intro { margin-bottom: 10px; font-size: 11px; }
  .club-vehicle-detail-page .club-vehicle-detail-proposal label.club-vehicle-detail-consent { margin-top: 8px; font-size: 10px; }
  .club-vehicle-detail-page .club-vehicle-detail-proposal .btn,
  .club-vehicle-detail-page .club-whatsapp-actions .btn { min-height: 46px; padding: 10px 14px; }
  .club-vehicle-detail-page .club-whatsapp-actions { gap: 7px; }

  .club-vehicle-detail-page .club-vehicle-assistant {
    left: 50%;
    right: auto;
    width: min(calc(100% - 40px), 700px);
    margin: 0;
    transform: translateX(-50%);
    bottom: 16px;
  }

  .club-stock-page .club-stock-assistant {
    left: 50%;
    right: auto;
    width: min(calc(100% - 40px), 700px);
    margin: 0;
    transform: translateX(-50%);
    bottom: 16px;
  }

  .club-vehicle-detail-page .club-vehicle-assistant .club-stock-assistant-panel,
  .club-stock-page .club-stock-assistant .club-stock-assistant-panel { width: min(100%, 700px); }
  .club-vehicle-detail-page .club-vehicle-assistant .club-stock-assistant-inputbar,
  .club-stock-page .club-stock-assistant .club-stock-assistant-inputbar { padding: 8px; gap: 10px; }
  .club-vehicle-detail-page .club-vehicle-assistant .club-stock-assistant-input,
  .club-stock-page .club-stock-assistant .club-stock-assistant-input { min-height: 48px; padding: 0 16px; font-size: 14px; }
  .club-vehicle-detail-page .club-vehicle-assistant .club-stock-assistant-send,
  .club-stock-page .club-stock-assistant .club-stock-assistant-send { width: 48px; height: 48px; }
}

@media (max-width: 1080px) {
  .club-vehicle-detail-page .club-vehicle-detail-card { grid-template-columns: minmax(0, 1fr) 310px; gap: 24px; padding: 26px; }
}

@media (max-width: 860px) {
  .club-vehicle-detail-page .club-vehicle-detail-gallery { height: clamp(280px, 52vw, 390px); }
  .club-vehicle-detail-page .club-vehicle-detail-gallery-track { grid-auto-columns: minmax(280px, 64vw); }
  .club-vehicle-detail-page .club-vehicle-detail-shell { margin-top: -38px; }
  .club-vehicle-detail-page .club-vehicle-detail-card { grid-template-columns: 1fr; }
  .club-vehicle-detail-page .club-vehicle-detail-sidebar { position: static; }
}

@media (max-width: 640px) {
  .club-vehicle-detail-page .club-vehicle-detail-gallery { height: clamp(240px, 76vw, 320px); }
  .club-vehicle-detail-page .club-vehicle-detail-gallery-track { grid-auto-columns: 100%; }
  .club-vehicle-detail-page .club-vehicle-detail-gallery-arrow { display: none; }
  .club-vehicle-detail-page .club-vehicle-detail-shell { margin-top: 0; padding-left: 0; padding-right: 0; }
  .club-vehicle-detail-page .club-vehicle-detail-card { gap: 22px; padding: 22px 16px; border-radius: 0; border-left: 0; border-right: 0; }
  .club-vehicle-detail-page .club-vehicle-detail-main h1 { font-size: clamp(24px, 7vw, 30px); }
  .club-vehicle-detail-page .club-vehicle-detail-subtitle { font-size: 14px; }
  .club-vehicle-detail-page .club-vehicle-detail-price--mobile {
    display: grid;
    margin-top: 22px;
    padding: 16px 0;
    border-top: 1px solid rgba(58, 48, 40, .1);
    border-bottom: 1px solid rgba(58, 48, 40, .1);
  }
  .club-vehicle-detail-page .club-vehicle-detail-sidebar > .club-vehicle-detail-price--sidebar { display: none; }
  .club-vehicle-detail-page .club-vehicle-detail-specs { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px 12px; }
  .club-vehicle-detail-page .club-vehicle-detail-sidebar { padding: 16px; }
}

@media (max-width: 640px) {
  .club-stock-toolbar {
    gap: 8px;
  }

  .club-stock-grid {
    gap: 8px;
  }

  .club-stock-active-filters {
    margin-top: 8px;
    gap: 7px;
  }

  .club-stock-active-filters__list {
    gap: 6px;
  }

  .club-stock-filter-chip {
    min-height: 30px;
    padding: 0 11px;
    font-size: 11px;
  }

  .club-stock-results {
    padding-bottom: 148px;
  }

  .club-storefront-page {
    padding-bottom: 260px;
  }

  .club-storefront-page .club-main {
    padding-bottom: 16px;
  }

  .club-storefront-hero {
    padding-top: 12px;
  }

  .club-storefront-footer-grid {
    grid-template-columns: 1fr;
  }

  .club-storefront-footer-info {
    padding: 16px 16px 10px;
    border-radius: 22px 22px 0 0;
  }

  .club-storefront-footer-field {
    grid-column: 1 / -1;
  }

  .club-storefront-searchbar {
    left: 10px;
    right: 10px;
    bottom: calc(10px + env(safe-area-inset-bottom, 0px));
  }

  .club-storefront-searchbar-panel {
    padding: 8px;
    border-radius: 20px;
  }

  .club-storefront-searchbar-form {
    gap: 8px;
  }

  .club-offer-media {
    height: 180px;
  }

  .club-stock-assistant-header {
    padding: 18px 16px 12px;
  }

  .club-stock-assistant.is-expanded .club-stock-assistant-header {
    padding-top: 18px;
    padding-bottom: 12px;
  }

  .club-stock-assistant-messages {
    padding: 16px;
  }

  .club-ai-message {
    max-width: 94%;
  }

  .club-stock-assistant-suggestions {
    padding: 0;
  }

  .club-stock-assistant-inputbar {
    padding: 8px;
    gap: 8px;
  }

  .club-stock-assistant-input {
    min-height: 52px;
    font-size: 16px;
  }

  .club-stock-assistant-send {
    width: 52px;
    height: 52px;
    border-radius: 16px;
  }

  .club-stock-assistant-disclaimer {
    padding: 0;
  }

  .club-stock-assistant.is-expanded .club-stock-assistant-suggestions {
    padding: 0 16px 14px;
  }

  .club-stock-assistant.is-expanded .club-stock-assistant-disclaimer {
    padding: 0 16px 14px;
  }

  .club-proposal-modal {
    padding: 8px;
  }

  .club-proposal-modal__dialog {
    width: 100%;
    border-radius: 22px 22px 12px 12px;
    padding: 14px;
  }

  .club-proposal-form-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .club-stock-assistant {
    left: 12px;
    right: 12px;
    bottom: calc(6px + env(safe-area-inset-bottom, 0px));
    width: auto;
    transform: none;
  }

  .club-stock-assistant-toggle {
    display: inline-flex;
    position: fixed;
    right: 12px;
    bottom: calc(34px + env(safe-area-inset-bottom, 0px));
    margin: 0;
  }

  .club-stock-assistant-panel {
    width: calc(100vw - 24px);
    max-width: calc(100vw - 24px);
    margin: 0;
    box-sizing: border-box;
    transition: opacity .22s ease, visibility .22s ease, transform .22s ease, max-height .25s ease, border-radius .25s ease, box-shadow .25s ease;
  }

  .club-stock-assistant.is-expanded .club-stock-assistant-panel {
    max-height: min(70dvh, 560px);
  }

  .club-stock-assistant.is-mobile-collapsed {
    pointer-events: none;
  }

  .club-stock-assistant.is-mobile-collapsed .club-stock-assistant-toggle {
    pointer-events: auto;
  }

  .club-stock-assistant.is-mobile-collapsed .club-stock-assistant-panel {
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
  }

  .club-stock-assistant:not(.is-mobile-collapsed) .club-stock-assistant-panel {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .club-stock-assistant.is-expanded .club-stock-assistant-body {
    max-height: min(44dvh, 360px);
  }

  .club-stock-assistant-messages {
    overflow-x: hidden;
    padding: 14px 14px 12px;
    gap: 8px;
  }

  .club-stock-assistant-header {
    gap: 12px;
  }

  .club-stock-assistant.is-expanded .club-stock-assistant-header {
    padding: 15px 16px 10px;
  }

  .club-stock-assistant-header strong {
    font-size: 18px;
  }

  .club-ai-message {
    max-width: 92%;
    gap: 6px;
    padding: 10px 14px;
    border-radius: 18px;
  }

  .club-ai-message p {
    font-size: 14px;
    line-height: 1.35;
  }

  .club-stock-assistant-inputbar,
  .club-stock-assistant-input {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  .club-stock-assistant-input {
    font-size: 16px;
  }

  .club-stock-assistant-feedback {
    font-size: 10px;
  }

  .club-stock-assistant-send {
    width: 52px;
    min-width: 52px;
    height: 52px;
  }
}

@media (max-width: 390px) {
  .club-stock-results {
    padding-bottom: 122px;
  }

  .club-ai-result-card {
    grid-template-columns: 74px minmax(0, 1fr);
  }

  .club-ai-result-card img {
    height: 102px;
  }

  .club-offer-body h3 {
    font-size: 11.5px;
  }

  .club-stock-intro h1 {
    font-size: 28px;
  }
}

/* Storefront composition: the cover belongs to the hero, never to the page background. */
body.club-storefront-page {
  isolation: auto;
  background:
    radial-gradient(circle at top left, rgba(255, 236, 220, .34), transparent 34%),
    #fbf8f5;
  padding-bottom: 150px;
}

body.club-storefront-page .club-storefront-background {
  display: none;
}

body.club-storefront-page .club-topbar {
  position: sticky;
  top: 0;
  z-index: 120;
  background: #fff;
  border-bottom: 1px solid #ebe7e3;
  box-shadow: 0 6px 18px rgba(42, 34, 28, .04);
}

body.club-storefront-page .club-main {
  position: relative;
  z-index: auto;
}

body.club-storefront-page .club-storefront-flash {
  padding-top: 12px;
}

body.club-storefront-page .club-storefront-hero {
  width: min(calc(100% - 32px), 1240px);
  padding-top: 18px;
  padding-bottom: 0;
}

body.club-storefront-page .club-storefront-identity {
  height: clamp(190px, 17vw, 225px);
  border-radius: 26px;
  border: 1px solid #e8e2dc;
  background: #fdfbf9;
  color: var(--club-ink);
  box-shadow: 0 16px 40px rgba(35, 30, 25, .08);
}

body.club-storefront-page .club-storefront-identity__cover {
  background: #fdfbf9;
}

body.club-storefront-page .club-storefront-identity__cover img {
  opacity: .78;
  -webkit-mask-image: none;
  mask-image: none;
}

body.club-storefront-page .club-storefront-identity__overlay {
  background:
    linear-gradient(90deg, #fdfbf9 0%, rgba(253, 251, 249, .96) 26%, rgba(253, 251, 249, .78) 44%, rgba(253, 251, 249, .34) 66%, rgba(253, 251, 249, .08) 84%, rgba(253, 251, 249, 0) 100%);
}

body.club-storefront-page .club-storefront-identity__content {
  padding: clamp(14px, 1.8vw, 20px);
}

body.club-storefront-page .club-storefront-identity__logo {
  width: clamp(72px, 7vw, 96px);
  height: clamp(72px, 7vw, 96px);
  border-radius: 22px;
  border: 1px solid rgba(31, 41, 55, .1);
  box-shadow: 0 8px 22px rgba(31, 41, 55, .06);
}

body.club-storefront-page .club-storefront-identity__copy h1 {
  color: var(--club-ink);
  font-size: clamp(30px, 3.8vw, 50px);
}

body.club-storefront-page .club-storefront-identity__copy {
  text-shadow: none;
}

body.club-storefront-page .club-storefront-identity__copy p,
body.club-storefront-page .club-storefront-identity__location {
  color: var(--club-muted);
}

body.club-storefront-page .club-storefront-results {
  width: min(calc(100% - 32px), 1240px);
  margin-top: -20px;
  padding-top: 18px;
  padding-bottom: 72px;
  border-radius: 24px 24px 0 0;
  background: #fffaf5;
}

body.club-storefront-page .club-storefront-results-head {
  margin-bottom: 12px;
}

body.club-storefront-page .club-storefront-results-head h2 {
  margin: 0;
  color: var(--club-ink);
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1.08;
}

body.club-storefront-page .club-storefront-footer-info {
  width: min(calc(100% - 32px), 1240px);
  margin-top: 0;
  border-radius: 24px 24px 0 0;
  border: 1px solid #e4ded8;
  background: #fdfbf9;
  color: var(--club-ink);
  box-shadow: 0 14px 34px rgba(38, 31, 25, .07);
}

body.club-storefront-page .club-storefront-assistant {
  z-index: 110;
}

@media (max-width: 759px) {
  body.club-storefront-page {
    padding-bottom: 112px;
  }

  body.club-storefront-page .club-storefront-hero,
  body.club-storefront-page .club-storefront-results,
  body.club-storefront-page .club-storefront-footer-info {
    width: calc(100% - 24px);
  }

  body.club-storefront-page .club-storefront-hero {
    padding-top: 12px;
  }

  body.club-storefront-page .club-storefront-hero {
    width: calc(100% - 24px);
  }

  body.club-storefront-page .club-storefront-identity {
    height: clamp(208px, 61vw, 248px);
    border-radius: 20px;
  }

  body.club-storefront-page .club-storefront-identity__content {
    padding: 14px;
  }

  body.club-storefront-page .club-storefront-identity__copy h1 {
    font-size: clamp(24px, 7.5vw, 34px);
  }

  body.club-storefront-page .club-storefront-results {
    margin-top: -14px;
    padding-top: 14px;
    padding-bottom: 56px;
    border-radius: 20px 20px 0 0;
  }

  body.club-storefront-page .club-storefront-results-head h2 {
    font-size: 24px;
  }

  body.club-storefront-page .club-storefront-footer-info {
    border-radius: 20px 20px 0 0;
  }
}

/* Storefront institutional closing section. */
body.club-storefront-page .club-storefront-footer-info {
  display: grid;
  gap: 22px;
  padding: clamp(24px, 3vw, 38px);
  color: var(--club-ink);
  border: 1px solid #e4ded8;
  border-top: 3px solid rgba(255, 106, 0, .7);
  border-radius: 28px;
  background: #fdfbf9;
  box-shadow: 0 14px 34px rgba(38, 31, 25, .07);
}

body.club-storefront-page .club-storefront-footer-head {
  display: grid;
  gap: 9px;
}

body.club-storefront-page .club-storefront-footer-kicker {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  width: fit-content;
  color: var(--club-orange-dark);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

body.club-storefront-page .club-storefront-footer-kicker .material-symbols-outlined {
  font-size: 18px;
}

body.club-storefront-page .club-storefront-footer-identity {
  gap: 5px;
}

body.club-storefront-page .club-storefront-footer-identity strong {
  color: var(--club-ink);
  font-size: clamp(22px, 2.5vw, 30px);
  line-height: 1.1;
}

body.club-storefront-page .club-storefront-footer-description {
  max-width: 760px;
  color: var(--club-muted);
  font-size: 14px;
}

body.club-storefront-page .club-storefront-footer-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 14px;
}

body.club-storefront-page .club-storefront-footer-field {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
  align-items: start;
  gap: 9px;
  padding: 12px 0;
  color: var(--club-muted);
}

body.club-storefront-page .club-storefront-footer-field > .material-symbols-outlined {
  margin-top: 1px;
  font-size: 19px;
}

body.club-storefront-page .club-storefront-footer-field > div {
  display: grid;
  gap: 3px;
}

body.club-storefront-page .club-storefront-footer-field small {
  color: var(--club-muted);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

body.club-storefront-page .club-storefront-footer-field strong {
  color: var(--club-ink);
  font-size: 15px;
  line-height: 1.35;
  font-weight: 700;
  word-break: break-word;
}

body.club-storefront-page .club-storefront-footer-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: -2px;
}

body.club-storefront-page .club-storefront-footer-actions .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  min-height: 44px;
  padding-inline: 16px;
  border: 1px solid rgba(255, 106, 0, .7);
  background: #fff;
  color: var(--club-orange-dark);
}

body.club-storefront-page .club-storefront-footer-actions .btn-primary,
body.club-storefront-page .club-storefront-footer-actions .club-storefront-footer-whatsapp {
  border-color: transparent;
  background: var(--club-orange);
  color: #fff;
}

body.club-storefront-page .club-storefront-footer-actions .btn:hover,
body.club-storefront-page .club-storefront-footer-actions .btn:focus-visible {
  border-color: var(--club-orange);
  background: #fffaf5;
}

body.club-storefront-page .club-storefront-footer-actions .btn-primary:hover,
body.club-storefront-page .club-storefront-footer-actions .club-storefront-footer-whatsapp:hover {
  border-color: transparent;
  background: var(--club-orange-dark);
}

body.club-storefront-page .club-storefront-disclaimer {
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  margin-top: 0;
  padding: 13px 15px;
  border: 1px solid #e9e2db;
  border-left: 3px solid var(--club-orange);
  border-radius: 14px;
  background: #f7f3ef;
  color: var(--club-ink);
}

body.club-storefront-page .club-storefront-disclaimer > .material-symbols-outlined {
  color: var(--club-orange);
  font-size: 20px;
}

body.club-storefront-page .club-storefront-disclaimer > div {
  display: grid;
  gap: 3px;
}

body.club-storefront-page .club-storefront-disclaimer strong {
  color: var(--club-orange-dark);
  font-size: 13px;
}

body.club-storefront-page .club-storefront-disclaimer p {
  color: var(--club-muted);
  font-size: 13px;
}

@media (max-width: 759px) {
  body.club-storefront-page .club-storefront-footer-info {
    gap: 17px;
    padding: 22px 16px;
    border-radius: 22px;
  }

  body.club-storefront-page .club-storefront-footer-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  body.club-storefront-page .club-storefront-footer-field,
  body.club-storefront-page .club-storefront-footer-field-wide {
    grid-column: 1 / -1;
  }

  body.club-storefront-page .club-storefront-footer-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  body.club-storefront-page .club-storefront-footer-actions .btn {
    width: 100%;
  }
}

/* Final compact overrides kept after the storefront base rules. */
@media (min-width: 901px) {
  body.club-storefront-page .club-storefront-footer-info {
    grid-template-columns: minmax(220px, 1.15fr) minmax(240px, 1fr) minmax(220px, .9fr);
    align-items: start;
    gap: 16px 28px;
    padding: 24px 28px 20px;
  }

  body.club-storefront-page .club-storefront-footer-head { grid-column: 1; gap: 6px; }
  body.club-storefront-page .club-storefront-footer-grid { grid-column: 2; grid-template-columns: 1fr; gap: 0; }
  body.club-storefront-page .club-storefront-footer-field,
  body.club-storefront-page .club-storefront-footer-field-wide { grid-column: 1; padding: 4px 0; }
  body.club-storefront-page .club-storefront-footer-actions { grid-column: 3; display: grid; align-content: start; gap: 7px; margin-top: 0; }
  body.club-storefront-page .club-storefront-footer-actions .btn { width: 100%; min-height: 40px; padding: 8px 12px; font-size: 13px; }
  body.club-storefront-page .club-storefront-disclaimer { grid-column: 1 / -1; padding: 9px 12px; }
  body.club-storefront-page .club-storefront-disclaimer > div { display: block; }
  body.club-storefront-page .club-storefront-disclaimer strong::after { content: ' — '; color: rgba(234, 243, 253, .5); }
  body.club-storefront-page .club-storefront-disclaimer p { display: inline; font-size: 12px; }
}

body.club-storefront-page .club-storefront-footer-kicker { font-size: 11px; }
body.club-storefront-page .club-storefront-footer-identity strong { font-size: clamp(20px, 2vw, 26px); }
body.club-storefront-page .club-storefront-footer-description { font-size: 13px; line-height: 1.35; }
body.club-storefront-page .club-storefront-footer-field > .material-symbols-outlined { font-size: 17px; }
body.club-storefront-page .club-storefront-footer-field small { font-size: 9px; }
body.club-storefront-page .club-storefront-footer-field strong { font-size: 13px; }
body.club-storefront-page .club-storefront-footer-info { gap: 16px; }

@media (max-width: 900px) {
  body.club-storefront-page .club-storefront-footer-info { padding: 22px 22px 18px; gap: 16px; }
  body.club-storefront-page .club-storefront-footer-actions .btn { min-height: 40px; padding: 8px 12px; font-size: 13px; }
}

@media (max-width: 759px) {
  body.club-storefront-page .club-storefront-footer-info { padding: 18px 16px 16px; gap: 13px; }
  body.club-storefront-page .club-storefront-footer-identity strong { font-size: 21px; }
  body.club-storefront-page .club-storefront-footer-description { font-size: 12px; }
  body.club-storefront-page .club-storefront-footer-field { padding: 3px 0; }
  body.club-storefront-page .club-storefront-footer-actions { gap: 6px; }
  body.club-storefront-page .club-storefront-footer-actions .btn { min-height: 38px; font-size: 12px; }
  body.club-storefront-page .club-storefront-disclaimer { padding: 9px 10px; }
  body.club-storefront-page .club-storefront-disclaimer p { font-size: 11px; line-height: 1.35; }
}

/* Keep the public store name and its factual footer data aligned with the Club brown. */
body.club-storefront-page .club-storefront-identity__copy h1,
body.club-storefront-page .club-storefront-footer-identity strong,
body.club-storefront-page .club-storefront-footer-field strong {
  color: var(--cmb-brand-secondary);
}

/* Cabeçalho público da loja: mesma hierarquia da prévia do perfil. */
body.club-storefront-page .club-storefront-identity {
  display: grid;
  grid-template-rows: auto auto;
  height: auto;
  overflow: hidden;
  border-radius: 26px;
  background: #fff;
}

body.club-storefront-page .club-storefront-identity__cover {
  position: relative;
  inset: auto;
  height: clamp(120px, 7vw, 228px);
  max-height: 228px;
  overflow: hidden;
  background: linear-gradient(135deg, #e8ded3 0%, #f8f1ea 100%);
}

body.club-storefront-page .club-storefront-identity__cover:not(.has-image)::after {
  content: 'Capa da loja';
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: #806f61;
  font-size: 13px;
  font-weight: 800;
}

body.club-storefront-page .club-storefront-identity__cover img {
  height: 100%;
  opacity: 1;
}

body.club-storefront-page .club-storefront-identity__overlay {
  display: none;
}

body.club-storefront-page .club-storefront-identity__content {
  position: relative;
  height: auto;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  align-items: start;
  margin-top: 0;
  padding: 14px clamp(16px, 2vw, 24px) 16px;
  background: #fff;
}

body.club-storefront-page .club-storefront-identity__logo {
  position: absolute;
  top: -48px;
  left: clamp(16px, 2vw, 24px);
  z-index: 2;
  width: clamp(90px, 7vw, 96px);
  height: clamp(90px, 7vw, 96px);
  margin-top: 0;
  border: 5px solid #fff;
  border-radius: 24px;
}

body.club-storefront-page .club-storefront-identity__copy,
body.club-storefront-page .club-storefront-identity__contacts {
  padding-top: 0;
}

body.club-storefront-page .club-storefront-identity__copy {
  gap: 6px;
  padding-left: clamp(106px, 8vw, 112px);
}

body.club-storefront-page .club-storefront-identity__copy h1 {
  font-size: clamp(24px, 3.2vw, 38px);
  line-height: 1.05;
}

body.club-storefront-page .club-storefront-identity__location {
  color: var(--club-muted);
}

body.club-storefront-page .club-storefront-identity__contacts {
  justify-content: flex-end;
}

body.club-storefront-page .club-storefront-identity__contacts a {
  border-color: #e7ddd4;
  background: #fff8f2;
  color: var(--club-ink);
  backdrop-filter: none;
}

body.club-storefront-page .club-storefront-identity__contacts a:hover,
body.club-storefront-page .club-storefront-identity__contacts a:focus-visible {
  color: #fff;
}

@media (max-width: 759px) {
  body.club-storefront-page .club-storefront-identity {
    height: auto;
    border-radius: 20px;
  }

  body.club-storefront-page .club-storefront-identity__cover {
    height: 120px;
    max-height: 120px;
  }

  body.club-storefront-page .club-storefront-identity__content {
    grid-template-columns: minmax(0, 1fr);
    gap: 12px;
    margin-top: 0;
    padding: 12px 14px 14px;
  }

  body.club-storefront-page .club-storefront-identity__logo {
    top: -36px;
    left: 14px;
    width: 72px;
    height: 72px;
    border-width: 4px;
    border-radius: 18px;
  }

  body.club-storefront-page .club-storefront-identity__copy {
    padding-top: 0;
    padding-left: 84px;
  }

  body.club-storefront-page .club-storefront-identity__copy h1 {
    font-size: clamp(22px, 6vw, 30px);
  }

  body.club-storefront-page .club-storefront-identity__contacts {
    justify-content: flex-start;
    padding-top: 0;
  }
}

/* Landing pública do Clube: comunicação curta e escaneável. */
body.club-landing-page .club-landing-hero {
  width: min(100% - 32px, 920px);
  margin-inline: auto;
}

body.club-landing-page .club-landing-hero .club-hero-copy {
  padding: 26px 0 14px;
}

body.club-landing-page .club-landing-hero .club-hero-actions {
  margin-top: 20px;
}

body.club-landing-page .club-more-section {
  padding-top: 18px;
}

body.club-landing-page .club-more-card {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 18px 22px;
  border: 1px solid var(--club-border);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--club-shadow);
}

body.club-landing-page .club-more-card h2 {
  flex: 0 0 auto;
  margin: 0;
  color: var(--club-ink);
  font-size: clamp(26px, 3vw, 36px);
  line-height: 1;
  letter-spacing: -0.055em;
}

body.club-landing-page .club-more-card p {
  margin: 0;
  color: var(--club-muted);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.45;
}

body.club-landing-page .club-more-card p span {
  color: var(--club-orange-dark);
  padding-inline: 3px;
}

body.club-landing-page .club-service-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: var(--club-orange-soft);
  color: var(--club-orange-dark);
}

body.club-landing-page .club-service-card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 20px;
  align-items: start;
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid var(--club-border);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--club-shadow);
}

body.club-landing-page .club-service-icon {
  width: 54px;
  height: 54px;
  border-radius: 18px;
}

body.club-landing-page .club-service-copy h2 {
  max-width: 780px;
  margin: 14px 0 0;
  color: var(--club-ink);
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1;
  letter-spacing: -0.055em;
}

body.club-landing-page .club-service-copy p {
  max-width: 680px;
  margin: 12px 0 0;
  color: var(--club-muted);
  font-size: 16px;
  line-height: 1.5;
}

body.club-landing-page .club-landing-disclaimer {
  margin-top: 14px;
  color: var(--club-muted);
  font-size: 12px;
  line-height: 1.45;
}

@media (max-width: 1100px) {
  body.club-landing-page .club-benefits-grid-four {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 780px) {
  body.club-landing-page .club-benefits-grid-four {
    grid-template-columns: 1fr;
  }

  body.club-landing-page .club-landing-hero {
    width: min(100% - 24px, 920px);
  }

  body.club-landing-page .club-landing-hero .club-hero-copy {
    padding-top: 16px;
  }

  body.club-landing-page .club-hero h1 {
    font-size: clamp(34px, 10vw, 39px);
  }

  body.club-landing-page .club-service-card {
    grid-template-columns: 1fr;
    gap: 16px;
    border-radius: 22px;
  }

  body.club-landing-page .club-more-card {
    display: grid;
    gap: 8px;
    padding: 18px;
  }

  body.club-landing-page .club-more-card p {
    font-size: 14px;
  }
}
