:root {
  --ddo-ink: #151d28;
  --ddo-brand: #cf2e2b;
  --ddo-brand-2: #a8221f;
  --ddo-amber: #ffa01f;
  --ddo-paper: #fff;
  --ddo-mist: #f7f4f2;
  --ddo-line: #e9e2dc;
  --ddo-muted: #6f6a66;
  --ddo-red: #d5362c;
  --ddo-gold: #f2b84b;
  --ddo-display: 'Oswald', 'Arial Narrow', sans-serif;
  --ddo-sans: 'Barlow', Arial, sans-serif;
}
*,
*:before,
*:after {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: #fff;
  color: var(--ddo-ink);
  font: 15px/1.55 var(--ddo-sans);
}
body.ddo-menu-open {
  overflow: hidden;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
button,
input,
textarea,
select {
  font: inherit;
}
.screen-reader-text {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.ddo-announcement {
  height: 34px;
  background: var(--ddo-brand);
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 34px;
  padding: 0 24px;
  font-size: 12px;
}
.ddo-announcement a {
  position: absolute;
  right: 26px;
}
.ddo-header {
  height: 82px;
  max-width: 1440px;
  width: min(100%, 1440px);
  margin: auto;
  display: grid;
  grid-template-columns: 220px minmax(280px, 620px) 184px;
  gap: 24px;
  align-items: center;
  padding: 0 32px;
  justify-content: space-between;
}
.ddo-brand {
  display: flex;
  align-items: center;
  gap: 11px;
  width: max-content;
  line-height: 1;
}
.ddo-brand__mark {
  width: 35px;
  height: 35px;
  position: relative;
  display: inline-block;
}
.ddo-brand__mark i {
  position: absolute;
  background: var(--ddo-brand);
  display: block;
}
.ddo-brand__mark i:first-child {
  width: 11px;
  height: 35px;
  left: 2px;
  top: 0;
}
.ddo-brand__mark i:last-child {
  width: 28px;
  height: 11px;
  left: 2px;
  bottom: 0;
}
.ddo-brand b {
  display: block;
  font-size: 18px;
  letter-spacing: 1.4px;
}
.ddo-brand small {
  display: block;
  margin-top: 5px;
  font-size: 8px;
  letter-spacing: 2.1px;
  color: var(--ddo-muted);
}
.custom-logo {
  max-height: 55px;
  width: auto;
}
.ddo-header-search form,
.ddo-header-search .woocommerce-product-search {
  height: 42px;
  border: 1px solid var(--ddo-line);
  border-radius: 4px;
  background: var(--ddo-mist);
  display: flex;
  align-items: center;
  overflow: hidden;
}
.ddo-header-search input[type="search"] {
  border: 0;
  background: transparent;
  height: 100%;
  padding: 0 14px;
  flex: 1;
  min-width: 0;
  outline: 0;
}
.ddo-header-search button {
  height: 100%;
  border: 0;
  background: transparent;
  padding: 0 15px;
  cursor: pointer;
  color: var(--ddo-ink);
  font-size: 11px;
  font-weight: 700;
}
.ddo-header-search button:after {
  content: "⌕";
  display: none;
}
.ddo-header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  min-width: 184px;
}
.ddo-icon-button svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.ddo-icon-button {
  width: 40px;
  height: 40px;
  border: 0;
  background: transparent;
  display: grid;
  place-items: center;
  cursor: pointer;
  color: var(--ddo-ink);
  position: relative;
  font-size: 22px;
}
.ddo-cart-count {
  position: absolute;
  right: 0;
  top: 0;
  background: var(--ddo-amber);
  min-width: 17px;
  height: 17px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 10px;
  font-weight: 700;
}
.ddo-search-toggle,
.ddo-menu-toggle {
  display: none;
}
.ddo-primary-nav {
  height: 46px;
  border-top: 1px solid var(--ddo-line);
  border-bottom: 1px solid var(--ddo-line);
}
.ddo-primary-nav > ul {
  height: 100%;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 34px;
  list-style: none;
}
.ddo-primary-nav li {
  height: 100%;
  position: relative;
}
.ddo-primary-nav > ul > li > a {
  display: flex;
  align-items: center;
  height: 100%;
  font-size: 13px;
  font-weight: 700;
}
.ddo-primary-nav li:hover > a {
  color: var(--ddo-brand-2);
}
.ddo-primary-nav .sub-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: -18px;
  width: 230px;
  background: white;
  list-style: none;
  padding: 12px 0;
  margin: 0;
  z-index: 30;
  box-shadow: 0 12px 35px rgba(16, 17, 20, 0.13);
  border-top: 2px solid var(--ddo-brand);
}
.ddo-primary-nav li:hover > .sub-menu {
  display: block;
}
.ddo-primary-nav .sub-menu li {
  height: auto;
}
.ddo-primary-nav .sub-menu a {
  display: block;
  padding: 10px 18px;
  font-size: 12px;
}
.ddo-mobile-menu,
.ddo-drawer-overlay {
  display: none;
}
.ddo-site {
  min-height: 60vh;
}
.ddo-fallback-hero {
  min-height: 650px;
  height: calc(100vh - 162px);
  max-height: 780px;
  background-size: cover;
  background-position: 62% center;
  display: flex;
  align-items: center;
  position: relative;
}
.ddo-fallback-hero:after {
  content: "";
  position: absolute;
  inset: 0;
  width: 48%;
  background: rgba(245, 247, 250, 0.94);
}
.ddo-fallback-hero > div {
  width: min(1280px, calc(100% - 64px));
  margin: auto;
  position: relative;
  z-index: 1;
}
.ddo-fallback-hero p,
.ddo-kicker {
  font-size: 11px;
  letter-spacing: 2px;
  font-weight: 800;
  color: var(--ddo-brand-2);
  margin: 0;
}
.ddo-fallback-hero h1,
.ddo-page-header h1,
.ddo-content--single h1 {
  font: 500 72px/1.06 var(--ddo-display);
  letter-spacing: 0;
  max-width: 680px;
  margin: 14px 0 20px;
}
.ddo-fallback-hero span {
  display: block;
  font-size: 19px;
  max-width: 520px;
  color: #57534f;
}
.button,
.wp-element-button,
input[type="submit"] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border: 0;
  border-radius: 3px;
  background: var(--ddo-brand);
  color: white;
  padding: 0 20px;
  font-weight: 800;
  font-size: 13px;
  cursor: pointer;
}
.ddo-fallback-hero .button {
  margin-top: 30px;
}
.ddo-trust-row {
  min-height: 92px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: 1280px;
  margin: auto;
  border-bottom: 1px solid var(--ddo-line);
}
.ddo-trust-row > div {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-right: 1px solid var(--ddo-line);
}
.ddo-trust-row > div:last-child {
  border: 0;
}
.ddo-trust-row b,
.ddo-trust-row small {
  display: block;
}
.ddo-trust-row b {
  font-size: 13px;
}
.ddo-trust-row small {
  color: var(--ddo-muted);
  font-size: 11px;
}
.ddo-home-products {
  max-width: 1280px;
  margin: auto;
  padding: 95px 0;
}
.ddo-home-products > h2 {
  font: 500 38px/1.15 var(--ddo-display);
  letter-spacing: 0;
  margin: 10px 0 35px;
}
.ddo-content {
  max-width: 1180px;
  margin: 0 auto;
  padding: 80px 30px;
}
.ddo-content--page {
  max-width: 900px;
}
.ddo-page-header {
  margin-bottom: 45px;
}
.ddo-page-header h1,
.ddo-content--single h1 {
  font-size: 52px;
  max-width: 900px;
}
.ddo-entry-content {
  font-size: 16px;
}
.ddo-entry-content h2,
.ddo-entry-content h3 {
  font-family: var(--ddo-display);
  font-weight: 500;
  line-height: 1.2;
  margin-top: 2em;
}
.ddo-entry-content a {
  text-decoration: underline;
}
.ddo-entry-content table {
  width: 100%;
  border-collapse: collapse;
}
.ddo-entry-content th,
.ddo-entry-content td {
  border-bottom: 1px solid var(--ddo-line);
  padding: 12px;
  text-align: left;
}
.ddo-post-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px 20px;
}
.ddo-post-card {
  background: var(--ddo-mist);
}
.ddo-post-card img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}
.ddo-post-card > div {
  padding: 20px;
}
.ddo-post-card p {
  color: var(--ddo-muted);
  font-size: 11px;
}
.ddo-post-card h2 {
  font: 500 24px/1.2 var(--ddo-display);
}
.ddo-text-link {
  font-size: 12px;
  font-weight: 800;
  border-bottom: 1px solid;
}
.ddo-newsletter {
  background: var(--ddo-amber);
  padding: 60px max(32px, calc((100vw - 1280px) / 2));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}
.ddo-newsletter > div {
  max-width: 580px;
}
.ddo-newsletter p {
  font-size: 11px;
  letter-spacing: 2px;
  font-weight: 800;
  margin: 0;
}
.ddo-newsletter h2 {
  font: 500 34px/1.15 var(--ddo-display);
  letter-spacing: 0;
  margin: 10px 0 0;
}
.ddo-newsletter form {
  display: flex;
  width: min(500px, 100%);
  height: 50px;
}
.ddo-newsletter input {
  flex: 1;
  border: 1px solid var(--ddo-ink);
  background: transparent;
  padding: 0 16px;
  min-width: 0;
}
.ddo-newsletter button {
  border: 1px solid var(--ddo-ink);
  background: var(--ddo-ink);
  color: white;
  padding: 0 18px;
  font-weight: 800;
}
.ddo-footer {
  background: #171a1e;
  color: #ece4df;
}
.ddo-footer__main {
  max-width: 1280px;
  margin: auto;
  padding: 72px 0;
  display: grid;
  grid-template-columns: 1.5fr repeat(4, 1fr);
  gap: 45px;
}
.ddo-footer .ddo-brand__mark i {
  background: var(--ddo-amber);
}
.ddo-footer .ddo-brand small {
  color: #bdb1a8;
}
.ddo-footer__brand > p {
  color: #b0a49a;
  max-width: 280px;
  font-size: 13px;
}
.ddo-footer h3 {
  font-size: 12px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin: 4px 0 18px;
}
.ddo-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.ddo-footer__main > div:not(.ddo-footer__brand) a {
  display: block;
  color: #d3c4ba;
  font-size: 12px;
  margin: 0 0 10px;
}
.ddo-footer__main > div > p {
  color: #b0a49a;
  font-size: 12px;
}
.ddo-footer__bottom {
  max-width: 1280px;
  margin: auto;
  border-top: 1px solid #34302d;
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  color: #8a807a;
  font-size: 11px;
}
.ddo-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 20px;
}
.ddo-modal[hidden] {
  display: none;
}
.ddo-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 20, 14, 0.7);
}
.ddo-modal__content {
  position: relative;
  background: white;
  max-width: 900px;
  width: 100%;
  max-height: 90vh;
  overflow: auto;
}
.ddo-quick-view-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
}
.ddo-quick-view-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ddo-quick-view-copy {
  padding: 50px;
}
.ddo-quick-view-copy h2 {
  font: 500 34px/1.15 var(--ddo-display);
}
.ddo-quick-view-copy .price {
  font-size: 20px;
}
.ddo-modal-close {
  position: absolute;
  right: 12px;
  top: 12px;
  z-index: 2;
  width: 36px;
  height: 36px;
  border: 0;
  background: white;
  font-size: 0;
  cursor: pointer;
}
.ddo-modal-close:after {
  content: "\00d7";
  font-size: 26px;
}
.ddo-toast {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background: var(--ddo-ink);
  color: white;
  padding: 12px 18px;
  z-index: 120;
  font-size: 12px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.18);
}
@media (max-width: 1100px) {
  .ddo-header {
    grid-template-columns: 210px 1fr 170px;
    padding: 0 20px;
  }
  .ddo-primary-nav > ul {
    gap: 20px;
  }
  .ddo-home-products,
  .ddo-footer__main,
  .ddo-footer__bottom {
    max-width: calc(100% - 40px);
  }
  .ddo-footer__main {
    grid-template-columns: 1.4fr repeat(2, 1fr);
  }
}
@media (max-width: 820px) {
  .ddo-announcement {
    height: 31px;
    justify-content: center;
    padding: 0 10px;
  }
  .ddo-announcement__detail,
  .ddo-announcement a {
    display: none;
  }
  .ddo-header {
    height: 64px;
    padding: 0 12px;
    display: flex;
  }
  .ddo-menu-toggle,
  .ddo-search-toggle {
    display: grid;
  }
  .ddo-header-search,
  .ddo-primary-nav,
  .ddo-header-actions > a:not(.ddo-cart-button) {
    display: none;
  }
  .ddo-header > .ddo-brand {
    margin-right: auto;
  }
  .ddo-brand__mark {
    width: 29px;
    height: 29px;
  }
  .ddo-brand__mark i:first-child {
    width: 9px;
    height: 29px;
  }
  .ddo-brand__mark i:last-child {
    width: 23px;
    height: 9px;
  }
  .ddo-brand b {
    font-size: 14px;
  }
  .ddo-brand small {
    font-size: 6px;
    margin-top: 4px;
  }
  .ddo-mobile-menu {
    display: flex;
    position: fixed;
    z-index: 82;
    top: 0;
    bottom: 0;
    left: 0;
    width: min(360px, 90vw);
    background: white;
    padding: 22px;
    flex-direction: column;
    transform: translateX(-105%);
    transition: transform 0.25s ease;
  }
  .ddo-mobile-menu.is-open {
    transform: none;
  }
  .ddo-mobile-menu__head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 22px;
    border-bottom: 1px solid var(--ddo-line);
  }
  .ddo-mobile-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .ddo-mobile-menu li a {
    display: flex;
    justify-content: space-between;
    padding: 15px 2px;
    border-bottom: 1px solid var(--ddo-line);
    font-weight: 700;
  }
  .ddo-mobile-menu .sub-menu {
    display: none;
  }
  .ddo-mobile-contact {
    margin-top: auto;
    background: var(--ddo-brand);
    color: white;
    padding: 14px;
    text-align: center;
    font-weight: 800;
  }
  .ddo-drawer-overlay {
    position: fixed;
    display: block;
    inset: 0;
    background: rgba(6, 15, 10, 0.45);
    z-index: 80;
  }
  .ddo-drawer-overlay[hidden] {
    display: none;
  }
  .ddo-fallback-hero {
    height: 650px;
    min-height: 0;
    max-height: none;
    align-items: end;
    background-position: center 15%;
    background-size: 100% 62%;
    background-repeat: no-repeat;
  }
  .ddo-fallback-hero:after {
    width: 100%;
    height: 43%;
    inset: auto 0 0;
    background: #f6f4f1;
  }
  .ddo-fallback-hero > div {
    width: 100%;
    color: var(--ddo-ink);
    padding: 0 20px 42px;
  }
  .ddo-fallback-hero p {
    color: var(--ddo-brand-2);
  }
  .ddo-fallback-hero h1 {
    font-size: 44px;
    margin: 10px 0 12px;
  }
  .ddo-fallback-hero span {
    color: var(--ddo-muted);
    font-size: 15px;
    max-width: 350px;
  }
  .ddo-fallback-hero .button {
    background: var(--ddo-brand);
    color: white;
    margin-top: 22px;
  }
  .ddo-trust-row {
    min-height: 0;
    grid-template-columns: 1fr 1fr;
    padding: 10px 8px;
  }
  .ddo-trust-row > div {
    align-items: flex-start;
    padding: 10px;
    border: 0;
  }
  .ddo-home-products {
    max-width: none;
    padding: 65px 14px;
  }
  .ddo-home-products > h2 {
    font-size: 30px;
  }
  .ddo-content {
    padding: 50px 18px;
  }
  .ddo-page-header h1,
  .ddo-content--single h1 {
    font-size: 40px;
  }
  .ddo-post-grid {
    grid-template-columns: 1fr;
  }
  .ddo-newsletter {
    display: block;
    padding: 45px 18px;
  }
  .ddo-newsletter h2 {
    font-size: 30px;
  }
  .ddo-newsletter form {
    margin-top: 25px;
  }
  .ddo-newsletter button {
    font-size: 11px;
  }
  .ddo-footer__main {
    max-width: none;
    grid-template-columns: 1fr 1fr;
    padding: 50px 20px;
    gap: 34px 20px;
  }
  .ddo-footer__brand {
    grid-column: 1/3;
  }
  .ddo-footer__main > div:last-child {
    grid-column: 1/3;
  }
  .ddo-footer__bottom {
    max-width: none;
    margin: 0 20px;
    display: block;
  }
  .ddo-footer__bottom span {
    display: block;
    margin: 4px 0;
  }
  .ddo-quick-view-panel {
    display: block;
  }
  .ddo-quick-view-image {
    height: 310px;
  }
  .ddo-quick-view-copy {
    padding: 25px;
  }
  .ddo-quick-view-copy h2 {
    font-size: 28px;
  }
}

/* --------------------------------------------------------------------------
   1.0.1 layout hardening
   Keep every normal page readable on desktop, tablet and mobile while full-
   bleed hero/media sections remain allowed to reach the viewport edges.
   -------------------------------------------------------------------------- */
:root {
  --ddo-gutter: clamp(16px, 3vw, 32px);
}
html,
body {
  max-width: 100%;
}
body {
  overflow-x: hidden;
}
.ddo-site {
  width: 100%;
  min-width: 0;
  overflow-x: clip;
}

/* Reliable keyboard focus. */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--ddo-brand);
  outline-offset: 2px;
}

/* Consistent desktop gutters for sections that previously touched the edge. */
.ddo-home-products {
  width: min(100%, 1280px);
  padding-left: var(--ddo-gutter);
  padding-right: var(--ddo-gutter);
}
.ddo-footer__main {
  width: min(100%, 1280px);
  padding-left: var(--ddo-gutter);
  padding-right: var(--ddo-gutter);
}
.ddo-footer__bottom {
  width: min(100%, 1280px);
  padding-left: var(--ddo-gutter);
  padding-right: var(--ddo-gutter);
}

/* Shopping-benefit icons. Inline SVG avoids dependency on an icon font. */
.ddo-trust-row > div {
  flex-direction: row;
  gap: 13px;
}
.ddo-trust-row svg {
  width: 25px;
  height: 25px;
  flex: 0 0 25px;
  fill: none;
  stroke: var(--ddo-brand-2);
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.ddo-trust-row > div > span {
  min-width: 0;
}

/* Elementor demo safety net. These IDs are part of the supplied demo import. */
.ddo-elementor-page {
  width: 100%;
  overflow-x: clip;
}
.elementor-element-hero0001 {
  padding-left: var(--ddo-gutter) !important;
  padding-right: var(--ddo-gutter) !important;
}
.elementor-element-hero0002 {
  max-width: 650px;
}
.elementor-element-cats0001,
.elementor-element-prod0001 {
  padding-left: var(--ddo-gutter) !important;
  padding-right: var(--ddo-gutter) !important;
}

/* Long tables/content should never force the whole page wider than the screen. */
.ddo-entry-content,
.ddo-content,
.ddo-elementor-page {
  min-width: 0;
}
.ddo-entry-content table {
  max-width: 100%;
}

@media (max-width: 1100px) {
  .ddo-home-products,
  .ddo-footer__main,
  .ddo-footer__bottom {
    max-width: 100%;
  }
}

@media (max-width: 820px) {
  :root {
    --ddo-gutter: 16px;
  }
  .ddo-header {
    padding-left: 12px;
    padding-right: 12px;
  }
  .ddo-trust-row > div {
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
  }
  .ddo-trust-row svg {
    width: 22px;
    height: 22px;
    flex-basis: 22px;
  }
  .ddo-content {
    width: 100%;
    padding-left: var(--ddo-gutter);
    padding-right: var(--ddo-gutter);
  }
  .ddo-page-header h1,
  .ddo-content--single h1 {
    overflow-wrap: anywhere;
  }

  /* Imported Elementor homepage: stack narrow desktop columns on phones. */
  .elementor-element-hero0001 {
    min-height: 590px !important;
    justify-content: flex-end !important;
    padding: 40px var(--ddo-gutter) !important;
  }
  .elementor-element-hero0002 {
    width: 100% !important;
    max-width: 100% !important;
    padding: 28px 20px 30px !important;
  }
  .elementor-element-hero0004 .elementor-heading-title {
    font-size: clamp(38px, 11vw, 48px) !important;
    line-height: 1.06 !important;
  }
  .elementor-element-promo001 {
    min-height: 0 !important;
    flex-direction: column !important;
  }
  .elementor-element-promo002,
  .elementor-element-promo004 {
    width: 100% !important;
  }
  .elementor-element-promo003 img {
    width: 100% !important;
    height: min(105vw, 460px) !important;
    object-fit: cover !important;
  }
  .elementor-element-promo004 {
    padding: 44px var(--ddo-gutter) 50px !important;
  }
  .elementor-element-cats0001,
  .elementor-element-prod0001 {
    padding-left: var(--ddo-gutter) !important;
    padding-right: var(--ddo-gutter) !important;
  }
}

@media (max-width: 520px) {
  .ddo-announcement {
    font-size: 11px;
  }
  .ddo-brand {
    max-width: calc(100vw - 150px);
  }
  .ddo-brand > span:last-child {
    min-width: 0;
  }
  .ddo-brand b,
  .ddo-brand small {
    white-space: nowrap;
  }
  .ddo-newsletter form {
    height: auto;
    gap: 8px;
    flex-direction: column;
  }
  .ddo-newsletter input,
  .ddo-newsletter button {
    min-height: 48px;
    width: 100%;
  }
}

@media (max-width: 820px) {
  .ddo-header {
    position: relative;
  }
  .ddo-header-search {
    position: absolute;
    left: 0;
    right: 0;
    top: 64px;
    z-index: 70;
    padding: 10px var(--ddo-gutter, 16px) 12px;
    background: #fff;
    border-top: 1px solid var(--ddo-line);
    box-shadow: 0 10px 24px rgba(16, 17, 20, 0.1);
  }
  .ddo-header-search form,
  .ddo-header-search .woocommerce-product-search {
    width: 100%;
  }
}

/* --------------------------------------------------------------------------
   1.0.2 mobile-first hardening
   -------------------------------------------------------------------------- */

/* Prevent third-party blocks/widgets from creating horizontal scroll. */
.ddo-site,
.ddo-elementor-page,
.elementor,
.elementor-element,
.elementor-widget-container,
.wp-site-blocks,
.wp-block-group,
.wp-block-columns {
  min-width: 0;
}

.ddo-site iframe,
.ddo-site video,
.ddo-site canvas,
.ddo-site svg:not(.ddo-brand__mark svg) {
  max-width: 100%;
}

/* Imported Elementor demo: explicit, predictable responsive behaviour even if
   an older version of the demo was imported before responsive values existed. */
.elementor-element-hero0001,
.elementor-element-cats0001,
.elementor-element-prod0001,
.elementor-element-promo004 {
  box-sizing: border-box;
}

.elementor-element-cats0003 .elementor-heading-title,
.elementor-element-prod0003 .elementor-heading-title {
  font-size: clamp(30px, 4vw, 38px) !important;
  line-height: 1.08 !important;
}

.elementor-element-promo006 .elementor-heading-title {
  font-size: clamp(34px, 4.2vw, 46px) !important;
  line-height: 1.08 !important;
}

/* Elementor shortcodes should never be wider than their container. */
.elementor-widget-shortcode,
.elementor-widget-shortcode .elementor-shortcode {
  width: 100%;
  max-width: 100%;
  min-width: 0;
}

@media (max-width: 820px) {
  .ddo-header {
    gap: 4px;
    min-width: 0;
  }

  .ddo-header > .ddo-brand {
    min-width: 0;
    max-width: calc(100vw - 162px);
    margin-right: auto;
  }

  .ddo-header-actions {
    flex: 0 0 auto;
    min-width: 0;
    gap: 2px;
  }

  .ddo-icon-button {
    width: 38px;
    height: 38px;
    flex: 0 0 38px;
  }

  .ddo-cart-count {
    right: -1px;
    top: -1px;
  }

  .custom-logo {
    max-width: min(180px, 44vw);
    max-height: 42px;
  }

  /* Keep all levels of the mobile navigation usable. The previous theme hid
     every submenu, making some destinations impossible to reach on phones. */
  .ddo-mobile-menu {
    overflow-y: auto;
    overscroll-behavior: contain;
  }

  .ddo-mobile-menu > ul {
    padding-bottom: 24px;
  }

  .ddo-mobile-menu .sub-menu {
    display: block;
    margin: 0 0 0 14px;
    border-left: 1px solid var(--ddo-line);
  }

  .ddo-mobile-menu .sub-menu a {
    padding: 11px 10px 11px 14px;
    color: var(--ddo-muted);
    font-size: 12px;
    font-weight: 600;
  }

  .ddo-mobile-contact {
    position: sticky;
    bottom: 0;
    margin-top: 20px;
  }

  /* Homepage hero imported via Elementor. */
  .elementor-element-hero0001 {
    min-height: 620px !important;
    background-position: center top !important;
    background-size: auto 62% !important;
    background-repeat: no-repeat !important;
    justify-content: flex-end !important;
    padding: 38px var(--ddo-gutter) !important;
  }

  .elementor-element-hero0002 {
    width: 100% !important;
    max-width: 100% !important;
    background: rgba(245, 247, 250, 0.96) !important;
    padding: 26px 20px 28px !important;
  }

  .elementor-element-hero0004 .elementor-heading-title {
    font-size: clamp(36px, 10.8vw, 48px) !important;
    line-height: 1.04 !important;
  }

  .elementor-element-hero0005,
  .elementor-element-hero0005 p {
    font-size: 15px !important;
  }

  .elementor-element-cats0001 {
    padding: 58px var(--ddo-gutter) 60px !important;
  }

  .elementor-element-prod0001 {
    padding: 18px var(--ddo-gutter) 68px !important;
  }

  .elementor-element-promo001 {
    min-height: 0 !important;
    flex-direction: column !important;
  }

  .elementor-element-promo002,
  .elementor-element-promo004 {
    width: 100% !important;
  }

  .elementor-element-promo003 img {
    width: 100% !important;
    height: min(105vw, 470px) !important;
    object-fit: cover !important;
  }

  .elementor-element-promo004 {
    padding: 42px var(--ddo-gutter) 48px !important;
  }

  .elementor-element-promo006 .elementor-heading-title {
    font-size: clamp(32px, 9vw, 40px) !important;
  }

  .ddo-newsletter {
    width: 100%;
  }

  .ddo-footer__main,
  .ddo-footer__bottom {
    width: 100%;
  }
}

@media (max-width: 520px) {
  .ddo-announcement {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .ddo-brand {
    max-width: calc(100vw - 150px);
    gap: 8px;
  }

  .ddo-brand b {
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .ddo-brand small {
    display: none;
  }

  .ddo-footer__main {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .ddo-footer__brand,
  .ddo-footer__main > div:last-child {
    grid-column: auto;
  }

  .ddo-footer__bottom {
    margin: 0;
  }

  .ddo-quick-view-image {
    height: auto;
    aspect-ratio: 1 / 1;
  }

  .ddo-quick-view-copy {
    padding: 22px 18px 26px;
  }
}

/* --------------------------------------------------------------------------
   1.0.3 brand polish + mobile hardening
   -------------------------------------------------------------------------- */
html,
body {
  max-width: 100%;
  overflow-x: clip;
}

body {
  font-size: 15.5px;
}

#page,
.ddo-site,
.site,
.site-main {
  overflow-x: clip;
}

.custom-logo-link {
  display: inline-flex;
  align-items: center;
}

.ddo-brand {
  min-width: 0;
}

.ddo-brand__mark {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  display: grid;
  place-items: center;
}

.ddo-brand__mark svg {
  width: 100%;
  height: 100%;
  display: block;
}

.ddo-brand__wordmark {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.ddo-brand b {
  font-size: 19px;
  letter-spacing: 1.1px;
}

.ddo-brand small {
  margin-top: 4px;
  font-size: 8px;
  letter-spacing: 2.2px;
}

@media (max-width: 820px) {
  body {
    font-size: 16px;
  }

  .ddo-brand__mark {
    width: 34px;
    height: 34px;
    flex-basis: 34px;
  }

  .ddo-brand b {
    font-size: 15px;
    letter-spacing: 0.9px;
  }

  .ddo-header {
    min-width: 0;
    overflow-x: clip;
  }

  .ddo-header > .ddo-brand {
    max-width: calc(100vw - 148px);
  }
}

@media (max-width: 520px) {
  .ddo-header > .ddo-brand {
    max-width: calc(100vw - 122px);
  }

  .ddo-brand b {
    font-size: 14px;
  }
}

/* 1.0.4 final viewport hardening */
html,
body,
#page,
.ddo-site {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  overflow-x: hidden;
}

.ddo-site > *,
.ddo-site main,
.ddo-site section,
.ddo-site article,
.ddo-site form,
.ddo-site table,
.ddo-site figure {
  min-width: 0;
  max-width: 100%;
}

.ddo-newsletter {
  position: relative;
  z-index: 1;
  clear: both;
}

@media (max-width: 820px) {
  .ddo-announcement,
  .ddo-header,
  .ddo-site,
  .ddo-newsletter,
  .ddo-footer {
    max-width: 100%;
    overflow-x: hidden;
  }

  .ddo-newsletter {
    padding-left: 18px;
    padding-right: 18px;
  }
}

/* ========================================================================== 
   1.1.0 HOMEPAGE DEPTH + EDITORIAL SECTIONS
   ========================================================================== */
.ddo-home-editorial,
.ddo-home-value-story,
.ddo-home-sale-edit {
  width: min(100%, 1380px);
  margin-inline: auto;
  padding-inline: var(--ddo-gutter, 30px);
}

.ddo-home-editorial {
  padding-top: 86px;
  padding-bottom: 84px;
}

.ddo-home-editorial__head,
.ddo-home-sale-edit__head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 30px;
}

.ddo-home-editorial__head > div,
.ddo-home-sale-edit__head > div {
  max-width: 680px;
}

.ddo-home-editorial__head h2,
.ddo-home-sale-edit__head h2,
.ddo-home-value-story h2 {
  margin: 7px 0 0;
  font: 500 clamp(36px, 4.2vw, 56px) / 1.05 var(--ddo-display);
  letter-spacing: -0.02em;
}

.ddo-home-editorial__head > p {
  max-width: 420px;
  margin: 0 0 5px;
  color: var(--ddo-muted);
  font-size: 15px;
  line-height: 1.65;
}

.ddo-home-room-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.ddo-room-card {
  position: relative;
  isolation: isolate;
  display: flex;
  min-height: 430px;
  overflow: hidden;
  border-radius: 8px;
  background: linear-gradient(135deg, #e9e2dc, #f7f4f2);
  background-position: center;
  background-size: cover;
  color: #fff;
}

.ddo-room-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background: inherit;
  background-position: center;
  background-size: cover;
  transition: transform 0.5s ease;
}

.ddo-room-card__shade {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(10, 18, 13, 0.04) 30%, rgba(10, 18, 13, 0.76) 100%);
}

.ddo-room-card__copy {
  display: flex;
  width: 100%;
  margin-top: auto;
  padding: 24px;
  flex-direction: column;
}

.ddo-room-card__copy small {
  margin-bottom: 5px;
  color: rgba(255,255,255,.78);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.ddo-room-card__copy strong {
  font: 500 30px/1.08 var(--ddo-display);
}

.ddo-room-card__copy em {
  margin-top: 13px;
  font-size: 12px;
  font-style: normal;
  font-weight: 800;
}

@media (hover: hover) {
  .ddo-room-card:hover::before {
    transform: scale(1.035);
  }
}

.ddo-home-value-story {
  display: grid;
  grid-template-columns: minmax(280px, .8fr) minmax(0, 1.7fr);
  gap: clamp(40px, 7vw, 110px);
  width: 100%;
  max-width: none;
  background: var(--ddo-brand);
  color: #fff;
  padding: 82px max(var(--ddo-gutter, 30px), calc((100vw - 1320px) / 2));
}

.ddo-home-value-story__intro {
  max-width: 480px;
}

.ddo-home-value-story__intro .ddo-kicker {
  color: var(--ddo-amber);
}

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

.ddo-home-value-story article {
  min-height: 260px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 8px;
  background: rgba(255,255,255,.045);
  padding: 24px;
}

.ddo-home-value-story article > span {
  display: block;
  margin-bottom: 52px;
  color: var(--ddo-amber);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .1em;
}

.ddo-home-value-story h3 {
  margin: 0 0 10px;
  font: 500 24px/1.15 var(--ddo-display);
}

.ddo-home-value-story article p {
  margin: 0;
  color: rgba(255,255,255,.7);
  font-size: 13px;
  line-height: 1.65;
}

.ddo-home-sale-edit {
  padding-top: 86px;
  padding-bottom: 96px;
}

.ddo-home-sale-edit__head > a {
  margin-bottom: 7px;
  color: var(--ddo-brand);
  font-size: 13px;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.ddo-home-sale-edit .woocommerce ul.products {
  margin-top: 0;
}

/* More intentional space before the universal newsletter. */
.home .ddo-newsletter {
  margin-top: 0;
}

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

  .ddo-room-card {
    min-height: 390px;
  }

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

@media (max-width: 820px) {
  .ddo-home-editorial,
  .ddo-home-sale-edit {
    padding-top: 58px;
    padding-bottom: 62px;
  }

  .ddo-home-editorial__head,
  .ddo-home-sale-edit__head {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
  }

  .ddo-home-editorial__head h2,
  .ddo-home-sale-edit__head h2,
  .ddo-home-value-story h2 {
    font-size: clamp(34px, 9.5vw, 46px);
  }

  .ddo-home-value-story {
    gap: 34px;
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .ddo-home-value-story__grid {
    grid-template-columns: 1fr;
  }

  .ddo-home-value-story article {
    min-height: 0;
  }

  .ddo-home-value-story article > span {
    margin-bottom: 26px;
  }

  .ddo-home-sale-edit .woocommerce ul.products,
  .ddo-home-sale-edit .woocommerce ul.products.columns-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px 10px;
  }
}

@media (max-width: 560px) {
  .ddo-home-room-grid {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .ddo-room-card {
    min-height: 260px;
    border-radius: 6px;
  }

  .ddo-room-card__copy {
    padding: 15px;
  }

  .ddo-room-card__copy strong {
    font-size: 22px;
  }

  .ddo-room-card__copy em {
    font-size: 10px;
  }
}

/* Final flow isolation: WooCommerce grids may never collide with newsletter. */
.ddo-newsletter {
  position: relative;
  z-index: 1;
  clear: both;
}

.single-product + .ddo-newsletter,
.woocommerce + .ddo-newsletter {
  margin-top: 36px;
}

/* --------------------------------------------------------------------------
   1.2.0 — storefront feature styles
   -------------------------------------------------------------------------- */

/* Skip to content (keyboard users) */
.ddo-skip-link {
  top: 8px;
  left: 8px;
  z-index: 200;
  background: var(--ddo-brand);
  color: #fff;
  padding: 10px 16px;
  border-radius: 3px;
  font-weight: 700;
  font-size: 13px;
}
.ddo-skip-link:focus {
  position: fixed !important;
  width: auto;
  height: auto;
  padding: 10px 16px;
  margin: 0;
  clip: auto;
  white-space: normal;
  overflow: visible;
}

/* Sticky, shrinking header */
.ddo-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: #fff;
  transition: height 0.2s ease, box-shadow 0.2s ease;
}
.ddo-header.is-stuck {
  height: 64px;
  box-shadow: 0 10px 30px rgba(16, 17, 20, 0.09);
}

/* Live search */
.ddo-header-search {
  position: relative;
}
.ddo-search-results {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  z-index: 45;
  background: #fff;
  border: 1px solid var(--ddo-line);
  border-radius: 6px;
  box-shadow: 0 18px 45px rgba(16, 17, 20, 0.16);
  overflow: hidden;
}
.ddo-search-results__item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  border-bottom: 1px solid var(--ddo-mist);
}
.ddo-search-results__item:hover {
  background: var(--ddo-mist);
}
.ddo-search-results__item img {
  width: 46px;
  height: 46px;
  object-fit: cover;
  border-radius: 4px;
  flex: 0 0 46px;
}
.ddo-search-results__item b {
  display: block;
  font-size: 13px;
  line-height: 1.3;
}
.ddo-search-results__item em {
  display: block;
  font-style: normal;
  font-size: 12px;
  color: var(--ddo-brand-2);
  font-weight: 700;
  margin-top: 2px;
}
.ddo-search-results__item em del {
  color: var(--ddo-muted);
  font-weight: 400;
  margin-right: 4px;
}
.ddo-search-results__empty {
  margin: 0;
  padding: 16px 14px;
  font-size: 13px;
  color: var(--ddo-muted);
}
.ddo-search-results__all {
  display: block;
  padding: 11px 14px;
  font-size: 12px;
  font-weight: 700;
  color: var(--ddo-brand);
  background: var(--ddo-mist);
}
@media (max-width: 820px) {
  .ddo-search-results {
    position: fixed;
    left: 10px;
    right: 10px;
    top: 116px;
  }
}

/* Newsletter feedback + honeypot */
.ddo-hp {
  position: absolute !important;
  left: -9999px !important;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.ddo-newsletter-form {
  position: relative;
  flex-wrap: wrap;
}
.ddo-newsletter-msg {
  display: none;
  flex-basis: 100%;
  margin: 10px 0 0;
  font-size: 13px;
  font-weight: 600;
}
.ddo-newsletter-msg.is-visible {
  display: block;
}
.ddo-newsletter-msg.is-error {
  color: var(--ddo-red);
}

/* Delivery postcode result */
.ddo-postcode-result {
  margin: 10px 0 0;
  padding: 10px 14px;
  border-radius: 4px;
  background: var(--ddo-mist);
  border-left: 3px solid var(--ddo-brand);
  font-size: 13px;
  line-height: 1.5;
}
.ddo-postcode-result.is-error {
  border-left-color: var(--ddo-red);
  color: var(--ddo-red);
}
.ddo-postcode-free {
  color: var(--ddo-brand-2);
  font-weight: 600;
}

/* Cookie consent */
.ddo-consent {
  position: fixed;
  z-index: 130;
  left: 18px;
  bottom: 18px;
  width: min(430px, calc(100vw - 36px));
  background: #fff;
  border: 1px solid var(--ddo-line);
  border-radius: 8px;
  box-shadow: 0 24px 60px rgba(16, 17, 20, 0.22);
  padding: 20px;
}
.ddo-consent__copy strong {
  display: block;
  font-family: var(--ddo-display);
  font-size: 17px;
  margin-bottom: 6px;
}
.ddo-consent__copy p {
  margin: 0 0 12px;
  font-size: 12.5px;
  line-height: 1.5;
  color: var(--ddo-muted);
}
.ddo-consent__copy a {
  color: var(--ddo-brand);
  font-weight: 700;
  text-decoration: underline;
}
.ddo-consent__choices {
  display: grid;
  gap: 8px;
  margin: 0 0 14px;
  font-size: 13px;
}
.ddo-consent__choices label {
  display: flex;
  align-items: center;
  gap: 9px;
  cursor: pointer;
}
.ddo-consent__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.ddo-consent__actions button {
  border: 1px solid var(--ddo-line);
  background: #fff;
  border-radius: 4px;
  padding: 9px 14px;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
}
.ddo-consent__actions .ddo-consent__accept,
.ddo-consent__actions .ddo-consent__save {
  background: var(--ddo-brand);
  border-color: var(--ddo-brand);
  color: #fff;
}
.ddo-cookie-settings {
  background: none;
  border: 0;
  padding: 0;
  color: inherit;
  cursor: pointer;
  font-size: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* Back to top */
.ddo-to-top {
  position: fixed;
  z-index: 110;
  right: 18px;
  bottom: 18px;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: var(--ddo-brand);
  color: #fff;
  cursor: pointer;
  display: grid;
  place-items: center;
  box-shadow: 0 10px 26px rgba(16, 17, 20, 0.28);
}
.ddo-to-top svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
/* The hidden attribute must always win over component display values. */
.ddo-to-top[hidden],
.ddo-consent[hidden],
.ddo-consent__choices[hidden],
.ddo-consent__save[hidden],
.ddo-search-results[hidden],
.ddo-postcode-result[hidden],
.ddo-recently-viewed[hidden] {
  display: none;
}

.ddo-consent:not([hidden]) ~ .ddo-to-top,
body:has(.ddo-consent:not([hidden])) .ddo-to-top {
  bottom: 18px;
}
@media (max-width: 820px) {
  /* Keep clear of the mobile sticky add-to-cart bar. */
  .single-product .ddo-to-top,
  .ddo-to-top {
    bottom: 84px;
  }
}

/* Recently viewed */
.ddo-recently-viewed {
  width: min(100%, 1280px);
  margin: 44px auto 0;
  padding: 0 20px;
  clear: both;
}
.ddo-recently-viewed h2 {
  font-family: var(--ddo-display);
  font-size: 26px;
  font-weight: 500;
  margin: 0 0 18px;
}
.ddo-recently-viewed__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
.ddo-recent-card {
  background: var(--ddo-mist);
  border-radius: 6px;
  overflow: hidden;
  display: block;
}
.ddo-recent-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}
.ddo-recent-card span {
  display: block;
  padding: 12px 14px;
}
.ddo-recent-card b {
  display: block;
  font-size: 13px;
  line-height: 1.35;
  overflow-wrap: anywhere;
}
.ddo-recent-card em {
  font-style: normal;
  font-weight: 700;
  font-size: 13px;
  color: var(--ddo-brand-2);
}
@media (max-width: 760px) {
  .ddo-recently-viewed__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }
}

/* Free delivery progress (basket) */
.ddo-ship-progress {
  max-width: 640px;
  margin: 0 0 22px;
  padding: 14px 18px;
  background: var(--ddo-mist);
  border-radius: 6px;
}
.ddo-ship-progress p {
  margin: 0 0 10px;
  font-size: 13.5px;
}
.ddo-ship-progress__track {
  height: 8px;
  background: #e9e2dc;
  border-radius: 99px;
  overflow: hidden;
}
.ddo-ship-progress__track i {
  display: block;
  height: 100%;
  background: var(--ddo-brand);
  border-radius: 99px;
  transition: width 0.4s ease;
}

/* Comments */
.ddo-comments {
  margin-top: 44px;
}
.ddo-comments h2 {
  font-family: var(--ddo-display);
  font-weight: 500;
  font-size: 24px;
}
.ddo-comments .comment-list {
  list-style: none;
  margin: 0 0 30px;
  padding: 0;
}
.ddo-comments .comment-list .comment {
  border-bottom: 1px solid var(--ddo-line);
  padding: 18px 0;
}
.ddo-comments .comment-list .children {
  list-style: none;
  margin-left: 26px;
}
.ddo-comments .comment-author {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 14px;
}
.ddo-comments .comment-author .avatar {
  border-radius: 50%;
}
.ddo-comments .comment-metadata {
  font-size: 12px;
  color: var(--ddo-muted);
}
.ddo-comments .comment-content p {
  margin: 10px 0 0;
}
.ddo-comments .comment-form label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  margin: 14px 0 6px;
}
.ddo-comments .comment-form input:not([type="checkbox"]):not([type="submit"]),
.ddo-comments .comment-form textarea {
  width: 100%;
  max-width: 560px;
  border: 1px solid var(--ddo-line);
  border-radius: 4px;
  padding: 10px 12px;
  background: #fff;
}
.ddo-comments .comment-form .submit {
  width: auto;
  background: var(--ddo-brand);
  color: #fff;
  border: 0;
  border-radius: 4px;
  padding: 11px 22px;
  font-weight: 700;
  cursor: pointer;
  margin-top: 14px;
}

/* 404 */
.ddo-empty {
  max-width: 720px;
  margin: 0 auto;
  padding: 60px 20px 80px;
  text-align: center;
}
.ddo-empty h1 {
  font-family: var(--ddo-display);
  font-weight: 500;
}
.ddo-empty form {
  max-width: 420px;
  margin: 20px auto 0;
  display: flex;
}
.ddo-empty input[type="search"] {
  flex: 1;
  border: 1px solid var(--ddo-line);
  border-radius: 4px 0 0 4px;
  padding: 11px 14px;
}
.ddo-empty button[type="submit"],
.ddo-empty .search-submit {
  border: 0;
  background: var(--ddo-brand);
  color: #fff;
  border-radius: 0 4px 4px 0;
  padding: 0 18px;
  font-weight: 700;
  cursor: pointer;
}
.ddo-content--404 .ddo-404 {
  max-width: 720px;
  margin: 0 auto;
  padding: 70px 20px 90px;
  text-align: center;
}
.ddo-404 h1 {
  font-family: var(--ddo-display);
  font-size: clamp(34px, 5vw, 52px);
  font-weight: 500;
  margin: 6px 0 14px;
}
.ddo-404 form {
  max-width: 420px;
  margin: 22px auto;
  display: flex;
}
.ddo-404 input[type="search"] {
  flex: 1;
  border: 1px solid var(--ddo-line);
  border-radius: 4px 0 0 4px;
  padding: 11px 14px;
}
.ddo-404 button[type="submit"],
.ddo-404 .search-submit {
  border: 0;
  background: var(--ddo-brand);
  color: #fff;
  border-radius: 0 4px 4px 0;
  padding: 0 18px;
  font-weight: 700;
  cursor: pointer;
}
.ddo-404__chips {
  justify-content: center;
  margin: 8px 0 26px;
}
.ddo-404 .button {
  display: inline-block;
  background: var(--ddo-brand);
  color: #fff;
  padding: 12px 24px;
  border-radius: 4px;
  font-weight: 700;
}

/* Reduced motion: honour the OS-level preference everywhere. */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *:before,
  *:after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

/* 1.6.4 homepage FAQ */
.ddo-m164-faq{padding:clamp(78px,8vw,114px) 0;background:#102a43;color:#fff}.ddo-m164-faq__layout{display:grid;grid-template-columns:.8fr 1.2fr;gap:clamp(52px,8vw,115px)}.ddo-m164-faq header{position:sticky;top:110px}.ddo-m164-faq h2{max-width:520px;margin:12px 0 18px;color:#fff;font-size:clamp(44px,5vw,68px);line-height:.95;letter-spacing:-.05em}.ddo-m164-faq header>p:last-child{max-width:430px;color:#c5d5e2;font-size:16px;line-height:1.7}.ddo-m164-faq__list{border-top:1px solid rgba(255,255,255,.18)}.ddo-m164-faq details{border-bottom:1px solid rgba(255,255,255,.18)}.ddo-m164-faq summary{display:flex;align-items:center;justify-content:space-between;gap:22px;padding:24px 2px;list-style:none;color:#fff;font-size:17px;font-weight:800;cursor:pointer}.ddo-m164-faq summary::-webkit-details-marker{display:none}.ddo-m164-faq summary i{position:relative;flex:0 0 34px;width:34px;height:34px;border-radius:9px;background:#f59e0b}.ddo-m164-faq summary i:before,.ddo-m164-faq summary i:after{content:"";position:absolute;left:10px;right:10px;top:16px;height:2px;background:#102a43}.ddo-m164-faq summary i:after{transform:rotate(90deg);transition:.25s}.ddo-m164-faq details[open] summary i:after{transform:none}.ddo-m164-faq details p{max-width:690px;margin:0;padding:0 55px 25px 2px;color:#c5d5e2;line-height:1.75}
@media(max-width:760px){.ddo-m164-faq{padding:68px 0}.ddo-m164-faq__layout{grid-template-columns:1fr;gap:34px}.ddo-m164-faq header{position:static}.ddo-m164-faq h2{font-size:42px}.ddo-m164-faq summary{font-size:15px}.ddo-m164-faq details p{padding-right:8px}}

/* ==========================================================================
   1.3.0 PREMIUM PASS
   Depth, motion and spacing upgrades. This layer intentionally sits last: it
   refines the stable 1.x foundation without moving a single piece of markup,
   so imported Elementor demos and existing content keep working unchanged.
   ========================================================================== */

:root {
  --ddo-ink-deep: #0f1820;
  --ddo-brand-bright: #e84a41;
  --ddo-sand: #f4f1e8;
  --ddo-radius-s: 8px;
  --ddo-radius-m: 12px;
  --ddo-radius-l: 20px;
  --ddo-shadow-1: 0 1px 2px rgba(16, 17, 20, 0.05), 0 8px 22px rgba(16, 17, 20, 0.06);
  --ddo-shadow-2: 0 14px 38px rgba(16, 17, 20, 0.12), 0 3px 8px rgba(16, 17, 20, 0.05);
  --ddo-shadow-3: 0 30px 70px rgba(16, 17, 20, 0.18), 0 8px 22px rgba(16, 17, 20, 0.08);
  --ddo-section: clamp(74px, 8vw, 112px);
  --ddo-section-tight: clamp(58px, 6.5vw, 88px);
  --ddo-ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

::selection {
  background: var(--ddo-amber);
  color: var(--ddo-ink);
}

/* ---- Global softness -------------------------------------------------- */
a {
  transition: color 0.18s ease;
}

main#primary,
.ddo-content,
.ddo-woocommerce-main {
  scroll-margin-top: 112px;
}

/* Softer, consistent focus rings on every interactive field. */
input:not([type="checkbox"]):not([type="radio"]):not([type="submit"]):not([type="button"]):focus,
textarea:focus,
select:focus {
  border-color: var(--ddo-brand) !important;
  outline: none;
  box-shadow: 0 0 0 3px rgba(207, 46, 43, 0.12);
}

/* ---- Buttons ---------------------------------------------------------- */
.button,
.wp-element-button,
input[type="submit"] {
  min-height: 50px;
  border-radius: 6px;
  background: linear-gradient(180deg, var(--ddo-brand-bright), var(--ddo-brand) 72%);
  box-shadow: 0 12px 26px rgba(207, 46, 43, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.14);
  letter-spacing: 0.01em;
  transition: transform 0.18s var(--ddo-ease), box-shadow 0.22s var(--ddo-ease), filter 0.18s ease;
}

@media (hover: hover) {
  .button:hover,
  .wp-element-button:hover,
  input[type="submit"]:hover {
    transform: translateY(-1px);
    box-shadow: 0 16px 34px rgba(207, 46, 43, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.16);
    filter: brightness(1.04);
  }
}

.button:active,
.wp-element-button:active,
input[type="submit"]:active {
  transform: translateY(0);
  box-shadow: 0 6px 14px rgba(207, 46, 43, 0.2);
}

/* ---- Kicker labels gain a small rule ---------------------------------- */
.ddo-kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  letter-spacing: 2.6px;
}

.ddo-kicker::before {
  content: "";
  width: 24px;
  height: 2px;
  background: currentColor;
  opacity: 0.55;
}

/* ---- Announcement bar -------------------------------------------------- */
.ddo-announcement {
  height: 36px;
  background: linear-gradient(90deg, #1c1f24 0%, var(--ddo-brand) 32%, var(--ddo-brand-bright) 68%, #1c1f24 100%);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.ddo-announcement a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.ddo-announcement__detail {
  color: rgba(255, 255, 255, 0.72);
}

/* ---- Sticky header: frosted glass ------------------------------------- */
.ddo-header.is-stuck {
  background: rgba(255, 255, 255, 0.9);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(233, 226, 221, 0.85);
  box-shadow: 0 14px 34px rgba(16, 17, 20, 0.07);
}

.ddo-icon-button {
  border-radius: 50%;
  transition: background 0.18s ease, transform 0.18s var(--ddo-ease);
}

@media (hover: hover) {
  .ddo-icon-button:hover {
    background: var(--ddo-mist);
  }
}

.ddo-cart-count {
  border: 2px solid #fff;
  box-shadow: 0 3px 8px rgba(16, 17, 20, 0.22);
  font-variant-numeric: tabular-nums;
}

.ddo-cart-button.is-bumping .ddo-cart-count {
  animation: ddo-cart-pop 0.5s var(--ddo-ease);
}

@keyframes ddo-cart-pop {
  0% { transform: scale(0.5); }
  55% { transform: scale(1.4); }
  100% { transform: scale(1); }
}

/* ---- Header search pill ------------------------------------------------ */
.ddo-header-search form,
.ddo-header-search .woocommerce-product-search {
  border-radius: 999px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.ddo-header-search form:focus-within {
  background: #fff;
  border-color: rgba(207, 46, 43, 0.4);
  box-shadow: 0 0 0 4px rgba(207, 46, 43, 0.1);
}

/* ---- Primary navigation: animated underline + premium dropdown --------- */
.ddo-primary-nav > ul > li > a {
  position: relative;
}

.ddo-primary-nav > ul > li > a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 9px;
  width: 100%;
  height: 2px;
  background: var(--ddo-amber);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.28s var(--ddo-ease);
}

.ddo-primary-nav > ul > li:hover > a::after,
.ddo-primary-nav > ul > li:focus-within > a::after,
.ddo-primary-nav > ul > li.current-menu-item > a::after {
  transform: scaleX(1);
}

.ddo-primary-nav li:hover > .sub-menu,
.ddo-primary-nav li:focus-within > .sub-menu {
  animation: ddo-nav-drop 0.2s var(--ddo-ease);
}

@keyframes ddo-nav-drop {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}

.ddo-primary-nav .sub-menu {
  border-top: 3px solid var(--ddo-amber);
  border-radius: 0 0 var(--ddo-radius-m) var(--ddo-radius-m);
  box-shadow: var(--ddo-shadow-2);
  padding: 8px;
}

.ddo-primary-nav .sub-menu a {
  border-radius: 6px;
  padding: 10px 14px;
  transition: background 0.15s ease, color 0.15s ease, padding-left 0.22s var(--ddo-ease);
}

.ddo-primary-nav .sub-menu a:hover {
  background: var(--ddo-mist);
  color: var(--ddo-brand);
  padding-left: 18px;
}

/* ---- Fallback hero: cinematic gradient instead of a flat slab ---------- */
.ddo-fallback-hero::after {
  width: 55%;
  background: linear-gradient(90deg, rgba(245, 247, 250, 0.97) 0%, rgba(245, 247, 250, 0.88) 58%, rgba(245, 247, 250, 0) 100%);
}

.ddo-fallback-hero h1 {
  letter-spacing: -0.02em;
}

/* ---- Trust strip becomes four floating cards --------------------------- */
.ddo-trust-row {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  padding: 18px var(--ddo-gutter);
  border-bottom: 0;
}

.ddo-trust-row > div,
.ddo-trust-row > div:last-child {
  border: 1px solid var(--ddo-line);
  border-radius: var(--ddo-radius-m);
  background: #fff;
  padding: 18px 16px;
  box-shadow: var(--ddo-shadow-1);
}

.ddo-trust-row svg {
  width: 38px;
  height: 38px;
  flex-basis: 38px;
  padding: 8px;
  border-radius: 50%;
  background: var(--ddo-mist);
}

/* ---- Home section rhythm ------------------------------------------------ */
.ddo-home-products {
  padding-top: var(--ddo-section-tight);
  padding-bottom: var(--ddo-section-tight);
}

.ddo-home-products > h2 {
  font-size: clamp(34px, 3.6vw, 46px);
  letter-spacing: -0.02em;
}

.ddo-home-editorial {
  padding-top: var(--ddo-section-tight);
  padding-bottom: var(--ddo-section-tight);
}

.ddo-home-sale-edit {
  padding-top: var(--ddo-section-tight);
  padding-bottom: var(--ddo-section);
}

.ddo-home-editorial__head h2,
.ddo-home-sale-edit__head h2,
.ddo-home-value-story h2 {
  letter-spacing: -0.02em;
}

/* Outlet link becomes a real pill CTA. */
.ddo-home-sale-edit__head > a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1.5px solid var(--ddo-brand);
  border-radius: 999px;
  padding: 10px 20px;
  text-decoration: none;
  transition: background 0.18s ease, color 0.18s ease, box-shadow 0.2s ease;
}

@media (hover: hover) {
  .ddo-home-sale-edit__head > a:hover {
    background: var(--ddo-brand);
    color: #fff;
    box-shadow: 0 10px 22px rgba(207, 46, 43, 0.22);
  }
}

/* ---- Room cards: deeper, rounder, more premium -------------------------- */
.ddo-room-card {
  border-radius: 14px;
  box-shadow: var(--ddo-shadow-1);
  transition: box-shadow 0.28s ease;
}

@media (hover: hover) {
  .ddo-room-card:hover {
    box-shadow: var(--ddo-shadow-2);
  }
}

/* ---- Value story: rich radial depth instead of flat green --------------- */
.ddo-home-value-story {
  background: radial-gradient(130% 150% at 5% 0%, #e84a41 0%, var(--ddo-brand) 48%, #8f1b18 100%);
}

.ddo-home-value-story article {
  transition: transform 0.25s var(--ddo-ease), background 0.25s ease, border-color 0.25s ease;
}

@media (hover: hover) {
  .ddo-home-value-story article:hover {
    background: rgba(255, 255, 255, 0.085);
    border-color: rgba(255, 255, 255, 0.28);
    transform: translateY(-3px);
  }
}

/* ---- Newsletter: from flat lime band to a floating premium panel -------- */
.ddo-newsletter {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  width: min(calc(100% - (2 * var(--ddo-gutter))), 1280px);
  margin: 0 auto;
  border-radius: var(--ddo-radius-l);
  background: linear-gradient(118deg, #b52825 0%, var(--ddo-brand) 46%, #0f3154 100%);
  color: #fff;
  padding: clamp(46px, 6vw, 74px) clamp(26px, 5vw, 68px);
  box-shadow: var(--ddo-shadow-2);
}

.ddo-newsletter::before,
.ddo-newsletter::after {
  content: "";
  position: absolute;
  z-index: -1;
  border-radius: 50%;
}

.ddo-newsletter::before {
  width: 340px;
  height: 340px;
  right: -110px;
  top: -130px;
  background: rgba(255, 160, 31, 0.14);
}

.ddo-newsletter::after {
  width: 220px;
  height: 220px;
  left: 34%;
  bottom: -150px;
  background: rgba(255, 255, 255, 0.05);
}

.ddo-newsletter p {
  color: var(--ddo-amber);
}

.ddo-newsletter h2 {
  color: #fff;
  letter-spacing: -0.015em;
}

.ddo-newsletter form {
  height: 54px;
}

.ddo-newsletter input {
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-right: 0;
  border-radius: 8px 0 0 8px;
  background: rgba(255, 255, 255, 0.09);
  color: #fff;
  padding: 0 18px;
}

.ddo-newsletter input::placeholder {
  color: rgba(255, 255, 255, 0.55);
}

.ddo-newsletter input:focus {
  border-color: var(--ddo-amber);
  background: #fff;
  color: var(--ddo-ink);
}

.ddo-newsletter button {
  border: 0;
  border-radius: 0 8px 8px 0;
  background: var(--ddo-amber);
  color: var(--ddo-ink);
  font-size: 13px;
  letter-spacing: 0.02em;
  transition: background 0.18s ease, transform 0.18s var(--ddo-ease);
}

@media (hover: hover) {
  .ddo-newsletter button:hover {
    background: #fff;
  }
}

.ddo-newsletter .ddo-newsletter-msg {
  color: #fff;
}

/* ---- Footer: deeper gradient, social row, payment marks ----------------- */
.ddo-footer {
  background: linear-gradient(180deg, #1f2328 0%, #14171b 100%);
}

.ddo-footer__main {
  padding: 82px 0 66px;
}

.ddo-footer__main > div:not(.ddo-footer__brand) a:hover {
  color: #fff;
}

.ddo-footer__bottom {
  padding: 24px 0;
}

.ddo-socials {
  display: flex;
  gap: 10px;
  margin-top: 24px;
}

.ddo-socials a {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  color: #d8cdc4;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s var(--ddo-ease);
}

@media (hover: hover) {
  .ddo-socials a:hover {
    background: var(--ddo-amber);
    border-color: var(--ddo-amber);
    color: var(--ddo-ink);
    transform: translateY(-2px);
  }
}

.ddo-socials svg {
  width: 17px;
  height: 17px;
  fill: currentColor;
  stroke: none;
}

.ddo-payments {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 7px;
}

.ddo-payments span {
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 5px;
  padding: 4px 9px;
  color: #c9c1ba;
  font-size: 9.5px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

/* ---- Static pages, posts and editor content ----------------------------- */
.ddo-content {
  padding-top: var(--ddo-section-tight);
  padding-bottom: var(--ddo-section-tight);
}

.ddo-page-header h1,
.ddo-content--single h1 {
  letter-spacing: -0.02em;
}

.ddo-entry-content {
  font-size: 16.5px;
  line-height: 1.75;
}

.ddo-entry-content > p:first-of-type {
  font-size: 18px;
}

.ddo-entry-content img,
.single .ddo-content--single article > img {
  border-radius: var(--ddo-radius-m);
}

.single .ddo-content--single article > img {
  margin: 26px 0;
}

.ddo-entry-content blockquote {
  margin: 1.8em 0;
  border-left: 3px solid var(--ddo-amber);
  border-radius: 0 var(--ddo-radius-m) var(--ddo-radius-m) 0;
  background: var(--ddo-mist);
  padding: 20px 26px;
}

.ddo-entry-content blockquote p:last-child {
  margin-bottom: 0;
}

.ddo-entry-content hr {
  border: 0;
  height: 1px;
  background: var(--ddo-line);
  margin: 2.5em 0;
}

.ddo-entry-content ul,
.ddo-entry-content ol {
  padding-left: 22px;
}

.ddo-entry-content li {
  margin: 7px 0;
}

.alignfull {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  max-width: none;
}

.alignfull img {
  border-radius: 0;
}

.ddo-archive-description {
  max-width: 640px;
  margin: -14px 0 42px;
  color: var(--ddo-muted);
  font-size: 16px;
  line-height: 1.7;
}

/* ---- Blog cards ---------------------------------------------------------- */
.ddo-post-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--ddo-line);
  border-radius: var(--ddo-radius-m);
  background: #fff;
  box-shadow: var(--ddo-shadow-1);
  transition: transform 0.22s var(--ddo-ease), box-shadow 0.25s ease, border-color 0.2s ease;
}

@media (hover: hover) {
  .ddo-post-card:hover {
    transform: translateY(-4px);
    border-color: #dccfc5;
    box-shadow: var(--ddo-shadow-2);
  }
}

.ddo-post-card > div {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 22px;
}

.ddo-post-card h2 {
  letter-spacing: -0.01em;
}

.ddo-post-card .ddo-text-link {
  margin-top: auto;
}

@media (hover: hover) {
  .ddo-post-card a:hover h2 {
    color: var(--ddo-brand-2);
  }
}

/* ---- Blog / archive pagination ------------------------------------------- */
.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-top: 52px;
}

.nav-links .page-numbers {
  display: grid;
  place-items: center;
  min-width: 42px;
  height: 42px;
  border: 1px solid var(--ddo-line);
  border-radius: var(--ddo-radius-s);
  background: #fff;
  padding: 0 14px;
  font-size: 13px;
  font-weight: 700;
  transition: all 0.18s ease;
}

.nav-links .page-numbers.current {
  border-color: var(--ddo-brand);
  background: var(--ddo-brand);
  color: #fff;
}

@media (hover: hover) {
  .nav-links a.page-numbers:hover {
    border-color: var(--ddo-brand);
    color: var(--ddo-brand);
  }
}

/* ---- Generic search forms -------------------------------------------------- */
.search-form,
.ddo-content .search-form {
  display: flex;
  gap: 0;
}

.search-form .search-field,
.ddo-content .search-form .search-field {
  flex: 1;
  min-width: 0;
  height: 48px;
  border: 1px solid var(--ddo-line);
  border-right: 0;
  border-radius: 8px 0 0 8px;
  background: #fff;
  padding: 0 16px;
}

.search-form .search-submit,
.ddo-content .search-form .search-submit {
  border: 0;
  border-radius: 0 8px 8px 0;
  background: var(--ddo-brand);
  color: #fff;
  padding: 0 20px;
  font-weight: 800;
  cursor: pointer;
  transition: background 0.18s ease;
}

@media (hover: hover) {
  .search-form .search-submit:hover {
    background: var(--ddo-brand-2);
  }
}

.ddo-empty form,
.ddo-404 form {
  margin-top: 26px;
}

.ddo-404 p {
  max-width: 520px;
  margin-inline: auto;
  color: var(--ddo-muted);
  font-size: 16px;
  line-height: 1.7;
}

/* ---- Quick-view modal ----------------------------------------------------- */
.ddo-modal__content {
  border-radius: var(--ddo-radius-l);
  box-shadow: var(--ddo-shadow-3);
  overflow: hidden;
}

.ddo-quick-view-copy {
  padding: clamp(30px, 4vw, 52px);
}

.ddo-quick-view-copy h2 {
  letter-spacing: -0.01em;
}

.ddo-quick-view-copy .summary {
  margin-top: 14px;
  color: var(--ddo-muted);
  font-size: 15px;
  line-height: 1.7;
}

.ddo-quick-view-copy .button {
  margin-top: 24px;
}

.ddo-modal-close {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  box-shadow: var(--ddo-shadow-1);
  transition: transform 0.22s var(--ddo-ease);
}

@media (hover: hover) {
  .ddo-modal-close:hover {
    transform: rotate(90deg);
  }
}

/* ---- Consent, toast, back-to-top ------------------------------------------ */
.ddo-consent {
  border-radius: 14px;
  box-shadow: var(--ddo-shadow-3);
}

.ddo-consent__actions button {
  border-radius: 6px;
  transition: background 0.15s ease, color 0.15s ease;
}

.ddo-toast {
  display: flex;
  align-items: center;
  gap: 14px;
  border-radius: 8px;
  background: var(--ddo-brand);
  padding: 13px 18px;
  box-shadow: var(--ddo-shadow-2);
}

.ddo-toast a {
  border-left: 1px solid rgba(255, 255, 255, 0.3);
  padding-left: 14px;
  color: var(--ddo-amber);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
  white-space: nowrap;
}

.ddo-to-top {
  transition: transform 0.2s var(--ddo-ease), box-shadow 0.2s ease;
}

@media (hover: hover) {
  .ddo-to-top:hover {
    transform: translateY(-3px);
    box-shadow: var(--ddo-shadow-2);
  }
}

/* ---- Recently viewed + delivery progress ----------------------------------- */
.ddo-recently-viewed {
  margin-top: 56px;
  padding: 0 var(--ddo-gutter);
}

.ddo-recently-viewed h2 {
  font-size: clamp(24px, 2.6vw, 30px);
  letter-spacing: -0.01em;
}

.ddo-recent-card {
  border: 1px solid var(--ddo-line);
  border-radius: var(--ddo-radius-m);
  background: #fff;
  box-shadow: var(--ddo-shadow-1);
  transition: transform 0.2s var(--ddo-ease), box-shadow 0.25s ease;
}

@media (hover: hover) {
  .ddo-recent-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--ddo-shadow-2);
  }
}

.ddo-recent-card span {
  padding: 14px 16px 16px;
}

.ddo-ship-progress {
  border: 1px solid #ebe3dd;
  border-radius: var(--ddo-radius-m);
  box-shadow: var(--ddo-shadow-1);
}

.ddo-ship-progress__track i {
  background: linear-gradient(90deg, var(--ddo-brand-2), var(--ddo-brand-bright));
}

/* ---- Comments ---------------------------------------------------------------- */
.ddo-comments .comment-form input:not([type="checkbox"]):not([type="submit"]),
.ddo-comments .comment-form textarea {
  border-radius: 8px;
}

.ddo-comments .comment-form .submit {
  min-height: 48px;
  border-radius: 8px;
  transition: background 0.18s ease;
}

@media (hover: hover) {
  .ddo-comments .comment-form .submit:hover {
    background: var(--ddo-brand-2);
  }
}

/* ---- 1.3.0 responsive corrections ------------------------------------------- */
@media (max-width: 820px) {
  .ddo-fallback-hero::after {
    width: 100%;
    height: 43%;
    inset: auto 0 0;
    background: linear-gradient(0deg, rgba(245, 247, 250, 0.98) 0%, rgba(245, 247, 250, 0.94) 78%, rgba(245, 247, 250, 0) 100%);
  }

  .ddo-trust-row {
    gap: 8px;
    padding: 12px var(--ddo-gutter);
  }

  .ddo-trust-row > div,
  .ddo-trust-row > div:last-child {
    padding: 14px;
  }

  .ddo-trust-row svg {
    width: 34px;
    height: 34px;
    flex-basis: 34px;
  }

  .ddo-newsletter {
    padding: 44px 22px;
  }

  .ddo-mobile-menu {
    padding: 24px;
    box-shadow: var(--ddo-shadow-3);
  }

  .ddo-mobile-contact {
    border-radius: 10px;
  }

  .ddo-footer__bottom .ddo-payments {
    margin: 14px 0;
  }

  /* Old mobile rule sets every bottom span to block; keep the payment
     marks on one wrapping line. */
  .ddo-footer__bottom .ddo-payments span {
    display: inline-block;
    margin: 0;
  }

  .ddo-content {
    padding-top: 52px;
    padding-bottom: 60px;
  }
}

@media (max-width: 520px) {
  .ddo-newsletter input,
  .ddo-newsletter button {
    border-radius: 8px;
  }

  .ddo-newsletter input {
    border-right: 1px solid rgba(255, 255, 255, 0.28);
  }
}

/* ==========================================================================
   1.3.1 REVIEW FIXES
   Full-bleed premium newsletter, pre-footer service strip, rebuilt recently
   viewed cards, header quick links and mobile footer margins.
   ========================================================================== */

/* ---- Announcement bar quick links -------------------------------------- */
.ddo-announcement {
  position: relative;
}

.ddo-announcement__links {
  position: absolute;
  right: 26px;
  top: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  gap: 20px;
}

.ddo-announcement__links a {
  position: static;
  color: rgba(255, 255, 255, 0.82);
  border-left: 1px solid rgba(255, 255, 255, 0.28);
  padding-left: 20px;
  text-decoration: none;
  transition: color 0.15s ease;
}

.ddo-announcement__links a:first-child {
  border-left: 0;
  padding-left: 0;
}

.ddo-announcement__links a:hover {
  color: #fff;
  text-decoration: none;
}

.ddo-announcement__links a:last-child {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media (max-width: 1180px) {
  .ddo-announcement__detail {
    display: none;
  }
}

@media (max-width: 900px) {
  .ddo-announcement {
    gap: 16px;
  }
}

/* ---- Wishlist header badge ---------------------------------------------- */
.ddo-wishlist-count {
  position: absolute;
  right: 0;
  top: 0;
  min-width: 17px;
  height: 17px;
  border: 2px solid #fff;
  border-radius: 50%;
  background: var(--ddo-amber);
  box-shadow: 0 3px 8px rgba(16, 17, 20, 0.22);
  display: grid;
  place-items: center;
  font-size: 10px;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}

.ddo-wishlist-count[hidden] {
  display: none;
}

/* ---- Newsletter: stretched full-bleed premium band ---------------------- */
.ddo-newsletter {
  width: 100%;
  margin: 0;
  border-radius: 0;
  padding: clamp(56px, 7vw, 86px) max(var(--ddo-gutter), calc((100vw - 1280px) / 2));
}

@media (max-width: 820px) {
  .ddo-newsletter {
    padding: 54px var(--ddo-gutter);
    text-align: left;
  }

  .ddo-newsletter form {
    margin-top: 26px;
    width: 100%;
  }
}

@media (max-width: 520px) {
  .ddo-newsletter h2 {
    font-size: 29px;
  }

  .ddo-newsletter form {
    flex-direction: column;
    height: auto;
    gap: 10px;
  }

  .ddo-newsletter input,
  .ddo-newsletter button {
    width: 100%;
    min-height: 52px;
    border-radius: 8px;
  }

  .ddo-newsletter button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
}

/* ---- Service strip between newsletter and footer ------------------------- */
.ddo-service-strip {
  border-top: 1px solid var(--ddo-line);
  border-bottom: 1px solid var(--ddo-line);
  background: var(--ddo-mist);
  padding: 26px max(var(--ddo-gutter), calc((100vw - 1280px) / 2));
}

.ddo-service-strip__inner {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px 28px;
  max-width: 1280px;
  margin: 0 auto;
}

.ddo-service-strip__inner > div {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-width: 0;
}

.ddo-service-strip__inner svg {
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  box-sizing: border-box;
  border-radius: 50%;
  background: #fff;
  box-shadow: var(--ddo-shadow-1);
  padding: 8px;
  fill: none;
  stroke: var(--ddo-brand-2);
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.ddo-service-strip__inner b,
.ddo-service-strip__inner small {
  display: block;
  min-width: 0;
}

.ddo-service-strip__inner b {
  font-size: 13px;
  line-height: 1.3;
}

.ddo-service-strip__inner small {
  margin-top: 1px;
  color: var(--ddo-muted);
  font-size: 11px;
}

@media (max-width: 900px) {
  .ddo-service-strip__inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }

  .ddo-service-strip__inner > div {
    justify-content: flex-start;
  }
}

@media (max-width: 480px) {
  .ddo-service-strip__inner {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

/* ---- Recently viewed: proper mini retail cards -------------------------- */
.ddo-recently-viewed {
  margin-top: 52px;
  padding-bottom: 8px;
}

.ddo-recent-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  min-width: 0;
}

.ddo-recent-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  background: #f6f8fa;
  object-fit: cover;
}

.ddo-recent-card span {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 14px 16px 16px;
}

.ddo-recent-card b {
  display: -webkit-box;
  min-height: 2.7em;
  max-height: 2.7em;
  margin-bottom: 6px;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.35;
  overflow-wrap: normal;
}

.ddo-recent-card em {
  margin-top: auto;
  font-style: normal;
  font-size: 13px;
  font-weight: 800;
}

/* ---- Homepage polish ----------------------------------------------------- */
.ddo-home-products__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 36px;
}

.ddo-home-products__head h2 {
  margin-bottom: 0;
}

.ddo-home-products__more {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 8px;
  border-bottom: 2px solid var(--ddo-amber);
  padding-bottom: 4px;
  color: var(--ddo-brand);
  font-size: 13px;
  font-weight: 800;
  transition: border-color 0.18s ease, color 0.18s ease;
}

@media (max-width: 640px) {
  .ddo-home-products__head {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 26px;
  }
}

@media (hover: hover) {
  .ddo-home-products__more:hover {
    color: var(--ddo-brand-2);
    border-color: var(--ddo-brand);
  }
}

.ddo-room-card {
  min-height: 460px;
}

/* ---- Footer mobile margins ---------------------------------------------- */
@media (max-width: 820px) {
  .ddo-footer__main {
    padding: 56px 20px 42px;
    gap: 38px 24px;
  }

  .ddo-footer__bottom {
    margin: 0;
    padding: 20px 20px 28px;
  }
}

/* Mobile menu quick links (hidden on desktop). */
.ddo-mobile-quicklinks {
  display: none;
}

@media (max-width: 820px) {
  .ddo-mobile-quicklinks {
    display: flex;
    gap: 8px;
    margin-top: 20px;
  }

  .ddo-mobile-quicklinks a {
    flex: 1;
    border: 1.5px solid var(--ddo-brand);
    border-radius: 8px;
    padding: 12px 8px;
    color: var(--ddo-brand);
    font-size: 12px;
    font-weight: 800;
    text-align: center;
  }
}

/* ==========================================================================
   1.3.2 ROUND-THREE FIXES
   Recently-viewed cards now match the store grids exactly; legal pages get
   a designed card frame; footer accent; home editorial upgrades.
   ========================================================================== */

/* ---- Recently viewed: identical chrome to the main product grid --------- */
.ddo-recently-viewed__grid {
  gap: 28px 20px;
}

.ddo-recent-card {
  overflow: hidden;
  border: 1px solid #eae2dc;
  border-radius: var(--ddo-radius-m, 12px);
  background: #fff;
  padding: 0 12px 14px;
  box-shadow: var(--ddo-shadow-1, 0 8px 22px rgba(16, 17, 20, 0.06));
  transition: border-color 0.22s ease, box-shadow 0.25s ease, transform 0.22s ease;
}

@media (hover: hover) {
  .ddo-recent-card:hover {
    transform: translateY(-3px);
    border-color: #dccfc5;
    box-shadow: var(--ddo-shadow-2, 0 16px 38px rgba(16, 17, 20, 0.12));
  }
}

.ddo-recent-card img {
  width: calc(100% + 24px);
  max-width: none;
  margin: 0 -12px;
  aspect-ratio: 1 / 1;
  background: var(--ddo-mist);
  object-fit: contain;
  transition: transform 0.5s ease;
}

@media (hover: hover) {
  .ddo-recent-card:hover img {
    transform: scale(1.045);
  }
}

.ddo-recent-card span {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 13px 2px 4px;
}

.ddo-recent-card b {
  display: -webkit-box;
  min-height: 2.8em;
  max-height: 2.8em;
  margin: 0 0 6px;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
  overflow-wrap: normal;
}

.ddo-recent-card em {
  margin-top: auto;
  color: var(--ddo-ink);
  font-style: normal;
  font-size: 14px;
  font-weight: 800;
}

.ddo-recent-card em del {
  color: var(--ddo-muted);
  font-size: 12px;
  font-weight: 400;
  margin-right: 6px;
}

.ddo-recent-card em ins {
  color: var(--ddo-red);
  text-decoration: none;
}

@media (max-width: 760px) {
  .ddo-recently-viewed__grid {
    gap: 22px 10px;
  }

  .ddo-recent-card {
    padding: 0 9px 11px;
  }

  .ddo-recent-card img {
    width: calc(100% + 18px);
    margin: 0 -9px;
  }

  .ddo-recent-card b {
    font-size: 12.5px;
  }

  .ddo-recent-card em {
    font-size: 13px;
  }
}

/* ---- Legal / service pages: designed card frame -------------------------- */
.ddo-content--page {
  max-width: 960px;
}

.ddo-page-card {
  overflow: hidden;
  border: 1px solid #eae2dc;
  border-radius: var(--ddo-radius-l, 18px);
  background: #fff;
  box-shadow: var(--ddo-shadow-1, 0 8px 22px rgba(16, 17, 20, 0.06));
  padding: clamp(26px, 4.5vw, 52px);
}

.ddo-page-card .ddo-page-header {
  margin: 0 0 26px;
  border-bottom: 1px solid var(--ddo-line);
  padding-bottom: 22px;
}

.ddo-page-card .ddo-page-header .ddo-kicker {
  color: var(--ddo-muted);
}

.ddo-page-card .ddo-page-header h1 {
  margin: 10px 0 0;
}

.ddo-page-card .ddo-entry-content h2 {
  margin-top: 2.1em;
  border-bottom: 1px solid #f0e9e5;
  padding-bottom: 10px;
  font-size: clamp(22px, 2.6vw, 28px);
  letter-spacing: -0.01em;
}

.ddo-page-card .ddo-entry-content h2:first-of-type {
  margin-top: 0;
}

.ddo-page-card .ddo-entry-content h3 {
  font-size: 19px;
}

.ddo-page-card .ddo-entry-content table {
  display: block;
  overflow-x: auto;
  border: 1px solid var(--ddo-line);
  border-radius: 12px;
  border-collapse: separate;
  border-spacing: 0;
  box-shadow: var(--ddo-shadow-1, 0 8px 22px rgba(16, 17, 20, 0.06));
}

.ddo-page-card .ddo-entry-content thead th,
.ddo-page-card .ddo-entry-content tbody tr:first-child th {
  background: var(--ddo-mist);
}

.ddo-page-card .ddo-entry-content th,
.ddo-page-card .ddo-entry-content td {
  padding: 13px 16px;
}

.ddo-page-card .ddo-entry-content blockquote {
  background: #faf7ee;
  border-left-color: var(--ddo-red);
}

@media (max-width: 640px) {
  .ddo-page-card {
    border-radius: 14px;
    padding: 24px 18px 30px;
  }
}

/* ---- Footer accents ------------------------------------------------------- */
.ddo-footer {
  border-top: 4px solid var(--ddo-amber);
}

.ddo-footer h3 {
  color: #fff;
  letter-spacing: 1.6px;
}

/* ---- Home editorial: even four-card rows (span experiment removed) -------- */

/* ---- Home feature split: brand story with media panel -------------------- */
.ddo-home-feature {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  width: min(100%, 1380px);
  margin: 0 auto var(--ddo-section);
  padding: 0 var(--ddo-gutter);
  align-items: stretch;
}

.ddo-home-feature__media {
  min-height: 460px;
  border-radius: 18px 0 0 18px;
  background-color: #e9e2dc;
  background-position: center;
  background-size: cover;
}

.ddo-home-feature__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-radius: 0 18px 18px 0;
  background: linear-gradient(135deg, #b52825 0%, var(--ddo-brand) 55%, #8f1b18 100%);
  color: #fff;
  padding: clamp(40px, 5vw, 72px) clamp(28px, 4.5vw, 68px);
}

.ddo-home-feature__copy .ddo-kicker {
  color: var(--ddo-amber);
}

.ddo-home-feature__copy h2 {
  margin: 12px 0 18px;
  color: #fff;
  font: 500 clamp(30px, 3.2vw, 44px) / 1.08 var(--ddo-display);
  letter-spacing: -0.02em;
}

.ddo-home-feature__copy > p {
  max-width: 460px;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 15px;
  line-height: 1.7;
}

.ddo-home-feature__copy ul {
  display: grid;
  gap: 12px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.ddo-home-feature__copy li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.5;
}

.ddo-home-feature__copy li svg {
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  box-sizing: border-box;
  border-radius: 50%;
  background: rgba(255, 160, 31, 0.16);
  padding: 4px;
  fill: none;
  stroke: var(--ddo-amber);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.ddo-home-feature__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: max-content;
  margin-top: 32px;
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  border-radius: 999px;
  padding: 12px 24px;
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.02em;
  transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
}

@media (hover: hover) {
  .ddo-home-feature__cta:hover {
    border-color: var(--ddo-amber);
    background: var(--ddo-amber);
    color: var(--ddo-ink);
    transform: translateY(-1px);
  }
}

@media (max-width: 960px) {
  .ddo-home-feature {
    grid-template-columns: 1fr;
  }

  .ddo-home-feature__media {
    min-height: 280px;
    border-radius: 18px 18px 0 0;
  }

  .ddo-home-feature__copy {
    border-radius: 0 0 18px 18px;
  }
}

/* ==========================================================================
   1.3.3 MOBILE ALIGNMENT FIX
   Service-strip items stack icon-on-text, centered, on small screens.
   ========================================================================== */
@media (max-width: 900px) {
  .ddo-service-strip__inner > div {
    align-items: center;
    flex-direction: column;
    justify-content: center;
    gap: 9px;
    text-align: center;
  }

  .ddo-service-strip__inner b,
  .ddo-service-strip__inner small {
    text-align: center;
  }
}

/* ==========================================================================
   1.3.4 ROUND FIVE — root-cause fixes
   ========================================================================== */

/* ---- Recently viewed: the real bug ---------------------------------------
   Older rules targeted `.ddo-recent-card span`, which ALSO matched every
   nested <span> inside WooCommerce's price HTML (each "amount" fragment was
   given card-copy padding + flex column). The cards below could never look
   right. Copy now lives in a dedicated class and selectors are scoped. */
/* Neutralise every older descendant-`span` card rule so WooCommerce's own
   price fragments (span.woocommerce-Price-amount etc.) stay untouched. */
.ddo-recent-card span,
.ddo-recent-card__copy span {
  display: inline;
  padding: 0;
  background: none;
  border: 0;
  box-shadow: none;
}

.ddo-recent-card__copy {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 13px 2px 4px;
}

.ddo-recent-card__copy > b {
  display: -webkit-box;
  min-height: 2.8em;
  max-height: 2.8em;
  margin: 0 0 6px;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
  overflow-wrap: normal;
}

.ddo-recent-card__copy > em {
  margin-top: auto;
  color: var(--ddo-ink);
  font-style: normal;
  font-size: 14px;
  font-weight: 800;
}

.ddo-recent-card__copy > em del {
  color: var(--ddo-muted);
  font-size: 12px;
  font-weight: 400;
  margin-right: 6px;
}

.ddo-recent-card__copy > em ins {
  color: var(--ddo-red);
  text-decoration: none;
}

@media (max-width: 760px) {
  .ddo-recent-card__copy > b {
    font-size: 12.5px;
  }

  .ddo-recent-card__copy > em {
    font-size: 13px;
  }
}

/* ---- Premium "added to cart" notice -------------------------------------- */
.woocommerce .woocommerce-message,
.woocommerce-message {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px 14px;
  border: 1px solid #e6d7cb;
  border-top: 1px solid #e6d7cb;
  border-radius: 12px;
  background: linear-gradient(180deg, #fcfbf9, #f5f0e9);
  box-shadow: var(--ddo-shadow-1, 0 8px 22px rgba(16, 17, 20, 0.07));
  padding: 15px 18px 15px 60px;
  color: var(--ddo-ink);
  font-size: 14px;
  animation: ddo-notice-in 0.35s ease;
}

.woocommerce .woocommerce-message::before,
.woocommerce-message::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 50%;
  width: 32px;
  height: 32px;
  margin-top: -16px;
  padding: 0;
  border-radius: 50%;
  background: var(--ddo-amber) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2317211b' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m5 13 4 4 10-11'/%3E%3C/svg%3E") center / 16px no-repeat;
  color: transparent;
}

.woocommerce .woocommerce-message a.button,
.woocommerce-message a.button,
.woocommerce .woocommerce-message a.wc-forward,
.woocommerce-message a.wc-forward {
  order: 2;
  margin-left: auto;
  min-height: 40px;
  border-radius: 999px;
  background: var(--ddo-ink) !important;
  color: #fff !important;
  padding: 9px 20px;
  font-size: 12px;
  letter-spacing: 0.02em;
  box-shadow: none;
}

@media (hover: hover) {
  .woocommerce .woocommerce-message a.button:hover,
  .woocommerce-message a.wc-forward:hover {
    background: var(--ddo-brand) !important;
  }
}

.woocommerce .woocommerce-info,
.woocommerce-info {
  border-radius: 12px;
  padding: 15px 18px 15px 18px;
}

.woocommerce .woocommerce-error,
.woocommerce-error {
  border-radius: 12px;
}

@keyframes ddo-notice-in {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ---- Legal pages: calmer reading column on desktop ------------------------ */
.ddo-content--page {
  max-width: 880px;
}

.ddo-content.ddo-content--page {
  padding-top: var(--ddo-section);
  padding-bottom: var(--ddo-section);
}

.ddo-page-card {
  margin: 0 auto;
}

/* ---- Homepage: normalise ALL existing + new blocks ------------------------ */
/* Hero copy card becomes a floating rounded panel. */
.home .elementor-element-hero0002 {
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 18px !important;
  box-shadow: var(--ddo-shadow-2, 0 16px 40px rgba(16, 17, 20, 0.14)) !important;
}

@media (max-width: 820px) {
  .home .elementor-element-hero0002 {
    box-shadow: 0 10px 26px rgba(16, 17, 20, 0.12) !important;
  }
}

/* Any Elementor button on the homepage becomes the premium pill. */
.home .elementor-widget-button .elementor-button {
  border-radius: 999px !important;
  padding: 15px 28px !important;
  box-shadow: 0 12px 26px rgba(207, 46, 43, 0.22);
  transition: transform 0.18s ease, box-shadow 0.2s ease, filter 0.18s ease;
}

@media (hover: hover) {
  .home .elementor-widget-button .elementor-button:hover {
    transform: translateY(-1px);
    filter: brightness(1.05);
    box-shadow: 0 16px 32px rgba(207, 46, 43, 0.28);
  }
}

/* Consistent vertical rhythm across demo containers. */
.home .elementor-element-prod0001 {
  padding-top: 34px !important;
}

.home .elementor-element-promo001 {
  min-height: 0 !important;
}

.home .elementor-element-promo004 {
  padding-top: clamp(48px, 6vw, 72px) !important;
  padding-bottom: clamp(48px, 6vw, 72px) !important;
}

@media (min-width: 821px) {
  .home .elementor-element-promo003 img {
    min-height: 560px;
  }
}

/* The feature split panel: charcoal tone separates it from green blocks. */
.ddo-home-feature {
  margin-top: var(--ddo-section-tight);
}

.ddo-home-feature__copy {
  background: linear-gradient(135deg, #23262b 0%, #15181c 100%);
}

/* Guarantee white-air between every theme-owned home section. */
.home .ddo-home-editorial,
.home .ddo-home-sale-edit {
  padding-top: var(--ddo-section);
}

.home .ddo-home-value-story + .ddo-home-feature {
  margin-top: var(--ddo-section);
}

/* Kicker consistency for Elementor headings. */
.home .elementor-widget-heading p.elementor-heading-title {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800 !important;
}

.home .elementor-widget-heading p.elementor-heading-title::before {
  content: "";
  width: 24px;
  height: 2px;
  background: currentColor;
  opacity: 0.55;
}

/* ==========================================================================
   1.3.5 ROUND SIX — homepage harmony + full recently-viewed cards
   ========================================================================== */

/* ---- Tighter vertical rhythm on small screens ---------------------------- */
@media (max-width: 820px) {
  :root {
    --ddo-section: 56px;
    --ddo-section-tight: 48px;
  }

  .home .elementor-element-cats0001 {
    padding-top: 56px !important;
    padding-bottom: 52px !important;
  }

  .home .elementor-element-prod0001 {
    padding-bottom: 56px !important;
  }
}

/* ---- Hero: image behaves like a proper mobile hero ------------------------- */
@media (max-width: 820px) {
  .home .elementor-element-hero0001 {
    min-height: 620px !important;
    background-position: center 24% !important;
    background-repeat: no-repeat !important;
    background-size: cover !important;
    justify-content: flex-end !important;
    padding: 34px var(--ddo-gutter) !important;
  }

  .home .elementor-element-hero0002 {
    width: 100% !important;
    max-width: 100% !important;
    padding: 26px 22px 28px !important;
  }
}

@media (min-width: 821px) {
  /* Air between the hero and the trust cards below it. */
  .home .elementor-element-trust001 {
    padding-top: 6px !important;
    padding-bottom: 6px !important;
  }
}

@media (max-width: 820px) {
  .home .elementor-element-trust001 {
    padding: 14px var(--ddo-gutter) 0 !important;
  }
}

/* ---- Promo band becomes a contained rounded card --------------------------- */
.home .elementor-element-promo001 {
  width: calc(100% - (2 * var(--ddo-gutter))) !important;
  max-width: 1380px;
  margin: 0 auto !important;
  overflow: hidden;
  border-radius: 20px !important;
  box-shadow: var(--ddo-shadow-1);
}

.home .elementor-element-promo004 {
  padding-left: clamp(28px, 4.5vw, 64px) !important;
  padding-right: clamp(28px, 4.5vw, 64px) !important;
}

/* Promo list becomes tick chips. */
.home .elementor-element-promo007 ul {
  display: grid;
  gap: 10px;
  margin: 18px 0 4px;
  padding: 0;
  list-style: none;
}

.home .elementor-element-promo007 ul li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
}

.home .elementor-element-promo007 ul li::before {
  content: "";
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  border-radius: 50%;
  background: var(--ddo-brand) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m5 13 4 4 10-11'/%3E%3C/svg%3E") center / 11px no-repeat;
}

/* ---- Recently viewed: full retail cards --------------------------------------
   Sized like the related grid, with tools, badges and ratings. */
.ddo-recently-viewed {
  width: min(100%, 1360px);
  margin-top: 56px;
}

.ddo-recent-card {
  position: relative;
}

.ddo-recent-card__link {
  display: flex;
  flex: 1;
  flex-direction: column;
  min-width: 0;
  color: inherit;
}

.ddo-recent-card .star-rating {
  height: 13px;
  margin: 0 0 7px;
  font-size: 11px;
}

.ddo-recent-card .onsale {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 7;
}

@media (hover: hover) and (min-width: 821px) {
  .ddo-recent-card .ddo-product-tools {
    opacity: 0;
    transform: translate(6px, -6px);
    transition: opacity 0.22s ease, transform 0.22s ease;
  }

  .ddo-recent-card:hover .ddo-product-tools,
  .ddo-recent-card:focus-within .ddo-product-tools {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 820px) {
  .ddo-recent-card .ddo-product-tools {
    top: 7px;
    right: 7px;
    gap: 5px;
  }

  .ddo-recent-card .ddo-product-tools button {
    width: 32px;
    height: 32px;
  }

  .ddo-recent-card .onsale {
    top: 7px;
    left: 7px;
    padding: 6px 8px;
    font-size: 9px;
  }

  .ddo-recent-card .star-rating {
    font-size: 10px;
  }
}

@media (max-width: 480px) {
  .ddo-recent-card .ddo-product-tools .ddo-compare {
    display: none;
  }
}

/* ==========================================================================
   1.3.6 ROUND SEVEN — spacing diet + final mobile passes
   ========================================================================== */

/* ---- Section rhythm: less dead air everywhere ------------------------------ */
:root {
  --ddo-section: clamp(64px, 7vw, 88px);
  --ddo-section-tight: clamp(48px, 5.5vw, 70px);
}

/* Elementor demo containers: tighter, consistent paddings. */
.home .elementor-element-cats0001 {
  padding-top: 64px !important;
  padding-bottom: 60px !important;
}

.home .elementor-element-prod0001 {
  padding-top: 18px !important;
  padding-bottom: 64px !important;
}

.home .elementor-element-promo001 {
  margin: 8px auto var(--ddo-section) !important;
}

@media (max-width: 820px) {
  :root {
    --ddo-section: 52px;
    --ddo-section-tight: 44px;
  }

  .home .elementor-element-cats0001 {
    padding-top: 50px !important;
    padding-bottom: 46px !important;
  }

  .home .elementor-element-prod0001 {
    padding-bottom: 48px !important;
  }
}

/* ---- Mobile hero: split layout, image fully visible above the card --------- */
@media (max-width: 820px) {
  .home .elementor-element-hero0001 {
    min-height: 0 !important;
    background-color: #ece4df !important;
    background-position: center top !important;
    background-repeat: no-repeat !important;
    background-size: 100% auto !important;
    justify-content: flex-start !important;
    padding: clamp(230px, 60vw, 380px) var(--ddo-gutter) 26px !important;
  }

  .home .elementor-element-hero0002 {
    width: 100% !important;
    max-width: 100% !important;
    border: 0 !important;
    background: #f6f4f1 !important;
    box-shadow: 0 8px 22px rgba(16, 17, 20, 0.08) !important;
    border-radius: 14px !important;
    padding: 24px 20px 28px !important;
  }
}

/* ---- Categories: reliable full-bleed swipe scroller ------------------------ */
@media (max-width: 820px) {
  .home .elementor-element-cats0001,
  .home .elementor-element-cats0001 .elementor-widget-shortcode,
  .home .elementor-element-cats0001 .elementor-widget-container {
    overflow: visible !important;
  }
}

/* ==========================================================================
   1.3.7 ROUND EIGHT — final spacing diet + true mobile hero
   ========================================================================== */

/* ---- Section rhythm: final tape measure ----------------------------------- */
:root {
  --ddo-section: clamp(56px, 6vw, 72px);
  --ddo-section-tight: clamp(40px, 5vw, 56px);
}

@media (max-width: 820px) {
  :root {
    --ddo-section: 46px;
    --ddo-section-tight: 38px;
  }
}

/* Kill stacked gaps: each seam is owned by ONE layer only. */
.home .elementor-element-promo001 {
  margin-bottom: 0 !important;
}

.ddo-home-feature {
  margin-top: var(--ddo-section-tight);
  margin-bottom: 0;
}

.ddo-home-value-story {
  padding-top: 64px;
  padding-bottom: 64px;
}

.home .elementor-element-cats0001 {
  padding-top: 56px !important;
  padding-bottom: 50px !important;
}

.home .elementor-element-prod0001 {
  padding-top: 14px !important;
  padding-bottom: 56px !important;
}

@media (max-width: 820px) {
  .ddo-home-value-story {
    padding-top: 46px;
    padding-bottom: 46px;
  }

  .home .elementor-element-cats0001 {
    padding-top: 44px !important;
    padding-bottom: 40px !important;
  }

  .home .elementor-element-prod0001 {
    padding-top: 10px !important;
    padding-bottom: 44px !important;
  }
}

/* ==========================================================================
   1.3.8 ROUND NINE — the definitive spacing audit endpoint
   Every seam on the homepage is owned by exactly one rule below. Previous
   rounds fought stacked paddings + margins; these numbers replace them all.
   ========================================================================== */
:root {
  --ddo-section: clamp(50px, 5.5vw, 64px);
  --ddo-section-tight: clamp(38px, 4.5vw, 50px);
}

/* Hero internal breathing (desktop; mobile is handled by the true split). */
.home .elementor-element-hero0001 {
  padding-top: 60px !important;
  padding-bottom: 64px !important;
}

/* Trust cards: minimal gap under the hero. */
.home .elementor-element-trust001 {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

/* Category + product sections. */
.home .elementor-element-cats0001 {
  padding-top: 48px !important;
  padding-bottom: 42px !important;
}

.home .elementor-element-prod0001 {
  padding-top: 8px !important;
  padding-bottom: 44px !important;
}

/* Promo band: no own bottom margin — the next section owns the seam. */
.home .elementor-element-promo001 {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

/* Theme-owned home sections keep symmetric ends. */
.home .ddo-home-editorial,
.home .ddo-home-sale-edit {
  padding-top: var(--ddo-section);
  padding-bottom: var(--ddo-section);
}

.ddo-home-value-story {
  padding-top: 48px;
  padding-bottom: 48px;
}

.ddo-home-feature {
  margin-top: var(--ddo-section-tight);
  margin-bottom: 0;
}

@media (max-width: 820px) {
  :root {
    --ddo-section: 42px;
    --ddo-section-tight: 34px;
  }

  .home .elementor-element-cats0001 {
    padding-top: 36px !important;
    padding-bottom: 30px !important;
  }

  .home .elementor-element-prod0001 {
    padding-top: 4px !important;
    padding-bottom: 36px !important;
  }

  .home .elementor-element-trust001 {
    padding-top: 10px !important;
  }

  .ddo-home-value-story {
    padding-top: 44px;
    padding-bottom: 44px;
  }

  .home .elementor-element-promo001 {
    margin-bottom: 0 !important;
  }
}

/* ==========================================================================
   1.3.9 ROUND TEN — the actual mobile-gap root cause
   Elementor's kit adds `--kit-widget-spacing` (~20px) as margin below EVERY
   widget (heading, shortcode, button, image). On mobile a block stacks
   3-4 widgets, creating 60-80px of fake "section gap": kicker→heading→
   content each got 20px. Neutralised here and replaced with a precise
   per-widget rhythm — so blocks read as single composed units.
   ========================================================================== */

.home .elementor-element .elementor-widget:not(:last-child) {
  margin-block-end: 0 !important;
}

/* Kicker → headline: small. Headline → content: balanced. */
.home .elementor-element .elementor-widget-heading {
  margin-bottom: 8px !important;
}

.home .elementor-element .elementor-widget-text-editor {
  margin-bottom: 10px !important;
}

/* The big headings lead their sections. */
.home .elementor-element-cats0003,
.home .elementor-element-prod0003,
.home .elementor-element-promo006 {
  margin-bottom: 24px !important;
}

/* Grids don't need extra air after the heading margin above. */
.home .woocommerce ul.products {
  margin-top: 0;
}

.ddo-home-editorial__head,
.ddo-home-sale-edit__head {
  margin-bottom: 24px;
}

/* Tighter product-grid rows on phones. */
@media (max-width: 820px) {
  .woocommerce ul.products,
  .woocommerce ul.products.columns-4,
  .woocommerce ul.products.columns-3,
  .woocommerce ul.products.columns-2 {
    gap: 20px 10px;
  }
}

/* ---- Hero image on mobile: a framed, polished first impression ------------- */
.ddo-hero-mobile-image {
  display: none;
}

@media (max-width: 820px) {
  .ddo-hero-mobile-image {
    display: block;
    width: calc(100% - (2 * var(--ddo-gutter))) !important;
    max-width: 560px;
    height: auto;
    aspect-ratio: 4 / 3;
    margin: 14px auto 0;
    border: 1px solid rgba(16, 17, 20, 0.08);
    border-radius: 16px;
    box-shadow: 0 18px 40px rgba(16, 17, 20, 0.14), 0 4px 10px rgba(16, 17, 20, 0.06);
    object-fit: cover;
  }

  .home .elementor-element-hero0002 {
    margin-top: 16px !important;
    border: 1px solid rgba(16, 17, 20, 0.06) !important;
  }
}

@media (max-width: 820px) {
  /* Structural split: image element on top (styled by the 1.3.9 frame rules
     above), solid card below. */
  .home .elementor-element-hero0001 {
    display: block !important;
    min-height: 0 !important;
    background: none !important;
    background-color: transparent !important;
    justify-content: normal !important;
    padding: 0 0 22px !important;
  }

  .home .elementor-element-hero0002 {
    width: auto !important;
    max-width: none !important;
    margin: 16px var(--ddo-gutter) 0 !important;
    padding: 24px 20px 28px !important;
  }
}

/* ==========================================================================
   1.4.0 THEME-BUILT HOMEPAGE
   The front page is now composed entirely of theme-owned native sections
   (front-page.php). One spacing scale owns every seam; desktop and mobile
   rhythms are defined once, here. Older Elementor-demo rules above become
   dormant but harmless.
   ========================================================================== */

:root {
  --ddo-section: clamp(48px, 6vw, 68px);
  --ddo-hero-pad: clamp(30px, 4.6vw, 58px);
}

@media (max-width: 820px) {
  :root {
    --ddo-section: 38px;
    --ddo-hero-pad: 26px;
  }
}

.ddo-h-wrap {
  width: min(100%, 1280px);
  margin: 0 auto;
  padding: 0 var(--ddo-gutter);
}

.ddo-h-sec {
  padding-top: var(--ddo-section);
  padding-bottom: var(--ddo-section);
}

.ddo-h-sec--tinted {
  background: var(--ddo-mist);
}

.ddo-h-kicker-tight {
  margin-bottom: 6px;
}

/* Shared section head: kicker + display title + optional right element. */
.ddo-h-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 26px;
  margin-bottom: 26px;
}

.ddo-h-head > div {
  max-width: 660px;
}

.ddo-h-head h2 {
  margin: 9px 0 0;
  font: 500 clamp(30px, 3.4vw, 46px) / 1.06 var(--ddo-display);
  letter-spacing: -0.02em;
}

.ddo-h-head > p {
  max-width: 400px;
  margin: 0 0 4px;
  color: var(--ddo-muted);
  font-size: 15px;
  line-height: 1.65;
}

.ddo-h-more {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 8px;
  border: 1.5px solid var(--ddo-brand);
  border-radius: 999px;
  padding: 11px 22px;
  color: var(--ddo-brand);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.02em;
  transition: background 0.18s ease, color 0.18s ease, box-shadow 0.2s ease;
}

@media (hover: hover) {
  .ddo-h-more:hover {
    background: var(--ddo-brand);
    color: #fff;
    box-shadow: 0 10px 22px rgba(207, 46, 43, 0.2);
  }
}

@media (max-width: 720px) {
  .ddo-h-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
  }

  .ddo-h-head h2 {
    font-size: clamp(28px, 8.4vw, 36px);
  }

  .ddo-h-head > p {
    font-size: 14px;
  }
}

/* Shared CTAs. */
.ddo-h-btn,
.ddo-h-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border-radius: 999px;
  padding: 0 26px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.02em;
  transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease, transform 0.18s ease, box-shadow 0.2s ease;
}

.ddo-h-btn {
  border: 1.5px solid var(--ddo-brand);
  background: var(--ddo-brand);
  color: #fff;
  box-shadow: 0 12px 26px rgba(207, 46, 43, 0.22);
}

.ddo-h-btn--amber {
  border-color: var(--ddo-amber);
  background: var(--ddo-amber);
  color: var(--ddo-ink);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.25);
}

.ddo-h-ghost {
  border: 1.5px solid rgba(16, 17, 20, 0.3);
  background: transparent;
  color: var(--ddo-ink);
}

.ddo-h-ghost--light {
  border-color: rgba(255, 255, 255, 0.4);
  color: #fff;
  box-shadow: none;
}

@media (hover: hover) {
  .ddo-h-btn:hover {
    background: var(--ddo-ink);
    border-color: var(--ddo-ink);
    color: #fff;
    transform: translateY(-1px);
  }

  .ddo-h-btn--amber:hover {
    background: #fff;
    border-color: #fff;
    color: var(--ddo-ink);
  }

  .ddo-h-ghost:hover {
    border-color: var(--ddo-ink);
    background: var(--ddo-ink);
    color: #fff;
  }

  .ddo-h-ghost--light:hover {
    border-color: var(--ddo-amber);
    background: var(--ddo-amber);
    color: var(--ddo-ink);
  }
}

/* ---- 1 · HERO ------------------------------------------------------------- */
.ddo-h-hero {
  padding: clamp(16px, 2.5vw, 30px) var(--ddo-gutter) var(--ddo-hero-pad);
}

.ddo-h-hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  gap: clamp(26px, 4vw, 56px);
  align-items: center;
  width: min(100%, 1280px);
  margin: 0 auto;
  border: 1px solid #e7e0da;
  border-radius: 22px;
  background: linear-gradient(115deg, #f0e9e5 0%, #eee3da 55%, #e8dbd0 100%);
  padding: clamp(24px, 4vw, 52px);
}

.ddo-h-hero__copy h1 {
  margin: 14px 0 16px;
  font: 500 clamp(36px, 4.6vw, 62px) / 1.04 var(--ddo-display);
  letter-spacing: -0.02em;
}

.ddo-h-hero__sub {
  max-width: 46ch;
  margin: 0;
  color: #57534f;
  font-size: clamp(15px, 1.4vw, 17px);
  line-height: 1.65;
}

.ddo-h-hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 26px 0 20px;
}

.ddo-h-hero__proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.ddo-h-hero__proof li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--ddo-muted);
  font-size: 12.5px;
  font-weight: 700;
}

.ddo-h-hero__proof li::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--ddo-brand-2);
}

.ddo-h-hero__media {
  position: relative;
  min-width: 0;
}

.ddo-h-hero__media img {
  display: block;
  width: 100%;
  aspect-ratio: 5 / 4;
  border: 1px solid rgba(16, 17, 20, 0.08);
  border-radius: 16px;
  box-shadow: var(--ddo-shadow-2);
  object-fit: cover;
}

.ddo-h-hero__tag {
  position: absolute;
  left: 14px;
  bottom: 14px;
  display: grid;
  gap: 2px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--ddo-shadow-1);
  padding: 10px 16px;
  transition: transform 0.18s ease, box-shadow 0.2s ease;
}

.ddo-h-hero__tag small {
  color: var(--ddo-brand-2);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.ddo-h-hero__tag strong {
  color: var(--ddo-ink);
  font-size: 13px;
}

@media (hover: hover) {
  .ddo-h-hero__tag:hover {
    transform: translateY(-2px);
    box-shadow: var(--ddo-shadow-2);
  }
}

@media (max-width: 900px) {
  .ddo-h-hero__inner {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .ddo-h-hero__copy h1 {
    margin-top: 10px;
  }
}

@media (max-width: 720px) {
  .ddo-h-hero__ctas {
    gap: 8px;
  }

  .ddo-h-btn,
  .ddo-h-ghost {
    min-height: 46px;
    padding: 0 20px;
    font-size: 12.5px;
  }
}

/* ---- 2 · BENEFITS ----------------------------------------------------------- */
.ddo-h-benefits {
  border-bottom: 1px solid var(--ddo-line);
  padding: 22px 0;
}

.ddo-h-benefits__inner {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px 24px;
  width: min(100%, 1280px);
  margin: 0 auto;
  padding: 0 var(--ddo-gutter);
}

.ddo-h-benefit {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.ddo-h-benefit svg {
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  box-sizing: border-box;
  border-radius: 50%;
  background: var(--ddo-mist);
  padding: 8px;
  fill: none;
  stroke: var(--ddo-brand-2);
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.ddo-h-benefit b,
.ddo-h-benefit small {
  display: block;
}

.ddo-h-benefit b {
  font-size: 13px;
  line-height: 1.3;
}

.ddo-h-benefit small {
  margin-top: 1px;
  color: var(--ddo-muted);
  font-size: 11px;
  line-height: 1.35;
}

@media (max-width: 860px) {
  .ddo-h-benefits__inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px 16px;
  }
}

/* ---- 3 · SHOP BY SPACE ------------------------------------------------------ */
.ddo-h-cats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.ddo-h-cat {
  position: relative;
  isolation: isolate;
  display: flex;
  min-height: 400px;
  overflow: hidden;
  border-radius: 16px;
  background: #e9e2dc;
  color: #fff;
  box-shadow: var(--ddo-shadow-1);
}

.ddo-h-cat--lead {
  grid-column: span 2;
}

.ddo-h-cat img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.ddo-h-cat__shade {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(10, 18, 13, 0.02) 34%, rgba(10, 18, 13, 0.78) 100%);
}

.ddo-h-cat__copy {
  display: flex;
  width: 100%;
  margin-top: auto;
  padding: 24px;
  flex-direction: column;
}

.ddo-h-cat__copy small {
  margin-bottom: 4px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.ddo-h-cat__copy strong {
  font: 500 28px/1.1 var(--ddo-display);
}

.ddo-h-cat__copy em {
  margin-top: 12px;
  color: var(--ddo-amber);
  font-size: 12px;
  font-style: normal;
  font-weight: 800;
}

@media (hover: hover) {
  .ddo-h-cat:hover img {
    transform: scale(1.045);
  }
}

@media (max-width: 860px) {
  .ddo-h-cats {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .ddo-h-cat {
    min-height: 0;
    aspect-ratio: 1 / 1.08;
    border-radius: 12px;
  }

  .ddo-h-cat--lead {
    grid-column: span 2;
    aspect-ratio: auto;
    min-height: 210px;
  }

  .ddo-h-cat__copy {
    padding: 16px;
  }

  .ddo-h-cat__copy strong {
    font-size: 20px;
  }
}

/* ---- 4 · NEW ARRIVALS -------------------------------------------------------- */
.ddo-h-sec--tinted .woocommerce ul.products,
.ddo-h-sec .woocommerce ul.products {
  margin-top: 0;
}

/* ---- 5 · DEAL SPOTLIGHT ------------------------------------------------------- */
.ddo-h-deal {
  background: linear-gradient(120deg, #14171c 0%, #cf2e2b 100%);
  color: #fff;
  padding-top: var(--ddo-section);
  padding-bottom: var(--ddo-section);
}

.ddo-h-deal__inner {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
}

.ddo-h-deal__copy .ddo-kicker {
  color: var(--ddo-amber);
}

.ddo-h-deal__copy h2 {
  margin: 10px 0 16px;
  color: #fff;
  font: 500 clamp(28px, 3.2vw, 46px) / 1.08 var(--ddo-display);
  letter-spacing: -0.02em;
}

.ddo-h-deal__copy > p:not(.ddo-kicker):not(.ddo-h-deal__price) {
  max-width: 52ch;
  margin: 0;
  color: rgba(255, 255, 255, 0.75);
  font-size: 15.5px;
  line-height: 1.7;
}

.ddo-h-deal__price {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin: 22px 0 0;
}

.ddo-h-deal__now {
  color: var(--ddo-amber);
  font-size: clamp(26px, 2.6vw, 34px);
  font-weight: 800;
}

.ddo-h-deal__price del {
  color: rgba(255, 255, 255, 0.55);
  font-size: 17px;
}

.ddo-h-deal__chip {
  border-radius: 999px;
  background: var(--ddo-amber);
  color: var(--ddo-ink);
  padding: 6px 14px;
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.ddo-h-deal__media {
  display: block;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  background: linear-gradient(180deg, #f6f4f2, #f0e9e5);
  box-shadow: var(--ddo-shadow-3);
  padding: clamp(14px, 2.4vw, 30px);
}

.ddo-h-deal__media img {
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1.02;
  object-fit: contain;
}

@media (max-width: 960px) {
  .ddo-h-deal__inner {
    grid-template-columns: 1fr;
    gap: 26px;
  }
}

/* ---- 6 · WHY THIS STORE ------------------------------------------------------- */
.ddo-h-story {
  background: var(--ddo-mist);
  padding-top: var(--ddo-section);
  padding-bottom: var(--ddo-section);
}

.ddo-h-story__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
}

.ddo-h-story__media {
  min-height: 420px;
  border: 1px solid rgba(16, 17, 20, 0.08);
  border-radius: 18px;
  background-color: #eae2dc;
  background-position: center;
  background-size: cover;
  box-shadow: var(--ddo-shadow-2);
}

.ddo-h-story__copy h2 {
  margin: 10px 0 16px;
  font: 500 clamp(28px, 3vw, 42px) / 1.08 var(--ddo-display);
  letter-spacing: -0.02em;
}

.ddo-h-story__copy > p:not(.ddo-kicker) {
  margin: 0;
  color: var(--ddo-muted);
  font-size: 15.5px;
  line-height: 1.7;
}

.ddo-h-story__copy ul {
  display: grid;
  gap: 12px;
  margin: 24px 0 28px;
  padding: 0;
  list-style: none;
}

.ddo-h-story__copy li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.5;
}

.ddo-h-story__copy li svg {
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  box-sizing: border-box;
  border-radius: 50%;
  background: var(--ddo-brand);
  padding: 5px;
  fill: none;
  stroke: #fff;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

@media (max-width: 900px) {
  .ddo-h-story__inner {
    grid-template-columns: 1fr;
  }

  .ddo-h-story__media {
    min-height: 240px;
  }
}

/* ---- Homepage spacing reset for the demo-era rules ---------------------------- */
/* The theme-built page owns its entire rhythm; nothing above this section
   may inject extra space on .home anymore. */
.home main#primary section:last-of-type {
  margin-bottom: 0;
}

/* ---- Footer: tighter, cleaner on phones -------------------------------------- */
@media (max-width: 640px) {
  .ddo-footer__main {
    grid-template-columns: 1fr;
    gap: 26px;
    padding: 44px 20px 36px;
  }

  .ddo-footer h3 {
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
    padding-bottom: 9px;
    margin-bottom: 13px;
  }

  .ddo-footer__bottom {
    padding: 18px 20px 26px;
    text-align: center;
  }

  .ddo-socials {
    margin-top: 20px;
  }
}

/* ==========================================================================
   1.4.3 BALANCED HERO + REAL LOGO + FAVICON
   The stretched hero's left column fought the right one. Back to a framed,
   balanced panel: equal-weight halves, contained width, consistent gutters.
   ========================================================================== */

/* ---- Brand logo lockup --------------------------------------------------- */
.ddo-brand--logo {
  gap: 0;
}

.ddo-brand__logo {
  display: inline-flex;
  align-items: center;
  color: var(--ddo-brand);
}

.ddo-brand__logo svg,
.ddo-brand__svg {
  display: block;
  width: auto;
  max-width: 230px;
  height: 34px;
}

.ddo-footer .ddo-brand__logo {
  color: #f8f5f3;
}

.ddo-brand__text {
  font-size: 19px;
  letter-spacing: 1.1px;
}

@media (max-width: 820px) {
  .ddo-brand__logo svg,
  .ddo-brand__svg {
    max-width: 170px;
    height: 27px;
  }
}

@media (max-width: 520px) {
  .ddo-brand__logo svg,
  .ddo-brand__svg {
    max-width: 140px;
    height: 23px;
  }

  .ddo-header > .ddo-brand {
    max-width: calc(100vw - 130px);
  }
}

/* ---- Hero: contained, balanced, polished ---------------------------------- */
.ddo-h-hero {
  padding: clamp(16px, 2.4vw, 30px) var(--ddo-gutter) var(--ddo-hero-pad);
}

.ddo-h-hero__panel {
  grid-template-columns: minmax(0, 1.06fr) minmax(0, 0.94fr);
  width: min(100%, 1280px);
  margin: 0 auto;
  border: 1px solid rgba(16, 17, 20, 0.09);
  border-radius: 24px;
  overflow: hidden;
  background: linear-gradient(150deg, #f8f5f3 0%, #eef1f7 100%);
  box-shadow: var(--ddo-shadow-2);
}

.ddo-h-hero__copy {
  background: radial-gradient(115% 90% at 0% 0%, rgba(255, 160, 31, 0.16), rgba(255, 160, 31, 0) 55%);
  padding: clamp(30px, 4.2vw, 60px);
}

.ddo-h-hero__media {
  min-height: clamp(400px, 38vw, 520px);
}

@media (max-width: 900px) {
  .ddo-h-hero__panel {
    border-radius: 18px;
    box-shadow: var(--ddo-shadow-1);
  }

  .ddo-h-hero__media {
    min-height: 0;
  }

  .ddo-h-hero__media > img {
    position: relative;
    height: auto;
    aspect-ratio: 4 / 3;
  }

  .ddo-h-hero__copy {
    padding: 26px 20px 30px;
  }
}

/* ==========================================================================
   1.4.4 THE REAL HERO REBUILD
   Centered editorial stage (kicker → serif headline with italic accent →
   subcopy → dual CTAs → tick chips), then a large framed image banner with
   a frosted delivery tag and a floating "Shop the look" card. No split
   columns, no left/right imbalance — one intentional composition that works
   identically on mobile and desktop.
   ========================================================================== */

.ddo-h-hero {
  padding: clamp(24px, 3.4vw, 52px) var(--ddo-gutter) var(--ddo-hero-pad);
}

.ddo-h-hero__stage {
  width: min(100%, 800px);
  margin: 0 auto;
  text-align: center;
}

.ddo-h-hero__stage .ddo-kicker {
  color: var(--ddo-brand-2);
  justify-content: center;
}

.ddo-h-hero__stage h1 {
  margin: 14px 0 18px;
  font: 500 clamp(34px, 4.6vw, 62px) / 1.06 var(--ddo-display);
  letter-spacing: -0.02em;
}

.ddo-h-hero__stage h1 em {
  color: var(--ddo-brand-2);
  font-style: italic;
}

.ddo-h-hero__sub {
  max-width: 62ch;
  margin: 0 auto;
  color: #57534f;
  font-size: clamp(14.5px, 1.5vw, 16.5px);
  line-height: 1.65;
}

.ddo-h-hero__ctas {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: 28px 0 0;
}

.ddo-h-hero__ticks {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 22px;
  margin: 24px auto 0;
  padding: 0;
  list-style: none;
}

.ddo-h-hero__ticks li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--ddo-muted);
  font-size: 12.5px;
  font-weight: 700;
  white-space: nowrap;
}

.ddo-h-hero__ticks li svg {
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  box-sizing: border-box;
  border-radius: 50%;
  background: var(--ddo-brand);
  padding: 4px;
  fill: none;
  stroke: #fff;
  stroke-width: 2.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.ddo-h-hero__media {
  position: relative;
  width: min(100%, 1280px);
  margin: clamp(28px, 4vw, 44px) auto 0;
  border-radius: 22px;
}

.ddo-h-hero__media > img {
  position: relative;
  inset: auto;
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 21 / 9;
  border: 1px solid rgba(16, 17, 20, 0.09);
  border-radius: 22px;
  box-shadow: var(--ddo-shadow-2);
  object-fit: cover;
}

@media (max-width: 900px) {
  .ddo-h-hero__media {
    margin-top: 30px;
    border-radius: 16px;
  }

  .ddo-h-hero__media > img {
    aspect-ratio: 4 / 3;
    border-radius: 16px;
  }
}

@media (max-width: 560px) {
  .ddo-h-hero__sub {
    font-size: 14.5px;
  }

  .ddo-h-hero__ticks {
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }
}

/* Logo: crisper vector rendering at header size. */
.ddo-brand__logo svg,
.ddo-brand__svg {
  height: 36px;
  shape-rendering: geometricPrecision;
}

@media (max-width: 820px) {
  .ddo-brand__logo svg,
  .ddo-brand__svg {
    height: 28px;
  }
}

@media (max-width: 520px) {
  .ddo-brand__logo svg,
  .ddo-brand__svg {
    height: 24px;
  }
}

/* Footer: four columns — brand + shop + help + legal. */
.ddo-footer__main {
  grid-template-columns: 1.6fr repeat(3, 1fr);
}

.ddo-footer__contact {
  display: grid;
  gap: 6px;
  margin-top: 16px;
}

.ddo-footer__contact a {
  color: #d3c4ba;
  font-size: 12px;
}

.ddo-footer__contact a:hover {
  color: #fff;
}

@media (max-width: 1100px) {
  .ddo-footer__main {
    grid-template-columns: 1.5fr 1fr 1fr;
  }

  .ddo-footer__brand {
    grid-row: span 2;
  }
}

@media (max-width: 820px) {
  .ddo-footer__main {
    grid-template-columns: 1fr 1fr;
  }
}

/* ==========================================================================
   1.4.5 HERO COLLAGE
   No flat frame: editorial copy left, a layered composition right — lime
   decor blob, tall main image card, and a smaller white product card
   overlapping its bottom-left corner. On mobile the collage leads, the text
   is deliberately trimmed.
   ========================================================================== */

.ddo-h-hero {
  background: linear-gradient(180deg, #f4f6fa 0%, #ffffff 92%);
  padding: clamp(26px, 4vw, 58px) var(--ddo-gutter) var(--ddo-hero-pad);
}

.ddo-h-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(0, 1.02fr);
  gap: clamp(30px, 4.5vw, 64px);
  align-items: center;
  width: min(100%, 1280px);
  margin: 0 auto;
}

.ddo-h-hero__copy {
  min-width: 0;
  background: none;
  padding: 0;
}

.ddo-h-hero__copy .ddo-kicker {
  color: var(--ddo-brand-2);
}

.ddo-h-hero__copy h1 {
  margin: 14px 0 18px;
  color: var(--ddo-ink);
  font: 500 clamp(33px, 3.8vw, 56px) / 1.05 var(--ddo-display);
  letter-spacing: -0.02em;
}

.ddo-h-hero__copy h1 em {
  color: var(--ddo-brand-2);
  font-style: italic;
}

.ddo-h-hero__sub {
  max-width: 46ch;
  margin: 0;
  color: #57534f;
  font-size: clamp(14.5px, 1.4vw, 16px);
  line-height: 1.65;
}

.ddo-h-hero__ctas {
  justify-content: flex-start;
  margin: 26px 0 0;
}

.ddo-h-hero__ticks {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.ddo-h-hero__ticks li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--ddo-muted);
  font-size: 12.5px;
  font-weight: 700;
}

.ddo-h-hero__ticks li svg {
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  box-sizing: border-box;
  border-radius: 50%;
  background: var(--ddo-brand);
  padding: 4px;
  fill: none;
  stroke: #fff;
  stroke-width: 2.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* The layered image composition. */
.ddo-h-hero__stage {
  position: relative;
  min-width: 0;
  width: auto;
  margin: 0;
  text-align: left;
  min-height: clamp(430px, 46vw, 590px);
}

.ddo-h-hero__blob {
  position: absolute;
  top: 2%;
  right: 6%;
  width: 62%;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  background: #fff0da;
}

.ddo-h-hero__main {
  position: absolute;
  top: 0;
  right: 0;
  width: 74%;
  margin: 0;
}

.ddo-h-hero__main img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 4.6;
  border: 1px solid rgba(16, 17, 20, 0.09);
  border-radius: 18px;
  box-shadow: var(--ddo-shadow-2);
  object-fit: cover;
}

.ddo-h-hero__ship {
  position: absolute;
  top: 14px;
  right: auto;
  left: -10px;
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  box-shadow: var(--ddo-shadow-1);
  color: var(--ddo-brand);
  padding: 8px 14px;
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.ddo-h-hero__mini {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 2;
  display: block;
  width: 46%;
  overflow: hidden;
  border: 1px solid rgba(16, 17, 20, 0.09);
  border-radius: 16px;
  background: #fff;
  box-shadow: var(--ddo-shadow-3);
  transition: transform 0.25s ease;
}

@media (hover: hover) {
  .ddo-h-hero__mini:hover {
    transform: translateY(-4px);
  }
}

.ddo-h-hero__mini img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  background: var(--ddo-mist);
  object-fit: contain;
}

.ddo-h-hero__mini > span {
  display: grid;
  gap: 2px;
  padding: 12px 14px 14px;
}

.ddo-h-hero__mini small {
  color: var(--ddo-brand-2);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.ddo-h-hero__mini strong {
  color: var(--ddo-ink);
  font-size: 13px;
}

/* Mobile: collage leads, text trimmed. */
@media (max-width: 900px) {
  .ddo-h-hero {
    padding-top: 20px;
  }

  .ddo-h-hero__grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .ddo-h-hero__stage {
    order: -1;
    min-height: 0;
    padding-bottom: 30px;
  }

  .ddo-h-hero__main {
    position: relative;
    width: 100%;
  }

  .ddo-h-hero__main img {
    aspect-ratio: 4 / 3;
    border-radius: 16px;
  }

  .ddo-h-hero__mini {
    left: auto;
    right: 10px;
    bottom: 0;
    width: min(52%, 220px);
    border-radius: 14px;
  }

  .ddo-h-hero__ship {
    left: 10px;
    top: 10px;
    font-size: 9.5px;
  }

  .ddo-h-hero__blob {
    top: -14px;
    right: -18px;
    width: 48%;
  }
}

/* Phones: much less text. */
@media (max-width: 640px) {
  .ddo-h-hero__copy h1 {
    font-size: clamp(30px, 8.6vw, 38px);
  }

  .ddo-h-hero__sub {
    font-size: 14.5px;
    line-height: 1.6;
  }

  .ddo-h-hero__ticks {
    display: none;
  }

  .ddo-h-hero__ctas {
    margin-top: 20px;
  }
}

/* ==========================================================================
   1.4.6 FINAL HERO — the boringly-reliable premium pattern
   Plain block flow, no overlapping absolute composition: fixed-height media
   box with a guaranteed cover image + clean copy column. It cannot break.
   ========================================================================== */

.ddo-hero {
  background: linear-gradient(180deg, #f5f6f8 0%, #ffffff 88%);
  padding: clamp(34px, 4.6vw, 64px) var(--ddo-gutter) var(--ddo-hero-pad);
}

.ddo-hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  gap: clamp(32px, 4.5vw, 64px);
  align-items: center;
  width: min(100%, 1280px);
  margin: 0 auto;
}

.ddo-hero__copy {
  min-width: 0;
}

.ddo-hero__copy .ddo-kicker {
  color: var(--ddo-brand-2);
}

.ddo-hero__copy h1 {
  margin: 14px 0 18px;
  font: 500 clamp(33px, 3.8vw, 56px) / 1.05 var(--ddo-display);
  letter-spacing: -0.02em;
}

.ddo-hero__copy h1 em {
  color: var(--ddo-brand-2);
  font-style: italic;
}

.ddo-hero__sub {
  max-width: 46ch;
  margin: 0;
  color: #57534f;
  font-size: clamp(14.5px, 1.4vw, 16px);
  line-height: 1.65;
}

.ddo-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 28px 0 0;
}

.ddo-hero__primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--ddo-brand-bright), var(--ddo-brand) 72%);
  box-shadow: 0 14px 30px rgba(207, 46, 43, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.14);
  color: #fff;
  padding: 0 28px;
  font-size: 13.5px;
  font-weight: 800;
  letter-spacing: 0.02em;
  transition: transform 0.18s ease, box-shadow 0.22s ease;
}

@media (hover: hover) {
  .ddo-hero__primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 18px 38px rgba(207, 46, 43, 0.3);
  }
}

.ddo-hero__link {
  display: inline-flex;
  align-items: center;
  min-height: 50px;
  padding: 0 8px;
  color: var(--ddo-ink);
  font-size: 13.5px;
  font-weight: 800;
  border-bottom: 2px solid var(--ddo-amber);
  transition: color 0.15s ease;
}

@media (hover: hover) {
  .ddo-hero__link:hover {
    color: var(--ddo-brand-2);
  }
}

.ddo-hero__proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.ddo-hero__proof li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--ddo-muted);
  font-size: 12.5px;
  font-weight: 700;
}

.ddo-hero__proof li svg {
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  box-sizing: border-box;
  border-radius: 50%;
  background: var(--ddo-brand);
  padding: 4px;
  fill: none;
  stroke: #fff;
  stroke-width: 2.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Media: exact-height box; the image fills it perfectly every time. */
.ddo-hero__media {
  position: relative;
  min-width: 0;
  height: clamp(420px, 42vw, 540px);
  overflow: hidden;
  border: 1px solid rgba(16, 17, 20, 0.09);
  border-radius: 20px;
  background: #eae2dc;
  box-shadow: 0 24px 60px rgba(16, 17, 20, 0.14), 0 6px 18px rgba(16, 17, 20, 0.06);
}

.ddo-hero__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ddo-hero__chip {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--ddo-shadow-1);
  color: var(--ddo-brand);
  padding: 9px 15px;
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* Mobile: compact copy, image after the CTAs, exact-ratio media box. */
@media (max-width: 860px) {
  .ddo-hero {
    padding-top: 26px;
  }

  .ddo-hero__inner {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .ddo-hero__sub,
  .ddo-hero__proof {
    display: none;
  }

  .ddo-hero__actions {
    margin-top: 22px;
  }

  .ddo-hero__actions > * {
    flex: 1 1 100%;
  }

  .ddo-hero__link {
    justify-content: center;
    min-height: 44px;
  }

  .ddo-hero__media {
    height: auto;
    aspect-ratio: 4 / 3;
    border-radius: 16px;
  }
}

/* ==========================================================================
   1.4.7 CUSTOMER REVIEWS
   ========================================================================== */

.ddo-h-reviews {
  background: #f6f4f2;
  padding-top: var(--ddo-section);
  padding-bottom: var(--ddo-section);
}

.ddo-h-reviews__head {
  max-width: 620px;
  margin: 0 auto 30px;
  text-align: center;
}

.ddo-h-reviews__head .ddo-kicker {
  justify-content: center;
}

.ddo-h-reviews__head h2 {
  margin: 9px 0 0;
  font: 500 clamp(30px, 3.4vw, 46px) / 1.06 var(--ddo-display);
  letter-spacing: -0.02em;
}

.ddo-h-reviews__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.ddo-h-review {
  position: relative;
  display: flex;
  flex-direction: column;
  margin: 0;
  border: 1px solid rgba(16, 17, 20, 0.08);
  border-radius: 16px;
  background: #fff;
  box-shadow: var(--ddo-shadow-1);
  padding: 24px 22px 22px;
}

.ddo-h-review__quote {
  position: absolute;
  top: 10px;
  right: 18px;
  color: var(--ddo-amber);
  font: 700 64px/1 Georgia, serif;
  opacity: 0.85;
}

.ddo-h-review__stars {
  display: block;
  color: var(--ddo-gold);
  font-size: 15px;
  letter-spacing: 3px;
  margin-bottom: 14px;
}

.ddo-h-review blockquote {
  margin: 0;
  padding: 0;
  border: 0;
  background: none;
  color: #403b38;
  font-size: 14.5px;
  line-height: 1.7;
}

.ddo-h-review figcaption {
  display: grid;
  gap: 2px;
  margin-top: auto;
  padding-top: 18px;
}

.ddo-h-review figcaption strong {
  font-size: 14px;
}

.ddo-h-review figcaption span {
  color: var(--ddo-muted);
  font-size: 11.5px;
}

@media (max-width: 900px) {
  .ddo-h-reviews__grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

/* ==========================================================================
   1.4.8 CONTACT BLOCK (homepage + Contact Us page)
   ========================================================================== */

.ddo-h-contact {
  padding-top: var(--ddo-section);
  padding-bottom: var(--ddo-section);
}

.ddo-h-contact__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(20px, 3vw, 34px);
  align-items: stretch;
}

.ddo-h-contact__panel {
  border: 1px solid rgba(16, 17, 20, 0.09);
  border-radius: 18px;
  background: #fff;
  box-shadow: var(--ddo-shadow-1);
  padding: clamp(20px, 3vw, 32px);
}

.ddo-contact-note {
  margin: 0 0 16px;
  border-radius: 10px;
  padding: 12px 16px;
  font-size: 13.5px;
  font-weight: 600;
  line-height: 1.5;
}

.ddo-contact-note--ok {
  background: #f2e9e2;
  border: 1px solid #e6d7cb;
  color: #1f8a4c;
}

.ddo-contact-note--err {
  background: #fae9e8;
  border: 1px solid #fbe4e1;
  color: var(--ddo-red);
}

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

.ddo-contact-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.ddo-contact-form label {
  display: grid;
  gap: 7px;
  min-width: 0;
}

.ddo-contact-form label > span {
  color: var(--ddo-muted);
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.ddo-contact-form input,
.ddo-contact-form select,
.ddo-contact-form textarea {
  width: 100%;
  border: 1px solid var(--ddo-line);
  border-radius: 10px;
  background: #fff;
  padding: 12px 14px;
  font-size: 14px;
  line-height: 1.5;
  transition: border-color 0.16s ease, box-shadow 0.16s ease;
}

.ddo-contact-form textarea {
  resize: vertical;
  min-height: 120px;
}

.ddo-contact-form button {
  justify-self: start;
}

.ddo-h-contact__map {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.ddo-h-contact__map iframe {
  flex: 1;
  width: 100%;
  min-height: 420px;
  border: 1px solid rgba(16, 17, 20, 0.09);
  border-radius: 18px;
  box-shadow: var(--ddo-shadow-1);
}

.ddo-h-contact__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.ddo-h-contact__meta span {
  flex: 1;
  min-width: 150px;
  border: 1px solid var(--ddo-line);
  border-radius: 12px;
  background: #fff;
  padding: 13px 16px;
}

.ddo-h-contact__meta b {
  display: block;
  margin-bottom: 2px;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ddo-muted);
}

.ddo-h-contact__meta a {
  font-weight: 800;
}

/* Contact form inside the Contact Us page card. */
.ddo-contact-inline {
  margin-top: 30px;
  border-top: 1px solid var(--ddo-line);
  padding-top: 26px;
}

.ddo-contact-inline .ddo-h-contact__panel {
  padding: 0;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.ddo-contact-inline .ddo-h-contact__map iframe {
  min-height: 340px;
  border-radius: 14px;
}

@media (max-width: 760px) {
  .ddo-contact-inline {
    gap: 18px;
  }

  .ddo-contact-inline .ddo-h-contact__map iframe {
    min-height: 280px;
  }
}

@media (max-width: 900px) {
  .ddo-h-contact__inner {
    grid-template-columns: 1fr;
  }

  .ddo-h-contact__map iframe {
    min-height: 320px;
  }
}

@media (max-width: 520px) {
  .ddo-contact-form__row {
    grid-template-columns: 1fr;
  }

  .ddo-h-contact__meta span {
    min-width: 0;
  }
}

/* ==========================================================================
   1.4.9 PREMIUM DOCUMENT PAGES + CONTACT PAGE GRID
   ========================================================================== */

/* Legal/service pages: white canvas, balanced premium document card. */
.ddo-content.ddo-content--page {
  width: min(100%, 1180px);
  max-width: 1180px;
  background: #fff;
  padding: var(--ddo-section) var(--ddo-gutter);
}

.ddo-page-card {
  width: min(100%, 1060px);
  margin: 0 auto;
  border: 1px solid rgba(16, 17, 20, 0.08);
  border-radius: 18px;
  background: #fff;
  box-shadow: var(--ddo-shadow-1);
  padding: clamp(26px, 4vw, 48px);
}

@media (max-width: 640px) {
  .ddo-content.ddo-content--page {
    padding: 30px var(--ddo-gutter) 44px;
  }

  .ddo-page-card {
    border-radius: 14px;
    padding: 22px 16px 28px;
  }
}

/* ==========================================================================
   1.4.1 HERO REDESIGN + REFINED BENEFIT CARDS
   Hero becomes one framed premium panel: dark editorial copy zone (left,
   desktop) + full-bleed image (right). On mobile the image leads above the
   copy inside the same card. Benefits restore the bordered, shadowed card
   treatment with icon chips and hover lift.
   ========================================================================== */

.ddo-h-hero {
  padding: clamp(14px, 2vw, 26px) var(--ddo-gutter) var(--ddo-hero-pad);
}

.ddo-h-hero__panel {
  display: grid;
  grid-template-areas: "copy media";
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  align-items: stretch;
  width: min(100%, 1280px);
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid rgba(16, 17, 20, 0.08);
  border-radius: 24px;
  background: #14171b;
  box-shadow: var(--ddo-shadow-2);
}

.ddo-h-hero__copy {
  grid-area: copy;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  background: linear-gradient(145deg, #23262b 0%, #15181c 100%);
  padding: clamp(30px, 4.2vw, 62px);
}

.ddo-h-hero__copy .ddo-kicker {
  color: var(--ddo-amber);
}

.ddo-h-hero__copy h1 {
  margin: 13px 0 17px;
  color: #fff;
  font: 500 clamp(32px, 3.8vw, 54px) / 1.06 var(--ddo-display);
  letter-spacing: -0.02em;
}

.ddo-h-hero__copy h1 em {
  color: var(--ddo-amber);
  font-style: italic;
}

.ddo-h-hero__sub {
  max-width: 44ch;
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(14.5px, 1.4vw, 16px);
  line-height: 1.65;
}

.ddo-h-hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 26px 0 0;
}

.ddo-h-hero__ticks {
  display: grid;
  gap: 10px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.ddo-h-hero__ticks li {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.45;
}

.ddo-h-hero__ticks li svg {
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  box-sizing: border-box;
  border-radius: 50%;
  background: rgba(255, 160, 31, 0.15);
  padding: 5px;
  fill: none;
  stroke: var(--ddo-amber);
  stroke-width: 2.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.ddo-h-hero__media {
  position: relative;
  grid-area: media;
  min-width: 0;
  min-height: clamp(340px, 42vw, 560px);
}

.ddo-h-hero__media > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  object-fit: cover;
}

.ddo-h-hero__freetag {
  position: absolute;
  right: 16px;
  bottom: 16px;
  display: grid;
  gap: 2px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--ddo-shadow-1);
  padding: 10px 16px;
  transition: transform 0.18s ease, box-shadow 0.2s ease;
}

.ddo-h-hero__freetag small {
  color: var(--ddo-brand-2);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.ddo-h-hero__freetag strong {
  color: var(--ddo-ink);
  font-size: 13px;
}

@media (hover: hover) {
  .ddo-h-hero__freetag:hover {
    transform: translateY(-2px);
    box-shadow: var(--ddo-shadow-2);
  }
}

.ddo-h-hero__ship {
  position: absolute;
  top: 16px;
  right: 16px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 999px;
  background: rgba(16, 17, 20, 0.55);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  color: #fff;
  padding: 8px 14px;
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

/* Mobile: image leads above the copy inside the same framed panel. */
@media (max-width: 900px) {
  .ddo-h-hero__panel {
    grid-template-areas:
      "media"
      "copy";
    grid-template-columns: 1fr;
    border-radius: 18px;
  }

  .ddo-h-hero__media {
    min-height: 0;
  }

  .ddo-h-hero__media > img {
    position: relative;
    height: auto;
    aspect-ratio: 4 / 3;
  }

  .ddo-h-hero__copy {
    padding: 26px 20px 30px;
  }
}

@media (max-width: 720px) {
  .ddo-h-hero__ctas {
    gap: 8px;
  }
}

/* ---- Benefits: refined cards ------------------------------------------------ */
.ddo-h-benefits {
  border-bottom: 0;
  padding: 0 0 var(--ddo-section-tight);
}

.ddo-h-benefits__inner {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  width: min(100%, 1280px);
  margin: 0 auto;
  padding: 0 var(--ddo-gutter);
}

.ddo-h-benefit {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  border: 1px solid var(--ddo-line);
  border-radius: 14px;
  background: #fff;
  box-shadow: var(--ddo-shadow-1);
  padding: 16px 15px;
  transition: transform 0.2s ease, box-shadow 0.25s ease, border-color 0.18s ease;
}

@media (hover: hover) {
  .ddo-h-benefit:hover {
    transform: translateY(-2px);
    border-color: #dccfc5;
    box-shadow: var(--ddo-shadow-2);
  }
}

.ddo-h-benefit svg {
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  box-sizing: border-box;
  border-radius: 50%;
  background: var(--ddo-mist);
  padding: 9px;
  fill: none;
  stroke: var(--ddo-brand-2);
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.ddo-h-benefit b,
.ddo-h-benefit small {
  display: block;
}

.ddo-h-benefit b {
  font-size: 13px;
  line-height: 1.3;
}

.ddo-h-benefit small {
  margin-top: 2px;
  color: var(--ddo-muted);
  font-size: 11px;
  line-height: 1.35;
}

@media (max-width: 900px) {
  .ddo-h-benefits__inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }
}

@media (max-width: 560px) {
  .ddo-h-benefits__inner {
    gap: 8px;
  }

  .ddo-h-benefit {
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 14px 10px;
    text-align: center;
  }
}

/* ==========================================================================
   1.4.2 LIGHT STRETCHED HERO + COLLECTION UPGRADES
   ========================================================================== */

/* ---- Hero: full-width, light premium editorial ---------------------------- */
.ddo-h-hero {
  padding: 0 0 var(--ddo-hero-pad);
}

.ddo-h-hero__panel {
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  width: 100%;
  border: 0;
  border-top: 1px solid #ebe3dd;
  border-bottom: 1px solid #ebe3dd;
  border-radius: 0;
  background: #f6f4f2;
  box-shadow: none;
}

.ddo-h-hero__copy {
  background:
    radial-gradient(110% 85% at 0% 0%, rgba(255, 160, 31, 0.18), rgba(255, 160, 31, 0) 58%),
    linear-gradient(150deg, #f8f5f3 0%, #eef1f7 100%);
  padding: clamp(34px, 5vw, 72px);
  padding-left: max(var(--ddo-gutter), calc((100vw - 1280px) / 2 + var(--ddo-gutter)));
}

.ddo-h-hero__copy .ddo-kicker {
  color: var(--ddo-brand-2);
}

.ddo-h-hero__copy h1 {
  color: var(--ddo-ink);
}

.ddo-h-hero__copy h1 em {
  color: var(--ddo-brand-2);
}

.ddo-h-hero__sub {
  color: #57534f;
}

.ddo-h-hero__ticks li {
  color: var(--ddo-ink);
}

.ddo-h-hero__ticks li svg {
  background: var(--ddo-brand);
  stroke: #fff;
}

.ddo-h-hero__media {
  min-height: clamp(420px, 44vw, 600px);
}

.ddo-h-hero__ship {
  border-color: rgba(255, 255, 255, 0.75);
  background: rgba(255, 255, 255, 0.9);
  color: var(--ddo-brand);
}

@media (max-width: 900px) {
  .ddo-h-hero {
    padding-bottom: var(--ddo-hero-pad);
  }

  .ddo-h-hero__copy {
    padding: 28px 20px 34px;
  }
}

/* ---- Shop by space: lead spans two rows for a full editorial block -------- */
.ddo-h-cat--lead {
  grid-column: span 2;
  grid-row: span 2;
}

@media (max-width: 860px) {
  .ddo-h-cat--lead {
    grid-row: auto;
  }
}

/* ---- Shop + collection pages: premium upgrades . --------------------------- */
.ddo-chip-count {
  display: inline-grid;
  place-items: center;
  min-width: 22px;
  height: 22px;
  margin-left: 5px;
  border-radius: 999px;
  background: var(--ddo-mist);
  color: var(--ddo-muted);
  padding: 0 7px;
  font-size: 10.5px;
  font-weight: 800;
  vertical-align: 1px;
}

.ddo-category-chips a.is-active .ddo-chip-count,
.ddo-category-chips a:hover .ddo-chip-count {
  background: rgba(255, 255, 255, 0.22);
  color: #fff;
}

/* Sort bar becomes an elevated toolbar card. */
.ddo-catalogue-sortbar {
  border: 1px solid var(--ddo-line);
  border-radius: 12px;
  background: #fff;
  box-shadow: var(--ddo-shadow-1);
  padding: 8px 14px;
  margin: 16px 0 10px;
  border-bottom: 1px solid var(--ddo-line);
}

/* Archive page header breathes cleaner. */
.woocommerce-products-header .page-title,
.woocommerce .page-title {
  margin-bottom: 8px;
}

.term-description,
.woocommerce-products-header .term-description {
  margin-bottom: 4px;
}



/* ==========================================================================
   1.1.0 RACING RED DESIGN LAYER
   Racing red + warm charcoal: a purpose-built automotive identity.
   The whole storefront chrome (header, hero, tiles, deal band, promos) is
   owned here. Appended last so it always wins the cascade.
   ========================================================================== */

:root {
  --ddo-brand-deep: #8f1b18;
  --ddo-howl: rgba(25, 27, 30, 0.65);
  --ddo-plate: #faca07;
}

/* ---- Typography voice --------------------------------------------------- */
h1,
h2,
h3,
.ddo-h-head h2,
.ddo-h-reviews__head h2,
.ddo-h-contact h2,
.ddo-content--single h1,
.ddo-page-header h1 {
  font-family: var(--ddo-display);
  letter-spacing: 0.005em;
}

.ddo-kicker {
  font-family: var(--ddo-display);
  font-weight: 700;
  color: var(--ddo-brand);
}

/* ==========================================================================
   HEADER — workshop charcoal chrome
   ========================================================================== */

.ddo-announcement {
  background: #1a1d21;
  color: #c9cdd3;
  font-size: 12px;
  border-bottom: 0;
}

.ddo-announcement__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: min(100%, 1280px);
  margin: 0 auto;
  min-height: 36px;
  padding: 0 var(--ddo-gutter);
}

.ddo-announcement__main {
  font-weight: 700;
  color: #fff;
}

.ddo-announcement__detail {
  color: #9ba2ab;
}

.ddo-announcement__links {
  display: flex;
  align-items: center;
  gap: 16px;
}

.ddo-announcement__links a {
  color: #c9cdd3;
  font-weight: 500;
}

.ddo-announcement__links a:hover {
  color: var(--ddo-amber);
}

.ddo-announcement__phone {
  color: var(--ddo-amber) !important;
  font-weight: 800 !important;
}

/* Main header bar. */
.ddo-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #191b1e;
  border-bottom: 0;
  box-shadow: 0 14px 32px rgba(10, 11, 12, 0.28);
}

.ddo-header__inner {
  display: flex;
  align-items: center;
  gap: clamp(12px, 2.4vw, 30px);
  width: min(100%, 1280px);
  margin: 0 auto;
  padding: 10px var(--ddo-gutter);
}

.ddo-header .ddo-brand {
  flex: 0 0 auto;
  color: #fff;
}

.ddo-header .ddo-brand__logo {
  color: #fff;
}

.ddo-header .ddo-brand__svg {
  height: 34px;
  width: auto;
  display: block;
  color: #fff;
}

.ddo-header-search {
  flex: 1 1 auto;
  max-width: 560px;
}

.ddo-header-search form {
  display: flex;
  align-items: stretch;
  width: 100%;
  overflow: hidden;
  border-radius: 999px;
  background: #fff;
  border: 2px solid transparent;
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

.ddo-header-search form:focus-within {
  border-color: var(--ddo-amber);
  box-shadow: 0 0 0 3px rgba(255, 179, 15, 0.22);
}

.ddo-header-search input[type="search"],
.ddo-header-search input[type="text"] {
  flex: 1 1 auto;
  min-width: 0;
  border: 0;
  outline: 0;
  background: transparent;
  padding: 0 18px;
  min-height: 44px;
  font: 500 14px/1 var(--ddo-sans);
  color: #191b1e;
}

.ddo-header-search button {
  flex: 0 0 auto;
  border: 0;
  padding: 0 22px;
  background: var(--ddo-brand);
  color: #fff;
  font: 700 12px/1 var(--ddo-display);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 13px;
  cursor: pointer;
  transition: background 0.16s ease;
}

.ddo-header-search button:hover {
  background: var(--ddo-brand-2);
}

.ddo-header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
  flex: 0 0 auto;
}

.ddo-header .ddo-icon-button {
  position: relative;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.05);
  color: #e8ebef;
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.ddo-header .ddo-icon-button:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.3);
  color: #fff;
}

.ddo-header .ddo-icon-button svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.ddo-cart-count,
.ddo-wishlist-count {
  position: absolute;
  top: -6px;
  right: -6px;
  display: grid;
  place-items: center;
  min-width: 18px;
  height: 18px;
  border-radius: 999px;
  background: var(--ddo-amber);
  color: #191b1e;
  font: 800 10.5px/1 var(--ddo-sans);
  padding: 0 5px;
}

.ddo-header .ddo-menu-toggle {
  display: none;
}

/* Red nav strip. */
.ddo-primary-nav {
  height: auto;
  border: 0;
  background: var(--ddo-brand);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.ddo-primary-nav__inner {
  display: flex;
  align-items: stretch;
  width: min(100%, 1280px);
  margin: 0 auto;
  padding: 0 var(--ddo-gutter);
}

.ddo-primary-nav__cat {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 9px 18px 9px 0;
  padding: 0 16px;
  border-radius: 9px;
  background: #14171a;
  color: #fff;
  font: 700 13px/1 var(--ddo-sans);
  white-space: nowrap;
  transition: background 0.15s ease;
}

.ddo-primary-nav__cat:hover {
  background: #000;
  color: #fff;
}

.ddo-primary-nav__cat svg {
  width: 16px;
  height: 16px;
  stroke: var(--ddo-amber);
  stroke-width: 2.4;
  fill: none;
  stroke-linecap: round;
}

.ddo-primary-nav > ul,
.ddo-primary-nav__inner > ul {
  display: flex;
  align-items: stretch;
  gap: 2px;
  height: auto;
  margin: 0;
  padding: 0;
  list-style: none;
}

.ddo-primary-nav li {
  position: relative;
  height: 48px;
}

.ddo-primary-nav > ul > li > a,
.ddo-primary-nav__inner > ul > li > a {
  display: inline-flex;
  align-items: center;
  height: 100%;
  padding: 0 15px;
  color: rgba(255, 255, 255, 0.92);
  font: 700 13px/1 var(--ddo-sans);
  letter-spacing: 0.02em;
  white-space: nowrap;
  border-bottom: 3px solid transparent;
  transition: color 0.14s ease, border-color 0.14s ease;
}

.ddo-primary-nav li:hover > a,
.ddo-primary-nav > ul > li > a:hover {
  color: #fff;
  border-bottom-color: var(--ddo-amber);
}

.ddo-primary-nav .sub-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: -18px;
  width: 240px;
  background: #1a1d21;
  list-style: none;
  padding: 10px 0;
  margin: 0;
  z-index: 60;
  box-shadow: 0 24px 50px rgba(10, 11, 12, 0.4);
  border-top: 2px solid var(--ddo-amber);
  border-radius: 0 0 10px 10px;
}

.ddo-primary-nav li:hover > .sub-menu {
  display: block;
}

.ddo-primary-nav .sub-menu li {
  height: auto;
}

.ddo-primary-nav .sub-menu a {
  display: block;
  padding: 11px 18px;
  color: #d4d9df;
  font: 600 12.5px/1.5 var(--ddo-sans);
  border-bottom: 0;
}

.ddo-primary-nav .sub-menu a:hover {
  color: var(--ddo-amber);
}

/* Mobile header + drawer. */
@media (max-width: 1024px) {
  .ddo-announcement__detail {
    display: none;
  }

  .ddo-header .ddo-menu-toggle {
    display: grid;
  }

  .ddo-header-search {
    display: none;
  }

  .ddo-header-search.is-open,
  .ddo-header .ddo-search-toggle + .ddo-header-search {
    display: none;
  }

  .ddo-primary-nav {
    display: none;
  }

  .ddo-mobile-menu {
    display: block;
    position: fixed;
    inset: 0 auto 0 0;
    width: min(86vw, 355px);
    background: #191b1e;
    color: #e8ebef;
    z-index: 90;
    transform: translateX(-102%);
    transition: transform 0.28s ease;
    overflow-y: auto;
  }

  body.ddo-menu-open .ddo-mobile-menu,
  .ddo-mobile-menu.is-open {
    transform: translateX(0);
  }

  .ddo-mobile-menu__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .ddo-mobile-menu__head .ddo-brand,
  .ddo-mobile-menu__head .ddo-brand__logo,
  .ddo-mobile-menu__head .ddo-brand__svg {
    color: #fff;
  }

  .ddo-mobile-menu__head .ddo-icon-button {
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: transparent;
  }

  .ddo-mobile-menu ul {
    list-style: none;
    margin: 0;
    padding: 8px 0;
  }

  .ddo-mobile-menu ul li a {
    display: block;
    padding: 13px 20px;
    color: #e8ebef;
    font: 700 14px/1.3 var(--ddo-sans);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }

  .ddo-mobile-menu ul li a:hover {
    color: var(--ddo-amber);
  }

  .ddo-mobile-quicklinks {
    padding: 16px 20px;
    display: flex;
    gap: 16px;
  }

  .ddo-mobile-quicklinks a {
    color: #aeb4bb;
    font-size: 12.5px;
  }

  .ddo-mobile-contact {
    display: block;
    margin: 0 20px 22px;
    padding: 12px;
    text-align: center;
    border-radius: 10px;
    background: var(--ddo-brand);
    color: #fff;
    font-weight: 800;
  }

  .ddo-drawer-overlay {
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(10, 11, 12, 0.6);
    z-index: 80;
  }
}

@media (max-width: 720px) {
  .ddo-announcement__links a:not(.ddo-announcement__phone):not(:last-child) {
    display: none;
  }
}

/* ==========================================================================
   HERO — light editorial, layered palette
   ========================================================================== */

.ddo-hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(920px 480px at 80% -18%, rgba(207, 46, 43, 0.12), rgba(207, 46, 43, 0) 62%),
    radial-gradient(700px 420px at -8% 115%, rgba(255, 179, 15, 0.09), rgba(255, 179, 15, 0) 60%),
    linear-gradient(180deg, #f5efec 0%, #faf7f5 88%);
  padding: clamp(36px, 5vw, 68px) var(--ddo-gutter) 118px;
}

.ddo-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(115deg, rgba(207, 46, 43, 0.035) 0 2px, transparent 2px 26px);
  pointer-events: none;
}

.ddo-hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(0, 0.94fr);
  gap: clamp(32px, 4.6vw, 70px);
  align-items: center;
  width: min(100%, 1280px);
  margin: 0 auto;
}

.ddo-hero__copy {
  min-width: 0;
}

.ddo-hero__copy .ddo-kicker {
  color: var(--ddo-brand);
}

.ddo-kicker--hero {
  display: inline-flex;
  align-items: center;
  padding: 7px 13px;
  border: 1.5px solid rgba(207, 46, 43, 0.45);
  border-radius: 999px;
  background: rgba(207, 46, 43, 0.08);
  color: var(--ddo-brand) !important;
}

.ddo-hero__copy h1 {
  margin: 16px 0 18px;
  font: 600 clamp(36px, 4.4vw, 62px) / 1.04 var(--ddo-display);
  letter-spacing: -0.005em;
  color: #191b1e;
}

.ddo-hero__copy h1 em {
  color: var(--ddo-brand);
  font-style: normal;
  box-shadow: inset 0 -0.16em 0 rgba(255, 179, 15, 0.55);
}

.ddo-hero__sub {
  max-width: 52ch;
  margin: 0;
  color: #57534f;
  font-size: clamp(14.5px, 1.35vw, 16.5px);
  line-height: 1.65;
}

/* Layered media composition. */
.ddo-hero__media {
  position: relative;
  min-width: 0;
}

.ddo-hero__shot {
  margin: 0;
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.9);
  background: #efe8e4;
  box-shadow: 0 45px 90px rgba(25, 27, 30, 0.22), 0 10px 26px rgba(25, 27, 30, 0.1);
}

.ddo-hero__shot img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 0.82;
  object-fit: cover;
}

.ddo-hero__chip {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 11px 15px;
  border-radius: 13px;
  border: 1px solid var(--ddo-line);
  background: #fff;
  box-shadow: 0 18px 42px rgba(25, 27, 30, 0.16);
}

.ddo-hero__chip svg {
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  fill: none;
  stroke: var(--ddo-brand);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.ddo-hero__chip b {
  display: block;
  font: 700 12.5px/1.2 var(--ddo-sans);
  color: #191b1e;
}

.ddo-hero__chip small {
  display: block;
  margin-top: 2px;
  font-size: 10.5px;
  color: var(--ddo-muted);
}

.ddo-hero__chip--delivery {
  top: 18px;
  left: -18px;
}

.ddo-hero__chip--guarantee {
  right: -12px;
  bottom: -18px;
  border-color: #23272b;
  background: #23272b;
}

.ddo-hero__chip--guarantee svg {
  stroke: var(--ddo-amber);
}

.ddo-hero__chip--guarantee b {
  color: #fff;
}

.ddo-hero__chip--guarantee small {
  color: #aeb4bb;
}

@media (max-width: 640px) {
  .ddo-hero__chip--delivery,
  .ddo-hero__chip--guarantee {
    display: none;
  }
}

/* Vehicle finder card — red call to action. */
.ddo-vfinder {
  display: block;
  max-width: 560px;
  margin: clamp(22px, 2.6vw, 32px) 0 0;
  padding: clamp(16px, 2.2vw, 24px);
  border: 1px solid #f0e5e0;
  border-radius: 18px;
  background: #fff;
  color: var(--ddo-ink);
  box-shadow: 0 26px 60px rgba(25, 27, 30, 0.14);
}

.ddo-vfinder__title {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 14px;
  font: 700 15.5px / 1.2 var(--ddo-sans);
  color: #23262b;
}

.ddo-vfinder__title svg {
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  fill: none;
  stroke: var(--ddo-brand);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.ddo-vfinder__row {
  display: flex;
  gap: 8px;
  align-items: stretch;
}

.ddo-vfinder__plate {
  position: relative;
  flex: 1 1 auto;
  display: flex;
  align-items: stretch;
  overflow: hidden;
  border: 2px solid #191b1e;
  border-radius: 8px;
  background: var(--ddo-plate);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.4);
}

.ddo-vfinder__plate-tag {
  display: grid;
  place-items: center;
  align-self: stretch;
  padding: 0 7px;
  background: #003399;
  color: #fff;
  font: 700 10px / 1 var(--ddo-sans);
  font-style: normal;
  letter-spacing: 0.06em;
}

.ddo-vfinder__reg {
  flex: 1 1 auto;
  min-width: 0;
  border: 0;
  outline: 0;
  background: transparent;
  padding: 11px 10px;
  font: 600 21px / 1 var(--ddo-display);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #191b1e;
}

.ddo-vfinder__reg::placeholder {
  color: rgba(25, 27, 30, 0.38);
  font-weight: 500;
}

.ddo-vfinder__go {
  flex: 0 0 auto;
  border: 0;
  border-radius: 8px;
  padding: 0 18px;
  min-height: 48px;
  background: linear-gradient(180deg, #dc3b35, var(--ddo-brand));
  box-shadow: 0 12px 24px rgba(207, 46, 43, 0.32), inset 0 1px 0 rgba(255, 255, 255, 0.24);
  color: #fff;
  font: 800 13px / 1 var(--ddo-sans);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.2s ease, filter 0.15s ease;
}

.ddo-vfinder__go:hover {
  filter: brightness(1.05);
  transform: translateY(-1px);
}

.ddo-vfinder__go--ghost {
  background: #23262b;
  color: #fff;
  box-shadow: 0 12px 24px rgba(16, 17, 20, 0.25);
}

.ddo-vfinder__alt {
  position: relative;
  margin: 14px 0 9px;
  font: 700 10.5px / 1 var(--ddo-sans);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ddo-muted);
}

.ddo-vfinder__row--manual {
  display: grid;
  grid-template-columns: 1.15fr 1.25fr 0.7fr auto;
  gap: 8px;
}

.ddo-vfinder__make,
.ddo-vfinder__model,
.ddo-vfinder__year {
  width: 100%;
  min-width: 0;
  height: 46px;
  border: 1px solid var(--ddo-line);
  border-radius: 8px;
  background: #fff;
  padding: 0 10px;
  font: 600 13px / 1 var(--ddo-sans);
  color: var(--ddo-ink);
}

.ddo-vfinder__alt ~ .ddo-vfinder__row--manual .ddo-vfinder__go {
  min-height: 46px;
}

.ddo-vfinder__note {
  margin: 10px 0 0;
  font-size: 12px;
  line-height: 1.45;
  color: #146c39;
}

.ddo-vfinder__note.is-error {
  color: var(--ddo-red);
}

.ddo-vfinder__your {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 12px 0 0;
  padding: 9px 12px;
  border: 1px solid #f2c179;
  border-radius: 8px;
  background: #fff4e2;
  font-size: 12.5px;
  color: #7c4a04;
}

.ddo-vfinder__your svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: #d68a00;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.ddo-vfinder__your b {
  color: var(--ddo-ink);
}

.ddo-vfinder__your a {
  margin-left: auto;
  font-weight: 700;
  color: #b95f0a;
  text-decoration: underline;
}

@media (max-width: 640px) {
  .ddo-hero__inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .ddo-hero {
    padding-bottom: 90px;
  }

  .ddo-vfinder__row--manual {
    grid-template-columns: 1fr 1fr;
  }

  .ddo-vfinder__row--manual .ddo-vfinder__go {
    grid-column: span 2;
  }
}

/* ==========================================================================
   TRUST CARDS — floating over the hero seam
   ========================================================================== */

.ddo-h-benefits {
  position: relative;
  z-index: 3;
  margin: 0 auto;
  padding: 0 var(--ddo-gutter) 32px;
  width: min(100%, 1280px);
}

.ddo-h-benefits__inner {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin: -52px auto 0;
}

.ddo-h-benefit {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  padding: 17px 18px;
  border: 1px solid var(--ddo-line);
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 18px 44px rgba(25, 27, 30, 0.1);
}

.ddo-h-benefit svg {
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  box-sizing: border-box;
  border-radius: 50%;
  background: rgba(207, 46, 43, 0.09);
  stroke: var(--ddo-brand);
  stroke-width: 1.8;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  padding: 9px;
}

.ddo-h-benefit b {
  display: block;
  font: 700 12.5px/1.3 var(--ddo-sans);
  color: #191b1e;
}

.ddo-h-benefit small {
  display: block;
  margin-top: 2px;
  font-size: 11px;
  color: var(--ddo-muted);
}

@media (max-width: 960px) {
  .ddo-h-benefits__inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin: -44px auto 0;
  }
}

@media (max-width: 480px) {
  .ddo-h-benefit {
    padding: 13px 14px;
  }
}

/* ==========================================================================
   PART TILES — brand icon cards
   ========================================================================== */

.ddo-h-tiles {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
}

.ddo-h-tiles--extra {
  margin-top: 14px;
}

.ddo-h-tile {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 0;
  padding: 20px 10px 15px;
  border: 1px solid var(--ddo-line);
  border-radius: 14px;
  background: #fff;
  text-align: center;
  transition: border-color 0.18s ease, box-shadow 0.2s ease, transform 0.18s ease;
}

.ddo-h-tile__icon {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  margin-bottom: 11px;
  border-radius: 999px;
  background: rgba(207, 46, 43, 0.08);
  color: var(--ddo-brand);
  transition: background 0.18s ease, color 0.18s ease, transform 0.2s ease;
}

.ddo-h-tile__icon svg {
  width: 32px;
  height: 32px;
  display: block;
}

.ddo-h-tile strong {
  font: 600 12.5px/1.3 var(--ddo-sans);
  color: #191b1e;
}

.ddo-h-tile small {
  display: block;
  margin-top: 3px;
  font-size: 11px;
  color: var(--ddo-muted);
}

.ddo-h-tile--outlet .ddo-h-tile__icon {
  background: var(--ddo-brand);
  color: #fff;
}

.ddo-h-tiles__all {
  margin: 22px 0 0;
  text-align: center;
}

.ddo-h-tiles__toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  border: 1.5px solid var(--ddo-brand);
  border-radius: 999px;
  background: transparent;
  padding: 0 22px;
  color: var(--ddo-brand);
  font: 800 12.5px/1 var(--ddo-sans);
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: background 0.18s ease, color 0.18s ease;
}

.ddo-h-tiles__toggle:hover {
  background: var(--ddo-brand);
  color: #fff;
}

@media (hover: hover) {
  .ddo-h-tile:hover {
    border-color: var(--ddo-brand);
    box-shadow: 0 16px 38px rgba(207, 46, 43, 0.14);
    transform: translateY(-2px);
  }

  .ddo-h-tile:hover .ddo-h-tile__icon {
    background: var(--ddo-brand);
    color: #fff;
    transform: scale(1.04);
  }
}

@media (max-width: 1080px) {
  .ddo-h-tiles {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .ddo-h-tiles {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 9px;
  }

  .ddo-h-tile {
    padding: 14px 6px 12px;
  }

  .ddo-h-tile__icon {
    width: 46px;
    height: 46px;
    margin-bottom: 8px;
  }

  .ddo-h-tile__icon svg {
    width: 26px;
    height: 26px;
  }

  .ddo-h-tile strong {
    font-size: 11px;
  }
}

/* ==========================================================================
   WEEKEND DEALS — horizontal scroll rail
   ========================================================================== */

.ddo-h-dealrail {
  overflow: hidden;
  padding: clamp(52px, 6vw, 84px) 0 clamp(56px, 6.5vw, 92px);
  background: linear-gradient(180deg, #fff 0%, #f7f4f2 100%);
}

.ddo-h-dealrail__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: clamp(20px, 3vw, 30px);
}

.ddo-h-dealrail__head h2 {
  margin: 0;
  font: 600 clamp(26px, 3vw, 40px) / 1.1 var(--ddo-display);
  color: #191b1e;
}

.ddo-h-dealrail ul.products {
  display: flex;
  gap: 14px;
  margin: 0;
  padding: 4px 4px 18px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  -webkit-overflow-scrolling: touch;
}

.ddo-h-dealrail ul.products li.product {
  flex: 0 0 min(78vw, 288px);
  scroll-snap-align: start;
}

/* ==========================================================================
   PROMO TRIO — asymmetric layout
   ========================================================================== */

.ddo-h-promos {
  padding-top: clamp(48px, 6vw, 80px);
}

.ddo-h-promos__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr);
  gap: 16px;
}

.ddo-h-promo {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: 226px;
  overflow: hidden;
  border-radius: 16px;
  background-color: #1a1d21;
  background-size: cover;
  background-position: center;
  box-shadow: 0 22px 48px rgba(16, 17, 20, 0.16);
  transition: box-shadow 0.22s ease, transform 0.18s ease;
}

.ddo-h-promo--tall {
  min-height: 480px;
}

.ddo-h-promo--red {
  background: linear-gradient(112deg, #8f1b18 0%, #cf2e2b 96%);
}

.ddo-h-promo::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(12deg, rgba(10, 12, 14, 0.86) 18%, rgba(10, 12, 14, 0.22) 55%, rgba(10, 12, 14, 0.05) 100%);
}

.ddo-h-promo__copy {
  position: relative;
  z-index: 1;
  display: block;
  padding: 24px 26px;
}

.ddo-h-promo__copy small {
  display: block;
  margin-bottom: 8px;
  font: 700 11px / 1 var(--ddo-sans);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ddo-amber);
}

.ddo-h-promo__copy strong {
  display: block;
  max-width: 17ch;
  margin-bottom: 12px;
  font: 600 clamp(20px, 2vw, 27px) / 1.12 var(--ddo-display);
  letter-spacing: 0.01em;
  color: #fff;
}

.ddo-h-promo__copy em {
  padding-bottom: 2px;
  border-bottom: 2px solid var(--ddo-amber);
  font: 800 13px / 1 var(--ddo-sans);
  font-style: normal;
  color: #ffd28a;
}

.ddo-h-promos__stack {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 16px;
}

@media (hover: hover) {
  .ddo-h-promo:hover {
    box-shadow: 0 30px 66px rgba(16, 17, 20, 0.24);
    transform: translateY(-2px);
  }
}

@media (max-width: 860px) {
  .ddo-h-promos__grid {
    grid-template-columns: 1fr;
  }

  .ddo-h-promo--tall {
    min-height: 280px;
  }

  .ddo-h-promos__stack {
    grid-template-rows: auto;
  }
}

/* ==========================================================================
   BRANDS RAIL
   ========================================================================== */

.ddo-h-brands__rail {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
}

.ddo-h-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 106px;
  padding: 14px 10px;
  border: 1px solid var(--ddo-line);
  border-radius: 14px;
  background: #fff;
  text-align: center;
  transition: border-color 0.18s ease, box-shadow 0.2s ease, transform 0.18s ease;
}

.ddo-h-brand img {
  width: auto;
  height: 42px;
  max-width: 92%;
  object-fit: contain;
  filter: grayscale(1) opacity(0.72);
  transition: filter 0.2s ease;
}

.ddo-h-brand span {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--ddo-muted);
}

@media (hover: hover) {
  .ddo-h-brand:hover {
    border-color: var(--ddo-brand);
    box-shadow: 0 16px 38px rgba(207, 46, 43, 0.12);
    transform: translateY(-2px);
  }

  .ddo-h-brand:hover img {
    filter: none;
  }
}

@media (max-width: 1000px) {
  .ddo-h-brands__rail {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  .ddo-h-brands__rail {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
  }

  .ddo-h-brand {
    min-height: 92px;
  }
}

/* ==========================================================================
   SPOTLIGHT DEAL — charcoal band with red glow
   ========================================================================== */

.ddo-h-deal {
  background:
    radial-gradient(760px 400px at 88% -4%, rgba(207, 46, 43, 0.32), rgba(207, 46, 43, 0) 62%),
    linear-gradient(120deg, #14171b 0%, #23262b 100%);
  color: #fff;
}

.ddo-h-deal__media {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 24px 60px rgba(10, 11, 12, 0.5);
}

.ddo-kicker--deal {
  color: var(--ddo-amber);
}

.ddo-h-btn--amber {
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ==========================================================================
   HOW IT WORKS — fitment steps on dark band
   ========================================================================== */

.ddo-h-how {
  position: relative;
  overflow: hidden;
  padding: clamp(54px, 6.5vw, 90px) 0;
  background:
    radial-gradient(720px 380px at -6% 130%, rgba(207, 46, 43, 0.22), rgba(207, 46, 43, 0) 60%),
    #1a1d21;
  color: #dfe3e8;
}

.ddo-h-how__inner {
  width: min(100%, 1280px);
  margin: 0 auto;
  padding: 0 var(--ddo-gutter);
}

.ddo-h-how__copy {
  max-width: 660px;
  margin-bottom: clamp(26px, 3.5vw, 44px);
}

.ddo-h-how__copy .ddo-kicker {
  color: var(--ddo-amber);
}

.ddo-h-how__copy h2 {
  margin: 10px 0 0;
  font: 600 clamp(28px, 3.4vw, 44px) / 1.08 var(--ddo-display);
  color: #fff;
}

.ddo-h-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: ddo-step;
}

.ddo-h-steps li {
  position: relative;
  padding: 24px 24px 22px 78px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
  min-height: 100%;
}

.ddo-h-steps__num {
  position: absolute;
  top: 22px;
  left: 22px;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1.5px solid var(--ddo-amber);
  border-radius: 50%;
  color: var(--ddo-amber);
  font: 700 20px/1 var(--ddo-display);
}

.ddo-h-steps strong {
  display: block;
  margin-bottom: 8px;
  font: 600 19px/1.2 var(--ddo-display);
  color: #fff;
}

.ddo-h-steps p {
  margin: 0;
  color: #aeb4bb;
  font-size: 13.5px;
  line-height: 1.6;
}

@media (max-width: 900px) {
  .ddo-h-steps {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   "Parts for your vehicle" banner + buttons + misc
   ========================================================================== */

.ddo-vehicle-banner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 8px 16px;
  width: min(1280px, calc(100% - 2 * var(--ddo-gutter)));
  margin: 16px auto 8px;
  padding: 11px 16px;
  border: 1px solid #f0b8b4;
  border-radius: 10px;
  background: #fdeeee;
  font-size: 13px;
  color: #7c1f1b;
}

.ddo-vehicle-banner svg {
  display: inline-block;
  width: 20px;
  height: 20px;
  margin-right: 8px;
  vertical-align: -4px;
  fill: none;
  stroke: #b02521;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.ddo-vehicle-banner b {
  color: #191b1e;
}

.ddo-vehicle-banner a {
  font-weight: 700;
  color: #b02521;
  text-decoration: underline;
}

/* Buttons across the store sharpen slightly to match the rack feel. */
.button,
.wp-element-button,
input[type="submit"],
.ddo-h-btn,
.ddo-h-ghost {
  border-radius: 8px;
}

.ddo-hero__primary,
.ddo-hero__link,
.ddo-h-btn,
.ddo-h-ghost,
.ddo-newsletter-form button {
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-family: var(--ddo-sans);
}

/* ---- 1.1.0 cascade hardening --------------------------------------------- */
.ddo-announcement {
  display: block;
  height: auto;
  gap: 0;
  padding: 0;
}

.ddo-announcement a {
  position: static;
}

.ddo-header {
  display: block;
  width: 100%;
  max-width: none;
  height: auto;
  padding: 0;
}

.ddo-header.is-stuck {
  height: auto;
  background: #111317;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 16px 34px rgba(10, 11, 12, 0.34);
}

.ddo-header-actions {
  min-width: 0;
}

.ddo-hero__shot img {
  position: static;
}

.ddo-hero__chip--delivery {
  right: auto;
  bottom: auto;
}

.ddo-hero__chip--guarantee {
  top: auto;
  left: auto;
}

.ddo-footer .ddo-brand__logo,
.ddo-mobile-menu__head .ddo-brand__logo {
  color: #fff;
}
/* ==========================================================================
   1.1.1 — detail-layer fixes
   ========================================================================== */

/* 1 · CRITICAL: the legacy "absolute" announcement links overlapped text.
   Flatten every inherited position and give the bar a bulletproof zone grid. */
.ddo-announcement__links {
  position: static;
  right: auto;
  top: auto;
  bottom: auto;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.ddo-announcement__inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  column-gap: 22px;
  min-height: 36px;
}

.ddo-announcement__main {
  order: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.ddo-announcement__detail {
  order: 2;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.ddo-announcement__links {
  order: 3;
  display: flex;
  align-items: center;
  gap: 16px;
  white-space: nowrap;
}

.ddo-announcement__links a {
  border-left: 0;
  padding-left: 0;
}

.ddo-announcement__links a:last-child {
  color: var(--ddo-amber);
  text-decoration: none;
}

@media (max-width: 900px) {
  .ddo-announcement__detail {
    display: none;
  }

  .ddo-announcement__inner {
    grid-template-columns: 1fr auto;
  }

  .ddo-announcement__main {
    grid-column: 1;
  }
}

@media (max-width: 600px) {
  .ddo-announcement__links a:not(.ddo-announcement__phone) {
    display: none;
  }
}

/* 2 · Anti-pixelation: smoother text across the whole store. */
body,
button,
input,
select,
textarea {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

/* 3 · Mid-page newsletter — dark workshop band. */
.ddo-h-news {
  position: relative;
  overflow: hidden;
  padding: clamp(56px, 7vw, 96px) 0;
  background:
    radial-gradient(720px 420px at 92% -10%, rgba(207, 46, 43, 0.26), rgba(207, 46, 43, 0) 62%),
    linear-gradient(120deg, #14171b 0%, #23262b 100%);
  color: #dfe3e8;
}

.ddo-h-news::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(115deg, rgba(255, 255, 255, 0.02) 0 2px, transparent 2px 26px);
  pointer-events: none;
}

.ddo-h-news__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(30px, 4vw, 70px);
  align-items: center;
  width: min(100%, 1280px);
  margin: 0 auto;
  padding: 0 var(--ddo-gutter);
}

.ddo-h-news__copy .ddo-kicker--light {
  color: var(--ddo-amber);
}

.ddo-h-news__copy h2 {
  margin: 10px 0 14px;
  font: 600 clamp(28px, 3.4vw, 44px) / 1.06 var(--ddo-display);
  color: #fff;
}

.ddo-h-news__copy > p:not(.ddo-kicker) {
  max-width: 46ch;
  margin: 0;
  color: #aeb4bb;
  font-size: 15px;
  line-height: 1.65;
}

.ddo-h-news__form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  align-items: center;
  background: #fff;
  border-radius: 14px;
  padding: 10px;
  box-shadow: 0 24px 60px rgba(10, 11, 12, 0.4);
}

.ddo-h-news__form input[type="email"] {
  grid-column: 1;
  min-width: 0;
  border: 0;
  outline: 0;
  background: transparent;
  padding: 0 14px;
  min-height: 48px;
  font: 500 14px/1 var(--ddo-sans);
  color: #191b1e;
}

.ddo-h-news__form button {
  grid-column: 2;
  min-height: 48px;
  border: 0;
  border-radius: 9px;
  padding: 0 22px;
  background: var(--ddo-brand);
  color: #fff;
  font: 800 13px/1 var(--ddo-sans);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.15s ease, transform 0.15s ease;
}

.ddo-h-news__form button:hover {
  background: var(--ddo-brand-2);
  transform: translateY(-1px);
}

.ddo-h-news__legal {
  grid-column: 1 / -1;
  display: block;
  color: #8f969e;
  font-size: 11px;
  padding: 0 8px;
}

.ddo-h-news__form .ddo-newsletter-msg {
  grid-column: 1 / -1;
  margin: 0;
  padding: 2px 8px;
  font-size: 12.5px;
  color: #bfe6c9;
}

.ddo-h-news__form .ddo-newsletter-msg.is-error {
  color: #ffb4ae;
}

@media (max-width: 860px) {
  .ddo-h-news__inner {
    grid-template-columns: 1fr;
  }
}

/* 4 · Contact — dark support band. */
.ddo-h-contact--band {
  padding: clamp(58px, 7vw, 100px) 0;
  background:
    radial-gradient(700px 400px at -8% 120%, rgba(207, 46, 43, 0.18), rgba(207, 46, 43, 0) 62%),
    #1a1d21;
  color: #dfe3e8;
}

.ddo-h-contact__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  gap: clamp(26px, 3.6vw, 64px);
  align-items: start;
}

.ddo-h-contact__panel .ddo-kicker--light {
  color: var(--ddo-amber);
}

.ddo-h-contact__panel h2 {
  margin: 10px 0 12px;
  font: 600 clamp(27px, 3vw, 40px) / 1.08 var(--ddo-display);
  color: #fff;
}

.ddo-h-contact__lead {
  margin: 0 0 26px;
  color: #aeb4bb;
  font-size: 14.5px;
  line-height: 1.65;
}

.ddo-h-contact__formcard {
  background: #fff;
  border-radius: 16px;
  padding: clamp(18px, 2.4vw, 28px);
  color: var(--ddo-ink);
  box-shadow: 0 24px 60px rgba(10, 11, 12, 0.4);
}

.ddo-h-contact__map {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.ddo-h-contact__map iframe {
  width: 100%;
  height: clamp(240px, 30vw, 340px);
  border: 0;
  border-radius: 16px;
  box-shadow: 0 22px 50px rgba(10, 11, 12, 0.45);
}

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

.ddo-h-contact__chip {
  display: block;
  min-width: 0;
  padding: 13px 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
}

.ddo-h-contact__chip b {
  display: block;
  margin-bottom: 4px;
  font: 700 11px/1.2 var(--ddo-sans);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ddo-amber);
}

.ddo-h-contact__chip a,
.ddo-h-contact__chip em {
  display: block;
  overflow-wrap: anywhere;
  color: #fff;
  font-size: 13px;
  font-style: normal;
  font-weight: 600;
}

.ddo-h-contact__address {
  margin-top: 4px;
  color: #aeb4bb;
  font-size: 13.5px;
  line-height: 1.65;
  font-style: normal;
}

@media (max-width: 900px) {
  .ddo-h-contact__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .ddo-h-contact__chips {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   1.2.0 — the workshop journal (blog/editorial system)
   ========================================================================== */

/* Journal hero band */
.ddo-bloghero {
  position: relative;
  overflow: hidden;
  padding: clamp(44px, 5.5vw, 74px) 0;
  background:
    radial-gradient(720px 400px at 88% -10%, rgba(207, 46, 43, 0.24), rgba(207, 46, 43, 0) 62%),
    linear-gradient(120deg, #14171b 0%, #23262b 100%);
  color: #fff;
}

.ddo-bloghero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(115deg, rgba(255, 255, 255, 0.02) 0 2px, transparent 2px 26px);
  pointer-events: none;
}

.ddo-bloghero__inner {
  position: relative;
  z-index: 1;
}

.ddo-bloghero__copy {
  max-width: 640px;
}

.ddo-bloghero__copy .ddo-kicker--light {
  color: var(--ddo-amber);
}

.ddo-bloghero__copy h1 {
  margin: 10px 0 12px;
  font: 600 clamp(30px, 3.6vw, 48px) / 1.06 var(--ddo-display);
  color: #fff;
}

.ddo-bloghero__lead {
  margin: 0;
  color: #aeb4bb;
  font-size: 15px;
  line-height: 1.65;
}

/* Layout: main column + editorial sidebar */
.ddo-blog {
  background: linear-gradient(180deg, #f7f4f2 0%, #fff 640px);
  padding-top: clamp(34px, 4vw, 56px);
}

.ddo-blog__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: clamp(24px, 3vw, 44px);
  align-items: start;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--ddo-gutter) clamp(52px, 6vw, 84px);
}

@media (max-width: 980px) {
  .ddo-blog__layout {
    grid-template-columns: 1fr;
  }
}

.ddo-blog__main {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  min-width: 0;
}

.ddo-blog__main > .ddo-post-featured {
  grid-column: 1 / -1;
}

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

/* Featured card */
.ddo-post-featured {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  border: 1px solid var(--ddo-line);
  border-radius: 18px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 22px 52px rgba(16, 17, 20, 0.1);
}

.ddo-post-featured__media {
  position: relative;
  display: block;
  min-height: 320px;
  overflow: hidden;
}

.ddo-post-featured__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ddo-post-featured__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, rgba(25, 27, 30, 0.16) 0%, rgba(25, 27, 30, 0) 45%);
}

.ddo-post-featured__badge {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--ddo-brand);
  color: #fff;
  font: 800 10.5px/1 var(--ddo-sans);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.ddo-post-featured__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(22px, 3.2vw, 42px);
}

.ddo-post-featured__meta,
.ddo-post-card__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.ddo-post-featured__body h2 {
  margin: 0 0 14px;
  font: 600 clamp(22px, 2.4vw, 30px) / 1.14 var(--ddo-display);
}

.ddo-post-featured__body h2 a {
  color: var(--ddo-ink);
}

.ddo-post-featured__body h2 a:hover {
  color: var(--ddo-brand);
}

.ddo-post-featured__body > p {
  margin: 0 0 18px;
  color: #434a52;
  font-size: 14.5px;
  line-height: 1.65;
}

@media (max-width: 760px) {
  .ddo-post-featured {
    grid-template-columns: 1fr;
  }

  .ddo-post-featured__media {
    min-height: 220px;
  }
}

/* Standard cards */
.ddo-post-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  border: 1px solid var(--ddo-line);
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  transition: border-color 0.18s ease, box-shadow 0.2s ease, transform 0.18s ease;
}

.ddo-post-card:hover {
  border-color: var(--ddo-brand);
  box-shadow: 0 20px 44px rgba(207, 46, 43, 0.1);
  transform: translateY(-2px);
}

.ddo-post-card__media {
  position: relative;
  display: block;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: linear-gradient(135deg, #23262b 0%, #3a3e44 100%);
}

.ddo-post-card__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

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

.ddo-post-card__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(25, 27, 30, 0) 55%, rgba(25, 27, 30, 0.3) 100%);
}

.ddo-post-card__body {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  padding: 18px 20px 16px;
}

.ddo-post-card__cat {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(207, 46, 43, 0.09);
  color: var(--ddo-brand);
  font: 700 10.5px/1.2 var(--ddo-sans);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.ddo-post-card__date,
.ddo-post-card__readtime {
  color: var(--ddo-muted);
  font-size: 11.5px;
}

.ddo-post-card__body h2 {
  margin: 4px 0 10px;
  font: 600 clamp(17px, 1.8vw, 21px) / 1.2 var(--ddo-display);
  letter-spacing: 0.005em;
}

.ddo-post-card__body h2 a {
  color: var(--ddo-ink);
}

.ddo-post-card__body h2 a:hover {
  color: var(--ddo-brand);
}

.ddo-post-card__excerpt {
  flex: 1 1 auto;
  margin: 0 0 16px;
  color: #57534f;
  font-size: 13.5px;
  line-height: 1.6;
}

.ddo-post-card__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding-top: 12px;
  border-top: 1px solid var(--ddo-line);
}

.ddo-post-card__foot .ddo-text-link {
  font: 800 12.5px/1 var(--ddo-sans);
  color: var(--ddo-brand);
  letter-spacing: 0.02em;
}

/* Sidebar */
.ddo-blog__sidebar {
  display: grid;
  gap: 14px;
}

.ddo-blog-side {
  border: 1px solid var(--ddo-line);
  border-radius: 14px;
  background: #fff;
  padding: 18px 20px;
}

.ddo-blog-side h3 {
  margin: 0 0 14px;
  font: 600 16px/1.2 var(--ddo-display);
  color: var(--ddo-ink);
}

.ddo-blog-side--search form {
  display: flex;
  gap: 8px;
}

.ddo-blog-side--search input {
  flex: 1 1 auto;
  min-width: 0;
  height: 42px;
  border: 1px solid var(--ddo-line);
  border-radius: 8px;
  padding: 0 12px;
  background: #fafafa;
}

.ddo-blog-side--search button {
  border: 0;
  border-radius: 8px;
  padding: 0 14px;
  background: var(--ddo-brand);
  color: #fff;
  font-weight: 800;
}

.ddo-blog-side__latest,
.ddo-blog-side__cats {
  list-style: none;
  margin: 0;
  padding: 0;
}

.ddo-blog-side__latest li,
.ddo-blog-side__cats li {
  padding: 10px 0;
  border-top: 1px solid var(--ddo-line);
}

.ddo-blog-side__latest li:first-child,
.ddo-blog-side__cats li:first-child {
  border-top: 0;
  padding-top: 0;
}

.ddo-blog-side__latest a {
  display: block;
  color: var(--ddo-ink);
  font: 600 13.5px/1.35 var(--ddo-sans);
}

.ddo-blog-side__latest a:hover {
  color: var(--ddo-brand);
}

.ddo-blog-side__latest span {
  display: block;
  margin-top: 2px;
  color: var(--ddo-muted);
  font-size: 11px;
}

.ddo-blog-side__cats a {
  display: flex;
  align-items: center;
  padding: 9px 12px;
  border: 1px solid var(--ddo-line);
  border-radius: 9px;
  color: var(--ddo-ink);
  font: 700 12.5px/1 var(--ddo-sans);
  margin-bottom: 8px;
  transition: border-color 0.14s ease, color 0.14s ease;
}

.ddo-blog-side__cats a:hover {
  border-color: var(--ddo-brand);
  color: var(--ddo-brand);
}

/* Pagination */
.ddo-blog .pagination,
.ddo-blog nav.pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  padding: 18px 0 clamp(52px, 6vw, 84px);
}

/* ---------- single post ------------------------------------------------ */

.ddo-post-single__hero {
  padding: clamp(44px, 5.5vw, 70px) 0;
  background:
    radial-gradient(720px 400px at 88% -10%, rgba(207, 46, 43, 0.24), rgba(207, 46, 43, 0) 62%),
    linear-gradient(120deg, #14171b 0%, #23262b 100%);
}

.ddo-post-single__heroinner {
  max-width: 780px;
}

.ddo-post-single__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.ddo-post-single__cat {
  background: var(--ddo-brand);
  color: #fff;
}

.ddo-post-single__meta .ddo-post-card__date,
.ddo-post-single__meta .ddo-post-card__readtime {
  color: #aeb4bb;
}

.ddo-post-single__hero h1 {
  margin: 0;
  font: 600 clamp(28px, 3.6vw, 46px) / 1.08 var(--ddo-display);
  color: #fff;
}

.ddo-post-single__auth {
  margin: 14px 0 0;
  color: #aeb4bb;
  font-size: 13px;
}

.ddo-post-single__image {
  margin: 0 auto;
  max-width: 1000px;
  padding: 0 var(--ddo-gutter);
  margin-top: clamp(-72px, -6vw, -40px);
  position: relative;
  z-index: 2;
}

.ddo-post-single__image img {
  display: block;
  width: 100%;
  border-radius: 18px;
  border: 1px solid var(--ddo-line);
  box-shadow: 0 28px 60px rgba(16, 17, 20, 0.18);
}

.ddo-post-single .ddo-entry-content {
  max-width: 76ch;
  margin: clamp(30px, 4vw, 48px) auto 0;
  padding: 0 var(--ddo-gutter);
}

.ddo-post-single__foot {
  max-width: 76ch;
  margin: 34px auto 0;
  padding: 0 var(--ddo-gutter);
}

.ddo-post-single__tags {
  margin-bottom: 18px;
}

.ddo-post-single__tags a {
  display: inline-flex;
  padding: 4px 11px;
  border: 1px solid var(--ddo-line);
  border-radius: 999px;
  color: var(--ddo-muted);
  font-size: 11.5px;
  margin-right: 6px;
}

.ddo-post-single__related {
  margin-top: clamp(40px, 5vw, 64px);
  padding: clamp(38px, 5vw, 58px) 0 clamp(52px, 6vw, 84px);
  background: linear-gradient(180deg, #fff 0%, #f7f4f2 100%);
  border-top: 1px solid var(--ddo-line);
}

.ddo-post-single__related h2 {
  margin: 0 0 22px;
  font: 600 clamp(24px, 2.8vw, 34px) / 1.1 var(--ddo-display);
}

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

@media (max-width: 900px) {
  .ddo-blog__relatedgrid {
    grid-template-columns: 1fr;
  }
}

.ddo-post-single__comments {
  max-width: 76ch;
  margin: clamp(32px, 4vw, 48px) auto 0;
  padding: 0 var(--ddo-gutter) clamp(52px, 6vw, 84px);
}

/* ---- Category sidebar inside the hero (1.2.0) ----------------------------- */

.ddo-hero__inner {
  grid-template-columns: 235px minmax(0, 1fr) minmax(0, 0.9fr);
  gap: clamp(18px, 2.6vw, 34px);
}

.ddo-hero__cats {
  align-self: start;
  border: 1px solid var(--ddo-line);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 18px 44px rgba(25, 27, 30, 0.08);
  overflow: hidden;
}

.ddo-hero__cats-title {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  padding: 15px 18px;
  background: #1a1d21;
  color: #fff;
  font: 700 13px/1 var(--ddo-display);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ddo-hero__cats-title svg {
  width: 16px;
  height: 16px;
  stroke: var(--ddo-amber);
  stroke-width: 2.2;
  fill: none;
  stroke-linecap: round;
}

.ddo-hero__cats-list {
  list-style: none;
  margin: 0;
  padding: 6px 0;
}

.ddo-hero__cats-list li + li {
  border-top: 1px solid rgba(233, 226, 221, 0.75);
}

.ddo-hero__cats-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 11px 16px;
  color: var(--ddo-ink);
  font: 600 12.5px/1.3 var(--ddo-sans);
  transition: background 0.14s ease, color 0.14s ease, padding 0.16s ease;
}

.ddo-hero__cats-list a svg {
  width: 15px;
  height: 15px;
  stroke: currentColor;
  stroke-width: 2.2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: 0;
  margin-left: 6px;
  transition: opacity 0.16s ease, transform 0.16s ease;
}

.ddo-hero__cats-list a:hover,
.ddo-hero__cats-list li.ddo-hero__cats-all a {
  background: rgba(207, 46, 43, 0.07);
  color: var(--ddo-brand);
}

.ddo-hero__cats-list a:hover svg {
  opacity: 1;
  transform: translateX(2px);
}

.ddo-hero__cats-all a {
  background: rgba(207, 46, 43, 0.06);
  color: var(--ddo-brand);
  font-weight: 800;
}

@media (max-width: 1080px) {
  .ddo-hero__inner {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  }

  .ddo-hero__cats {
    display: none;
  }
}

@media (max-width: 640px) {
  .ddo-hero__inner {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 1080px) {
  .ddo-hero__chip {
    display: none;
  }
}

/* 1.5.0 brand mark: the merchant-supplied PNG replaces the old inline SVG
   lockup (ddo_logo now outputs img.ddo-brand__img). Height-capped per area. */
.ddo-brand__logo img,
.ddo-brand__img {
  display: block;
  width: auto;
  height: 40px;
  max-width: none;
  object-fit: contain;
}
.ddo-mobile-menu__head .ddo-brand__img {
  height: 30px;
}
.ddo-footer .ddo-brand__img {
  height: 46px;
}
@media (max-width: 820px) {
  .ddo-brand__logo img,
  .ddo-brand__img { height: 30px; }
  .ddo-footer .ddo-brand__img { height: 36px; }
}
@media (max-width: 520px) {
  .ddo-brand__logo img,
  .ddo-brand__img { height: 26px; }
}

/* ==========================================================================
   1.5.0 HOMEPAGE REDESIGN (ddo-hh namespace)
   Cinematic hero slider, asymmetric banner promos supplied art, catalogue
   rails, editorial journal, assurance and contact bands.
   ========================================================================== */

.ddo-hh { background: #fff; }
.ddo-hh-wrap { max-width: 1280px; margin: 0 auto; padding: 0 clamp(18px, 3.4vw, 44px); }
.ddo-hh-sec { padding: clamp(46px, 6vw, 84px) 0; }
.ddo-hh-sec--tinted { background: var(--ddo-mist, #f4f1ee); }

/* 1.6.0 protected PHP storefront: premium circular discovery + stable grid. */
.ddo-php-home > section { width: 100%; }
.ddo-hh-hero__track { min-height: clamp(610px, 80vh, 735px); }
.ddo-hh-slide__bg { background-position: center; }
.ddo-hh-slide__inner { min-height: inherit; align-items: center; }
.ddo-hh-slide__copy { max-width: 690px; }
.ddo-hh-slide__copy h1 { max-width: 13ch; font-size: clamp(42px,5vw,72px); line-height: .98; letter-spacing: -.035em; }
.ddo-hh-slide__sub { max-width: 54ch; }

.ddo-home--categories .ddo-hh-rail__track { gap: clamp(16px,2vw,28px); padding: 12px 5px 27px; }
.ddo-home--categories .ddo-hh-tile { flex: 0 0 clamp(126px,13vw,168px); min-width: 0; padding: 2px; gap: 8px; border: 0; border-radius: 0; background: transparent; box-shadow: none; }
.ddo-home--categories .ddo-hh-tile:hover { transform: translateY(-5px); border: 0; box-shadow: none; }
.ddo-home--categories .ddo-hh-tile__media { position: relative; width: clamp(112px,11vw,146px); height: clamp(112px,11vw,146px); margin: 0 auto 7px; border: 5px solid #fff; background: linear-gradient(145deg,#f7f8fa,#e8edf1); box-shadow: 0 0 0 1px rgba(8,30,49,.12),0 15px 34px rgba(8,30,49,.14); transition: transform .25s,box-shadow .25s; }
.ddo-home--categories .ddo-hh-tile__media::after { content: ""; position: absolute; inset: 0; border-radius: inherit; box-shadow: inset 0 0 0 1px rgba(255,255,255,.55); pointer-events: none; }
.ddo-home--categories .ddo-hh-tile__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s; }
.ddo-home--categories .ddo-hh-tile__media--icon svg { width: 42px; height: 42px; }
.ddo-home--categories .ddo-hh-tile:hover .ddo-hh-tile__media { box-shadow: 0 0 0 3px var(--ddo-amber),0 20px 42px rgba(8,30,49,.2); }
.ddo-home--categories .ddo-hh-tile:hover .ddo-hh-tile__media img { transform: scale(1.07); }
.ddo-home--categories .ddo-hh-tile strong { font-size: 14px; text-align: center; }
.ddo-home--categories .ddo-hh-tile small { text-align: center; }

.ddo-php-home .woocommerce ul.products { display: grid !important; grid-template-columns: repeat(4,minmax(0,1fr)); gap: 22px; margin: 0; }
.ddo-php-home .woocommerce ul.products::before,.ddo-php-home .woocommerce ul.products::after { display: none; }
.ddo-php-home .woocommerce ul.products li.product { float: none !important; width: auto !important; min-width: 0; height: 100%; margin: 0 !important; padding: 14px 14px 18px; display: flex; flex-direction: column; overflow: hidden; border: 1px solid var(--ddo-line); border-radius: 17px; background: #fff; box-shadow: 0 10px 28px rgba(8,30,49,.07); transition: transform .22s,box-shadow .22s,border-color .22s; }
.ddo-php-home .woocommerce ul.products li.product:hover { transform: translateY(-5px); border-color: rgba(207,46,43,.38); box-shadow: 0 24px 52px rgba(8,30,49,.14); }
.ddo-php-home .woocommerce ul.products li.product a.woocommerce-LoopProduct-link { display: flex; flex: 1; flex-direction: column; text-decoration: none; }
.ddo-php-home .woocommerce ul.products li.product img { width: 100%; aspect-ratio: 1/1; margin: 0 0 15px; border-radius: 12px; background: #f5f7f8; object-fit: contain; }
.ddo-php-home .woocommerce ul.products li.product .woocommerce-loop-product__title { min-height: 2.8em; padding: 0; font-size: 14.5px; line-height: 1.4; font-weight: 800; color: var(--ddo-ink); }
.ddo-php-home .woocommerce ul.products li.product .price { margin: auto 0 10px; color: var(--ddo-brand); font-weight: 850; }
.ddo-php-home .woocommerce ul.products li.product .button { width: 100%; margin: 8px 0 0; padding: 13px 12px; border-radius: 9px; text-align: center; }
.ddo-hh-deal__inner { min-height: 500px; }
.ddo-hh-deal__media { display: grid; place-items: center; min-height: 410px; padding: 24px; }
.ddo-hh-deal__media img { width: min(100%,460px); max-height: 390px; object-fit: contain; }
.ddo-hh-review { min-height: 260px; grid-template-rows: auto 1fr auto; }

@media (max-width: 980px) {
  .ddo-php-home .woocommerce ul.products { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .ddo-hh-hero__track { min-height: 680px; }
}
@media (max-width: 560px) {
  .ddo-hh-hero__track { min-height: 720px; }
  .ddo-hh-slide__copy h1 { font-size: clamp(36px,11vw,48px); }
  .ddo-home--categories .ddo-hh-tile { flex-basis: 106px; }
  .ddo-home--categories .ddo-hh-tile__media { width: 94px; height: 94px; border-width: 4px; }
  .ddo-php-home .woocommerce ul.products { gap: 10px; }
  .ddo-php-home .woocommerce ul.products li.product { padding: 9px 9px 13px; border-radius: 12px; }
  .ddo-php-home .woocommerce ul.products li.product .woocommerce-loop-product__title { font-size: 12.5px; }
  .ddo-hh-deal__inner,.ddo-hh-deal__media,.ddo-hh-review { min-height: 0; }
}

/* 1.6.1 banner repair + premium fitment journey. */
.ddo-home--promos .ddo-hh-banner,
.ddo-home--collections .ddo-hh-banner { background: linear-gradient(145deg,#263646,#101922); box-shadow: 0 18px 44px rgba(8,30,49,.16); }
.ddo-home--promos .ddo-hh-banner__bg,
.ddo-home--collections .ddo-hh-banner__bg { background-color: #1a2632; background-repeat: no-repeat; }
.ddo-home--promos .ddo-hh-banner__bg::after,
.ddo-home--collections .ddo-hh-banner__bg::after { background: linear-gradient(180deg,rgba(8,14,20,.03) 16%,rgba(8,14,20,.18) 45%,rgba(8,14,20,.92) 100%); }
.ddo-home--promos .ddo-hh-banner__copy,
.ddo-home--collections .ddo-hh-banner__copy { left: clamp(20px,2.5vw,32px); right: clamp(20px,2.5vw,32px); bottom: clamp(20px,2.5vw,30px); gap: 8px; text-shadow: 0 2px 18px rgba(0,0,0,.42); }
.ddo-home--promos .ddo-hh-banner__copy small,
.ddo-home--collections .ddo-hh-banner__copy small { display: inline-flex; justify-self: start; padding: 7px 10px; border-radius: 999px; background: var(--ddo-amber); color: #15191d; letter-spacing: .12em; text-shadow: none; }
.ddo-home--promos .ddo-hh-banner__copy strong,
.ddo-home--collections .ddo-hh-banner__copy strong { max-width: 21ch; color: #fff; font-size: clamp(21px,2vw,30px); letter-spacing: -.015em; }
.ddo-home--collections .ddo-hh-banner__copy strong { font-size: clamp(19px,1.55vw,24px); }
.ddo-home--promos .ddo-hh-banner__copy em,
.ddo-home--collections .ddo-hh-banner__copy em { display: inline-flex; align-items: center; margin-top: 3px; color: #fff; opacity: 1; }
.ddo-home--promos .ddo-hh-banner:hover,
.ddo-home--collections .ddo-hh-banner:hover { transform: translateY(-4px); box-shadow: 0 28px 64px rgba(8,30,49,.24); }

.ddo-hh-how { position: relative; overflow: hidden; padding: clamp(72px,8vw,116px) 0; background: #101a25; isolation: isolate; }
.ddo-hh-how::before { content: ""; position: absolute; z-index: -1; inset: 0; background: radial-gradient(circle at 12% 15%,rgba(207,46,43,.23),transparent 27%),radial-gradient(circle at 88% 80%,rgba(255,160,31,.16),transparent 26%),linear-gradient(rgba(255,255,255,.028) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.028) 1px,transparent 1px); background-size: auto,auto,42px 42px,42px 42px; }
.ddo-hh-how__inner { position: relative; display: grid; grid-template-columns: minmax(0,.72fr) minmax(0,1.28fr); gap: clamp(44px,6vw,88px); align-items: center; padding: 0; border: 0; border-radius: 0; background: transparent; }
.ddo-hh-how__copy { max-width: 480px; }
.ddo-hh-how__copy .ddo-kicker { color: var(--ddo-amber); }
.ddo-hh-how__copy h2 { max-width: 13ch; margin: 12px 0 0; color: #fff; font-size: clamp(34px,4vw,54px); line-height: 1.04; letter-spacing: -.025em; }
.ddo-hh-how__lead { max-width: 48ch; margin: 22px 0 0; color: rgba(255,255,255,.68); font-size: 15.5px; line-height: 1.72; }
.ddo-hh-how__proof { display: grid; grid-template-columns: 1fr 1fr; gap: 11px; margin: 28px 0; }
.ddo-hh-how__proof span { display: grid; gap: 5px; padding: 16px 17px; border: 1px solid rgba(255,255,255,.11); border-radius: 13px; background: rgba(255,255,255,.055); backdrop-filter: blur(5px); }
.ddo-hh-how__proof b { color: #fff; font: 600 18px/1.1 var(--ddo-display); }
.ddo-hh-how__proof small { color: rgba(255,255,255,.57); font-size: 11.5px; }
.ddo-hh-how__copy .ddo-hh-btn { min-height: 52px; }
.ddo-hh-fitment-flow { min-width: 0; padding: clamp(22px,2.5vw,34px); border: 1px solid rgba(255,255,255,.11); border-radius: 25px; background: rgba(255,255,255,.055); box-shadow: 0 34px 80px rgba(0,0,0,.24); backdrop-filter: blur(10px); }
.ddo-hh-fitment-flow__label { display: flex; align-items: center; gap: 10px; margin: 0 0 20px; color: rgba(255,255,255,.56); font: 800 10.5px/1 var(--ddo-sans); letter-spacing: .16em; }
.ddo-hh-fitment-flow__label span { width: 28px; height: 2px; background: var(--ddo-amber); }
.ddo-hh-fitment-flow .ddo-hh-steps { position: relative; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 13px; }
.ddo-hh-fitment-flow .ddo-hh-steps li { position: relative; min-height: 292px; display: flex; flex-direction: column; padding: 22px 20px 19px; overflow: hidden; border: 1px solid rgba(255,255,255,.1); border-radius: 17px; background: linear-gradient(155deg,rgba(255,255,255,.1),rgba(255,255,255,.045)); transition: transform .22s,border-color .22s,background .22s; }
.ddo-hh-fitment-flow .ddo-hh-steps li:hover { transform: translateY(-5px); border-color: rgba(255,160,31,.48); background: linear-gradient(155deg,rgba(255,255,255,.14),rgba(255,255,255,.065)); }
.ddo-hh-steps__top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 34px; }
.ddo-hh-steps__icon { display: grid; place-items: center; width: 48px; height: 48px; border-radius: 14px; background: var(--ddo-brand); color: #fff; box-shadow: 0 12px 26px rgba(207,46,43,.28); }
.ddo-hh-steps__icon svg { width: 24px; height: 24px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.ddo-hh-fitment-flow .ddo-hh-steps__num { display: block; width: auto; height: auto; margin: 0; border-radius: 0; background: transparent; color: rgba(255,255,255,.22); font: 600 25px/1 var(--ddo-display); }
.ddo-hh-fitment-flow .ddo-hh-steps strong { color: #fff; font: 600 19px/1.22 var(--ddo-display); }
.ddo-hh-fitment-flow .ddo-hh-steps p { margin: 10px 0 20px; color: rgba(255,255,255,.62); font-size: 13px; line-height: 1.62; }
.ddo-hh-fitment-flow .ddo-hh-steps small { display: inline-flex; align-items: center; gap: 7px; margin-top: auto; color: var(--ddo-amber); font: 800 10.5px/1.25 var(--ddo-sans); letter-spacing: .06em; text-transform: uppercase; }
.ddo-hh-fitment-flow .ddo-hh-steps small::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--ddo-amber); box-shadow: 0 0 0 4px rgba(255,160,31,.12); }

@media (max-width: 1040px) {
  .ddo-hh-how__inner { grid-template-columns: 1fr; }
  .ddo-hh-how__copy { max-width: 720px; }
  .ddo-hh-how__copy h2 { max-width: 18ch; }
}
@media (max-width: 720px) {
  .ddo-hh-fitment-flow .ddo-hh-steps { grid-template-columns: 1fr; }
  .ddo-hh-fitment-flow .ddo-hh-steps li { min-height: 0; }
  .ddo-hh-steps__top { margin-bottom: 22px; }
  .ddo-hh-how__proof { grid-template-columns: 1fr; }
  .ddo-hh-how__copy .ddo-hh-btn { width: 100%; }
  .ddo-home--promos .ddo-hh-banner__copy strong,.ddo-home--collections .ddo-hh-banner__copy strong { font-size: 21px; }
}
.ddo-hh-head { display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between; gap: 16px; margin-bottom: clamp(24px, 2.8vw, 38px); }
.ddo-hh-head h2 { margin: 8px 0 0; font: 600 clamp(26px, 3.4vw, 40px) / 1.12 var(--ddo-display); letter-spacing: 0.005em; color: var(--ddo-ink); max-width: 22ch; }
.ddo-hh-head--center { flex-direction: column; align-items: center; text-align: center; }
.ddo-hh-head--center h2 { margin-left: auto; margin-right: auto; }
.ddo-hh-more { color: var(--ddo-brand); font-size: 13px; font-weight: 800; letter-spacing: 0.04em; text-transform: uppercase; text-decoration: none; border-bottom: 2px solid rgba(207, 46, 43, 0.35); padding-bottom: 4px; }
.ddo-hh-more:hover { border-bottom-color: var(--ddo-brand); }

/* kickers on dark slides/bands */
.ddo-kicker { margin: 0; }
.ddo-kicker--light { color: var(--ddo-amber); }

/* buttons */
.ddo-hh-btn { display: inline-flex; align-items: center; justify-content: center; min-height: 50px; padding: 0 26px; border-radius: 10px; font: 800 13px/1 var(--ddo-sans); letter-spacing: 0.05em; text-transform: uppercase; text-decoration: none; cursor: pointer; transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease; }
.ddo-hh-btn--red { background: var(--ddo-brand); color: #fff; box-shadow: 0 14px 30px rgba(207, 46, 43, 0.32); }
.ddo-hh-btn--red:hover { transform: translateY(-1px); background: var(--ddo-brand-2, #b9231f); color: #fff; }
.ddo-hh-btn--amber { background: var(--ddo-amber); color: #1c1a17; box-shadow: 0 14px 30px rgba(255, 179, 15, 0.3); }
.ddo-hh-btn--amber:hover { transform: translateY(-1px); filter: brightness(1.04); }
.ddo-hh-btn--ghost { background: transparent; color: #fff; border: 1.5px solid rgba(255, 255, 255, 0.55); }
.ddo-hh-btn--ghost:hover { border-color: #fff; background: rgba(255, 255, 255, 0.08); }
.ddo-hh-slide__ctas { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }

/* ---------- HERO SLIDER ---------------------------------------------------- */
.ddo-hh-hero { position: relative; background: #101214; }
.ddo-hh-hero__track { position: relative; min-height: clamp(560px, 88vh, 760px); }
.ddo-hh-slide { position: absolute; inset: 0; opacity: 0; visibility: hidden; transition: opacity 0.7s ease, visibility 0.7s; }
.ddo-hh-slide.is-active { opacity: 1; visibility: visible; position: relative; }
.ddo-hh-slide__bg { position: absolute; inset: 0; background-size: cover; background-position: center 35%; transform: scale(1.04); transition: transform 6s ease; }
.ddo-hh-slide.is-active .ddo-hh-slide__bg { transform: scale(1); }
.ddo-hh-slide__scrim { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(10, 12, 14, 0.86) 0%, rgba(10, 12, 14, 0.55) 44%, rgba(10, 12, 14, 0.12) 100%); }
.ddo-hh-slide__inner { position: relative; z-index: 2; max-width: 1280px; margin: 0 auto; padding: clamp(70px, 10vh, 120px) clamp(18px, 3.4vw, 44px); }
.ddo-hh-slide__copy { max-width: 640px; }
.ddo-hh-slide__copy h1 { margin: 14px 0 0; font: 600 clamp(34px, 5.4vw, 62px) / 1.04 var(--ddo-display); color: #fff; letter-spacing: 0.002em; text-wrap: balance; }
.ddo-hh-slide__sub { margin: 18px 0 0; max-width: 46ch; color: rgba(255, 255, 255, 0.82); font-size: 16px; line-height: 1.6; }
.ddo-hh-slide__finder { margin-top: 30px; max-width: 560px; background: #fff; border-radius: 16px; padding: 22px 22px 18px; box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35); }
.ddo-hh-hero__nav { position: absolute; z-index: 5; top: 50%; transform: translateY(-50%); width: 48px; height: 48px; border: 0; border-radius: 50%; display: grid; place-items: center; background: rgba(255, 255, 255, 0.14); backdrop-filter: blur(4px); color: #fff; cursor: pointer; transition: background 0.15s ease, transform 0.15s ease; }
.ddo-hh-hero__nav:hover { background: var(--ddo-brand); }
.ddo-hh-hero__nav--prev { left: clamp(10px, 2vw, 26px); }
.ddo-hh-hero__nav--next { right: clamp(10px, 2vw, 26px); }
.ddo-hh-hero__nav svg { width: 22px; height: 22px; fill: none; stroke: currentColor; stroke-width: 2.4; }
.ddo-hh-hero__dots { position: absolute; z-index: 5; left: 0; right: 0; bottom: 22px; display: flex; justify-content: center; gap: 8px; }
.ddo-hh-hero__dots button { width: 34px; height: 5px; border: 0; border-radius: 999px; padding: 0; background: rgba(255, 255, 255, 0.35); cursor: pointer; transition: background 0.2s ease; }
.ddo-hh-hero__dots button.is-active { background: var(--ddo-amber); }

/* ---------- BENEFITS ------------------------------------------------------- */
.ddo-hh-benefits { position: relative; z-index: 3; margin-top: -34px; }
.ddo-hh-benefits__inner { display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); background: #fff; border: 1px solid var(--ddo-line); border-radius: 18px; padding: 8px; box-shadow: 0 22px 55px rgba(16, 17, 20, 0.1); }
.ddo-hh-benefit { display: flex; align-items: center; gap: 12px; padding: 16px 14px; border-radius: 12px; }
.ddo-hh-benefit svg { width: 26px; height: 26px; flex: 0 0 26px; fill: none; stroke: var(--ddo-brand); stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.ddo-hh-benefit span b { display: block; font-size: 13px; font-weight: 800; color: var(--ddo-ink); }
.ddo-hh-benefit span small { display: block; margin-top: 2px; font-size: 11px; color: var(--ddo-muted); }

/* ---------- CATEGORY TILES ------------------------------------------------- */
.ddo-hh-tiles { display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); gap: 12px; }
.ddo-hh-tiles--extra { margin-top: 12px; }
.ddo-hh-tile { display: flex; flex-direction: column; align-items: center; gap: 10px; padding: 22px 12px 18px; border: 1px solid var(--ddo-line); border-radius: 14px; background: #fff; text-align: center; text-decoration: none; transition: transform 0.16s ease, border-color 0.16s ease, box-shadow 0.16s ease; }
.ddo-hh-tile:hover { transform: translateY(-3px); border-color: rgba(207, 46, 43, 0.55); box-shadow: 0 16px 36px rgba(16, 17, 20, 0.08); }
.ddo-hh-tile--outlet { border-color: rgba(207, 46, 43, 0.4); background: linear-gradient(180deg, #fff, rgba(207, 46, 43, 0.05)); }
.ddo-hh-tile__icon { display: inline-grid; place-items: center; width: 52px; height: 52px; border-radius: 14px; background: var(--ddo-mist); color: var(--ddo-brand); }
.ddo-hh-tile__icon svg { width: 26px; height: 26px; fill: none; stroke: currentColor; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.ddo-hh-tile strong { font-size: 13.5px; font-weight: 800; color: var(--ddo-ink); }
.ddo-hh-tile small { font-size: 11.5px; color: var(--ddo-muted); }
.ddo-hh-tiles__more { margin: 18px 0 0; text-align: center; }
.ddo-hh-tiles__toggle { border: 1.5px solid var(--ddo-line); background: #fff; padding: 11px 22px; border-radius: 999px; cursor: pointer; font: 800 12.5px/1 var(--ddo-sans); letter-spacing: 0.04em; text-transform: uppercase; color: var(--ddo-ink); }
.ddo-hh-tiles__toggle:hover { border-color: var(--ddo-brand); color: var(--ddo-brand); }

/* ---------- BANNERS -------------------------------------------------------- */
.ddo-hh-sec--flush { padding-top: 0; }
.ddo-hh-banners { display: grid; grid-template-columns: minmax(0, 1.14fr) minmax(0, 0.86fr); gap: 14px; }
.ddo-hh-banners__stack { display: grid; gap: 14px; }
.ddo-hh-banners3 { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; }
.ddo-hh-banner { position: relative; display: block; min-height: 236px; border-radius: 18px; overflow: hidden; background: var(--ddo-ink); text-decoration: none; isolation: isolate; }
.ddo-hh-banner--tall { min-height: 486px; }
.ddo-hh-banner__bg { position: absolute; inset: 0; background-size: cover; background-position: center; transition: transform 0.5s ease; z-index: 0; }
.ddo-hh-banner:hover .ddo-hh-banner__bg { transform: scale(1.05); }
.ddo-hh-banner__bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(165deg, rgba(12, 14, 16, 0.18) 30%, rgba(12, 14, 16, 0.62) 100%); }
.ddo-hh-banner__copy { position: absolute; z-index: 1; left: 24px; right: 24px; bottom: 22px; display: grid; gap: 6px; color: #fff; }
.ddo-hh-banner__copy small { font: 800 11px/1 var(--ddo-sans); letter-spacing: 0.14em; text-transform: uppercase; color: var(--ddo-amber); }
.ddo-hh-banner__copy strong { font: 600 clamp(19px, 2.1vw, 27px) / 1.16 var(--ddo-display); max-width: 24ch; }
.ddo-hh-banner__copy em { font-style: normal; font: 800 12px/1 var(--ddo-sans); letter-spacing: 0.06em; text-transform: uppercase; color: #fff; opacity: 0.9; margin-top: 6px; }
.ddo-hh-banner:hover .ddo-hh-banner__copy em { color: var(--ddo-amber); opacity: 1; }

/* ---------- DEAL BAND ------------------------------------------------------ */
.ddo-hh-deal { background: var(--ddo-charcoal, #191b1e); color: #fff; padding: clamp(50px, 6vw, 90px) 0; position: relative; overflow: hidden; }
.ddo-hh-deal::before { content: ""; position: absolute; inset: -40%; background: radial-gradient(closest-side, rgba(207, 46, 43, 0.24), transparent 72%); }
.ddo-hh-deal__inner { position: relative; display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr); gap: clamp(26px, 4vw, 60px); align-items: center; }
.ddo-hh-deal__copy h2 { margin: 12px 0 0; font: 600 clamp(26px, 3.4vw, 42px) / 1.12 var(--ddo-display); }
.ddo-hh-deal__copy > p { color: rgba(255, 255, 255, 0.78); font-size: 15px; line-height: 1.65; }
.ddo-hh-deal__price { display: flex; flex-wrap: wrap; align-items: center; gap: 14px; margin: 20px 0 0; }
.ddo-hh-deal__now { font: 600 clamp(30px, 3.6vw, 46px) / 1 var(--ddo-display); color: var(--ddo-amber); }
.ddo-hh-deal__price del { color: rgba(255, 255, 255, 0.5); font-size: 17px; }
.ddo-hh-deal__chip { background: var(--ddo-brand); color: #fff; border-radius: 999px; padding: 6px 12px; font: 800 11px/1 var(--ddo-sans); letter-spacing: 0.08em; text-transform: uppercase; }
.ddo-hh-deal__media { display: block; border-radius: 18px; overflow: hidden; background: #fff; box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4); }
.ddo-hh-deal__media img { display: block; width: 100%; height: auto; }

/* ---------- HOW IT WORKS --------------------------------------------------- */
.ddo-hh-how { padding: clamp(46px, 6vw, 84px) 0; }
.ddo-hh-how__inner { display: grid; grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr); gap: clamp(26px, 4vw, 60px); align-items: start; background: var(--ddo-mist); border: 1px solid var(--ddo-line); border-radius: 22px; padding: clamp(28px, 3.6vw, 52px); }
.ddo-hh-how__copy h2 { margin: 8px 0 0; font: 600 clamp(24px, 2.9vw, 36px) / 1.16 var(--ddo-display); color: var(--ddo-ink); }
.ddo-hh-steps { display: grid; gap: 22px; margin: 0; padding: 0; list-style: none; counter-reset: steps; }
.ddo-hh-steps li { display: grid; grid-template-columns: 46px minmax(0, 1fr); gap: 4px 16px; align-items: start; }
.ddo-hh-steps__num { grid-row: span 2; width: 46px; height: 46px; display: grid; place-items: center; border-radius: 14px; background: var(--ddo-brand); color: #fff; font: 600 20px/1 var(--ddo-display); }
.ddo-hh-steps strong { font-size: 15.5px; font-weight: 800; color: var(--ddo-ink); }
.ddo-hh-steps p { margin: 0; color: var(--ddo-muted); font-size: 13.5px; line-height: 1.6; }

/* ---------- JOURNAL --------------------------------------------------------- */
.ddo-hh-journal { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.ddo-hh-card { display: flex; flex-direction: column; background: #fff; border: 1px solid var(--ddo-line); border-radius: 16px; overflow: hidden; text-decoration: none; transition: transform 0.16s ease, box-shadow 0.16s ease; }
.ddo-hh-card:hover { transform: translateY(-4px); box-shadow: 0 22px 46px rgba(16, 17, 20, 0.12); }
.ddo-hh-card__media { display: block; aspect-ratio: 16 / 9; overflow: hidden; background: var(--ddo-mist); }
.ddo-hh-card__media img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.4s ease; }
.ddo-hh-card:hover .ddo-hh-card__media img { transform: scale(1.04); }
.ddo-hh-card__body { display: grid; gap: 8px; padding: 18px 20px 22px; }
.ddo-hh-card__body small { font: 700 11px/1.3 var(--ddo-sans); letter-spacing: 0.1em; text-transform: uppercase; color: var(--ddo-brand); }
.ddo-hh-card__body strong { font: 600 17.5px/1.32 var(--ddo-display); color: var(--ddo-ink); }
.ddo-hh-card__body em { font-style: normal; font-size: 13px; line-height: 1.6; color: var(--ddo-muted); }

/* ---------- REVIEWS ---------------------------------------------------------- */
.ddo-hh-reviews { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.ddo-hh-review { margin: 0; padding: 26px 24px 22px; background: #fff; border: 1px solid var(--ddo-line); border-radius: 16px; display: grid; gap: 12px; box-shadow: 0 10px 30px rgba(16, 17, 20, 0.05); }
.ddo-hh-review__stars { color: var(--ddo-gold, #f0b429); letter-spacing: 2px; }
.ddo-hh-review blockquote { margin: 0; color: #3c434b; font-size: 14.5px; line-height: 1.65; }
.ddo-hh-review figcaption strong { display: block; color: var(--ddo-ink); font-weight: 800; font-size: 14px; }
.ddo-hh-review figcaption span { font-size: 12px; color: var(--ddo-muted); }

/* ---------- NEWSLETTER ------------------------------------------------------ */
.ddo-hh-news { background: var(--ddo-charcoal, #191b1e); color: #fff; padding: clamp(46px, 6vw, 80px) 0; }
.ddo-hh-news__inner { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(24px, 4vw, 56px); align-items: center; }
.ddo-hh-news__copy h2 { margin: 10px 0 0; font: 600 clamp(24px, 3vw, 38px) / 1.15 var(--ddo-display); }
.ddo-hh-news__copy p { color: rgba(255, 255, 255, 0.75); font-size: 14.5px; line-height: 1.6; }
.ddo-hh-news__form { display: grid; gap: 12px; }
.ddo-hh-news__form input[type="email"] { width: 100%; min-height: 56px; border: 1px solid rgba(255, 255, 255, 0.2); border-radius: 12px; background: rgba(255, 255, 255, 0.08); color: #fff; padding: 0 18px; font-size: 15px; }
.ddo-hh-news__form input[type="email"]::placeholder { color: rgba(255, 255, 255, 0.45); }
.ddo-hh-news__form input[type="email"]:focus { outline: 2px solid var(--ddo-amber); outline-offset: 1px; }
.ddo-hh-news__form button[type="submit"] { min-height: 56px; border: 0; border-radius: 12px; background: var(--ddo-brand); color: #fff; cursor: pointer; font: 800 13px/1 var(--ddo-sans); letter-spacing: 0.06em; text-transform: uppercase; }
.ddo-hh-news__form button[type="submit"]:hover { background: var(--ddo-brand-2, #b9231f); }
.ddo-hh-news__legal { color: rgba(255, 255, 255, 0.5); font-size: 11.5px; }
.ddo-hh-news .ddo-newsletter-msg { margin: 2px 0 0; font-size: 13px; color: var(--ddo-amber); }
.ddo-hh-news .ddo-newsletter-msg.is-error { color: #ff8f8a; }

/* ---------- CONTACT BAND ---------------------------------------------------- */
.ddo-hh-contact { padding: clamp(46px, 6vw, 90px) 0; background: linear-gradient(180deg, #fff, var(--ddo-mist)); }
.ddo-hh-contact__grid { display: grid; grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr); gap: clamp(24px, 4vw, 56px); align-items: stretch; }
.ddo-hh-contact__panel { background: var(--ddo-charcoal, #191b1e); border-radius: 22px; padding: clamp(26px, 3.4vw, 44px); color: #fff; }
.ddo-hh-contact__panel h2 { margin: 10px 0 0; font: 600 clamp(22px, 2.7vw, 34px) / 1.18 var(--ddo-display); }
.ddo-hh-contact__lead { color: rgba(255, 255, 255, 0.75); font-size: 14px; line-height: 1.65; }
.ddo-hh-contact__formcard { margin-top: 18px; background: #fff; border-radius: 16px; padding: 20px; color: var(--ddo-ink); }
.ddo-hh-contact__map { display: grid; grid-template-rows: minmax(280px, 1fr) auto; gap: 14px; }
.ddo-hh-contact__map iframe { width: 100%; height: 100%; min-height: 280px; border: 0; border-radius: 22px; }
.ddo-hh-contact__meta { background: #fff; border: 1px solid var(--ddo-line); border-radius: 18px; padding: 18px 22px; }
.ddo-hh-contact__chips { display: flex; flex-wrap: wrap; gap: 12px 26px; }
.ddo-hh-contact__chip b { display: block; font-size: 10.5px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ddo-brand); }
.ddo-hh-contact__chip a, .ddo-hh-contact__chip em { font-style: normal; font-size: 13.5px; font-weight: 700; color: var(--ddo-ink); text-decoration: none; }
.ddo-hh-contact__chip a:hover { color: var(--ddo-brand); }
.ddo-hh-contact__address { margin: 12px 0 0; font-style: normal; font-size: 13px; color: var(--ddo-muted); }

/* ---------- RESPONSIVE ------------------------------------------------------ */
@media (max-width: 1080px) {
  .ddo-hh-benefits__inner { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .ddo-hh-tiles { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .ddo-hh-journal { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 920px) {
  .ddo-hh-banners { grid-template-columns: 1fr; }
  .ddo-hh-banner--tall { min-height: 300px; }
  .ddo-hh-banners3 { grid-template-columns: 1fr 1fr; }
  .ddo-hh-how__inner { grid-template-columns: 1fr; }
  .ddo-hh-deal__inner { grid-template-columns: 1fr; }
  .ddo-hh-news__inner { grid-template-columns: 1fr; }
  .ddo-hh-contact__grid { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  .ddo-hh-hero__track { min-height: 640px; }
  .ddo-hh-slide__inner { padding-top: 56px; padding-bottom: 84px; }
  .ddo-hh-slide__copy h1 { font-size: clamp(30px, 9vw, 40px); }
  .ddo-hh-hero__nav { width: 40px; height: 40px; top: auto; bottom: 20px; transform: none; }
  .ddo-hh-hero__nav--prev { left: auto; right: 64px; }
  .ddo-hh-hero__nav--next { right: 16px; }
  .ddo-hh-benefits { margin-top: -22px; }
  .ddo-hh-benefits__inner { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .ddo-hh-benefit { align-items: flex-start; }
  .ddo-hh-tiles { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .ddo-hh-banner { min-height: 200px; }
  .ddo-hh-banners3 { grid-template-columns: 1fr; }
  .ddo-hh-banner--tall { min-height: 240px; }
  .ddo-hh-journal { grid-template-columns: 1fr; }
  .ddo-hh-reviews { grid-template-columns: 1fr; }
  .ddo-hh-head h2 { font-size: clamp(22px, 6.4vw, 30px); }
}
@media (max-width: 420px) {
  .ddo-hh-tiles { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .ddo-hh-benefits__inner { grid-template-columns: 1fr; }
  .ddo-hh-slide__finder { padding: 16px; }
}

/* vfinder inside the dark hero slide (base styles live under .ddo-vfinder) */
.ddo-hh-slide__finder .ddo-vfinder { margin: 0; padding: 0; border: 0; box-shadow: none; background: transparent; }
.ddo-hh-slide__finder .ddo-vfinder__note { margin-top: 10px; }

/* ==========================================================================
   1.5.1 MERCHANT REFINEMENTS
   Simple single-image hero, featured-first ordering, premium header (bigger
   logo, compact centered search), centered mobile benefits, mobile footer
   layout, premium reviews, dark contact form.
   ========================================================================== */

/* ---------- SIMPLE HERO (single image) ------------------------------------- */
.ddo-hh-hero__track { min-height: clamp(520px, 76vh, 640px); }
.ddo-hh-slide__bg { background-position: center 32%; }

/* ---------- HEADER: bigger logo, compact centred search -------------------- */
.ddo-header .ddo-brand__img { height: 52px; }
.ddo-header-search { flex: 1 1 300px; max-width: 470px; margin: 0 auto; }
.ddo-header-search input[type="search"],
.ddo-header-search input[type="text"] { min-height: 40px; font-size: 13.5px; padding: 0 16px; }
.ddo-header-search button { padding: 0 18px; font-size: 12px; }
.ddo-header-actions { gap: 4px; }
.ddo-header-actions .ddo-icon-button { width: 42px; height: 42px; }
@media (max-width: 820px) {
  .ddo-header .ddo-brand__img { height: 32px; }
}

/* ---------- BENEFITS: dividers on desktop, centered on mobile -------------- */
@media (min-width: 1081px) {
  .ddo-hh-benefit + .ddo-hh-benefit { border-left: 1px solid rgba(25, 27, 30, 0.07); }
}
.ddo-hh-benefit { border-radius: 10px; transition: background 0.15s ease; }
.ddo-hh-benefit:hover { background: var(--ddo-mist); }
@media (max-width: 1080px) {
  .ddo-hh-benefits__inner { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .ddo-hh-benefit { flex-direction: column; align-items: center; text-align: center; gap: 8px; }
}
@media (max-width: 720px) {
  .ddo-hh-benefits__inner { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 4px; }
  .ddo-hh-benefit { flex-direction: column; align-items: center; text-align: center; gap: 7px; padding: 14px 8px; }
  .ddo-hh-benefit svg { margin: 0 auto; }
  .ddo-hh-benefit span { text-align: center; }
}

/* ---------- REVIEWS: premium cards ------------------------------------------ */
.ddo-hh-review { position: relative; overflow: hidden; padding: 34px 26px 24px; }
.ddo-hh-review::before { content: ""; position: absolute; inset: 0 0 auto; height: 3px; background: linear-gradient(90deg, var(--ddo-brand), var(--ddo-amber)); }
.ddo-hh-review::after { content: "\201C"; position: absolute; top: 8px; right: 20px; font: 600 92px/1 Georgia, serif; color: rgba(207, 46, 43, 0.09); pointer-events: none; }
.ddo-hh-review blockquote { color: #2d3339; }
.ddo-hh-review figcaption { display: flex; align-items: center; gap: 10px; }
.ddo-hh-review figcaption::before { content: attr(data-i); width: 40px; height: 40px; border-radius: 50%; background: var(--ddo-brand); color: #fff; display: grid; place-items: center; font: 700 14px/1 var(--ddo-sans); }
.ddo-hh-review figcaption > * { display: block; }

/* ---------- CONTACT: no stray white card, premium dark form ---------------- */
.ddo-hh-contact__form { margin-top: 20px; }
.ddo-hh-contact__form .ddo-contact-form { display: grid; gap: 14px; }
.ddo-hh-contact__form .ddo-contact-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.ddo-hh-contact__form .ddo-contact-form label { display: grid; gap: 6px; }
.ddo-hh-contact__form .ddo-contact-form label > span { font: 700 11px/1 var(--ddo-sans); letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255, 255, 255, 0.62); }
.ddo-hh-contact__form .ddo-contact-form input,
.ddo-hh-contact__form .ddo-contact-form select,
.ddo-hh-contact__form .ddo-contact-form textarea { width: 100%; border: 1px solid rgba(255, 255, 255, 0.18); border-radius: 10px; background: rgba(255, 255, 255, 0.07); color: #fff; padding: 12px 14px; font: 500 14px/1.5 var(--ddo-sans); }
.ddo-hh-contact__form .ddo-contact-form input::placeholder,
.ddo-hh-contact__form .ddo-contact-form textarea::placeholder { color: rgba(255, 255, 255, 0.4); }
.ddo-hh-contact__form .ddo-contact-form input:focus,
.ddo-hh-contact__form .ddo-contact-form select:focus,
.ddo-hh-contact__form .ddo-contact-form textarea:focus { outline: 2px solid var(--ddo-amber); outline-offset: 1px; border-color: transparent; }
.ddo-hh-contact__form .ddo-contact-form select option { color: #191b1e; }
.ddo-hh-contact__form .ddo-contact-form button { justify-self: start; min-height: 50px; padding: 0 26px; border: 0; border-radius: 10px; background: var(--ddo-brand); color: #fff; font: 800 13px/1 var(--ddo-sans); letter-spacing: 0.05em; text-transform: uppercase; cursor: pointer; }
.ddo-hh-contact__form .ddo-contact-form button:hover { background: var(--ddo-brand-2); }
@media (max-width: 560px) { .ddo-hh-contact__form .ddo-contact-form__row { grid-template-columns: 1fr; } }

/* ---------- FOOTER: mobile layout ------------------------------------------- */
@media (max-width: 820px) {
  .ddo-footer__main { display: grid; grid-template-columns: 1fr 1fr; gap: 30px 22px; padding: 44px 0; }
  .ddo-footer__brand { grid-column: 1 / -1; text-align: center; margin: 0 auto; }
  .ddo-footer__brand > p { margin: 14px auto 0; max-width: 320px; }
  .ddo-footer__brand .ddo-brand { justify-content: center; }
  .ddo-footer__brand .ddo-brand__logo { justify-content: center; }
  .ddo-footer__brand .ddo-footer__contact { justify-content: center; }
  .ddo-footer__main > div:not(.ddo-footer__brand) { text-align: left; }
  .ddo-footer__bottom { flex-direction: column; align-items: center; text-align: center; gap: 12px; }
}
@media (max-width: 420px) {
  .ddo-footer__main { grid-template-columns: 1fr; }
  .ddo-footer__main > div:not(.ddo-footer__brand) { text-align: center; }
}

/* ---------- HOVER/FOCUS polish for blanket premium feel --------------------- */
.ddo-hh-tile:focus-visible { outline: 2px solid var(--ddo-brand); outline-offset: 2px; }
.ddo-hh-banner:focus-visible { outline: 3px solid var(--ddo-amber); outline-offset: 2px; }
.ddo-hh-review { transition: transform 0.16s ease, box-shadow 0.16s ease; }
.ddo-hh-review:hover { transform: translateY(-3px); box-shadow: 0 22px 46px rgba(16, 17, 20, 0.1); }

/* ==========================================================================
   1.5.2 MERCHANT REFINEMENTS 2
   Scrollable rails (categories + car makes with real media), image-only
   banners, premium dark how-it-works, reviews summary + polish, contact
   band removed (newsletter closes the homepage).
   ========================================================================== */

/* ---------- SCROLL RAILS ----------------------------------------------------- */
.ddo-hh-rail { position: relative; }
.ddo-hh-rail__track { display: flex; gap: 12px; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; -ms-overflow-style: none; padding: 8px 4px 18px; }
.ddo-hh-rail__track::-webkit-scrollbar { display: none; }
.ddo-hh-rail__btn { position: absolute; top: 40%; transform: translateY(-50%); z-index: 3; width: 42px; height: 42px; border-radius: 50%; border: 1px solid var(--ddo-line); background: #fff; color: var(--ddo-ink); display: none; place-items: center; cursor: pointer; box-shadow: 0 10px 24px rgba(16, 17, 20, 0.12); transition: background 0.15s ease, color 0.15s ease; }
.ddo-hh-rail__btn:hover { background: var(--ddo-brand); border-color: var(--ddo-brand); color: #fff; }
.ddo-hh-rail__btn svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 2.4; stroke-linecap: round; stroke-linejoin: round; }
.ddo-hh-rail__btn--prev { left: -16px; }
.ddo-hh-rail__btn--next { right: -16px; }
@media (min-width: 821px) { .ddo-hh-rail__btn { display: grid; } }

/* category tiles as rail cards with real thumbnails */
.ddo-hh-tile { flex: 0 0 132px; scroll-snap-align: start; padding: 18px 12px 15px; }
.ddo-hh-tile__media { display: grid; place-items: center; width: 62px; height: 62px; border-radius: 50%; overflow: hidden; background: var(--ddo-mist); color: var(--ddo-brand); }
.ddo-hh-tile__media--img { box-shadow: 0 0 0 2px #fff, 0 0 0 3.5px rgba(207, 46, 43, 0.28); }
.ddo-hh-tile__media img { width: 62px; height: 62px; max-width: none; object-fit: cover; display: block; }
.ddo-hh-tile__media--icon svg { width: 27px; height: 27px; fill: none; stroke: currentColor; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }

/* brand/make chips in a rail */
.ddo-hh-brand { flex: 0 0 auto; scroll-snap-align: start; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px; width: 128px; padding: 18px 14px 15px; border: 1px solid var(--ddo-line); border-radius: 14px; background: #fff; text-decoration: none; transition: transform 0.16s ease, border-color 0.16s ease, box-shadow 0.16s ease; }
.ddo-hh-brand:hover { transform: translateY(-3px); border-color: rgba(207, 46, 43, 0.55); box-shadow: 0 16px 36px rgba(16, 17, 20, 0.08); }
.ddo-hh-brand img { width: 52px; height: 52px; max-width: none; object-fit: contain; filter: grayscale(1); opacity: 0.72; transition: filter 0.18s ease, opacity 0.18s ease; }
.ddo-hh-brand:hover img { filter: none; opacity: 1; }
.ddo-hh-brand span { font-size: 12.5px; font-weight: 700; color: var(--ddo-ink); text-align: center; }
.ddo-hh-sec--flush-brands { padding-top: 14px; }

/* ---------- BANNERS image-only ---------------------------------------------- */
.ddo-hh-banner { display: block; }
.ddo-hh-banner__bg::after { background: linear-gradient(165deg, rgba(12, 14, 16, 0.02) 30%, rgba(12, 14, 16, 0.14) 100%); }
.ddo-hh-banner { box-shadow: 0 14px 34px rgba(16, 17, 20, 0.1); }
.ddo-hh-banner:hover { box-shadow: 0 24px 54px rgba(16, 17, 20, 0.16); }

/* ---------- HOW IT WORKS: premium dark band --------------------------------- */
.ddo-hh-how__inner { background: linear-gradient(135deg, #14161a 0%, #1c1f24 100%); border: 1px solid rgba(255, 255, 255, 0.08); grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr); }
.ddo-hh-how__copy .ddo-kicker { color: var(--ddo-amber); }
.ddo-hh-how__copy h2 { color: #fff; }
.ddo-hh-steps { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.ddo-hh-steps li { display: block; padding: 22px 20px 20px; border-radius: 16px; background: rgba(255, 255, 255, 0.05); border: 1px solid rgba(255, 255, 255, 0.1); }
.ddo-hh-steps__num { width: 38px; height: 38px; margin-bottom: 14px; border-radius: 10px; background: var(--ddo-brand); font-size: 17px; }
.ddo-hh-steps strong { display: block; font-size: 14.5px; color: #fff; }
.ddo-hh-steps p { margin-top: 6px; color: rgba(255, 255, 255, 0.62); font-size: 12.8px; }
@media (max-width: 720px) { .ddo-hh-steps { grid-template-columns: 1fr; } }

/* ---------- REVIEWS: summary note + polish ---------------------------------- */
.ddo-hh-reviews__note { display: inline-flex; align-items: center; gap: 10px; margin: 14px 0 0; padding: 9px 18px; border: 1px solid rgba(233, 194, 60, 0.4); border-radius: 999px; background: rgba(233, 180, 42, 0.08); }
.ddo-hh-reviews__starsline { color: #f0b429; letter-spacing: 2px; font-size: 14px; }
.ddo-hh-reviews__note strong { font: 800 12.5px/1 var(--ddo-sans); color: var(--ddo-ink); }
.ddo-hh-reviews__note span:last-child { font-size: 12px; color: var(--ddo-muted); }

/* tint section for brands continuous with categories */
.ddo-hh-sec--tinted { background: var(--ddo-mist, #f4f1ee); }

/* ========================================================================== 
   1.6.3 — focused homepage correction, rebuilt on the clean 1.6.1 base.
   No header, product-page or WooCommerce geometry is changed in this release.
   ========================================================================== */

/* Tighter, consistent vertical rhythm without collapsing content sections. */
.ddo-php-home .ddo-hh-sec { padding-block: clamp(40px, 4.2vw, 58px); }
.ddo-php-home .ddo-home--brands { padding-top: clamp(24px, 2.7vw, 36px); padding-bottom: clamp(36px, 3.7vw, 50px); }
.ddo-php-home .ddo-home--promos,
.ddo-php-home .ddo-home--collections { padding-block: clamp(28px, 3vw, 42px); }
.ddo-php-home .ddo-hh-how { padding-block: clamp(54px, 5.6vw, 78px); }
.ddo-php-home .ddo-hh-deal { padding-block: clamp(46px, 5vw, 72px); }
.ddo-php-home .ddo-hh-news { padding-block: clamp(42px, 4.8vw, 66px); }
.ddo-php-home .ddo-hh-head { margin-bottom: clamp(20px, 2.2vw, 28px); }

/* The three service-image cards are deliberately more compact. */
.ddo-php-home .ddo-home--promos .ddo-hh-banners {
  grid-template-columns: minmax(0, 1.06fr) minmax(0, .94fr);
  gap: 12px;
}
.ddo-php-home .ddo-home--promos .ddo-hh-banners__stack { gap: 12px; }
.ddo-php-home .ddo-home--promos .ddo-hh-banner--tall { min-height: 392px; }
.ddo-php-home .ddo-home--promos .ddo-hh-banners__stack .ddo-hh-banner { min-height: 190px; }
.ddo-php-home .ddo-home--promos .ddo-hh-banner__copy { bottom: 22px; }
.ddo-php-home .ddo-home--promos .ddo-hh-banner__copy strong { font-size: clamp(20px, 1.8vw, 27px); }

/* Category motion: a slow staggered lift with an amber halo. */
.ddo-home--categories .ddo-hh-tile__media {
  animation: ddo-category-drift 5s ease-in-out infinite;
  will-change: transform;
}
.ddo-home--categories .ddo-hh-tile:nth-child(2n) .ddo-hh-tile__media { animation-delay: -1s; }
.ddo-home--categories .ddo-hh-tile:nth-child(3n) .ddo-hh-tile__media { animation-delay: -2s; }
.ddo-home--categories .ddo-hh-tile:nth-child(4n) .ddo-hh-tile__media { animation-delay: -3s; }
@keyframes ddo-category-drift {
  0%, 100% { transform: translateY(0); box-shadow: 0 0 0 1px rgba(8,30,49,.12), 0 15px 34px rgba(8,30,49,.14); }
  50% { transform: translateY(-7px); box-shadow: 0 0 0 4px rgba(255,160,31,.16), 0 22px 42px rgba(8,30,49,.19); }
}
.ddo-home--categories .ddo-hh-tile:hover .ddo-hh-tile__media { animation-play-state: paused; }

/* Car makes remain one horizontal row and use a different colour/scale wave. */
.ddo-home--brands .ddo-hh-rail,
.ddo-home--brands .ddo-hh-rail__track { width: 100%; min-width: 0; }
.ddo-home--brands .ddo-hh-rail__track {
  display: flex !important;
  flex-flow: row nowrap !important;
  align-items: stretch;
  gap: 14px;
  overflow-x: auto;
}
.ddo-home--brands .ddo-hh-brand {
  flex: 0 0 132px !important;
  width: 132px;
  min-width: 132px;
}
.ddo-home--brands .ddo-hh-brand img {
  animation: ddo-brand-wave 6.4s ease-in-out infinite;
  will-change: transform, filter, opacity;
}
.ddo-home--brands .ddo-hh-brand:nth-child(2n) img { animation-delay: -1.1s; }
.ddo-home--brands .ddo-hh-brand:nth-child(3n) img { animation-delay: -2.2s; }
.ddo-home--brands .ddo-hh-brand:nth-child(4n) img { animation-delay: -3.3s; }
@keyframes ddo-brand-wave {
  0%, 34%, 100% { transform: scale(.93); filter: grayscale(1); opacity: .6; }
  48%, 64% { transform: scale(1.08); filter: grayscale(0); opacity: 1; }
}
.ddo-home--brands .ddo-hh-brand:hover img {
  animation-play-state: paused;
  transform: scale(1.1);
  filter: grayscale(0);
  opacity: 1;
}

@media (max-width: 920px) {
  .ddo-php-home .ddo-home--promos .ddo-hh-banner--tall,
  .ddo-php-home .ddo-home--promos .ddo-hh-banners__stack .ddo-hh-banner { min-height: 230px; }
}
@media (max-width: 620px) {
  .ddo-php-home .ddo-hh-sec { padding-block: 34px; }
  .ddo-php-home .ddo-home--brands { padding-block: 26px 34px; }
  .ddo-php-home .ddo-home--promos,
  .ddo-php-home .ddo-home--collections { padding-block: 24px 32px; }
  .ddo-home--brands .ddo-hh-brand { flex-basis: 116px !important; width: 116px; min-width: 116px; }
}
@media (prefers-reduced-motion: reduce) {
  .ddo-home--categories .ddo-hh-tile__media,
  .ddo-home--brands .ddo-hh-brand img { animation: none !important; }
}
