#index,
#index #page,
#index #wrapper,
#index .container-home,
#index #columns_inner,
#index #content-wrapper,
#index #main,
#index .dp-page-home {
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  padding: 0 !important;
  float: none !important;
}

#index #wrapper,
#index #page {
  background: var(--dp-ink) !important;
}

#index #breadcrumb_wrapper,
#index .breadcrumb {
  display: none !important;
}

.dp-home {
  overflow: hidden;
  background: var(--dp-ink);
  color: var(--dp-white);
  font-family: Inter, system-ui, sans-serif;
  font-size: 15px;
  line-height: 1.55;
}

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

.dp-home a {
  text-decoration: none !important;
}

.dp-home-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 12px;
  color: var(--dp-amber);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.dp-home-eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--dp-red);
}

.dp-home-section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 30px;
}

.dp-home-section-head > div,
.dp-home-section-head h2,
.dp-home-section-head p {
  text-align: left !important;
}

.dp-home-section-head h2,
.dp-home-hero h1,
.dp-home-story h2,
.dp-home-finder h2 {
  margin: 0;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 800;
  letter-spacing: -.02em;
  text-transform: uppercase;
}

.dp-home-section-head h2 {
  color: inherit;
  font-size: clamp(34px, 4.2vw, 56px);
  line-height: .98;
}

.dp-home-section-head p:not(.dp-home-eyebrow) {
  max-width: 540px;
  margin: 9px 0 0;
  color: var(--dp-muted);
}

.dp-home-text-link {
  color: var(--dp-amber) !important;
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
}

.dp-home-text-link:hover {
  color: var(--dp-white) !important;
}

.dp-button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 1px solid transparent;
  border-radius: var(--dp-radius);
  padding: 0 22px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  transition: background .18s ease, border-color .18s ease, color .18s ease, transform .18s ease;
}

.dp-button:hover {
  transform: translateY(-1px);
}

.dp-button-red {
  background: var(--dp-red);
  color: var(--dp-white) !important;
}

.dp-button-red:hover {
  background: var(--dp-red-dark);
}

.dp-button-dark {
  background: var(--dp-ink);
  color: var(--dp-white) !important;
}

.dp-button-dark:hover {
  background: #000;
}

.dp-button-outline {
  border-color: #4c4c55;
  background: rgba(10, 10, 12, .5);
  color: var(--dp-white) !important;
}

.dp-button-outline:hover {
  border-color: var(--dp-amber);
  color: var(--dp-amber) !important;
}

/* Hero */
.dp-home-hero {
  min-height: 690px;
  display: grid;
  position: relative;
  align-items: center;
  overflow: hidden;
  border-bottom: 1px solid var(--dp-line);
  isolation: isolate;
}

.dp-home-hero::before {
  content: "";
  position: absolute;
  z-index: -3;
  inset: 0;
  background-image: var(--dp-hero-image);
  background-position: center 46%;
  background-size: cover;
  background-repeat: no-repeat;
  filter: saturate(.96) contrast(1.03);
  transform: scale(1.015);
}

.dp-home-hero::after {
  content: "";
  position: absolute;
  z-index: -2;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 8, 10, .88) 0%, rgba(8, 8, 10, .62) 40%, rgba(8, 8, 10, .18) 72%, rgba(8, 8, 10, .07) 100%),
    linear-gradient(0deg, rgba(8, 8, 10, .52) 0%, transparent 46%);
}

.dp-home-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(330px, .58fr);
  align-items: end;
  gap: 70px;
  padding: 88px 0 82px;
}

.dp-home-hero-copy {
  max-width: 650px;
}

.dp-home-hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 24px;
  border: 1px solid rgba(244, 182, 61, .45);
  padding: 7px 10px;
  background: rgba(10, 10, 12, .55);
  color: var(--dp-amber);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.dp-home-hero-kicker span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #67d27c;
  box-shadow: 0 0 0 4px rgba(103, 210, 124, .13);
}

.dp-home-hero h1 {
  max-width: 650px;
  color: var(--dp-white);
  font-size: clamp(52px, 6.1vw, 88px);
  line-height: .88;
  text-wrap: balance;
}

.dp-home-hero h1 em {
  color: var(--dp-red);
  font-style: normal;
}

.dp-home-hero-copy > p {
  max-width: 570px;
  margin: 27px 0 31px;
  color: #d0d0d5;
  font-size: 16px;
}

.dp-home-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.dp-home-proof {
  align-self: end;
  border: 1px solid rgba(255, 255, 255, .14);
  border-top: 3px solid var(--dp-red);
  padding: 24px;
  background: rgba(10, 10, 12, .79);
  box-shadow: var(--dp-shadow);
  backdrop-filter: blur(10px);
}

.dp-home-proof > p {
  margin: 0 0 18px;
  color: var(--dp-muted);
  font-size: 12px;
}

.dp-home-proof-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--dp-line);
}

.dp-home-proof-grid div {
  min-height: 92px;
  padding: 15px;
  background: var(--dp-ink-2);
}

.dp-home-proof-grid strong {
  display: block;
  color: var(--dp-white);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 29px;
  line-height: 1;
}

.dp-home-proof-grid span {
  color: var(--dp-muted);
  font-size: 10px;
  line-height: 1.3;
  text-transform: uppercase;
}

/* Universal parts picker */
.dp-home-finder-wrap {
  position: relative;
  z-index: 3;
  margin-top: -54px;
}

.dp-home-finder {
  position: relative;
  overflow: hidden;
  border: 1px solid #34343b;
  border-top: 3px solid var(--dp-red);
  padding: 34px;
  background:
    radial-gradient(circle at 88% 0, rgba(226, 56, 50, .17), transparent 28%),
    linear-gradient(135deg, #17171d 0%, #101014 68%);
  color: var(--dp-white);
  box-shadow: 0 28px 70px rgba(0, 0, 0, .42);
}

.dp-home-finder::before {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  opacity: .17;
  background-image:
    linear-gradient(rgba(255, 255, 255, .06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .06) 1px, transparent 1px);
  background-size: 32px 32px;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 42%, #000);
  mask-image: linear-gradient(90deg, transparent, #000 42%, #000);
}

.dp-home-finder > * {
  position: relative;
  z-index: 1;
}

.dp-home-finder-top {
  display: flex;
  gap: 28px;
  align-items: flex-start;
  justify-content: space-between;
}

.dp-home-finder-copy {
  max-width: 720px;
}

.dp-home-finder .dp-home-finder-kicker {
  display: flex;
  gap: 10px;
  align-items: center;
  margin: 0 0 9px;
  color: var(--dp-amber);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.dp-home-finder-kicker span {
  width: 30px;
  height: 2px;
  display: block;
  background: var(--dp-red);
}

.dp-home-finder h2 {
  width: 100%;
  margin: 0 !important;
  padding: 0 !important;
  color: var(--dp-white);
  font-size: clamp(37px, 4vw, 51px);
  line-height: .95;
  text-align: left !important;
}

.dp-home-finder-copy > p:last-child {
  max-width: 660px;
  margin: 11px 0 0;
  color: #a9a9b1;
  font-size: 14px;
  line-height: 1.55;
}

.dp-home-finder-status {
  display: inline-flex;
  flex: 0 0 auto;
  gap: 8px;
  align-items: center;
  border: 1px solid #383840;
  padding: 8px 11px;
  color: #bdbdc4;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.dp-home-finder-status i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--dp-amber);
  box-shadow: 0 0 0 4px rgba(255, 183, 43, .12);
}

.dp-home-finder-status.is-live i {
  background: #55d67a;
  box-shadow: 0 0 0 4px rgba(85, 214, 122, .12);
}

.dp-home-finder-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr)) minmax(210px, .75fr);
  gap: 10px;
  margin-top: 27px;
}

.dp-home-picker-field {
  min-width: 0;
  border: 1px solid #33333b;
  background: rgba(27, 27, 33, .92);
  transition: border-color .2s ease, background-color .2s ease;
}

.dp-home-picker-field.is-current {
  border-color: #565661;
  background: #1d1d23;
}

.dp-home-picker-label {
  display: flex;
  gap: 9px;
  align-items: center;
  border-bottom: 1px solid #303037;
  padding: 9px 13px 8px;
  color: #8e8e97;
  font-size: 9px;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.dp-home-picker-label span {
  color: var(--dp-red);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .04em;
}

.dp-home-picker-label strong {
  color: #cfcfd4;
  font-weight: 800;
}

.dp-home-picker-value {
  min-height: 49px;
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  padding: 0 13px;
  color: #e4e4e7;
  font-size: 12px;
  font-weight: 600;
}

.dp-home-picker-field:not(.is-current) .dp-home-picker-value {
  color: #71717a;
}

.dp-home-picker-value select {
  min-width: 0;
  width: 100%;
  height: 49px;
  flex: 1 1 auto;
  appearance: none;
  -webkit-appearance: none;
  border: 0;
  outline: 0;
  padding: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  cursor: pointer;
}

.dp-home-picker-value select:disabled {
  color: #71717a;
  cursor: not-allowed;
}

.dp-home-picker-value select option {
  background: #1b1b21;
  color: #f5f5f7;
}

.dp-home-picker-value svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
  pointer-events: none;
}

.dp-home-picker-field.is-ready {
  border-color: #45454e;
}

.dp-home-picker-field.is-ready .dp-home-picker-value {
  color: #e4e4e7;
}

.dp-home-picker-action {
  min-height: 78px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border: 0;
  border-radius: 0;
  padding: 12px 20px;
  background: var(--dp-red);
  color: var(--dp-white);
  text-align: left;
  opacity: .45;
  cursor: not-allowed;
  transition: opacity .2s ease, transform .2s ease, box-shadow .2s ease;
}

.dp-home-picker-action:not(:disabled) {
  opacity: 1;
  cursor: pointer;
  box-shadow: 0 12px 32px rgba(226, 56, 50, .24);
}

.dp-home-picker-action:not(:disabled):hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(226, 56, 50, .32);
}

.dp-home-picker-action small {
  display: block;
  margin-bottom: 4px;
  color: rgba(255, 255, 255, .66);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.dp-home-picker-action span {
  display: flex;
  gap: 14px;
  align-items: center;
  justify-content: space-between;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 19px;
  font-weight: 800;
  letter-spacing: .025em;
  text-transform: uppercase;
}

.dp-home-picker-action b {
  font-family: sans-serif;
  font-size: 20px;
  font-weight: 400;
}

.dp-home-finder .dp-home-finder-feedback {
  margin: 14px 0 0;
  border-left: 3px solid #55d67a;
  padding: 10px 12px;
  background: rgba(85, 214, 122, .08);
  color: #d5f6de;
  font-size: 11px;
  line-height: 1.45;
}

.dp-home-finder .dp-home-finder-note {
  display: flex;
  gap: 8px;
  align-items: center;
  margin: 15px 0 0;
  color: #777780;
  font-size: 10px;
  letter-spacing: .025em;
}

.dp-home-finder-note svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: var(--dp-amber);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.4;
}

/* Benefits */
.dp-home-benefits {
  padding: 72px 0 34px;
}

.dp-home-benefit-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--dp-line);
}

.dp-home-benefit {
  min-height: 122px;
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 14px;
  align-content: center;
  border-right: 1px solid var(--dp-line);
  padding: 22px;
  background: var(--dp-ink-2);
}

.dp-home-benefit:last-child {
  border-right: 0;
}

.dp-home-benefit svg {
  width: 34px !important;
  height: 34px !important;
  color: var(--dp-amber);
}

.dp-home-benefit strong {
  display: block;
  margin-bottom: 3px;
  color: var(--dp-white);
  font-size: 13px;
}

.dp-home-benefit span {
  display: block;
  color: var(--dp-muted);
  font-size: 11px;
}

/* Chassis */
.dp-home-chassis {
  padding: 72px 0 88px;
}

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

.dp-home-chassis-card {
  min-height: 240px;
  display: flex;
  position: relative;
  isolation: isolate;
  grid-column: auto;
  flex-direction: column;
  justify-content: end;
  overflow: hidden;
  border: 1px solid var(--dp-line);
  padding: 21px;
  background: var(--dp-ink-3);
  color: var(--dp-white) !important;
  transition: transform .2s ease, border-color .2s ease;
}

.dp-home-chassis-image {
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 0;
  inset: 0;
  object-fit: cover;
  filter: saturate(.82) contrast(1.04);
  transition: transform .35s ease, filter .35s ease;
}

.dp-home-chassis-card::before {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8, 8, 10, .02) 18%, rgba(8, 8, 10, .28) 52%, rgba(8, 8, 10, .96) 100%),
    linear-gradient(90deg, rgba(8, 8, 10, .28), transparent 52%);
  pointer-events: none;
}

.dp-home-chassis-card::after {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .025);
  pointer-events: none;
}

.dp-home-chassis-card:hover {
  z-index: 2;
  border-color: var(--dp-red);
  transform: translateY(-4px);
}

.dp-home-chassis-card:hover .dp-home-chassis-image {
  transform: scale(1.035);
  filter: saturate(1) contrast(1.06);
}

.dp-home-chassis-card small,
.dp-home-chassis-card strong,
.dp-home-chassis-card span {
  position: relative;
  z-index: 2;
  text-shadow: 0 2px 12px rgba(0, 0, 0, .8);
}

.dp-home-chassis-card small {
  color: var(--dp-amber);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.dp-home-chassis-card strong {
  color: var(--dp-white);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 29px;
  line-height: 1.05;
  text-transform: uppercase;
}

.dp-home-chassis-card span {
  color: #c5c5ca;
  font-size: 11px;
}

/* Product feed */
.dp-home-products {
  border-block: 1px solid var(--dp-line);
  padding: 68px 0 76px;
  background: var(--dp-ink-2);
}

.dp-home-product-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
}

.dp-home-product-card {
  min-width: 0;
  display: flex;
  position: relative;
  flex-direction: column;
  border: 1px solid var(--dp-line);
  background: var(--dp-ink-3);
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.dp-home-product-card:hover {
  border-color: #494952;
  transform: translateY(-4px);
  box-shadow: 0 22px 45px rgba(0, 0, 0, .28);
}

.dp-home-product-image {
  aspect-ratio: 1 / 1;
  display: block;
  position: relative;
  overflow: hidden;
  background: var(--dp-white);
}

.dp-home-product-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform .3s ease;
}

.dp-home-product-card:hover .dp-home-product-image img {
  transform: scale(1.025);
}

.dp-home-product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  border-radius: 2px;
  padding: 5px 8px;
  background: var(--dp-red);
  color: var(--dp-white);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.dp-home-product-content {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 14px;
}

.dp-home-product-brand {
  color: var(--dp-amber);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.dp-home-product-title {
  min-height: 48px;
  margin: 6px 0 10px;
  color: var(--dp-white) !important;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.42;
}

.dp-home-fitment {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin-bottom: 11px;
}

.dp-home-fitment span {
  border: 1px solid #36363e;
  padding: 2px 5px;
  color: #bebec4;
  font-size: 8px;
}

.dp-home-stock {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #67d27c;
  font-size: 9px;
  font-weight: 700;
}

.dp-home-stock.is-order {
  color: var(--dp-amber);
}

.dp-home-stock::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
}

.dp-home-product-bottom {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 8px;
  margin-top: auto;
  padding-top: 13px;
}

.dp-home-price {
  color: var(--dp-white);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 22px;
  font-weight: 800;
  line-height: 1;
}

.dp-home-product-bottom .dp-button {
  min-height: 35px;
  padding: 0 10px;
  font-size: 9px;
}

/* Story */
.dp-home-story {
  padding: 94px 0;
}

.dp-home-story-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  min-height: 560px;
  border: 1px solid var(--dp-line);
}

.dp-home-story-media {
  min-height: 460px;
  position: relative;
  overflow: hidden;
}

.dp-home-story-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.dp-home-story-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 60%, rgba(10, 10, 12, .5));
}

.dp-home-story-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(36px, 6vw, 76px);
  background: var(--dp-ink-3);
}

.dp-home-story h2 {
  color: var(--dp-white);
  font-size: clamp(42px, 5vw, 68px);
  line-height: .94;
}

.dp-home-story-copy > p:not(.dp-home-eyebrow) {
  margin: 20px 0 28px;
  color: var(--dp-muted);
}

.dp-home-story-copy ul {
  display: grid;
  gap: 11px;
  margin: 0 0 32px;
  padding: 0;
  list-style: none;
}

.dp-home-story-copy li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #dddddf;
  font-size: 12px;
}

.dp-home-story-copy li::before {
  content: "";
  width: 8px;
  height: 8px;
  flex: 0 0 8px;
  background: var(--dp-red);
  transform: rotate(45deg);
}

.dp-home-story-copy .dp-button {
  align-self: flex-start;
}

/* Brands */
.dp-home-brands {
  border-block: 1px solid var(--dp-line);
  padding: 78px 0 86px;
  background: var(--dp-paper);
  color: var(--dp-ink);
}

.dp-home-brands .dp-home-eyebrow {
  color: var(--dp-red-dark);
}

.dp-home-brands .dp-home-section-head p:not(.dp-home-eyebrow) {
  color: #66666d;
}

.dp-home-brands .dp-home-text-link {
  color: var(--dp-red-dark) !important;
}

.dp-home-brand-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.dp-home-brand-card {
  min-height: 108px;
  display: grid;
  place-items: center;
  border: 1px solid #d8d6d1;
  padding: 18px;
  background: var(--dp-white);
  transition: transform .18s ease, border-color .18s ease;
}

.dp-home-brand-card:hover {
  border-color: var(--dp-red);
  transform: translateY(-2px);
}

.dp-home-brand-card img {
  max-width: 78%;
  max-height: 56px;
  filter: grayscale(1);
  opacity: .69;
  transition: filter .18s ease, opacity .18s ease;
}

.dp-home-brand-card:hover img {
  filter: none;
  opacity: 1;
}

/* Instagram */
.dp-home-instagram {
  padding: 82px 0 94px;
  background: var(--dp-ink);
}

.dp-home-instagram-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.dp-home-instagram-link .dp-instagram-mark {
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  transition: transform .2s ease;
}

.dp-home-instagram-link:hover .dp-instagram-mark {
  transform: rotate(-5deg) scale(1.08);
}

.dp-home-instagram-frame {
  min-height: 560px;
  overflow: hidden;
  border: 1px solid var(--dp-line);
  border-radius: var(--dp-radius);
  background: var(--dp-white);
}

.dp-home-instagram-frame iframe {
  width: 100%;
  height: 560px;
  display: block;
  border: 0;
  background: var(--dp-white);
}

@media (max-width: 1120px) {
  .dp-home-hero-grid {
    grid-template-columns: 1fr minmax(290px, .5fr);
    gap: 35px;
  }

  .dp-home-finder-form {
    grid-template-columns: 1fr 1fr;
  }

  .dp-home-picker-action {
    grid-column: 1 / -1;
  }

  .dp-home-benefit-grid {
    grid-template-columns: 1fr 1fr;
  }

  .dp-home-benefit:nth-child(2) {
    border-right: 0;
  }

  .dp-home-benefit:nth-child(-n+2) {
    border-bottom: 1px solid var(--dp-line);
  }

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

@media (max-width: 820px) {
  .dp-home-hero {
    min-height: auto;
  }

  .dp-home-hero::before {
    background-position: 62% center;
  }

  .dp-home-hero::after {
    background:
      linear-gradient(90deg, rgba(8, 8, 10, .88), rgba(8, 8, 10, .46)),
      linear-gradient(0deg, rgba(8, 8, 10, .62), transparent 64%);
  }

  .dp-home-hero-grid {
    grid-template-columns: 1fr;
    padding: 78px 0 76px;
  }

  .dp-home-hero-copy {
    padding-top: 28px;
  }

  .dp-home-proof {
    max-width: 460px;
  }

  .dp-home-finder-wrap {
    margin-top: 0;
  }

  .dp-home-finder {
    margin-inline: -16px;
    border-right: 0;
    border-left: 0;
    padding: 28px 16px;
  }

  .dp-home-finder-top {
    flex-direction: column;
  }

  .dp-home-finder-status {
    align-self: flex-start;
  }

  .dp-home-products {
    padding: 62px 0 68px;
  }

  .dp-home-product-grid {
    grid-auto-columns: clamp(220px, 34vw, 270px);
    grid-auto-flow: column;
    grid-template-columns: none;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-padding-inline: 16px;
    scroll-snap-type: x proximity;
    scrollbar-width: thin;
    padding-bottom: 12px;
  }

  .dp-home-product-card {
    scroll-snap-align: start;
  }

  .dp-home-chassis-grid {
    grid-template-columns: 1fr 1fr;
  }

  .dp-home-chassis-card,
  .dp-home-chassis-card:nth-child(1),
  .dp-home-chassis-card:nth-child(6) {
    grid-column: auto;
  }

  .dp-home-story-grid {
    grid-template-columns: 1fr;
  }

  .dp-home-story-media {
    min-height: 380px;
  }

  .dp-home-story-media::after {
    background: linear-gradient(0deg, rgba(10, 10, 12, .45), transparent 50%);
  }

  .dp-home-brand-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 560px) {
  .dp-home-hero h1 {
    font-size: clamp(42px, 13vw, 64px);
    line-height: .92;
  }

  .dp-home-actions .dp-button {
    width: 100%;
  }

  .dp-home-finder-form {
    grid-template-columns: 1fr;
  }

  .dp-home-picker-action {
    grid-column: auto;
  }

  .dp-home-benefit-grid {
    grid-template-columns: 1fr;
  }

  .dp-home-benefit {
    border-right: 0;
    border-bottom: 1px solid var(--dp-line);
  }

  .dp-home-benefit:last-child {
    border-bottom: 0;
  }

  .dp-home-section-head {
    align-items: start;
    flex-direction: column;
  }

  .dp-home-chassis-grid {
    grid-template-columns: 1fr;
  }

  .dp-home-chassis-card {
    min-height: 215px;
  }

  .dp-home-instagram {
    padding: 66px 0 74px;
  }

  .dp-home-instagram-frame,
  .dp-home-instagram-frame iframe {
    min-height: 480px;
    height: 480px;
  }

  .dp-home-products {
    padding: 52px 0 58px;
  }

  .dp-home-product-grid {
    grid-auto-columns: clamp(230px, 68vw, 280px);
    gap: 10px;
    scroll-snap-type: x proximity;
    padding-bottom: 10px;
  }

  .dp-home-product-content {
    padding: 12px;
  }

  .dp-home-product-title {
    min-height: 44px;
    margin: 5px 0 8px;
    font-size: 11px;
  }

  .dp-home-product-bottom {
    padding-top: 11px;
  }

  .dp-home-price {
    font-size: 20px;
  }

  .dp-home-product-bottom .dp-button {
    min-height: 32px;
    padding: 0 8px;
    font-size: 8px;
  }

  .dp-home-story {
    padding: 70px 0;
  }

  .dp-home-story-media {
    min-height: 300px;
  }

  .dp-home-story-copy {
    padding: 34px 22px;
  }

  .dp-home-brand-card {
    min-height: 88px;
  }
}
