.acdsp-page {
  --acdsp-bg: #f6f8fb;
  --acdsp-ink: #07121f;
  --acdsp-text: #263445;
  --acdsp-muted: #607084;
  --acdsp-line: rgba(29, 78, 216, 0.14);
  --acdsp-surface: #ffffff;
  --acdsp-soft: #eef6f8;
  --acdsp-blue: #0ea5e9;
  --acdsp-teal: #0f766e;
  --acdsp-amber: #f59e0b;
  --acdsp-green: #149c63;
  --acdsp-shadow: 0 18px 42px rgba(15, 23, 42, 0.08);
  color: var(--acdsp-text);
  background: linear-gradient(180deg, #ffffff 0%, var(--acdsp-bg) 100%);
  font-family: Inter, "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  padding: 28px 0 70px;
}

.acdsp-page *,
.acdsp-page *::before,
.acdsp-page *::after {
  box-sizing: border-box;
}

.acdsp-page [hidden] {
  display: none !important;
}

.acdsp-shell {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.acdsp-hero {
  min-height: 520px;
  display: grid;
  align-items: end;
  overflow: hidden;
  border-radius: 24px;
  background:
    linear-gradient(90deg, rgba(3, 10, 20, 0.94) 0%, rgba(3, 10, 20, 0.82) 42%, rgba(3, 10, 20, 0.18) 76%),
    var(--acdsp-hero-image);
  background-position: center;
  background-size: cover;
  box-shadow: var(--acdsp-shadow);
}

.acdsp-hero__copy {
  width: min(720px, 100%);
  padding: 42px;
  color: #ffffff;
}

.acdsp-kicker,
.acdsp-eyebrow {
  margin: 0 0 10px;
  color: #80f0df;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.acdsp-hero h1,
.acdsp-section-title,
.acdsp-bike-section__title,
.acdsp-card__title,
.acdsp-empty h2 {
  margin: 0;
  color: var(--acdsp-ink);
  line-height: 1.06;
}

.acdsp-hero h1 {
  max-width: 10.8em;
  color: #ffffff;
  font-size: 4rem;
  overflow-wrap: anywhere;
}

.acdsp-hero__lead {
  max-width: 58ch;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.08rem;
  line-height: 1.7;
}

.acdsp-hero__actions,
.acdsp-filters,
.acdsp-price-row,
.acdsp-meta,
.acdsp-card__foot {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.acdsp-hero__actions {
  margin-top: 26px;
}

.acdsp-button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 18px;
  border: 0;
  border-radius: 999px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--acdsp-blue), var(--acdsp-teal));
  box-shadow: 0 12px 28px rgba(14, 165, 233, 0.2);
  cursor: pointer;
  font: inherit;
  font-size: 0.95rem;
  font-weight: 800;
  text-align: center;
  text-decoration: none;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease;
}

.acdsp-button:hover,
.acdsp-button:focus-visible,
.acdsp-filter:hover,
.acdsp-filter:focus-visible {
  transform: translateY(-1px);
  outline: none;
}

.acdsp-button--ghost {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: none;
}

.acdsp-button--muted {
  color: var(--acdsp-muted);
  background: #eef3f8;
  box-shadow: none;
  cursor: default;
}

.acdsp-button--muted:hover {
  transform: none;
}

.acdsp-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.acdsp-stats li {
  min-height: 64px;
  display: grid;
  gap: 3px;
  align-content: center;
  min-width: 132px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
}

.acdsp-stats strong {
  color: #ffffff;
  font-size: 1.2rem;
  line-height: 1;
}

.acdsp-stats span {
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.84rem;
}

.acdsp-toolbar,
.acdsp-disclosure,
.acdsp-empty {
  margin-top: 24px;
  border: 1px solid var(--acdsp-line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--acdsp-shadow);
}

.acdsp-toolbar {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 320px);
  gap: 16px;
  align-items: center;
  padding: 18px;
}

.acdsp-filter {
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid rgba(14, 165, 233, 0.18);
  border-radius: 999px;
  color: var(--acdsp-text);
  background: #ffffff;
  cursor: pointer;
  font: inherit;
  font-size: 0.9rem;
  font-weight: 800;
}

.acdsp-filter.is-active {
  color: #ffffff;
  background: var(--acdsp-teal);
  border-color: var(--acdsp-teal);
}

.acdsp-search {
  display: grid;
  gap: 6px;
  color: var(--acdsp-muted);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.acdsp-search input {
  min-height: 44px;
  width: 100%;
  border: 1px solid rgba(14, 165, 233, 0.18);
  border-radius: 12px;
  padding: 0 13px;
  color: var(--acdsp-ink);
  background: #ffffff;
  font: inherit;
  font-size: 1rem;
}

.acdsp-search input:focus {
  outline: 3px solid rgba(14, 165, 233, 0.18);
  border-color: rgba(14, 165, 233, 0.34);
}

.acdsp-section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin: 34px 0 18px;
}

.acdsp-section-title {
  font-size: 2rem;
  overflow-wrap: anywhere;
}

.acdsp-section-note {
  max-width: 48ch;
  margin: 8px 0 0;
  color: var(--acdsp-muted);
  line-height: 1.6;
}

.acdsp-sections {
  display: grid;
  gap: 28px;
}

.acdsp-bike-section {
  display: grid;
  gap: 16px;
  scroll-margin-top: 24px;
}

.acdsp-bike-section__head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: end;
  padding: 18px 20px;
  border: 1px solid var(--acdsp-line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.76);
}

.acdsp-bike-section__title {
  font-size: 1.65rem;
  overflow-wrap: anywhere;
}

.acdsp-bike-section__copy {
  max-width: 68ch;
  margin: 8px 0 0;
  color: var(--acdsp-muted);
  line-height: 1.6;
}

.acdsp-bike-section__count {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 12px;
  border-radius: 999px;
  color: var(--acdsp-teal);
  background: rgba(15, 118, 110, 0.08);
  font-size: 0.86rem;
  font-weight: 900;
  white-space: nowrap;
}

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

.acdsp-card {
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  border: 1px solid var(--acdsp-line);
  border-radius: 18px;
  background: var(--acdsp-surface);
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.07);
}

.acdsp-card__media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--acdsp-soft);
}

.acdsp-card__image,
.acdsp-card__fallback {
  display: block;
  width: 100%;
  height: 100%;
}

.acdsp-card__image {
  object-fit: cover;
}

.acdsp-card__fallback {
  display: grid;
  place-items: center;
  color: #ffffff;
  background:
    linear-gradient(135deg, rgba(14, 165, 233, 0.94), rgba(15, 118, 110, 0.94)),
    linear-gradient(45deg, rgba(255, 255, 255, 0.16) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.16) 50%, rgba(255, 255, 255, 0.16) 75%, transparent 75%);
  background-size: auto, 28px 28px;
}

.acdsp-card__fallback span {
  display: grid;
  place-items: center;
  width: 82px;
  height: 82px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 20px;
  background: rgba(7, 18, 31, 0.22);
  font-size: 1.5rem;
  font-weight: 900;
}

.acdsp-badge {
  position: absolute;
  left: 12px;
  top: 12px;
  max-width: calc(100% - 24px);
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  padding: 0 10px;
  border-radius: 999px;
  color: #07121f;
  background: #ffd166;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.14);
  font-size: 0.76rem;
  font-weight: 900;
}

.acdsp-card__body {
  display: grid;
  gap: 14px;
  padding: 18px;
}

.acdsp-meta {
  align-items: center;
  gap: 8px;
  color: var(--acdsp-muted);
  font-size: 0.86rem;
  font-weight: 800;
}

.acdsp-meta__section {
  color: var(--acdsp-teal);
}

.acdsp-card__title {
  font-size: 1.18rem;
  overflow-wrap: anywhere;
}

.acdsp-summary,
.acdsp-best-for,
.acdsp-highlights {
  margin: 0;
  color: var(--acdsp-text);
  font-size: 0.95rem;
  line-height: 1.58;
  overflow-wrap: anywhere;
}

.acdsp-price-row {
  align-items: center;
  gap: 9px;
}

.acdsp-price {
  color: var(--acdsp-ink);
  font-size: 1.8rem;
  font-weight: 900;
  line-height: 1;
}

.acdsp-was {
  color: var(--acdsp-muted);
  font-size: 0.94rem;
  font-weight: 800;
  text-decoration: line-through;
}

.acdsp-save {
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  padding: 0 9px;
  border-radius: 999px;
  color: var(--acdsp-green);
  background: rgba(20, 156, 99, 0.1);
  font-size: 0.82rem;
  font-weight: 900;
}

.acdsp-best-for strong {
  color: var(--acdsp-ink);
}

.acdsp-highlights {
  display: grid;
  gap: 8px;
  padding: 0;
  list-style: none;
}

.acdsp-highlights li {
  position: relative;
  padding-left: 18px;
}

.acdsp-highlights li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--acdsp-amber);
}

.acdsp-card__foot {
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
}

.acdsp-coupon {
  display: grid;
  gap: 3px;
  min-width: 0;
}

.acdsp-coupon span {
  color: var(--acdsp-muted);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.acdsp-coupon strong {
  width: max-content;
  max-width: 160px;
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  overflow: hidden;
  padding: 0 9px;
  border: 1px dashed rgba(14, 165, 233, 0.28);
  border-radius: 10px;
  color: var(--acdsp-ink);
  background: rgba(14, 165, 233, 0.06);
  font-size: 0.88rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.acdsp-note {
  color: var(--acdsp-muted);
  font-size: 0.84rem;
  font-weight: 700;
}

.acdsp-review {
  display: grid;
  gap: 6px;
  padding: 12px 14px;
  border: 1px solid rgba(14, 165, 233, 0.18);
  border-radius: 14px;
  background: rgba(14, 165, 233, 0.06);
}

.acdsp-review span {
  color: var(--acdsp-muted);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.acdsp-review a {
  width: max-content;
  max-width: 100%;
  color: var(--acdsp-teal);
  font-size: 0.94rem;
  font-weight: 900;
  line-height: 1.35;
  overflow-wrap: anywhere;
  text-decoration: none;
}

.acdsp-review a:hover,
.acdsp-review a:focus-visible {
  color: var(--acdsp-blue);
  outline: none;
  text-decoration: underline;
}

.acdsp-disclosure,
.acdsp-empty {
  padding: 20px;
}

.acdsp-disclosure {
  color: var(--acdsp-muted);
  font-size: 0.92rem;
  line-height: 1.65;
}

.acdsp-empty {
  text-align: center;
}

.acdsp-empty h2 {
  font-size: 1.4rem;
}

.acdsp-empty p {
  max-width: 54ch;
  margin: 10px auto 0;
  color: var(--acdsp-muted);
  line-height: 1.65;
}

@media (max-width: 1040px) {
  .acdsp-hero h1 {
    font-size: 3rem;
  }

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

@media (max-width: 760px) {
  .acdsp-page {
    padding-top: 16px;
  }

  .acdsp-shell {
    width: min(100% - 20px, 1180px);
  }

  .acdsp-hero {
    min-height: 560px;
    align-items: end;
    border-radius: 18px;
    background:
      linear-gradient(180deg, rgba(3, 10, 20, 0.2) 0%, rgba(3, 10, 20, 0.86) 58%, rgba(3, 10, 20, 0.96) 100%),
      var(--acdsp-hero-image);
    background-position: 64% center;
    background-size: cover;
  }

  .acdsp-hero__copy {
    padding: 26px;
  }

  .acdsp-hero h1 {
    font-size: 2.28rem;
  }

  .acdsp-hero__lead {
    font-size: 1rem;
  }

  .acdsp-toolbar,
  .acdsp-section-head,
  .acdsp-card__foot {
    grid-template-columns: 1fr;
    align-items: stretch;
  }

  .acdsp-toolbar,
  .acdsp-section-head {
    display: grid;
  }

  .acdsp-bike-section__head {
    grid-template-columns: 1fr;
    align-items: start;
    padding: 16px;
  }

  .acdsp-bike-section__count {
    width: max-content;
  }

  .acdsp-card__foot {
    flex-direction: column;
  }

  .acdsp-grid {
    grid-template-columns: 1fr;
  }

  .acdsp-button {
    width: 100%;
  }
}

@media (max-width: 440px) {
  .acdsp-hero__copy {
    padding: 22px;
  }

  .acdsp-hero h1 {
    font-size: 2rem;
  }

  .acdsp-stats li {
    width: 100%;
  }
}
