/* Cairo loads from templates/store/base.html — single UI font site-wide */
/* DeliverTire store shell + home sections (.dt-store on all pages; .dt-homepage for home layout tweaks) */
.dt-store {
  --dt-primary: #ed1c24;
  --dt-text: #1a1a1a;
  --dt-muted: #848688;
  --dt-border: #e8e8ea;
  --dt-surface: #ffffff;
  --dt-radius: 12px;
  --dt-radius-sm: 8px;
  --dt-font: "Cairo", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-family: var(--dt-font);
  color: var(--dt-text);
  background: var(--dt-surface);
}

.dt-nav-links a.dt-nav-active {
  color: var(--dt-primary);
}

.dt-homepage #ptContent {
  padding: 0;
  max-width: none;
}

.dt-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;
}

/* ——— Top bar (Figma: Website Navbar — 1440 / 92px, #E2EBF6 border, pill search) ——— */
.dt-topbar {
  position: sticky;
  top: 0;
  z-index: 200;
  box-sizing: border-box;
  background: #ffffff;
  border-bottom: 1px solid #e2ebf6;
}

.dt-topbar-inner {
  box-sizing: border-box;
  max-width: 1440px;
  margin: 0 auto;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: nowrap;
  min-height: 72px;
}

@media (min-width: 900px) {
  .dt-topbar-inner {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 24px clamp(24px, 5vw, 80px);
    gap: clamp(24px, 5vw, 83px);
    min-height: 92px;
  }
}

.dt-topbar-brand {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.dt-topbar .brand-logo__img {
  width: 114px;
  height: 40px;
  object-fit: contain;
  display: block;
}

/* Mobile: open overlay search */
.dt-header-search-mobile {
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  margin-left: auto;
  border: 1px solid #eff3f8;
  border-radius: 50%;
  background: #f8fafc;
  color: #1e293b;
  cursor: pointer;
  flex-shrink: 0;
}

.dt-header-search-mobile:hover {
  background: #f1f5f9;
}

@media (min-width: 900px) {
  .dt-header-search-mobile {
    display: none;
  }
}

.dt-topbar-flex-gap {
  display: none;
}

@media (max-width: 899px) {
  .dt-topbar-flex-gap {
    display: block;
    flex: 1 1 auto;
    min-width: 4px;
  }
}

.dt-header-search {
  box-sizing: border-box;
  flex: 1 1 200px;
  min-width: 0;
  display: none;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 8px 8px 8px 16px;
  gap: 12px;
  height: 44px;
  max-width: 480px;
  border: 1px solid #e2ebf6;
  border-radius: 999px;
  background: #f8fafc;
}

@media (min-width: 900px) {
  .dt-header-search {
    display: flex;
    flex: 0 1 480px;
    width: 100%;
  }
}

.dt-header-search input {
  flex: 1;
  min-width: 0;
  border: 0;
  background: transparent;
  padding: 0;
  margin: 0;
  font-family: var(--dt-font);
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 18px;
  outline: none;
  color: #1e293b;
  text-align: start;
}

.dt-header-search input::placeholder {
  color: #abb9cc;
}

.dt-header-search:focus-within {
  border-color: #d51920;
  box-shadow: 0 0 0 3px rgba(213, 25, 32, 0.12);
}

.dt-header-search .dt-header-search-submit {
  box-sizing: border-box;
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  padding: 0;
  margin: 0;
  border: 0;
  border-radius: 9999px;
  background: #d51920;
  color: #ffffff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.15s;
}

.dt-header-search .dt-header-search-submit:hover {
  opacity: 0.92;
}

.dt-nav-links {
  display: none;
  align-items: center;
  gap: 32px;
  flex-shrink: 0;
}

@media (min-width: 900px) {
  .dt-nav-links {
    display: flex;
  }
}

.dt-nav-links a {
  font-family: var(--dt-font);
  font-size: 14px;
  font-weight: 600;
  line-height: 18px;
  color: #1e293b;
  text-decoration: none;
  white-space: nowrap;
}

.dt-nav-links a:hover {
  color: var(--dt-primary);
}

.dt-topbar-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

@media (min-width: 900px) {
  .dt-topbar-actions {
    gap: 10px;
  }
}

.dt-wishlist-mobile {
  position: relative;
  box-sizing: border-box;
  display: flex;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #f8fafc;
  color: #1e293b;
  border: 1px solid #eff3f8;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  text-decoration: none;
}

.dt-wishlist-mobile:hover {
  background: #f1f5f9;
}

.dt-wishlist-mobile .cart-badge-pill {
  top: -2px;
  right: -2px;
  min-width: 16px;
  height: 16px;
  padding: 0 4px;
  font-size: 10px;
  line-height: 16px;
  background: #d51920;
  color: #fff;
}

.dt-icon-btn {
  width: 40px;
  height: 40px;
  border: 0;
  background: transparent;
  border-radius: var(--dt-radius-sm);
  color: var(--dt-text);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.dt-icon-btn:hover {
  background: #f5f5f5;
}

/* Cart + account row (Figma: 32px circles, #F8FAFC / #EFF3F8; mobile cart stays pill) */
.dt-topbar-actions-end {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

.dt-store .dt-cart-trigger.cart-trigger-pill {
  position: relative;
  box-sizing: border-box;
  width: 32px;
  height: 32px;
  min-width: 32px;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  border: 1px solid #eff3f8;
  border-radius: 50%;
  background: #f8fafc;
  color: #1e293b;
  box-shadow: none;
  font-size: 0;
}

.dt-store .dt-cart-trigger.cart-trigger-pill:hover {
  filter: none;
  background: #f1f5f9;
  box-shadow: none;
}

.dt-store .dt-cart-trigger .cart-badge-pill {
  top: -2px;
  right: -2px;
  min-width: 16px;
  height: 16px;
  padding: 0 4px;
  font-size: 10px;
  line-height: 16px;
  background: #d51920;
  color: #fff;
}

/* --- nav mini-cart hover preview ---
   Reuses the exact same #cartBody markup (_renderCartItem in base.html renders
   into both), so line items behave identically (qty +/-, remove-at-qty-1) --
   but that markup was built for the dark slide-out panel, so its white-on-
   transparent colors are overridden below, scoped to this dropdown only; the
   slide-out modal's own .cart-item/.qty-btn/etc. rules are untouched. */
.cart-trigger-wrap {
  position: relative;
}
.cart-mini-dropdown {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  width: 360px;
  max-width: calc(100vw - 24px);
  background: #fff;
  border: 1px solid #e2ebf6;
  border-radius: 16px;
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.14);
  z-index: 250;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 160ms ease-out, transform 160ms ease-out, visibility 0s linear 160ms;
  display: flex;
  flex-direction: column;
  max-height: 70vh;
}
.cart-mini-dropdown.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition: opacity 160ms ease-out, transform 160ms ease-out;
}
@media (prefers-reduced-motion: reduce) {
  .cart-mini-dropdown {
    transition: opacity 1ms linear, visibility 0s linear;
  }
}
@media (max-width: 899px) {
  /* No hover on touch -- keep the markup (harmless) but never show it, so a
     stray tap sequence can't leave it stuck open with nothing to close it. */
  .cart-mini-dropdown { display: none; }
}
.cart-mini-header {
  font-size: 16px;
  font-weight: 700;
  color: #1e293b;
  padding: 16px 20px;
  border-bottom: 1px solid #e2ebf6;
  flex-shrink: 0;
}
.cart-mini-body {
  overflow-y: auto;
  padding: 4px 20px;
  min-height: 0;
}
.cart-mini-body .cart-item { border-bottom-color: #e2ebf6; }
.cart-mini-body .cart-item-name { color: #1e293b; }
.cart-mini-body .cart-item-meta { color: #64748b; }
.cart-mini-body .cart-item-price { color: #1e293b; }
.cart-mini-body .cart-item-img-placeholder { color: #94a3b8; background: #f1f5f9; }
.cart-mini-body .cart-item-qty { background: #f1f5f9; border-color: #e2ebf6; }
.cart-mini-body .qty-btn { color: #1e293b; }
.cart-mini-body .qty-btn:hover { background: rgba(15, 23, 42, 0.06); }
.cart-mini-body .qty-value { color: #1e293b; }
.cart-mini-empty {
  text-align: center;
  padding: 32px 12px;
  color: #64748b;
}
.cart-mini-empty .cart-empty-icon { margin: 0 auto 12px; color: #cbd5e1; }
.cart-mini-empty p { font-size: 14px; font-weight: 600; color: #1e293b; margin: 0 0 14px; }
.cart-mini-empty-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #d51920;
  color: #fff;
  border-radius: 999px;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
}
.cart-mini-footer {
  flex-shrink: 0;
  border-top: 1px solid #e2ebf6;
  padding: 14px 20px 18px;
}
.cart-mini-subtotal-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  color: #64748b;
  margin-bottom: 12px;
}
.cart-mini-subtotal-row span:last-child {
  font-size: 16px;
  font-weight: 700;
  color: #1e293b;
}
.cart-mini-actions {
  display: flex;
  gap: 10px;
}
.cart-mini-btn {
  flex: 1 1 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  padding: 10px 12px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  text-align: center;
}
.cart-mini-btn-secondary {
  background: #fff;
  border: 1px solid #cbd5e1;
  color: #1e293b;
}
.cart-mini-btn-secondary:hover { background: #f1f5f9; }
.cart-mini-btn-primary {
  background: #d51920;
  border: 1px solid #d51920;
  color: #fff;
}
.cart-mini-btn-primary:hover { filter: brightness(0.95); }

/* --- nav wishlist hover preview --- same pattern as the cart's mini
   dropdown above: hover-intent open/close, plain <a> trigger so touch just
   navigates to /wishlist/. Reuses .cart-mini-header/.cart-mini-body for the
   chrome and the storefront's own .wishlist-item/.wishlist-empty-* rules
   (store-styles.css) for content, since #wishlistMiniBody carries the same
   .wishlist-body class as the full wishlist page. */
.wishlist-trigger-wrap {
  position: relative;
}
.wishlist-mini-dropdown {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  width: 360px;
  max-width: calc(100vw - 24px);
  background: #fff;
  border: 1px solid #e2ebf6;
  border-radius: 16px;
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.14);
  z-index: 250;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 160ms ease-out, transform 160ms ease-out, visibility 0s linear 160ms;
  display: flex;
  flex-direction: column;
  max-height: 70vh;
}
.wishlist-mini-dropdown.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition: opacity 160ms ease-out, transform 160ms ease-out;
}
@media (prefers-reduced-motion: reduce) {
  .wishlist-mini-dropdown {
    transition: opacity 1ms linear, visibility 0s linear;
  }
}
@media (max-width: 899px) {
  .wishlist-mini-dropdown { display: none; }
}
.wishlist-mini-dropdown .wishlist-item { padding: 12px 0; }

@media (min-width: 900px) {
  .dt-store .dt-cart-trigger .dt-cart-total-label {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
  }
}

@media (max-width: 899px) {
  .dt-store .dt-cart-trigger.cart-trigger-pill {
    width: auto;
    min-width: auto;
    height: 42px;
    padding: 0 12px 0 10px;
    border-radius: 999px;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    background: var(--dt-primary);
    color: #fff;
    border: 0;
  }

  .dt-store .dt-cart-trigger .dt-cart-total-label {
    position: static;
    width: auto;
    height: auto;
    margin: 0;
    clip: auto;
    overflow: visible;
    font-size: 13px;
  }

  .dt-store .dt-cart-trigger .cart-badge-pill {
    top: 2px;
    right: 2px;
    background: #fff;
    color: var(--dt-primary);
  }
}

.dt-topbar-divider {
  display: none;
  width: 1px;
  height: 24px;
  background: #eff3f8;
  flex-shrink: 0;
}

@media (min-width: 900px) {
  .dt-topbar-divider {
    display: block;
  }
}

.dt-account-chip {
  display: none;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: #1e293b;
  padding: 0;
  border-radius: 999px;
  transition: opacity 0.15s;
}

.dt-account-chip:hover {
  opacity: 0.85;
}

@media (min-width: 900px) {
  .dt-account-chip {
    display: inline-flex;
  }
}

.dt-account-icon-circle {
  box-sizing: border-box;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #f8fafc;
  border: 1px solid #eff3f8;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1e293b;
  flex-shrink: 0;
}

.dt-account-label {
  font-family: var(--dt-font);
  font-size: 14px;
  font-weight: 600;
  line-height: 18px;
  color: #1e293b;
}

.dt-store .dt-nav-expand.nav-expand-btn {
  box-sizing: border-box;
  display: flex;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #f8fafc;
  color: #1e293b;
  border: 1px solid #eff3f8;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.dt-store .dt-nav-expand.nav-expand-btn:hover {
  background: #f1f5f9;
}

@media (min-width: 900px) {
  .dt-store .dt-nav-expand.nav-expand-btn {
    display: none !important;
  }
}

.dt-store .header-nav-link.dt-overlay-wishlist-btn {
  justify-content: flex-start;
  width: 100%;
  border: 0;
  background: transparent;
  font: inherit;
  text-align: left;
  cursor: pointer;
}

@media (max-width: 899px) {
  .dt-topbar-inner {
    flex-wrap: nowrap;
  }

  .dt-topbar-actions {
    gap: 6px;
  }

  .dt-topbar-actions-end {
    gap: 8px;
  }
}

/* ——— Hero ——— */
/* ——— Hero: full-bg rounded card w/ overlaid finder (Figma) ——— */
.dt-hero {
  box-sizing: border-box;
  width: calc(100% - 48px);
  max-width: 1392px;
  margin: 32px auto 0;
  padding: 56px 24px;
  border-radius: 24px;
  display: flex;
  align-items: center;
  min-height: clamp(480px, 46vw, 693px);
  background:
    linear-gradient(0deg, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
    #1a1a1a url("../assets/hero-bg.53fb4b74b591.jpg") center / cover no-repeat;
}

@media (min-width: 900px) {
  .dt-hero {
    padding: 96px clamp(24px, 4vw, 96px);
  }
}

.dt-hero-inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 40px;
  width: 100%;
  max-width: 828px;
}

.dt-hero-text {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 0 8px;
}

.dt-hero h1 {
  margin: 0;
  font-size: clamp(2.5rem, 5.2vw, 52px);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: #f8fafc;
}

.dt-hero .dt-hero-accent {
  color: #f7a4a8;
  font-style: italic;
}

.dt-accent {
  color: var(--dt-primary);
}

.dt-hero-lead {
  margin: 0;
  font-size: 18px;
  font-weight: 400;
  line-height: 23px;
  color: #eff3f8;
  max-width: 362px;
}

.dt-finder-card {
  box-sizing: border-box;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
  background: #ffffff;
  border: 1px solid #e2ebf6;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.16);
}

.dt-finder-head {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 4px;
  font-size: 18px;
  line-height: 23px;
  color: #475569;
}

.dt-finder-head-line {
  width: 24px;
  height: 0;
  border-top: 2px solid #d51920;
  flex-shrink: 0;
}

.dt-finder-tabs {
  display: flex;
  align-items: center;
  gap: clamp(20px, 4vw, 56px);
  border-bottom: 1px solid #e2ebf6;
  overflow-x: auto;
}

.dt-finder-tab {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 4px 8px;
  border: 0;
  border-bottom: 2px solid transparent;
  background: transparent;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  line-height: 18px;
  color: #abb9cc;
  white-space: nowrap;
  transition:
    color 0.15s,
    border-color 0.15s;
}

.dt-finder-tab svg {
  color: #abb9cc;
  flex-shrink: 0;
  transition: color 0.15s;
}

.dt-finder-tab.is-active {
  color: #d51920;
  border-bottom-color: #d51920;
}

.dt-finder-tab.is-active svg {
  color: #d51920;
}

.dt-finder-card form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.dt-finder-body {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.dt-finder-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

@media (max-width: 767px) {
  .dt-finder-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 400px) {
  .dt-finder-grid {
    grid-template-columns: 1fr;
  }
}

.dt-finder-field {
  position: relative;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-width: 0;
  height: 64px;
  padding: 12px 16px;
  background: #f8fafc;
  border: 1px solid #e2ebf6;
  border-radius: 12px;
  cursor: pointer;
}

.dt-finder-field-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
  flex: 1;
}

.dt-finder-field-label {
  font-size: 14px;
  font-weight: 400;
  line-height: 18px;
  color: #64748b;
}

.dt-finder-field-value {
  font-family: var(--dt-font);
  font-size: 14px;
  font-weight: 700;
  line-height: 18px;
  color: #334155;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Native select overlays the WHOLE pill so a click anywhere opens it. */
.dt-finder-field-select {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: transparent;
  opacity: 0;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  outline: none;
  z-index: 1;
}

.dt-finder-field-select:focus-visible + .dt-finder-field-chevron,
.dt-finder-field:focus-within {
  outline: none;
}

.dt-finder-field-chevron {
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  background: #ffffff;
  border: 1px solid #eff3f8;
  border-radius: 999px;
}

.dt-finder-submit {
  width: 100%;
  border: 0;
  border-radius: 12px;
  background: #d51920;
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  line-height: 18px;
  padding: 13px 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: opacity 0.15s;
}

.dt-finder-submit:hover {
  opacity: 0.95;
}

/* ——— Value props ——— */
/* ═══════════ Shared accent + section head ═══════════ */
.dt-italic-accent {
  color: var(--dt-primary);
  font-style: italic;
  font-weight: 800;
}

.dt-section-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 28px;
}

.dt-section-head h2 {
  margin: 0;
  font-size: 36px;
  line-height: 45px;
  font-weight: 700;
  color: #1e293b;
}

.dt-section-sub {
  margin: 6px 0 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
  color: #64748b;
}

.dt-view-all-pill {
  box-sizing: border-box;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 40px;
  padding: 12px 20px 12px 24px;
  border: 1px solid #e2ebf6;
  border-radius: 12px;
  background: #fff;
  font-size: 12px;
  font-weight: 600;
  line-height: 15px;
  color: #475569;
  text-decoration: none;
  transition: border-color 0.15s, color 0.15s;
}

.dt-view-all-pill:hover {
  border-color: var(--dt-primary);
  color: var(--dt-primary);
}

/* ═══════════ Shop By Vehicle Type (light) ═══════════ */
.dt-vehicles {
  background: #fff;
  padding: clamp(48px, 7vw, 64px) clamp(20px, 8vw, 120px);
}

.dt-vehicles-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 40px;
}

.dt-vehicles-head {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}

.dt-vehicles-head h2 {
  margin: 0;
  font-size: 36px;
  line-height: 45px;
  font-weight: 700;
  color: #1e293b;
}

.dt-vehicles-head p {
  margin: 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
  color: #64748b;
}

/* ═══════════ Shop By Tire Brand (light) ═══════════ */
.dt-brands {
  background: #fff;
}

.dt-brands-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 64px clamp(20px, 5vw, 48px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.dt-brands-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
}

.dt-brands-head h2 {
  margin: 0;
  font-weight: 700;
  font-size: 36px;
  line-height: 45px;
  color: #1e293b;
}

.dt-brands-head p {
  margin: 0;
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  color: #64748b;
}

.dt-brands-empty {
  color: #64748b;
}

/* Chips group: chips row + view-all link (column, gap 24px) */
.dt-brands-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  width: 100%;
}

.dt-brand-chips {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  align-items: center;
  justify-content: center;
  gap: 24px;
  width: 100%;
  max-width: 1200px;
}

.dt-brand-chip {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 180px;
  aspect-ratio: 1;
  margin: 0 auto;
  border-radius: 50%;
  background: #f1f4f8;
  overflow: hidden;
  flex-shrink: 0;
  transition: transform 0.15s, box-shadow 0.15s;
}

.dt-brand-chip:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.12);
}

.dt-brand-chip img {
  max-width: 82%;
  max-height: 40%;
  width: auto;
  height: auto;
  object-fit: contain;
}

.dt-brand-chip-initial {
  font-size: 36px;
  font-weight: 800;
  color: var(--dt-primary);
}

.dt-view-all-brands {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: #475569;
  text-decoration: none;
  transition: color 0.15s;
}

.dt-view-all-brands:hover {
  color: var(--dt-primary);
}

/* Tablet: 3 chips per row */
@media (max-width: 1024px) {
  .dt-brand-chips {
    grid-template-columns: repeat(3, 1fr);
    max-width: 498px;
  }
  .dt-brand-chip {
    max-width: 150px;
  }
}

/* Mobile: 2 chips per row, smaller */
@media (max-width: 640px) {
  .dt-brand-chips {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    max-width: 256px;
  }
  .dt-brand-chip {
    max-width: 120px;
  }
  .dt-brands-head h2 {
    font-size: 28px;
    line-height: 1.25;
  }
}

/* ═══════════ Value props (light) ═══════════ */
.dt-values-section {
  background: #fff;
}

.dt-values-row {
  max-width: 1200px;
  margin: 0 auto;
  padding: 48px 24px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: stretch;
  gap: 30px;
}

.dt-value {
  flex: 1;
  min-height: 160px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
  gap: 16px;
}

.dt-value + .dt-value {
  border-left: 1px solid #e2ebf6;
  padding-left: 30px;
}

.dt-value-icon {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: linear-gradient(180deg, #fff2f2 0%, rgba(249, 185, 187, 0.88) 100%);
  color: #b2151b;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.dt-value-icon svg {
  width: 20px;
  height: 20px;
  stroke: #b2151b;
}

.dt-value h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  line-height: 23px;
  color: #1e293b;
}

.dt-value p {
  margin: 0;
  font-size: 14px;
  font-weight: 400;
  line-height: 18px;
  color: #64748b;
  max-width: 216px;
}

@media (max-width: 767px) {
  .dt-values-row {
    flex-wrap: wrap;
  }
  .dt-value {
    flex: 1 1 42%;
    min-height: 0;
  }
  .dt-value + .dt-value {
    border-left: none;
    padding-left: 0;
  }
}

/* ═══════════ Featured Tires (light) ═══════════ */
.dt-featured {
  background: linear-gradient(180deg, #fff2f2 0%, #ffffff 100%);
  padding: clamp(64px, 8vw, 80px) clamp(20px, 8vw, 120px);
}

.dt-featured > * {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.dt-product-grid {
  display: grid;
  gap: 32px;
  grid-template-columns: 1fr;
}

@media (min-width: 700px) {
  .dt-product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .dt-product-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.dt-product-card.product-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-bottom: 16px;
  border: 1px solid #e2ebf6;
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  cursor: pointer;
  transition: box-shadow 0.2s, transform 0.2s;
}

.dt-product-card.product-card:hover {
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}

.dt-pc-img {
  position: relative;
  height: 200px;
  background: #f8fafc;
  border-radius: 12px 12px 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.dt-pc-img img {
  max-width: 100%;
  height: 180px;
  object-fit: contain;
}

.dt-pc-wishlist-btn {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid #eff3f8;
  background: rgba(255, 255, 255, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #64748b;
  transition: background 0.15s ease, color 0.15s ease;
}

.dt-pc-wishlist-btn:hover {
  background: #fff;
}

.dt-pc-wishlist-btn.active {
  color: #ef4444;
}

.dt-pc-wishlist-btn.active svg {
  fill: #ef4444;
}

.dt-pc-rating {
  position: absolute;
  top: 12px;
  left: 12px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  height: 28px;
  padding: 6px 10px 6px 8px;
  background: #fff;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.04);
  border: 0;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  color: #000;
}

.dt-pc-rating svg {
  width: 16px;
  height: 16px;
  fill: #d51920;
  color: #d51920;
}

.dt-pc-rating em {
  font-style: normal;
  font-weight: 500;
  color: #94a3b8;
}

.dt-pc-body {
  padding: 0 16px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.dt-pc-top {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.dt-pc-brand {
  font-size: 12px;
  font-weight: 400;
  line-height: 15px;
  color: #64748b;
  text-transform: uppercase;
}

.dt-pc-name {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  line-height: 20px;
  color: #1e293b;
}

.dt-pc-spec {
  margin: 0;
  font-size: 12px;
  font-weight: 400;
  line-height: 15px;
  color: #64748b;
}

.dt-pc-divider {
  width: 100%;
  height: 1px;
  background: #eff3f8;
}

.dt-pc-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.dt-pc-price {
  font-size: 20px;
  font-weight: 700;
  line-height: 25px;
  color: #000;
  /* Two deliberate lines when on sale: the price paid, then the pre-sale price
     and the saving. Inline spans wrapped mid-figure in the ~126px the card
     gives this column. */
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
}
.dt-pc-price-now {
  display: flex;
  align-items: baseline;
  gap: 3px;
  white-space: nowrap;
}
.dt-pc-sale-line {
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}
.dt-pc-was {
  font-size: 13px;
  font-weight: 400;
  line-height: 1;
  color: var(--pd-muted, #64748B);
  text-decoration: line-through;
}
.dt-pc-off {
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
  color: var(--pd-red, #D51920);
  background: var(--pd-pink, #FDECEE);
  padding: 3px 6px;
  border-radius: 999px;
}

.dt-pc-price .currency-label {
  font-size: 13px;
  font-weight: 600;
  color: #64748b;
}

.dt-pc-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.dt-pc-cart {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border: 1px solid #e2ebf6;
  border-radius: 12px;
  background: #fff;
  color: #1e293b;
  cursor: pointer;
  transition: border-color 0.15s, color 0.15s;
}

.dt-pc-cart:hover {
  border-color: var(--dt-primary);
  color: var(--dt-primary);
}

.dt-pc-cart:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  border-color: #e2ebf6;
  color: #1e293b;
}

.dt-pc-view {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  height: 32px;
  padding: 8px 12px 8px 16px;
  border: 0;
  background: #d51920;
  color: #fff;
  font-weight: 600;
  font-size: 12px;
  line-height: 15px;
  border-radius: 12px;
  cursor: pointer;
}

.dt-pc-view:hover {
  opacity: 0.92;
}

/* ═══════════ Vehicle cards (photo overlay) ═══════════ */
.dt-vehicle-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr;
  width: 100%;
}

@media (min-width: 600px) {
  .dt-vehicle-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1000px) {
  .dt-vehicle-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.dt-vehicle-card {
  position: relative;
  border-radius: 16px;
  height: 352px;
  overflow: hidden;
  display: flex;
  text-decoration: none;
  color: #fff;
  isolation: isolate;
  background-color: #111;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.dt-vehicle-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.1) 30%, rgba(0, 0, 0, 0.85) 100%);
  z-index: 0;
}

.dt-vehicle-overlay {
  position: relative;
  z-index: 1;
  margin-top: auto;
  padding: 24px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.dt-vehicle-card h3 {
  margin: 0 0 6px;
  font-size: 24px;
  line-height: 30px;
  font-weight: 700;
  color: #fff;
}

.dt-vehicle-card .dt-vehicle-count {
  font-size: 14px;
  font-weight: 400;
  line-height: 18px;
  color: #fff;
  margin: 0 0 16px;
}

.dt-vehicle-card .dt-vehicle-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  height: 34px;
  padding: 8px 20px 8px 24px;
  background: #fff;
  color: #475569;
  font-weight: 600;
  font-size: 14px;
  line-height: 18px;
  border-radius: 12px;
}

.dt-vehicle-card--fallback {
  background: linear-gradient(135deg, #2a2a2e 0%, #111 100%);
}

.dt-vehicle-card--fallback::before {
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.85) 100%);
}

/* ═══════════ CTA banner (contained card) ═══════════ */
.dt-cta {
  max-width: 1200px;
  margin: 48px auto;
  border-radius: 16px;
  padding: 64px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  text-align: center;
  background: linear-gradient(223.51deg, #ffffff -21.81%, #ffe3e4 7.09%, #f9b9bb 32.46%, #be161d 100%);
}

.dt-cta-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.dt-cta h2 {
  margin: 0;
  font-size: 36px;
  line-height: 45px;
  font-weight: 700;
  color: #ffffff;
}

.dt-cta p {
  margin: 0 auto;
  max-width: 560px;
  color: #ffffff;
  font-size: 18px;
  font-weight: 400;
  line-height: 23px;
}

.dt-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  padding: 12px 40px;
  background: #fff;
  color: #1e293b;
  font-weight: 600;
  font-size: 16px;
  line-height: 20px;
  border-radius: 12px;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}

.dt-cta-btn:hover {
  box-shadow: 0 6px 28px rgba(0, 0, 0, 0.18);
}

/* ——— Footer (dark) ——— */
.dt-footer {
  box-sizing: border-box;
  position: relative;
  overflow: hidden;
  background: #070503;
  padding: 64px 80px 16px;
}

.dt-footer-glow {
  position: absolute;
  top: -80px;
  left: -80px;
  width: 444px;
  height: 272px;
  background: #d51920;
  filter: blur(200px);
  opacity: 0.5;
  z-index: 0;
  pointer-events: none;
}

.dt-footer-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.dt-footer .brand-logo__img,
.dt-footer .dt-footer-brand-logo .brand-logo__img {
  width: 100%;
  max-width: 260px;
  height: auto;
  filter: brightness(0) invert(1);
}

.dt-footer .brand-logo__link--stack {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  text-decoration: none;
  color: inherit;
}

.dt-footer .brand-logo__tagline {
  display: block;
  margin-top: 10px;
  font-family: var(--dt-font);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: #e2ebf6;
  line-height: 1.35;
  max-width: 260px;
}

.dt-footer-top {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 40px clamp(32px, 8vw, 200px);
}

.dt-footer-brand {
  flex: 0 1 260px;
  max-width: 260px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}

.dt-footer-desc {
  margin: 0;
  font-family: var(--dt-font);
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
  color: #e2ebf6;
  max-width: 260px;
}

.dt-footer-social {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
}

.dt-footer-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  color: #fff;
  text-decoration: none;
  transition: border-color 0.15s, background 0.15s;
}

.dt-footer-social-link:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.dt-footer-links {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: flex-start;
  gap: clamp(40px, 10vw, 120px);
  flex: 1 1 auto;
  min-width: 0;
}

.dt-footer-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  flex: 0 0 auto;
}

.dt-footer-heading {
  margin: 0 0 8px;
  font-family: var(--dt-font);
  font-size: 20px;
  font-weight: 700;
  line-height: 25px;
  color: #ffffff;
}

.dt-footer-list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}

.dt-footer-list a {
  font-family: var(--dt-font);
  font-size: 14px;
  font-weight: 600;
  line-height: 18px;
  color: #e2ebf6;
  text-decoration: none;
}

.dt-footer-list a:hover {
  color: #ffffff;
}

.dt-footer-bottom {
  box-sizing: border-box;
  width: 100%;
  padding: 24px 0 0;
  border-top: 1px solid rgba(226, 235, 246, 0.24);
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.dt-footer-copy {
  margin: 0;
  font-family: var(--dt-font);
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  color: #e2ebf6;
}

.dt-footer-legal {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
}

.dt-footer-legal a {
  font-family: var(--dt-font);
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  color: #e2ebf6;
  text-decoration: none;
}

.dt-footer-legal a:hover {
  color: #ffffff;
}

@media (max-width: 1024px) {
  .dt-footer {
    padding: 48px 40px 16px;
  }

  .dt-footer-top {
    flex-direction: column;
    gap: 40px;
  }

  .dt-footer-links {
    justify-content: flex-start;
    width: 100%;
  }
}

@media (max-width: 600px) {
  .dt-footer {
    padding: 40px 24px 16px;
  }

  .dt-footer-links {
    flex-direction: row;
    gap: 32px;
  }

  .dt-footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ═══════════ Products (All Tires) page ═══════════ */
.dt-store .dt-products-page {
  padding: 32px 0 64px;
}
.dt-store .dt-products-layout {
  display: flex;
  align-items: flex-start;
  gap: 32px;
}

/* --- sidebar shell --- */
.dt-store .dt-fsidebar {
  width: 280px;
  flex-shrink: 0;
  background: #fff;
  border: 1px solid #e2ebf6;
  border-radius: 16px;
}
.dt-store .dt-fsidebar::-webkit-scrollbar { display: none; }
.dt-store .dt-filters {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 24px;
}
.dt-filters-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.dt-filters-title {
  font-size: 16px;
  font-weight: 700;
  color: #1e293b;
}
/* "Advanced" is a plain section label now, not a control -- no cursor, no hover,
   not focusable (see products.html: it's a <span>, not a <button>). */
.dt-filters-advanced-label {
  font-size: 16px;
  font-weight: 600;
  color: #d51920;
  font-family: inherit;
}
.dt-fgroup {
  display: flex;
  flex-direction: column;
  /* No gap here -- the head/body spacing lives on .dt-fgroup-body-inner's
     margin-top instead, so it collapses away along with the panel rather than
     leaving a stray gap floating under a closed group's header. */
}
.dt-fgroup-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
.dt-fgroup-title {
  font-size: 16px;
  font-weight: 700;
  color: #1e293b;
}
.dt-fgroup-clear {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  border: 1px solid #d51920;
  border-radius: 4px;
  padding: 2px 6px;
  font-size: 12px;
  font-weight: 400;
  color: #d51920;
  background: #fff;
  cursor: pointer;
  font-family: inherit;
}
.dt-fgroup-head-right {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.dt-fgroup-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 0;
  background: transparent;
  color: #1e293b;
  cursor: pointer;
  transition: transform 200ms ease-out;
}
.dt-fgroup.dt-fgroup-collapsed .dt-fgroup-toggle {
  transform: rotate(180deg);
}
/* Accordion body: grid-template-rows 1fr -> 0fr animates height cleanly with no
   JS layout measurement (no scrollHeight reads, no arbitrary max-height guess
   that lags on short panels). The inner wrapper clips overflow and carries the
   head/body spacing so both the height and that spacing animate away together. */
.dt-fgroup-body {
  display: grid;
  grid-template-rows: 1fr;
  transition: grid-template-rows 200ms ease-out;
}
.dt-fgroup.dt-fgroup-collapsed .dt-fgroup-body {
  grid-template-rows: 0fr;
}
.dt-fgroup-body-inner {
  overflow: hidden;
  min-height: 0;
  margin-top: 16px;
}
@media (prefers-reduced-motion: reduce) {
  .dt-fgroup-toggle,
  .dt-fgroup-body {
    transition: none;
  }
}
.dt-fdivider {
  height: 1px;
  width: 100%;
  background: #e2ebf6;
}

/* --- checkbox rows (brand / category) --- */
.dt-brand-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.dt-chk {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}
.dt-chk input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  pointer-events: none;
}
.dt-chk-box {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  border-radius: 4px;
  background: #f1f4f8;
  border: 1px solid #e2ebf6;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.12s, border-color 0.12s;
}
.dt-chk-tick { opacity: 0; }
.dt-chk input:checked + .dt-chk-box {
  background: #d51920;
  border-color: #d51920;
}
.dt-chk input:checked + .dt-chk-box .dt-chk-tick { opacity: 1; }
.dt-chk input:focus-visible + .dt-chk-box {
  outline: 2px solid #d51920;
  outline-offset: 2px;
}
.dt-chk-name {
  flex: 1;
  font-size: 14px;
  font-weight: 400;
  line-height: 18px;
  color: #1e293b;
}
.dt-chk-count {
  font-size: 10px;
  font-weight: 400;
  line-height: 13px;
  color: #64748b;
  text-align: right;
}

/* --- price dual slider --- */
.dt-price {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.dt-price-slider {
  position: relative;
  height: 16px;
}
.dt-price-track {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  height: 4px;
  background: #eff3f8;
  border-radius: 999px;
}
.dt-price-fill {
  position: absolute;
  top: 0;
  bottom: 0;
  background: #d51920;
  border-radius: 999px;
}
.dt-price-range {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 16px;
  margin: 0;
  background: transparent;
  -webkit-appearance: none;
  appearance: none;
  pointer-events: none;
}
.dt-price-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  pointer-events: auto;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid #d51920;
  cursor: pointer;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12);
}
.dt-price-range::-moz-range-thumb {
  pointer-events: auto;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid #d51920;
  cursor: pointer;
}
.dt-price-labels {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 14px;
  font-weight: 600;
  color: #1e293b;
}
.dt-price-inputs {
  display: flex;
  align-items: center;
  gap: 10px;
}
.dt-price-pill {
  flex: 1;
  min-width: 0;
  background: #f8fafc;
  border: 1px solid #e2ebf6;
  border-radius: 12px;
  padding: 10px 12px;
  font-size: 12px;
  color: #475569;
  font-family: inherit;
}
.dt-price-pill:focus {
  outline: none;
  border-color: #d51920;
}

/* --- tire size pills --- */
.dt-sizes {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.dt-size-pill {
  box-sizing: border-box;
  padding: 8px 12px;
  border-radius: 8px;
  border: 1px solid #abb9cc;
  font-size: 12px;
  font-weight: 600;
  line-height: 15px;
  color: #475569;
  cursor: pointer;
  transition: border-color 0.12s;
}
.dt-size-pill input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  pointer-events: none;
}
.dt-size-pill.selected {
  border-color: #d51920;
}

/* --- availability radios --- */
.dt-avail {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.dt-radio {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}
.dt-radio input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  pointer-events: none;
}
.dt-radio-dot {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 1px solid #abb9cc;
  background: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.12s, border-color 0.12s;
}
.dt-radio input:checked + .dt-radio-dot {
  background: #d51920;
  border-color: #d51920;
}
.dt-radio input:checked + .dt-radio-dot::after {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #fff;
}
.dt-radio input:focus-visible + .dt-radio-dot {
  outline: 2px solid #d51920;
  outline-offset: 2px;
}
.dt-radio-name {
  font-size: 14px;
  font-weight: 400;
  color: #2d2d2d;
}

/* --- apply / clear buttons --- */
.dt-apply-btn {
  width: 100%;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #d51920;
  border: 0;
  border-radius: 12px;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
}
.dt-apply-btn:hover { opacity: 0.94; }
.dt-clear-all {
  width: 100%;
  background: none;
  border: 0;
  color: #64748b;
  font-size: 13px;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  padding: 4px 0 0;
}
.dt-clear-all:hover { color: #d51920; }

/* --- main column --- */
.dt-store .dt-pmain {
  flex: 1;
  min-width: 0;
}
.dt-crumbs {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #64748b;
  margin-bottom: 12px;
}
.dt-crumbs a {
  color: #64748b;
  text-decoration: none;
}
.dt-crumbs a:hover { color: #1e293b; }
.dt-crumb-sep { color: #cbd5e1; }
.dt-crumb-cur { color: #d51920; font-weight: 600; }
.dt-phead {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}
.dt-phead-title {
  margin: 0 0 6px;
  font-size: 28px;
  font-weight: 800;
  line-height: 1.15;
  color: #1e293b;
}
.dt-phead-sub {
  margin: 0;
  font-size: 14px;
  color: #64748b;
}
.dt-phead-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}
.dt-clear-search {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: #64748b;
  text-decoration: none;
  padding: 8px 12px;
  border: 1px solid #e2ebf6;
  border-radius: 999px;
}
.dt-clear-search:hover { color: #d51920; border-color: #d51920; }
.dt-sort-pill {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 40px;
  padding: 0 12px;
  background: #fff;
  border: 1px solid #e2ebf6;
  border-radius: 999px;
  color: #1e293b;
  cursor: pointer;
}
.dt-sort-ico { color: #64748b; flex-shrink: 0; }
.dt-sort-label { font-size: 13px; font-weight: 600; color: #64748b; white-space: nowrap; }
.dt-sort-select {
  border: 0;
  background: transparent;
  font-size: 13px;
  font-weight: 600;
  color: #1e293b;
  font-family: inherit;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
  padding-right: 4px;
  max-width: 160px;
}
.dt-sort-select:focus {
  outline: none;
  border-radius: 6px;
  box-shadow: 0 0 0 2px #d51920;
}
.dt-sort-chev { color: #64748b; flex-shrink: 0; pointer-events: none; }

/* --- active brand chips --- */
.dt-active-chips {
  display: none;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}
.dt-active-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 8px 6px 12px;
  background: #fff2f2;
  border: 1px solid #d51920;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  color: #d51920;
}
.dt-active-chip-x {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: 0;
  color: #d51920;
  cursor: pointer;
  padding: 0;
}

/* --- grid: 3 / 2 / 1 --- */
.dt-store .dt-store-grid {
  display: grid;
  gap: 32px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
@media (max-width: 1024px) {
  .dt-store .dt-store-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 620px) {
  .dt-store .dt-store-grid { grid-template-columns: minmax(0, 1fr); }
}

/* product card badges (reuse dt-pc-* from featured) */
.dt-product-card .dt-pc-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  padding: 4px 8px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  color: #fff;
}
.dt-product-card .dt-pc-badge.badge-out { background: #64748b; }
.dt-product-card .dt-pc-badge.badge-preorder { background: #2563eb; }

/* --- responsive: drawer sidebar --- */
@media (max-width: 768px) {
  .dt-store .dt-products-layout { display: block; }
  .dt-store .dt-fsidebar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    top: auto;
    width: 100%;
    max-width: 100%;
    max-height: 88vh;
    border-radius: 24px 24px 0 0;
    z-index: 550;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
    scrollbar-width: none;
  }
  .dt-store .dt-fsidebar.open { transform: translateY(0); }
  .dt-phead-title { font-size: 24px; }
}

/* ═══════════════════════════════════════════════════════════════════
   PRODUCT DETAIL PAGE — Figma Frame 2147224526 (scoped under .dt-pdp)
   Re-skin overrides. Higher specificity beats the template inline <style>.
   Tokens: red #D51920 · ink #1E293B · slate #334155 · muted #64748B
           line #E2EBF6 · wash #F1F4F8 · pink #FFF2F2 · green #2A9F47 · star #FFCC00
   ═══════════════════════════════════════════════════════════════════ */
.dt-pdp {
  --pd-red: #d51920;
  --pd-ink: #1e293b;
  --pd-slate: #334155;
  --pd-muted: #64748b;
  --pd-line: #e2ebf6;
  --pd-wash: #f1f4f8;
  --pd-pink: #fff2f2;
  --pd-green: #2a9f47;
  --pd-star: #ffcc00;
  color: var(--pd-ink);
}
.dt-pdp.pd-container { max-width: 1200px; padding-top: 28px; padding-bottom: 64px; }

/* ——— Breadcrumb ——— */
.dt-pdp .pd-breadcrumb { gap: 8px; font-size: 14px; font-weight: 400; color: var(--pd-muted); margin-bottom: 24px; }
.dt-pdp .pd-breadcrumb a { color: var(--pd-muted); font-weight: 400; }
.dt-pdp .pd-breadcrumb a:hover { color: var(--pd-red); }
.dt-pdp .pd-breadcrumb svg { color: var(--pd-muted); }
.dt-pdp .pd-breadcrumb > span:last-child { color: var(--pd-red); font-weight: 400; }

/* ——— Two-column layout ——— */
.dt-pdp .pd-main-grid {
  grid-template-columns: minmax(0, 560px) minmax(0, 1fr);
  gap: 40px;
  align-items: start;
  margin-bottom: 48px;
}

/* ——— Gallery ——— */
.dt-pdp .pd-gallery-section { background: transparent; border: none; padding: 0; }
.dt-pdp .pd-main-image-wrap {
  aspect-ratio: 1 / 1;
  max-width: 560px;
  width: 100%;
  background: var(--pd-wash);
  border-radius: 16px;
  border: none;
  padding: 24px;
  margin-bottom: 16px;
  box-sizing: border-box;
}
.dt-pdp .pd-main-image { object-fit: contain; }
.dt-pdp .pd-zoom-btn {
  top: auto; bottom: 16px; inset-inline-end: 16px;
  width: 40px; height: 40px;
  border-radius: 12px;
  background: #fff;
  border: 1px solid var(--pd-line);
  color: var(--pd-ink);
  backdrop-filter: none;
}
.dt-pdp .pd-zoom-btn:hover { background: #fff; border-color: var(--pd-red); box-shadow: 0 4px 12px rgba(0,0,0,.08); transform: none; }
.dt-pdp .pd-thumbnails { gap: 16px; }
.dt-pdp .pd-thumb {
  width: 128px; height: 128px;
  border-radius: 12px;
  background: var(--pd-wash);
  border: 2px solid transparent;
  display: flex; align-items: center; justify-content: center;
}
.dt-pdp .pd-thumb img { width: 96px; height: 96px; object-fit: contain; }
.dt-pdp .pd-thumb:hover { border-color: color-mix(in srgb, var(--pd-red) 40%, transparent); box-shadow: none; }
.dt-pdp .pd-thumb-active { border-color: var(--pd-red); box-shadow: none; }
.dt-pdp .pd-thumb-video { background: linear-gradient(135deg, var(--pd-red), #ff5a60); }

/* ——— Info column ——— */
.dt-pdp .pd-info-section { display: flex; flex-direction: column; gap: 20px; max-width: 600px; }
.dt-pdp .pd-info-section > * { margin: 0; }

.dt-pdp .pd-brand-row { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.dt-pdp .pd-brand-name { font-size: 20px; font-weight: 400; color: var(--pd-muted); }
.dt-pdp .pd-bestseller-pill { background: var(--pd-pink); color: var(--pd-red); font-size: 12px; font-weight: 600; padding: 6px 12px; border-radius: 999px; white-space: nowrap; }

.dt-pdp .pd-title { font-size: clamp(26px, 4vw, 36px); font-weight: 700; line-height: 1.25; color: var(--pd-ink); }
.dt-pdp .pd-subtitle { font-size: 15px; color: var(--pd-muted); }

.dt-pdp .pd-rating-row { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.dt-pdp .pd-stars { display: inline-flex; align-items: center; gap: 2px; }
.dt-pdp .pd-stars svg { width: 18px; height: 18px; }
.dt-pdp .pd-rating-score { font-size: 16px; font-weight: 700; color: var(--pd-ink); }
.dt-pdp .pd-rating-count { font-size: 16px; font-weight: 400; color: var(--pd-muted); }
.dt-pdp .pd-rating-div { width: 1px; height: 16px; background: #abb9cc; }
.dt-pdp .pd-sold { font-size: 16px; font-weight: 400; color: var(--pd-muted); }

/* ——— Price block ——— */
.dt-pdp .pd-price-stock-row { margin: 0; }
.dt-pdp .pd-price-group { display: flex; align-items: baseline; gap: 8px; flex-wrap: wrap; }
.dt-pdp .pd-price { font-size: clamp(28px, 4vw, 36px); font-weight: 700; color: var(--pd-red); }
.dt-pdp .pd-currency { font-size: 18px; font-weight: 700; color: var(--pd-red); }
.dt-pdp .pd-original-price { text-decoration: line-through; color: var(--pd-muted); font-size: 20px; font-weight: 400; margin: 0; }
.dt-pdp .pd-discount-badge { background: var(--pd-pink); color: var(--pd-red); font-size: 12px; font-weight: 600; padding: 4px 10px; border-radius: 999px; }
.dt-pdp .pd-save-line { font-size: 16px; font-weight: 600; color: var(--pd-green); }

/* ——— Stock chips (restyled to pill look) ——— */
.dt-pdp .pd-badge-chips { gap: 8px; margin: 0; }
.dt-pdp .pd-chip { padding: 6px 12px; border-radius: 999px; font-size: 12px; font-weight: 600; }
.dt-pdp .pd-chip-brand { background: var(--pd-pink); color: var(--pd-red); border: none; }
.dt-pdp .pd-chip-type { background: var(--pd-wash); color: var(--pd-ink); border: none; }
.dt-pdp .pd-chip-stock { color: var(--pd-green); }
.dt-pdp .pd-chip-preorder { color: #2563eb; }
.dt-pdp .pd-chip-outstock { color: var(--pd-red); }

/* ——— Variations → "Choose Size" pills (existing JS renders these) ——— */
.dt-pdp .pd-variations { gap: 12px; margin: 0; }
.dt-pdp .pd-variation-group { gap: 10px; }
.dt-pdp .pd-variation-label { font-size: 14px; font-weight: 600; color: var(--pd-ink); }
.dt-pdp .pd-variation-options { gap: 12px; }
.dt-pdp .pd-variation-btn { padding: 8px 14px; border-radius: 999px; border: 1px solid var(--pd-line); background: #fff; color: var(--pd-ink); font-size: 12px; font-weight: 600; }
.dt-pdp .pd-variation-btn:hover { border-color: var(--pd-ink); box-shadow: none; }
.dt-pdp .pd-variation-btn-active { background: var(--pd-ink); border-color: var(--pd-ink); color: #fff; box-shadow: none; }

/* ——— Choose Size (sibling-product switcher) ——— */
.dt-pdp .pd-sizes { display: flex; flex-direction: column; gap: 10px; }
.dt-pdp .pd-sizes-label { font-size: 14px; font-weight: 600; color: var(--pd-ink); }
.dt-pdp .pd-sizes-row { display: flex; flex-wrap: wrap; gap: 10px; }
.dt-pdp .pd-size-chip {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 40px; padding: 0 16px;
  border: 1px solid var(--pd-line); border-radius: 10px;
  background: #fff; color: var(--pd-ink);
  font-size: 14px; font-weight: 600; font-family: inherit;
  text-decoration: none; white-space: nowrap;
  transition: border-color .15s, background .15s, color .15s;
}
.dt-pdp a.pd-size-chip:hover { border-color: var(--pd-ink); background: var(--pd-wash); }
.dt-pdp .pd-size-chip.is-current { background: var(--pd-ink); border-color: var(--pd-ink); color: #fff; }
/* Not a link: the size exists but cannot be fulfilled right now. */
.dt-pdp .pd-size-chip.is-unavailable {
  color: var(--pd-muted); border-color: var(--pd-line);
  text-decoration: line-through; cursor: not-allowed; background: var(--pd-wash);
}

/* ——— Qty + Add to Cart + Buy Now ——— */
.dt-pdp .pd-qty-cart-row { display: flex; gap: 13px; flex-wrap: wrap; align-items: stretch; margin: 0; }
.dt-pdp .pd-qty-label { display: none; }
.dt-pdp .pd-qty-selector { flex-direction: row; }
.dt-pdp .pd-qty-controls { height: 56px; border: 1px solid var(--pd-line); border-radius: 12px; background: #fff; }
.dt-pdp .pd-qty-controls:hover { border-color: var(--pd-line); box-shadow: none; }
.dt-pdp .pd-qty-controls button { height: 54px; color: var(--pd-ink); }
.dt-pdp .pd-qty-controls button:hover:not(:disabled) { background: var(--pd-wash); color: var(--pd-ink); }
.dt-pdp .pd-qty-val { font-size: 18px; font-weight: 700; color: var(--pd-ink); }
.dt-pdp .pd-add-btn { flex: 1 1 180px; height: 56px; background: var(--pd-red); border-radius: 12px; font-size: 16px; font-weight: 600; gap: 8px; }
.dt-pdp .pd-add-btn::before { display: none; }
.dt-pdp .pd-add-btn:hover:not(:disabled) { background: #b8141b; transform: none; box-shadow: 0 6px 16px rgba(213,25,32,.28); }
.dt-pdp .pd-add-btn.added { background: var(--pd-green); }
.dt-pdp .pd-preorder-btn { background: #1e293b; }
.dt-pdp .pd-preorder-btn:hover:not(:disabled) { background: #0f172a; }
.dt-pdp .pd-buy-now {
  flex: 1 1 160px; height: 56px;
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  background: var(--pd-ink); color: #fff;
  border: none; border-radius: 12px;
  font-size: 16px; font-weight: 600; font-family: inherit; cursor: pointer;
  transition: background .2s;
}
.dt-pdp .pd-buy-now:hover { background: #0f172a; }

/* ——— Secondary actions (wishlist / share) ——— */
.dt-pdp .pd-action-buttons { gap: 12px; margin: 0; }
.dt-pdp .pd-action-btn { border: 1px solid var(--pd-line); background: #fff; border-radius: 12px; color: var(--pd-slate); }
.dt-pdp .pd-action-btn:hover { border-color: var(--pd-red); background: var(--pd-pink); color: var(--pd-red); box-shadow: none; }

/* ——— Full-width divider ——— */
.dt-pdp .pd-divider { width: 100%; height: 1px; background: var(--pd-line); }

/* ——— Trust features 2×2 ——— */
.dt-pdp .pd-trust-grid { display: grid; grid-template-columns: 1fr 1fr; row-gap: 32px; column-gap: 24px; }
.dt-pdp .pd-trust-cell { display: flex; align-items: center; gap: 12px; }
.dt-pdp .pd-trust-ic { flex: 0 0 40px; width: 40px; height: 40px; border-radius: 50%; background: var(--pd-pink); color: var(--pd-red); display: flex; align-items: center; justify-content: center; }
.dt-pdp .pd-trust-tt { font-size: 16px; font-weight: 600; color: var(--pd-ink); line-height: 1.2; }
.dt-pdp .pd-trust-sub { font-size: 12px; font-weight: 400; color: var(--pd-muted); }

/* ——— Seller card ——— */
.dt-pdp .pd-seller-card { display: flex; align-items: center; gap: 12px; border: 1px solid var(--pd-line); border-radius: 12px; padding: 16px; }
.dt-pdp .pd-seller-ava { flex: 0 0 48px; width: 48px; height: 48px; border-radius: 50%; background: var(--pd-ink); color: #fff; font-size: 18px; font-weight: 700; display: flex; align-items: center; justify-content: center; }
.dt-pdp .pd-seller-name { font-size: 18px; font-weight: 700; color: #2d2d2d; }
.dt-pdp .pd-seller-meta { display: flex; align-items: center; flex-wrap: wrap; gap: 8px; margin-top: 4px; font-size: 14px; font-weight: 400; color: var(--pd-muted); }
.dt-pdp .pd-seller-dot { width: 3px; height: 3px; border-radius: 50%; background: var(--pd-muted); display: inline-block; }

/* ——— Addons / service groups small tweaks ——— */
.dt-pdp #pdAddonsSection { margin: 0; }

/* ——— Tabs + panels ——— */
.dt-pdp .pd-tabs-wrap { margin: 0 0 48px; }
.dt-pdp .pd-tabs { display: flex; gap: 40px; border-bottom: 1px solid var(--pd-line); flex-wrap: wrap; }
.dt-pdp .pd-tab { padding: 16px 8px; background: none; border: none; border-bottom: 2px solid transparent; font-size: 16px; font-weight: 600; color: var(--pd-muted); font-family: inherit; cursor: pointer; margin-bottom: -1px; }
.dt-pdp .pd-tab:hover { color: var(--pd-ink); }
.dt-pdp .pd-tab.active { color: var(--pd-red); border-bottom-color: var(--pd-red); }
.dt-pdp .pd-tab-panel { display: none; padding-top: 24px; }
.dt-pdp .pd-tab-panel.active { display: block; }

/* ——— Specs card (2-col striped grid) ——— */
.dt-pdp .pd-specs-card { border: 1px solid var(--pd-line); border-radius: 16px; padding: 24px; background: #fff; }
.dt-pdp .pd-specs-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0 24px; }
.dt-pdp .pd-specs-grid .pd-spec-row { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 12px 16px; border-radius: 12px; border: none; }
.dt-pdp .pd-specs-grid .pd-spec-row:nth-child(4n+1),
.dt-pdp .pd-specs-grid .pd-spec-row:nth-child(4n+2) { background: var(--pd-pink); }
.dt-pdp .pd-specs-grid .pd-spec-label { padding: 0; border: none; font-size: 15px; font-weight: 400; color: var(--pd-muted); }
.dt-pdp .pd-specs-grid .pd-spec-value { padding: 0; font-size: 15px; font-weight: 700; color: var(--pd-slate); justify-content: flex-end; text-align: end; }
.dt-pdp .pd-features-list { margin: 0; padding-inline-start: 1.2rem; line-height: 1.7; color: var(--pd-slate); }
.dt-pdp .pd-features-list li { margin: 6px 0; }
.dt-pdp .pd-tab-panel .pd-desc-block { padding: 20px 0 0; }

/* ——— Similar products ——— */
.dt-pdp .pd-similar { margin-top: 24px; }
.dt-pdp .pd-similar .dt-section-head { margin-bottom: 24px; }
.dt-pdp .pd-similar .dt-product-grid { grid-template-columns: repeat(4, 1fr); }

@media (max-width: 900px) {
  .dt-pdp .pd-main-grid { grid-template-columns: 1fr; gap: 28px; }
  .dt-pdp .pd-info-section { max-width: none; }
  .dt-pdp .pd-main-image-wrap { max-width: none; }
  .dt-pdp .pd-similar .dt-product-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .dt-pdp .pd-thumb { width: 92px; height: 92px; }
  .dt-pdp .pd-thumb img { width: 68px; height: 68px; }
  .dt-pdp .pd-specs-grid { grid-template-columns: 1fr; }
  .dt-pdp .pd-title { font-size: clamp(24px, 6vw, 30px); }
  /* The mobile breakpoint turns .pd-qty-cart-row into a column, which makes
     flex-basis apply to the HEIGHT — so the 180px/160px bases above beat
     height:56px and rendered the buttons about three times too tall. */
  .dt-pdp .pd-add-btn,
  .dt-pdp .pd-buy-now { flex: 1 1 auto; }
}
@media (max-width: 560px) {
  .dt-pdp .pd-trust-grid { grid-template-columns: 1fr; }
  .dt-pdp .pd-similar .dt-product-grid { grid-template-columns: 1fr; }
}

/* ——— Features tab panel ——— */
.dt-pdp .pd-features-card { border: 1px solid var(--pd-line); border-radius: 16px; padding: 24px; background: #fff; display: flex; flex-direction: column; gap: 12px; }
.dt-pdp .pd-feature-row { display: flex; align-items: center; gap: 8px; }
.dt-pdp .pd-feature-dot { flex: 0 0 8px; width: 8px; height: 8px; border-radius: 999px; background: var(--pd-red); }
.dt-pdp .pd-feature-text { font-size: 18px; font-weight: 400; line-height: 1.28; color: var(--pd-ink); }
.dt-pdp .pd-feature-empty { font-size: 15px; color: var(--pd-muted); }
.dt-pdp .pd-tab-panel[data-tab="features"] .pd-desc-block { padding: 24px 0 0; }

/* ——— Reviews tab panel ——— */
.dt-pdp .pd-reviews-card { border: 1px solid var(--pd-line); border-radius: 16px; padding: 24px 40px 24px 24px; background: #fff; display: flex; flex-direction: column; gap: 56px; }
.dt-pdp .pd-star-f { width: 20px; height: 20px; fill: #ffc85f; flex: 0 0 auto; }
.dt-pdp .pd-star-e { width: 20px; height: 20px; fill: #e2ebf6; flex: 0 0 auto; }
.dt-pdp .pd-rv-summary { display: flex; flex-direction: column; gap: 32px; }
.dt-pdp .pd-rv-title { margin: 0; font-size: 24px; font-weight: 700; color: var(--pd-ink); }
.dt-pdp .pd-rv-summary-row { display: flex; align-items: center; gap: 24px; }
.dt-pdp .pd-rv-avg { flex: 0 0 160px; display: flex; flex-direction: column; gap: 8px; }
.dt-pdp .pd-rv-avg-label { font-size: 16px; font-weight: 700; color: var(--pd-ink); }
.dt-pdp .pd-rv-avg-num { font-size: 36px; font-weight: 700; line-height: 1; color: var(--pd-ink); }
.dt-pdp .pd-rv-avg-stars { display: inline-flex; gap: 2px; }
.dt-pdp .pd-rv-total { font-size: 12px; font-weight: 400; color: #abb9cc; }
.dt-pdp .pd-rv-vdiv { flex: 0 0 1px; width: 1px; height: 80px; background: #f2f2f3; align-self: center; }
.dt-pdp .pd-rv-bars { flex: 1 1 auto; min-width: 0; display: flex; flex-direction: column; gap: 12px; }
.dt-pdp .pd-rv-bar { display: flex; align-items: center; gap: 8px; }
.dt-pdp .pd-rv-bar-lvl { display: inline-flex; align-items: center; gap: 4px; flex: 0 0 auto; }
.dt-pdp .pd-rv-bar-lvl span { font-size: 16px; font-weight: 400; color: var(--pd-slate); }
.dt-pdp .pd-rv-track { flex: 1 1 auto; min-width: 0; height: 8px; border-radius: 9999px; background: #e2ebf6; }
.dt-pdp .pd-rv-fill { height: 8px; border-radius: 9999px; background: var(--pd-red); }
.dt-pdp .pd-rv-count { flex: 0 0 auto; min-width: 32px; text-align: end; font-size: 14px; font-weight: 600; color: var(--pd-muted); }
.dt-pdp .pd-rv-list { display: flex; flex-direction: column; gap: 32px; }
.dt-pdp .pd-rv-item { display: flex; align-items: flex-start; gap: 12px; }
.dt-pdp .pd-rv-ava { flex: 0 0 40px; width: 40px; height: 40px; border-radius: 50%; background: var(--pd-pink); color: var(--pd-red); font-size: 20px; font-weight: 700; display: flex; align-items: center; justify-content: center; }
.dt-pdp .pd-rv-main { flex: 1 1 auto; min-width: 0; display: flex; flex-direction: column; gap: 8px; }
.dt-pdp .pd-rv-top { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.dt-pdp .pd-rv-name { font-size: 16px; font-weight: 700; color: var(--pd-ink); }
.dt-pdp .pd-rv-when { font-size: 14px; font-weight: 600; color: var(--pd-muted); white-space: nowrap; }
.dt-pdp .pd-rv-meta { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.dt-pdp .pd-rv-stars { display: inline-flex; gap: 2px; }
.dt-pdp .pd-rv-verified { background: var(--pd-pink); color: var(--pd-red); border-radius: 9999px; padding: 4px 8px; font-size: 12px; font-weight: 600; white-space: nowrap; }
.dt-pdp .pd-rv-body { font-size: 16px; font-weight: 400; line-height: 1.25; color: #475569; }

.dt-pdp .pd-rv-write { display: flex; flex-direction: column; gap: 12px; padding: 20px; border: 1px solid var(--pd-line); border-radius: 12px; background: #fafbfc; }
.dt-pdp .pd-rv-write-title { margin: 0; font-size: 16px; font-weight: 700; color: var(--pd-ink); }
.dt-pdp .pd-rv-star-input { display: inline-flex; gap: 4px; }
.dt-pdp .pd-rv-star-btn { background: none; border: 0; padding: 0; cursor: pointer; line-height: 0; }
.dt-pdp .pd-rv-star-btn svg { width: 26px; height: 26px; fill: #e2ebf6; transition: fill 0.1s ease; }
.dt-pdp .pd-rv-star-btn.is-active svg,
.dt-pdp .pd-rv-star-btn.is-hover svg { fill: #ffc85f; }
.dt-pdp .pd-rv-textarea { width: 100%; min-height: 80px; resize: vertical; padding: 10px 12px; border: 1px solid var(--pd-line); border-radius: 8px; font: inherit; font-size: 14px; color: var(--pd-ink); box-sizing: border-box; }
.dt-pdp .pd-rv-submit-btn { align-self: flex-start; padding: 10px 20px; border: 0; border-radius: 8px; background: var(--pd-red); color: #fff; font-size: 14px; font-weight: 700; cursor: pointer; }
.dt-pdp .pd-rv-submit-btn:disabled { opacity: 0.6; cursor: not-allowed; }
.dt-pdp .pd-rv-msg { font-size: 13px; font-weight: 600; }
.dt-pdp .pd-rv-msg.is-error { color: #d92d20; }
.dt-pdp .pd-rv-msg.is-ok { color: #12805c; }
.dt-pdp .pd-rv-login-cta { margin: 0; font-size: 14px; color: var(--pd-muted); }
.dt-pdp .pd-rv-login-cta a { color: var(--pd-red); font-weight: 700; text-decoration: none; }
.dt-pdp .pd-rv-empty { font-size: 14px; color: var(--pd-muted); }
.dt-pdp .pd-rv-loadmore-btn { align-self: center; padding: 10px 24px; border: 1px solid var(--pd-line); border-radius: 9999px; background: #fff; color: var(--pd-ink); font-size: 14px; font-weight: 700; cursor: pointer; }
.dt-pdp .pd-rv-loadmore-btn:disabled { opacity: 0.6; cursor: not-allowed; }

@media (max-width: 700px) {
  .dt-pdp .pd-reviews-card { padding: 20px; }
  .dt-pdp .pd-rv-summary-row { flex-direction: column; align-items: stretch; gap: 20px; }
  .dt-pdp .pd-rv-avg { flex-basis: auto; }
  .dt-pdp .pd-rv-vdiv { display: none; }
}

/* ═══════════════════════════ ABOUT PAGE ═══════════════════════════ */
.dt-about {
  display: flex;
  flex-direction: column;
  gap: 80px;
  background: #fff;
  padding-bottom: 80px;
}

/* ——— Hero ——— */
.dt-about .dt-about-hero {
  margin: 24px auto 0;
  width: calc(100% - 48px);
  max-width: 1392px;
  background: #070503;
  border-radius: 24px;
  position: relative;
  overflow: hidden;
  padding: clamp(48px, 7vw, 80px) clamp(24px, 12vw, 220px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}
.dt-about .dt-about-hero-glow {
  position: absolute;
  background: #D51920;
  filter: blur(280px);
  width: 444px;
  height: 272px;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.5;
  z-index: 0;
  pointer-events: none;
  max-width: 100%;
}
.dt-about .dt-about-hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.dt-about .dt-about-hero-title {
  margin: 0;
  font-size: clamp(30px, 5vw, 48px);
  font-weight: 700;
  line-height: 1.25;
  color: #F8FAFC;
}
.dt-about .dt-about-hero-title .dt-italic-accent {
  color: #D51920;
  font-style: italic;
}
.dt-about .dt-about-hero-sub {
  margin: 0;
  font-size: 18px;
  line-height: 23px;
  color: #ABB9CC;
  max-width: 480px;
}

/* ——— Shared eyebrow ——— */
.dt-about .dt-about-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
}
.dt-about .dt-about-eyebrow-line {
  width: 24px;
  height: 2px;
  background: #D51920;
  display: inline-block;
}
.dt-about .dt-about-eyebrow-text {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: #D51920;
}

/* ——— Shared icon circle ——— */
.dt-about .dt-about-icon-circle {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  background: #FFF2F2;
  border: 1px solid #FFE3E4;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* ——— Mission ——— */
.dt-about .dt-about-mission {
  width: calc(100% - 48px);
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 80px;
  align-items: center;
}
.dt-about .dt-about-mission-left {
  flex: 1 1 594px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.dt-about .dt-about-mission-title {
  margin: 4px 0 0;
  font-size: 30px;
  font-weight: 700;
  line-height: 38px;
  color: #1E293B;
}
.dt-about .dt-about-mission-body {
  margin: 0;
  font-size: 18px;
  line-height: 23px;
  color: #64748B;
}
.dt-about .dt-about-stats {
  flex: 1 1 526px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.dt-about .dt-about-stat {
  background: #FBFAF8;
  border: 1px solid #F0EEEB;
  border-radius: 16px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.dt-about .dt-about-stat-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.dt-about .dt-about-stat-num {
  font-size: 24px;
  font-weight: 700;
  color: #1E293B;
}
.dt-about .dt-about-stat-label {
  font-size: 16px;
  color: #64748B;
}

/* ——— Core Values ——— */
.dt-about .dt-about-values {
  background: linear-gradient(180deg, #FFF2F2 0%, #FFFFFF 100%);
  padding: clamp(56px, 7vw, 80px) clamp(20px, 8vw, 120px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}
.dt-about .dt-about-values-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
}
.dt-about .dt-about-values-title {
  margin: 0;
  font-size: 30px;
  font-weight: 700;
  line-height: 38px;
  color: #1E293B;
}
.dt-about .dt-about-values-title .dt-italic-accent {
  color: #D51920;
  font-style: italic;
}
.dt-about .dt-about-values-sub {
  margin: 0;
  font-size: 18px;
  color: #64748B;
}
.dt-about .dt-about-values-grid {
  width: 100%;
  max-width: 1200px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.dt-about .dt-about-value-card {
  background: #fff;
  border: 1px solid #E2EBF6;
  border-radius: 16px;
  padding: 32px 32px 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.dt-about .dt-about-value-name {
  margin: 0;
  font-size: 24px;
  font-weight: 700;
  color: #1E293B;
}
.dt-about .dt-about-value-body {
  margin: 0;
  font-size: 16px;
  line-height: 20px;
  color: #64748B;
}

/* ——— Our Story ——— */
.dt-about .dt-about-story {
  width: calc(100% - 48px);
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 56px;
}
.dt-about .dt-about-story-head {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.dt-about .dt-about-story-title {
  margin: 0;
  font-size: 30px;
  font-weight: 700;
  line-height: 38px;
  color: #1E293B;
}
.dt-about .dt-about-story-title .dt-italic-accent {
  color: #D51920;
  font-style: italic;
}
.dt-about .dt-about-timeline {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.dt-about .dt-about-timeline-line {
  position: absolute;
  left: 9px;
  top: 10px;
  bottom: 10px;
  width: 2px;
  background: #F9B9BB;
  z-index: 0;
}
.dt-about .dt-about-timeline-item {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 24px;
  align-items: flex-start;
}
.dt-about .dt-about-timeline-dot {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  background: #fff;
  border: 2px solid #D51920;
  border-radius: 999px;
  margin-top: 2px;
}
.dt-about .dt-about-timeline-text {
  margin: 0;
  font-size: 18px;
  line-height: 23px;
  color: #1E293B;
}
.dt-about .dt-about-timeline-text strong {
  font-weight: 700;
}

/* ——— Responsive ——— */
@media (max-width: 900px) {
  .dt-about {
    gap: 56px;
  }
  .dt-about .dt-about-mission {
    flex-direction: column;
    gap: 40px;
    align-items: stretch;
  }
  .dt-about .dt-about-values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 560px) {
  .dt-about .dt-about-stats {
    grid-template-columns: 1fr;
  }
  .dt-about .dt-about-values-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   BRANDS LANDING PAGE
   ============================================================ */
.dt-brands-page {
  --br-red: #D51920;
  --br-ink: #1E293B;
  --br-slate: #475569;
  --br-muted: #64748B;
  --br-hair: #E2EBF6;
  --br-wash: #F1F4F8;
  --br-icon: #BE161D;
  --br-pink: #FFF2F2;
  background: #ffffff;
  padding-bottom: 64px;
}
.dt-brands-page * {
  box-sizing: border-box;
}
.dt-brands-page .dt-italic-accent {
  color: var(--br-red);
  font-style: italic;
}

/* 1) HERO */
.dt-brands-hero {
  box-sizing: border-box;
  width: calc(100% - 48px);
  max-width: 1392px;
  margin: 32px auto 0;
  padding: clamp(48px, 7vw, 80px) 24px;
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 560px;
  /* brandsHero.jpg is a bright daytime shot (pale sky + sunset glow across
     the horizon band), unlike the darker hero-bg.jpg this replaces, so the
     scrim needs to hold contrast for the light title/subtitle no matter
     where the (vertically centered, height-variable) text block lands —
     hence a fairly even dark tint rather than a top-only fade. Tint color
     matches --br-ink (#1E293B) rather than flat black to stay on-palette;
     written as rgba(...) since custom properties can't be split into
     rgba() channel args. */
  background:
    linear-gradient(180deg, rgba(30, 41, 59, 0.55) 0%, rgba(30, 41, 59, 0.42) 50%, rgba(30, 41, 59, 0.58) 100%),
    #1a1a1a url("../assets/brandsHero.1f20d94842f8.jpg") center / cover no-repeat;
}
.dt-brands-hero-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 24px;
  width: 100%;
  max-width: 1000px;
}
.dt-brands-hero-title {
  margin: 0;
  font-size: clamp(2rem, 6vw, 48px);
  font-weight: 700;
  line-height: 1.2;
  color: #F8FAFC;
  /* Belt-and-braces legibility over the photo: the scrim above handles the
     general case, this shadow keeps edges crisp if a glyph still lands on
     a brighter cloud/sky patch. text-shadow inherits, so it also reaches
     the .dt-italic-accent span nested in the title. */
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.55), 0 1px 4px rgba(0, 0, 0, 0.7);
}
.dt-brands-hero-sub {
  margin: 0;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.5;
  color: #F1F4F8;
  max-width: 520px;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.55), 0 1px 3px rgba(0, 0, 0, 0.65);
}
.dt-brands-search {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  max-width: 1000px;
  height: 52px;
  padding: 0 8px 0 20px;
  background: #F8FAFC;
  border: 1px solid var(--br-hair);
  border-radius: 999px;
}
.dt-brands-search-input {
  flex: 1 1 auto;
  min-width: 0;
  height: 100%;
  border: none;
  outline: none;
  background: transparent;
  font-size: 15px;
  color: var(--br-ink);
}
.dt-brands-search-input::placeholder {
  color: var(--br-muted);
}
.dt-brands-search-btn {
  flex: 0 0 auto;
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 999px;
  background: var(--br-red);
  cursor: pointer;
}

/* 2) STATS BAR */
.dt-brands-stats {
  width: 100%;
  border-top: 1px solid var(--br-hair);
  border-bottom: 1px solid var(--br-hair);
  padding: 40px 24px;
  margin-top: 48px;
}
.dt-brands-stats-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: stretch;
}
.dt-brands-stat {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  text-align: left;
  gap: 16px;
  padding: 0 40px;
  /* Vertical divider between cards (spans the full row height). */
  border-right: 1px solid var(--br-hair);
}
.dt-brands-stat:last-child {
  border-right: none;
}
@media (max-width: 768px) {
  .dt-brands-stats-inner {
    flex-wrap: wrap;
  }
  .dt-brands-stat {
    flex: 1 1 50%;
    padding: 16px 24px;
  }
  /* On the 2-col wrap, only the left column of each row keeps a divider. */
  .dt-brands-stat:nth-child(2n) {
    border-right: none;
  }
}
@media (max-width: 460px) {
  .dt-brands-stat {
    flex: 1 1 100%;
    border-right: none;
  }
}
.dt-brands-stat-icon {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--br-pink);
}
.dt-brands-stat-num {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.1;
  color: var(--br-ink);
}
.dt-brands-stat-label {
  font-size: 16px;
  font-weight: 400;
  color: var(--br-muted);
}

/* 3) FILTER CHIPS */
.dt-brands-chips-wrap {
  width: 100%;
  padding: 40px 24px 8px;
}
.dt-brands-chips {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.dt-brands-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  border-radius: 999px;
  border: 1px solid var(--br-hair);
  background: #ffffff;
  color: var(--br-ink);
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
}
.dt-brands-chip--active {
  background: var(--br-red);
  border-color: var(--br-red);
  color: #ffffff;
}
.dt-brands-chip-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 32px;
  height: 32px;
  padding: 0 8px;
  border-radius: 999px;
  background: #EFF3F8;
  color: var(--br-ink);
  font-size: 12px;
  font-weight: 700;
}
.dt-brands-chip-count--active {
  background: #B2151B;
  color: #ffffff;
}

/* Shared headings */
.dt-brands-h2 {
  margin: 0;
  font-size: 30px;
  font-weight: 700;
  line-height: 1.25;
  color: var(--br-ink);
}
.dt-brands-sub {
  margin: 4px 0 0;
  font-size: 16px;
  color: var(--br-muted);
}

/* 4) TOP SELLING BRANDS */
.dt-brands-top {
  width: 100%;
  padding: 80px 24px;
  margin-top: 16px;
  background: linear-gradient(180deg, #FFF2F2 0%, #FFFFFF 100%);
}
.dt-brands-top-inner,
.dt-brands-all-inner,
.dt-brands-why-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.dt-brands-top-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.dt-brands-viewall {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 12px;
  border: 1px solid var(--br-hair);
  background: #ffffff;
  color: var(--br-slate);
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
}
.dt-brands-top-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* Brand cards */
.dt-brand-card {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 24px;
  border: 1px solid var(--br-hair);
  border-radius: 16px;
  background: #ffffff;
}
.dt-brand-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.dt-brand-logo {
  width: 64px;
  height: 64px;
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: var(--br-wash);
  overflow: hidden;
}
.dt-brand-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.dt-brand-topseller {
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  border-radius: 999px;
  background: #FFFAE6;
  color: #997A00;
  font-size: 12px;
  font-weight: 600;
}
.dt-brand-name {
  margin: 0;
  font-size: 24px;
  font-weight: 700;
  color: var(--br-ink);
}
.dt-brand-desc {
  margin: -8px 0 0;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--br-muted);
}
.dt-brand-specialties {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.dt-brand-specialty-pill {
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  border-radius: 999px;
  background: var(--br-pink);
  color: var(--br-red);
  font-size: 12px;
  font-weight: 600;
}
.dt-brand-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.dt-brand-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid var(--br-hair);
  font-size: 14px;
  font-weight: 700;
  color: var(--br-ink);
  white-space: nowrap;
}
.dt-brand-pill svg { flex: 0 0 auto; }
.dt-brand-pill-muted {
  color: var(--br-muted);
  font-weight: 400;
}
.dt-brand-pill--rating {
  align-self: center;
}
/* All Brands card: a single Products pill sits left-aligned (not stretched). */
.dt-brand-meta--single {
  display: flex;
  grid-template-columns: none;
}
/* Bordered logo tile (All Brands card, per design). */
.dt-brand-logo--bordered {
  border: 1px solid var(--br-hair);
  background: #fff;
}
/* 'Specialties:' label above the badge row (Top Seller card). */
.dt-brand-specialties-wrap {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.dt-brand-specialties-label {
  font-size: 16px;
  font-weight: 400;
  color: var(--br-muted);
}
.dt-brand-divider {
  height: 1px;
  background: var(--br-hair);
}
.dt-brand-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 12px 16px;
  border-radius: 12px;
  background: var(--br-red);
  color: #ffffff;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
}
.dt-brands-empty {
  color: var(--br-muted);
  font-size: 15px;
}
.dt-brands-empty-state {
  grid-column: 1 / -1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 32px 24px;
  text-align: center;
}
.dt-brands-empty-clear {
  color: var(--br-red);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
}
.dt-brands-empty-clear:hover {
  text-decoration: underline;
}

/* 5) ALL BRANDS */
.dt-brands-all {
  width: 100%;
  padding: 64px 24px 0;
  position: relative;
  overflow: hidden;
  /* Offset the #dt-brands-all anchor target so 'View All Brands' scrolls to
     just below the sticky header instead of hiding the heading behind it. */
  scroll-margin-top: calc(var(--nav-height, 72px) + 16px);
}
/* Faint decorative tyre-track watermark behind the section, per design —
   a clean on-theme placeholder motif (repeating dashed tread pattern) in
   the design's --br-wash tone (#F1F4F8). Sits behind .dt-brands-all-inner
   (z-index) and is fully occluded by the opaque white brand cards, so it
   only shows through in the gaps/margins — never a legibility risk. Drop
   the design's exact tyre-track SVG in as this background-image for
   pixel-perfect parity later; this is a placeholder motif, not final art. */
.dt-brands-all::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  /* Full tyre-track art only across the TOP of the section (per design),
     not tiled over the whole area. Height matches the art's 1440x240 ratio
     once scaled to full width. */
  height: 240px;
  z-index: 0;
  pointer-events: none;
  background-image: url("../assets/bgofallbrands.236afbaec77e.png");
  background-repeat: no-repeat;
  background-position: top center;
  background-size: 100% auto;
}
.dt-brands-all-inner {
  position: relative;
  z-index: 1;
}
.dt-brands-all .dt-brands-h2 {
  margin-bottom: 32px;
}
.dt-brands-all-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

/* 6) WHY CHOOSE PREMIUM BRANDS */
.dt-brands-why {
  width: 100%;
  padding: 80px 24px 0;
}
.dt-brands-why-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}
.dt-brands-why-head {
  text-align: center;
}
.dt-brands-why-head .dt-brands-h2 {
  margin-bottom: 8px;
}
.dt-brands-why-grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.dt-brands-why-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 32px;
  border: 1px solid #F0EEEB;
  border-radius: 16px;
  background: #FBFAF8;
}
.dt-brands-why-icon {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--br-pink);
}
.dt-brands-why-title {
  margin: 0;
  font-size: 24px;
  font-weight: 700;
  color: var(--br-ink);
}
.dt-brands-why-body {
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
  color: var(--br-muted);
}

/* Responsive */
@media (max-width: 1024px) {
  .dt-brands-all-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 900px) {
  .dt-brands-top-grid,
  .dt-brands-why-grid {
    grid-template-columns: 1fr;
  }
  .dt-brands-all-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .dt-brands-top {
    padding: 56px 20px;
  }
  .dt-brands-top-head {
    align-items: flex-start;
  }
}
@media (max-width: 480px) {
  .dt-brands-hero {
    width: calc(100% - 24px);
    padding: 40px 16px;
    min-height: 480px;
  }
  .dt-brands-all-grid {
    grid-template-columns: 1fr;
  }
  .dt-brand-meta {
    grid-template-columns: 1fr;
  }
}


/* ═══════════════════════════════════════════════════════════
   BECOME A SELLER PAGE
   ═══════════════════════════════════════════════════════════ */
.dt-seller-page {
  display: flex;
  flex-direction: column;
  gap: 80px;
  background: #ffffff;
  padding-bottom: 80px;
  overflow-x: hidden;
}
.dt-seller-page .dt-seller-accent {
  color: #d51920;
  font-style: italic;
}

/* 1) HERO */
.dt-seller-hero {
  width: calc(100% - 48px);
  max-width: 1392px;
  margin: 24px auto 0;
  border-radius: 16px;
  overflow: hidden;
  min-height: 560px;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.dt-seller-hero-inner {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 450px;
  padding: clamp(24px, 6vw, 64px);
}
.dt-seller-hero-title {
  font-size: clamp(30px, 5vw, 48px);
  line-height: 1.25;
  font-weight: 700;
  color: #1e293b;
  margin: 0;
}
.dt-seller-hero-sub {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.5;
  color: #64748b;
  margin: 0;
}
.dt-seller-hero-cta {
  align-self: flex-start;
  display: inline-block;
  background: #d51920;
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  border-radius: 8px;
  padding: 12px 24px;
  text-decoration: none;
  transition: background 0.15s ease;
}
.dt-seller-hero-cta:hover {
  background: #be161d;
}

/* 2) WHY SELL CARD */
.dt-seller-why-wrap {
  padding: 0 24px;
}
.dt-seller-why-card {
  max-width: 1200px;
  margin: 0 auto;
  border-radius: 16px;
  box-shadow: 0 0 16px rgba(0, 0, 0, 0.08);
  padding: 40px;
  background: #ffffff;
}
.dt-seller-why-title {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  color: #1e293b;
  margin: 0 0 32px;
}
.dt-seller-why-cols {
  display: flex;
  gap: 24px;
}
.dt-seller-why-col {
  flex: 1;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.dt-seller-why-col + .dt-seller-why-col {
  border-left: 1px solid #e2ebf6;
}
.dt-seller-why-icon {
  display: inline-flex;
  width: 40px;
  height: 40px;
}
.dt-seller-why-h {
  font-size: 18px;
  font-weight: 700;
  color: #1e293b;
  margin: 0;
}
.dt-seller-why-p {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.55;
  color: #64748b;
  margin: 0;
}

/* 3) EVERYTHING YOU NEED BAND */
.dt-seller-need {
  background: #fff2f2;
  padding: clamp(64px, 10vw, 120px) 24px;
}
.dt-seller-need-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 114px;
  align-items: center;
}
.dt-seller-need-left {
  flex: 0 1 448px;
}
.dt-seller-need-title {
  font-size: clamp(24px, 3.5vw, 30px);
  font-weight: 700;
  color: #1e293b;
  margin: 0 0 24px;
}
.dt-seller-need-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.dt-seller-need-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.dt-seller-check {
  flex: 0 0 auto;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #d51920;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}
.dt-seller-need-h {
  font-size: 18px;
  font-weight: 700;
  color: #1e293b;
  margin: 0 0 4px;
}
.dt-seller-need-p {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: #64748b;
  margin: 0;
}
.dt-seller-need-right {
  flex: 1 1 600px;
}
.dt-seller-form-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.dt-seller-form-title {
  font-size: 24px;
  font-weight: 700;
  color: #1e293b;
  margin: 0;
}
.dt-seller-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.dt-seller-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.dt-seller-label {
  font-size: 14px;
  font-weight: 600;
  color: #64748b;
}
.dt-seller-input {
  width: 100%;
  height: 38px;
  background: #f8fafc;
  border: 1px solid #e2ebf6;
  border-radius: 8px;
  padding: 10px 20px;
  font-size: 14px;
  color: #1e293b;
  box-sizing: border-box;
}
.dt-seller-input::placeholder {
  color: #abb9cc;
}
.dt-seller-input:focus {
  outline: none;
  border-color: #d51920;
}
.dt-seller-submit {
  width: 100%;
  height: 42px;
  background: #d51920;
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.15s ease;
}
.dt-seller-submit:hover {
  background: #be161d;
}
.dt-seller-form-help {
  text-align: center;
  font-size: 14px;
  font-weight: 400;
  color: #abb9cc;
  margin: 0;
}
.dt-seller-form-help--success {
  color: #16a34a;
}

/* 4) STATS BAR */
.dt-seller-stats {
  border-top: 1px solid #e2ebf6;
  border-bottom: 1px solid #e2ebf6;
  padding: 40px 24px;
}
.dt-seller-stats-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
}
.dt-seller-stat {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
  padding: 0 16px;
}
.dt-seller-stat + .dt-seller-stat {
  border-left: 1px solid #e2ebf6;
}
.dt-seller-stat-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #fff2f2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 4px;
}
.dt-seller-stat-num {
  font-size: 36px;
  font-weight: 700;
  color: #1e293b;
  line-height: 1.1;
}
.dt-seller-stat-label {
  font-size: 16px;
  font-weight: 400;
  color: #64748b;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .dt-seller-need-inner {
    flex-direction: column;
    gap: 48px;
    align-items: stretch;
  }
  .dt-seller-need-left,
  .dt-seller-need-right {
    flex: 1 1 auto;
  }
}
@media (max-width: 768px) {
  .dt-seller-page {
    gap: 56px;
  }
  .dt-seller-why-cols {
    flex-direction: column;
    gap: 0;
  }
  .dt-seller-why-col + .dt-seller-why-col {
    border-left: none;
    border-top: 1px solid #e2ebf6;
  }
  .dt-seller-stats-inner {
    flex-wrap: wrap;
  }
  .dt-seller-stat {
    flex: 1 1 45%;
    padding: 16px;
  }
  .dt-seller-stat:nth-child(odd) {
    border-left: none;
  }
  .dt-seller-stat:nth-child(n + 3) {
    border-top: 1px solid #e2ebf6;
  }
}
@media (max-width: 480px) {
  .dt-seller-hero {
    width: calc(100% - 24px);
    min-height: 460px;
  }
  .dt-seller-why-card {
    padding: 24px;
  }
  .dt-seller-form-card {
    padding: 24px;
  }
  .dt-seller-stat {
    flex: 1 1 100%;
  }
  .dt-seller-stat:nth-child(n + 2) {
    border-top: 1px solid #e2ebf6;
    border-left: none;
    padding-top: 20px;
  }
}

/* ---------------------------------------------------------------------------
   Reduced motion: this file declares no keyframe animations or smooth
   scrolling; guard the transform-based movement transitions (card/chip lift,
   mobile filter drawer slide). The filter accordion already has its own
   reduced-motion guard above. */
@media (prefers-reduced-motion: reduce) {
  .dt-brand-chip,
  .dt-product-card.product-card,
  .dt-store .dt-fsidebar {
    transition: none;
  }
}

/* ---- grouped tyre cards on the products listing -----------------------
   Shown while browsing, before a size is chosen. They carry a "from" price
   and no add-to-cart: there is no single article to add until a size is
   picked, and putting one size's price on a card that adds a different size
   is how a shopper ends up charged something they never saw. */
.dt-tyre-card { text-decoration: none; color: inherit; display: flex; flex-direction: column; }
.dt-tyre-from {
  font-size: 12px; font-weight: 600; color: #94A3B8;
  margin-inline-end: 4px; text-transform: lowercase;
}
.dt-tyre-choose { font-size: 13px; font-weight: 700; color: #D51920; white-space: nowrap; }
.dt-tyre-card:hover .dt-tyre-choose { text-decoration: underline; }

/* ---- linked size dropdowns in the storefront sidebar ---- */
.dt-sizesel { display: flex; flex-direction: column; gap: 10px; }
.dt-sizesel-row { display: grid; grid-template-columns: 62px 1fr; align-items: center; gap: 10px; }
.dt-sizesel-row > span { font-size: 13px; font-weight: 600; color: #334155; }
.dt-sizesel-row select {
  width: 100%; border: 1px solid #E2EBF6; border-radius: 10px;
  padding: 9px 10px; font-size: 14px; font-family: inherit; background: #fff; color: #0F172A;
}
.dt-sizesel-row select:disabled { background: #F8FAFC; color: #94A3B8; }
.dt-sizesel-hint { font-size: 12px; color: #64748B; margin: 2px 0 0; }
.dt-sizesel-clear {
  align-self: flex-start; background: none; border: none; padding: 0;
  font-size: 13px; font-weight: 600; color: #D51920; cursor: pointer; font-family: inherit;
}
