:root {
  --paper: #fbfbfd;
  --paper-2: #f5f5f7;
  --ink: #111317;
  --muted: #4f5d6b;
  --line: #d9dce1;
  --navy: #071324;
  --navy-2: #0b1f3a;
  --accent: #183a5a;
  --soft: #eef2f6;
  --brand-blue: #1D5BD1;
  --brand-orange: #1D5BD1;
  --sans: "Geist", -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Inter", "Segoe UI", sans-serif;
  --max: 1240px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper-2);
  color: var(--ink);
  font-family: var(--sans);
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { display: block; max-width: 100%; }
a { color: inherit; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(251,251,253,.9);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
}

.nav {
  max-width: var(--max);
  min-height: 72px;
  margin: 0 auto;
  padding: 0 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--navy);
  text-decoration: none;
  font-size: 34px;
  font-weight: 420;
  letter-spacing: 0;
  white-space: nowrap;
}
.brand::before {
  content: "";
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  display: none;
  filter: drop-shadow(0 8px 14px rgba(7,19,36,.08));
}
.brand span { font-weight: 300; }

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  flex: 1;
}

.nav-links a {
  color: #242932;
  text-decoration: none;
  font-size: 13px;
  font-weight: 650;
  white-space: nowrap;
}

.nav-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 24px;
  border: 1px solid var(--navy);
  border-radius: 8px;
  background: linear-gradient(180deg, #102744 0%, #071324 100%);
  color: #fff;
  text-decoration: none;
  font-size: 13px;
  font-weight: 720;
  white-space: nowrap;
  box-shadow: 0 1px 0 rgba(255,255,255,.15) inset, 0 16px 32px rgba(7,19,36,.16);
  transition: background .2s ease-in-out, border-color .2s ease-in-out, box-shadow .2s ease-in-out, color .2s ease-in-out, transform .2s ease-in-out;
}

.nav-cta:hover,
.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 1px 0 rgba(255,255,255,.18) inset, 0 18px 38px rgba(7,19,36,.2);
}

.btn.secondary {
  background: rgba(255,255,255,.82);
  color: var(--navy);
  border-color: #cfd6df;
  box-shadow: none;
}

.text-link {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 720;
  text-decoration: none;
}

main {
  max-width: var(--max);
  margin: 0 auto;
  padding: 28px 34px 72px;
}

.crumbs {
  display: flex;
  gap: 10px;
  align-items: center;
  margin: 18px 0 24px;
  color: var(--muted);
  font-size: 13px;
}
.crumbs a { color: var(--accent); text-decoration: none; font-weight: 650; }

.product-launch-banner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 22px;
  align-items: center;
  margin: 0 0 18px;
  padding: 22px 24px;
  border: 1px solid rgba(181, 194, 211, .32);
  border-radius: 12px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.08), rgba(255,255,255,0) 42%),
    linear-gradient(180deg, #102744 0%, #071324 100%);
  color: #fff;
  box-shadow: 0 22px 54px rgba(7,19,36,.18);
}

.product-launch-banner span {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  margin-bottom: 9px;
  padding: 0 10px;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 999px;
  color: #dce8f6;
  font-size: 10px;
  font-weight: 820;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.product-launch-banner strong {
  display: block;
  margin: 0 0 4px;
  font-size: clamp(20px, 2.1vw, 28px);
  font-weight: 680;
  line-height: 1.15;
  letter-spacing: 0;
}

.product-launch-banner p {
  max-width: 760px;
  margin: 0;
  color: rgba(255,255,255,.72);
  font-size: 14px;
  line-height: 1.55;
}

.product-launch-banner a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid rgba(255,255,255,.72);
  border-radius: 8px;
  background: #fff;
  color: var(--navy);
  font-size: 13px;
  font-weight: 760;
  text-decoration: none;
  white-space: nowrap;
}

.product-hero {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
  gap: 0;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 24px 70px rgba(7,19,36,.07);
}

.product-media {
  margin: 0;
  min-height: 560px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, #f4f6f8 0%, #e9eef4 100%);
  padding: 48px;
}

.product-media img {
  max-height: 440px;
  width: 100%;
  object-fit: contain;
  filter: drop-shadow(0 18px 34px rgba(7,19,36,.12));
}

.product-summary {
  padding: clamp(34px, 4.4vw, 58px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.eyebrow,
.section-head span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 16px;
  color: var(--accent);
  font-size: 10px;
  font-weight: 820;
  letter-spacing: .22em;
  text-transform: uppercase;
}
.eyebrow::before,
.section-head span::before {
  content: "";
  width: 28px;
  height: 2px;
  background: linear-gradient(90deg, var(--brand-orange), var(--brand-blue));
}

h1,
h2,
h3,
p { margin-top: 0; }

h1 {
  max-width: 680px;
  margin-bottom: 20px;
  color: var(--navy);
  font-size: clamp(40px, 4.4vw, 66px);
  font-weight: 650;
  line-height: 1.04;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

.lead {
  max-width: 620px;
  margin-bottom: 22px;
  color: #4d5865;
  font-size: 16px;
  line-height: 1.65;
}

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 24px;
}

.chip-row span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 11px;
  border: 1px solid #cfd6df;
  border-radius: 999px;
  background: #fff;
  color: #344556;
  font-size: 12px;
  font-weight: 680;
}

.buy-panel {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 24px;
  align-items: center;
  padding: 24px;
  border: 1px solid #cfd6df;
  border-radius: 12px;
  background: #fff;
}

.price-label {
  display: block;
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 760;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.price {
  display: block;
  color: var(--navy);
  font-size: clamp(30px, 3vw, 44px);
  font-weight: 720;
  letter-spacing: 0;
  line-height: 1;
}

.vat-price-wrap {
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
  flex-wrap: wrap;
}

.vat-price-excl {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  color: var(--navy);
  font-weight: 800;
  letter-spacing: 0;
}

.vat-price-excl small {
  color: var(--muted);
  font-size: .44em;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
}

.vat-price-incl {
  display: inline-flex;
  align-items: baseline;
  gap: 5px;
  padding: 5px 8px;
  border: 1px solid #cfd6df;
  border-radius: 999px;
  background: #f8fafc;
  color: var(--accent);
  font-size: .46em;
  font-weight: 800;
  letter-spacing: 0;
  white-space: nowrap;
}

.vat-price-incl small {
  color: var(--muted);
  font-size: .78em;
  font-weight: 700;
}

td .vat-price-wrap,
.spec-table .vat-price-wrap {
  align-items: center;
}

td .vat-price-excl,
.spec-table .vat-price-excl {
  font-size: 1rem;
}

td .vat-price-incl,
.spec-table .vat-price-incl {
  font-size: .78rem;
}

.buy-panel small {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.product-section {
  margin-top: 28px;
  padding: clamp(30px, 4vw, 52px);
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
}

.shop-config-section {
  padding-top: 42px;
}

.section-head {
  max-width: 720px;
  margin-bottom: 26px;
}

.section-head h2,
.collection-hero h1 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(34px, 3.4vw, 56px);
  font-weight: 630;
  line-height: 1.04;
  letter-spacing: 0;
}

.copy-block {
  max-width: 860px;
  color: #424d59;
  font-size: 16px;
  line-height: 1.75;
}

.clean-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.clean-list li {
  padding: 18px 18px 18px 38px;
  position: relative;
  border: 1px solid #dbe1e8;
  border-radius: 10px;
  background: #f8fafc;
  color: #344556;
  font-size: 14px;
  line-height: 1.55;
}

.clean-list li::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 25px;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--navy);
}

.spec-table {
  width: 100%;
  max-width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  border: 1px solid #dbe1e8;
  border-radius: 10px;
}

.spec-table th,
.spec-table td {
  padding: 15px 18px;
  border-bottom: 1px solid #e5e9ef;
  text-align: left;
  vertical-align: top;
  font-size: 14px;
}

.spec-table th {
  width: 34%;
  color: var(--muted);
  font-weight: 680;
  background: #f2f5f8;
}

.spec-table td {
  color: var(--navy);
  font-weight: 650;
}

.spec-table tr:nth-child(even) th,
.spec-table tr:nth-child(even) td {
  background: #f8fafc;
}

.price-source-note {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.download-list,
.related-grid,
.collection-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.download-list a,
.download-list span,
.related-card,
.collection-card {
  display: block;
  padding: 20px;
  border: 1px solid #dbe1e8;
  border-radius: 10px;
  background: #f8fafc;
  text-decoration: none;
}

.download-list em {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 12px;
  font-style: normal;
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-list details {
  border: 1px solid #dbe1e8;
  border-radius: 10px;
  background: #f8fafc;
  overflow: hidden;
}

.faq-list summary {
  padding: 18px 20px;
  cursor: pointer;
  color: var(--navy);
  font-weight: 720;
}

.faq-list p {
  padding: 0 20px 18px;
  color: #4d5865;
}

.related-card img,
.collection-card figure {
  width: 100%;
  height: 190px;
  margin: 0 0 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #eef2f6;
  border-radius: 8px;
  overflow: hidden;
}

.related-card img,
.collection-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.related-card strong,
.collection-card h2 {
  display: block;
  margin: 0 0 8px;
  color: var(--navy);
  font-size: 18px;
  font-weight: 680;
  letter-spacing: 0;
}

.related-card span,
.collection-card strong {
  color: var(--accent);
  font-size: 14px;
  font-weight: 720;
}

.collection-hero {
  padding: clamp(44px, 6vw, 82px);
  margin-bottom: 24px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: linear-gradient(90deg, #fff 0%, #eef2f6 100%);
}

.collection-hero p:last-child {
  max-width: 760px;
  margin: 18px 0 0;
  color: #4d5865;
  font-size: 17px;
  line-height: 1.7;
}

.collection-card {
  min-height: 100%;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.collection-card:hover,
.related-card:hover {
  transform: translateY(-2px);
  border-color: var(--navy);
  box-shadow: 0 22px 42px rgba(7,19,36,.08);
}

.collection-card span {
  display: block;
  margin-bottom: 8px;
  color: var(--accent);
  font-size: 10px;
  font-weight: 820;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.collection-card p {
  min-height: 78px;
  color: #4d5865;
  font-size: 14px;
  line-height: 1.6;
}

.drl-catalog-cover {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, .65fr);
  gap: 22px;
  align-items: stretch;
  margin-bottom: 18px;
}

.drl-catalog-hero,
.drl-catalog-stat,
.drl-catalog-index,
.drl-catalog-chapter,
.drl-catalog-card,
.drl-catalog-advice {
  border: 1px solid #dbe1e8;
  border-radius: var(--radius-ui, 8px);
  background: rgba(255,255,255,.88);
  box-shadow: 0 18px 54px rgba(14,37,71,.055);
}

.drl-catalog-hero {
  padding: clamp(42px, 6vw, 78px);
  background:
    linear-gradient(90deg, rgba(255,255,255,.94), rgba(255,255,255,.68)),
    radial-gradient(circle at 12% 78%, rgba(29,91,209,.08), transparent 26%),
    radial-gradient(circle at 86% 18%, rgba(29,91,209,.13), transparent 32%),
    #fff;
}

.drl-catalog-hero h1 {
  max-width: 780px;
  margin: 0;
  color: var(--navy);
  font-size: clamp(42px, 5.6vw, 82px);
  font-weight: 650;
  line-height: .98;
  letter-spacing: 0;
}

.drl-catalog-hero p:not(.eyebrow) {
  max-width: 680px;
  margin: 22px 0 0;
  color: #4d5865;
  font-size: 17px;
  line-height: 1.7;
}

.drl-catalog-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.drl-catalog-stat {
  position: relative;
  display: grid;
  align-content: end;
  min-height: 420px;
  padding: 30px;
  overflow: hidden;
  background:
    linear-gradient(160deg, rgba(6,26,54,.96), rgba(12,45,89,.92)),
    var(--navy);
  color: #fff;
}

.drl-catalog-stat::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(6, 18, 36, .08), rgba(6, 18, 36, .76)),
    linear-gradient(90deg, rgba(6, 18, 36, .55), rgba(6, 18, 36, .1));
}

.drl-catalog-stat figure {
  position: absolute;
  inset: 0;
  margin: 0;
}

.drl-catalog-stat img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: 42% 50%;
}

.drl-catalog-stat > div {
  position: relative;
  z-index: 2;
}

.drl-catalog-stat span {
  color: rgba(255,255,255,.65);
  font-size: 11px;
  font-weight: 820;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.drl-catalog-stat strong {
  display: block;
  margin-top: 12px;
  font-size: clamp(42px, 5vw, 72px);
  font-weight: 650;
  line-height: .95;
}

.drl-catalog-stat p {
  margin: 18px 0 0;
  color: rgba(255,255,255,.76);
  line-height: 1.65;
}

.drl-catalog-book-cta {
  position: relative;
  display: grid;
  grid-template-columns: minmax(260px, .78fr) minmax(0, 1fr);
  gap: clamp(22px, 4vw, 48px);
  align-items: center;
  margin: 0 0 26px;
  padding: clamp(20px, 3.2vw, 36px);
  border: 1px solid rgba(9, 32, 67, .16);
  border-radius: var(--radius-ui, 8px);
  background:
    linear-gradient(135deg, rgba(255,255,255,.96), rgba(242,246,251,.96)),
    #fff;
  color: var(--navy);
  text-decoration: none;
  box-shadow: 0 20px 58px rgba(9, 32, 67, .075);
  overflow: hidden;
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.drl-catalog-book-cta::after {
  content: "";
  position: absolute;
  inset: auto 28px 28px auto;
  width: 82px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--brand-orange), var(--brand-blue));
}

.drl-catalog-book-cta:hover,
.drl-catalog-book-cta:focus-visible {
  border-color: rgba(35, 116, 220, .42);
  box-shadow: 0 26px 68px rgba(9, 32, 67, .12);
  transform: translateY(-2px);
  outline: none;
}

.drl-catalog-book-cta figure {
  margin: 0;
  min-height: 280px;
  display: grid;
  place-items: center;
  border-radius: calc(var(--radius-ui, 8px) + 4px);
  background:
    radial-gradient(circle at 70% 18%, rgba(29,91,209,.13), transparent 34%),
    linear-gradient(150deg, #f6f8fb, #e9eef5);
  overflow: hidden;
}

.drl-catalog-book-cta img {
  width: min(100%, 460px);
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 22px 32px rgba(9, 32, 67, .18));
}

.drl-catalog-book-cta h2 {
  max-width: 620px;
  margin: 10px 0 0;
  color: var(--navy);
  font-size: clamp(32px, 4.2vw, 62px);
  font-weight: 650;
  line-height: 1;
  letter-spacing: 0;
}

.drl-catalog-book-cta p:not(.eyebrow) {
  max-width: 560px;
  margin: 18px 0 0;
  color: #4d5865;
  font-size: 17px;
  line-height: 1.65;
}

.drl-catalog-book-cta span {
  width: max-content;
  display: inline-flex;
  align-items: center;
  margin-top: 24px;
  padding: 13px 18px;
  border-radius: var(--radius-ui, 8px);
  background: var(--navy);
  color: #fff;
  font-size: 14px;
  font-weight: 820;
  letter-spacing: .01em;
}

.drl-catalog-index {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 26px;
}

.drl-catalog-index a {
  position: relative;
  min-height: 132px;
  padding: 22px 56px 22px 22px;
  display: grid;
  align-content: space-between;
  gap: 18px;
  border: 1px solid rgba(9, 32, 67, .16);
  border-radius: 14px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.96), rgba(245,248,252,.98));
  color: var(--navy);
  text-decoration: none;
  box-shadow: 0 14px 34px rgba(9, 32, 67, .07);
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease, background .18s ease;
}

.drl-catalog-index a::after {
  content: "→";
  position: absolute;
  right: 18px;
  bottom: 18px;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: var(--navy);
  color: #fff;
  font-size: 18px;
  font-weight: 760;
  line-height: 1;
  transition: transform .18s ease, background .18s ease;
}

.drl-catalog-index a:hover,
.drl-catalog-index a:focus-visible {
  border-color: rgba(35, 116, 220, .5);
  background: #fff;
  box-shadow: 0 18px 42px rgba(9, 32, 67, .12);
  transform: translateY(-2px);
  outline: none;
}

.drl-catalog-index a:hover::after,
.drl-catalog-index a:focus-visible::after {
  background: var(--brand-blue);
  transform: translateX(2px);
}

.drl-catalog-index span {
  color: var(--brand-blue);
  font-size: 11px;
  font-weight: 820;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.drl-catalog-index strong {
  font-size: 23px;
  line-height: 1.15;
}

.drl-catalog-index em {
  color: #4d5865;
  font-size: 13px;
  font-style: normal;
  font-weight: 760;
}

.drl-catalog-chapter {
  margin-top: 24px;
  padding: clamp(24px, 3vw, 34px);
}

.drl-chapter-head {
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(260px, .55fr);
  gap: 22px;
  align-items: end;
  margin-bottom: 22px;
}

.drl-chapter-head h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(30px, 3.2vw, 50px);
  line-height: 1.02;
  font-weight: 640;
}

.drl-chapter-head p {
  margin: 0;
  color: #4d5865;
  line-height: 1.65;
}

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

.drl-catalog-card {
  min-height: 100%;
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  color: inherit;
  text-decoration: none;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.drl-catalog-card:hover {
  transform: translateY(-2px);
  border-color: var(--navy);
  box-shadow: 0 24px 48px rgba(7,19,36,.10);
}

.drl-catalog-card figure {
  margin: 0;
  aspect-ratio: 4 / 3;
  background: #eef2f6;
  overflow: hidden;
}

.drl-catalog-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.drl-catalog-body {
  padding: 20px;
  display: grid;
  gap: 14px;
}

.drl-card-top,
.drl-card-bottom {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: baseline;
}

.drl-card-top span {
  color: var(--brand-blue);
  font-size: 10px;
  font-weight: 820;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.drl-card-top em {
  color: var(--muted);
  font-size: 12px;
  font-style: normal;
  white-space: nowrap;
}

.drl-catalog-card h3 {
  margin: 0;
  color: var(--navy);
  font-size: 22px;
  line-height: 1.15;
}

.drl-catalog-card p {
  margin: 0;
  color: #4d5865;
  font-size: 14px;
  line-height: 1.55;
}

.drl-card-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.drl-card-meta div {
  padding: 10px 12px;
  border: 1px solid #e1e6ed;
  border-radius: var(--radius-ui, 8px);
  background: #f8fafc;
}

.drl-card-meta dt {
  margin: 0 0 4px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 820;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.drl-card-meta dd {
  margin: 0;
  color: var(--navy);
  font-size: 13px;
  font-weight: 730;
}

.drl-card-bottom {
  padding-top: 4px;
}

.drl-card-bottom strong {
  color: var(--navy);
  font-size: 20px;
}

.drl-card-bottom span {
  color: var(--brand-blue);
  font-size: 13px;
  font-weight: 780;
}

.drl-catalog-advice {
  margin-top: 26px;
  padding: 30px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  background:
    radial-gradient(circle at 86% 16%, rgba(29,91,209,.10), transparent 24%),
    linear-gradient(180deg, #fff 0%, #f8fafc 100%);
}

.drl-catalog-advice h2 {
  margin: 0 0 8px;
  color: var(--navy);
  font-size: clamp(28px, 3vw, 46px);
  line-height: 1.05;
}

.drl-catalog-advice p {
  margin: 0;
  color: #4d5865;
  line-height: 1.65;
}

.site-footer {
  max-width: var(--max);
  margin: 0 auto;
  padding: 44px 34px 52px;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 34px;
  background: var(--navy);
  color: rgba(255,255,255,.72);
  box-shadow: 0 0 0 100vmax var(--navy);
  clip-path: inset(0 -100vmax);
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  color: #fff;
  font-size: 28px;
  letter-spacing: 0;
}
.footer-brand::before {
  content: "";
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  display: none;
}

.site-footer strong {
  display: block;
  margin-bottom: 12px;
  color: #fff;
  font-size: 13px;
}

.site-footer a,
.site-footer p {
  display: block;
  margin: 0 0 12px;
  color: rgba(255,255,255,.72);
  text-decoration: none;
  font-size: 13px;
  line-height: 1.6;
}

.slim-config {
  background: #f8fafc !important;
  border-color: #dbe1e8 !important;
  border-radius: 12px !important;
}

.slim-cfg-tile {
  border-color: #cfd6df !important;
  border-radius: 8px !important;
}

.slim-cfg-tile.is-active {
  border-color: var(--navy) !important;
  box-shadow: 0 0 0 4px rgba(7,19,36,.08) !important;
}

.premium-config {
  display: grid;
  gap: 22px;
}

.config-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 18px;
}

.config-label {
  margin: 0 0 10px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 820;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.option-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.option-row.two {
  grid-template-columns: repeat(2, 1fr);
}

.option-row button {
  min-height: 82px;
  padding: 14px;
  border: 1px solid #cfd6df;
  border-radius: 10px;
  background: #fff;
  text-align: left;
  font-family: inherit;
  cursor: pointer;
}

.option-row button.is-active {
  border-color: var(--navy);
  box-shadow: 0 0 0 4px rgba(7,19,36,.08);
}

.option-row strong {
  display: block;
  margin-bottom: 4px;
  color: var(--navy);
  font-size: 16px;
}

.option-row span {
  color: var(--muted);
  font-size: 12px;
}

.config-summary {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 18px;
  align-items: center;
  padding: 22px;
  border-radius: 12px;
  background: #f8fafc;
  border: 1px solid #dbe1e8;
}

.config-summary > div:first-child span {
  display: block;
  margin-bottom: 5px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 820;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.config-summary > div:first-child strong {
  display: block;
  color: var(--navy);
  font-size: clamp(32px, 4vw, 48px);
  letter-spacing: 0;
  line-height: 1;
}

.config-summary small,
.config-note {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.config-note {
  margin: 0;
}

.drl-config-section {
  scroll-margin-top: 118px;
}

.drl-config {
  padding: 22px;
  border: 1px solid #dbe1e8;
  border-radius: 12px;
  background: linear-gradient(180deg, #fff 0%, #f8fafc 100%);
}

.drl-variant-field {
  display: grid;
  gap: 10px;
}

.drl-variant-search,
.drl-variant-select {
  width: 100%;
  min-height: 56px;
  border: 1px solid #cfd6df;
  border-radius: 10px;
  background: #fff;
  color: var(--navy);
  font: inherit;
  font-weight: 720;
  line-height: 1.25;
}

.drl-variant-search {
  padding: 0 16px;
}

.drl-variant-select {
  padding: 0 42px 0 16px;
}

.drl-variant-search:focus,
.drl-variant-select:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(44, 114, 224, .12);
}

.drl-source-card {
  min-height: 122px;
  padding: 18px;
  border: 1px solid #dbe1e8;
  border-radius: 12px;
  background: #fff;
}

.drl-source-card strong {
  display: block;
  margin-bottom: 8px;
  color: var(--navy);
  font-size: 18px;
  line-height: 1.2;
}

.drl-source-card p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.drl-variant-count {
  color: var(--navy);
  font-weight: 760;
}

.drl-builder-head {
  display: flex;
  justify-content: space-between;
  gap: 22px;
  align-items: flex-start;
  padding-bottom: 20px;
  border-bottom: 1px solid #dbe1e8;
}

.drl-builder-head h3 {
  margin: 0 0 8px;
  color: var(--navy);
  font-size: clamp(26px, 3vw, 42px);
  line-height: 1.05;
  letter-spacing: -.02em;
}

.drl-builder-head p:not(.config-label) {
  max-width: 680px;
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
}

.drl-builder-actions {
  display: grid;
  gap: 8px;
  justify-items: end;
  flex: 0 0 auto;
}

.drl-builder-actions > strong {
  flex: 0 0 auto;
  padding: 10px 13px;
  border: 1px solid #dbe1e8;
  border-radius: 10px;
  background: #fff;
  color: var(--navy);
  font-size: 13px;
  letter-spacing: .04em;
}

.drl-builder-actions > button {
  min-height: 38px;
  padding: 0 12px;
  border: 1px solid #dbe1e8;
  border-radius: 10px;
  background: transparent;
  color: var(--muted);
  font: inherit;
  font-size: 12px;
  font-weight: 780;
  cursor: pointer;
}

.drl-builder-actions > button:hover {
  border-color: rgba(29,91,209,.45);
  color: var(--blue);
}

.drl-builder-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(310px, .65fr);
  gap: 22px;
  align-items: start;
}

.drl-builder-steps {
  display: grid;
  gap: 16px;
}

.drl-step {
  padding: 18px;
  border: 1px solid #dbe1e8;
  border-radius: 12px;
  background: rgba(255,255,255,.86);
}

.drl-step-head {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: baseline;
  margin-bottom: 12px;
}

.drl-step-head .config-label {
  margin-bottom: 0;
}

.drl-step-head small {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.4;
  text-align: right;
}

.drl-choice-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 10px;
}

.drl-choice-row button {
  position: relative;
  min-height: 78px;
  padding: 14px;
  border: 1px solid #cfd6df;
  border-radius: 10px;
  background: #fff;
  color: var(--navy);
  text-align: left;
  font: inherit;
  cursor: pointer;
  transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease, background .18s ease;
}

.drl-choice-row button:hover {
  transform: translateY(-1px);
  border-color: rgba(29,91,209,.45);
}

.drl-choice-row button.is-active {
  border-color: var(--navy);
  background: linear-gradient(180deg, #fff 0%, #f4f8ff 100%);
  box-shadow: 0 0 0 4px rgba(29,91,209,.10);
}

.drl-choice-row strong {
  display: block;
  padding-right: 14px;
  color: var(--navy);
  font-size: 15px;
  line-height: 1.18;
}

.drl-choice-row span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
}

.drl-choice-row-service {
  grid-template-columns: repeat(3, 1fr);
}

.drl-swatch {
  display: inline-block;
  width: 18px;
  height: 18px;
  margin: 0 0 9px;
  border: 1px solid rgba(7,19,36,.20);
  border-radius: 999px;
  background: #fff;
  box-shadow: inset 0 0 0 3px rgba(255,255,255,.55);
}

.drl-swatch-mat-zwart,
.drl-swatch-zwart,
.drl-swatch-antraciet {
  background: #111827;
}

.drl-swatch-structuur-grijs,
.drl-swatch-grijs,
.drl-swatch-grijs-glas,
.drl-swatch-gemeleerd-grijs {
  background: #7d8792;
}

.drl-swatch-warm-grijs,
.drl-swatch-metallic-taupe,
.drl-swatch-zand,
.drl-swatch-ivoor-wit {
  background: #c6b69f;
}

.drl-swatch-chroom,
.drl-swatch-rvs {
  background: linear-gradient(135deg, #f8fafc, #8b98a8 48%, #f8fafc);
}

.drl-live-card {
  position: sticky;
  top: 118px;
  padding: 20px;
  border: 1px solid #cfd6df;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 18px 54px rgba(7,19,36,.08);
}

.drl-live-card > span {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 820;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.drl-live-card > strong {
  display: block;
  color: var(--navy);
  font-size: clamp(34px, 4vw, 52px);
  line-height: .95;
  letter-spacing: -.02em;
}

.drl-live-card > p {
  margin: 10px 0 16px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.drl-selection-list {
  display: grid;
  gap: 8px;
  margin: 0 0 16px;
  padding: 14px;
  border-radius: 10px;
  background: #f8fafc;
}

.drl-selection-list div {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 10px;
}

.drl-selection-list dt,
.drl-selection-list dd {
  margin: 0;
  font-size: 12px;
  line-height: 1.35;
}

.drl-selection-list dt {
  color: var(--muted);
}

.drl-selection-list dd {
  color: var(--navy);
  font-weight: 760;
}

.drl-qty-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: 0 0 16px;
}

.drl-qty-row label {
  color: var(--navy);
  font-size: 13px;
  font-weight: 780;
}

.drl-qty-stepper {
  display: inline-flex;
  overflow: hidden;
  border: 1px solid #cfd6df;
  border-radius: 10px;
  background: #fff;
}

.drl-qty-stepper button,
.drl-qty-stepper input {
  width: 42px;
  height: 40px;
  border: 0;
  background: #fff;
  color: var(--navy);
  text-align: center;
  font: inherit;
  font-weight: 820;
}

.drl-qty-stepper button {
  cursor: pointer;
  background: #f8fafc;
}

.drl-qty-stepper input {
  border-left: 1px solid #dbe1e8;
  border-right: 1px solid #dbe1e8;
}

.drl-live-card .cta-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.drl-live-card > small {
  display: block;
  margin-top: 12px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.5;
}

@media (max-width: 980px) {
  .nav { padding: 0 22px; }
  .brand { font-size: 24px; }
  .brand::before {
    width: 30px;
    height: 30px;
    flex-basis: 30px;
  }
  .nav-links { display: none; }
  main { padding: 18px 18px 54px; }
  .product-hero,
  .buy-panel,
  .config-grid,
  .config-summary,
  .drl-builder-layout,
  .drl-choice-row-service,
  .drl-catalog-cover,
  .drl-catalog-book-cta,
  .drl-chapter-head,
  .drl-catalog-advice {
    grid-template-columns: 1fr;
  }
  .product-launch-banner {
    grid-template-columns: 1fr;
  }
  .product-launch-banner a {
    width: 100%;
  }
  .drl-live-card {
    position: static;
  }
  .product-media {
    min-height: 360px;
  }
  .clean-list,
  .download-list,
  .related-grid,
  .collection-grid,
  .drl-catalog-index,
  .drl-catalog-grid,
  .site-footer {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .nav-cta { display: none; }
  .product-summary,
  .product-section,
  .collection-hero,
  .drl-catalog-hero,
  .drl-catalog-book-cta,
  .drl-catalog-chapter,
  .drl-catalog-advice {
    padding: 28px 22px;
  }
  .drl-catalog-book-cta figure {
    min-height: 220px;
  }
  .drl-catalog-book-cta::after {
    right: 22px;
    bottom: 22px;
  }
  .drl-config {
    padding: 16px;
  }
  .drl-builder-head,
  .drl-step-head {
    display: block;
  }
  .drl-step-head small {
    display: inline-block;
    margin-top: 10px;
    text-align: left;
  }
  .drl-builder-actions {
    display: grid;
    margin-top: 10px;
    justify-items: start;
  }
  .drl-step {
    padding: 14px;
  }
  .drl-choice-row {
    grid-template-columns: 1fr;
  }
  h1 {
    font-size: clamp(34px, 10.5vw, 48px);
    line-height: 1.06;
  }
  .cta-row,
  .btn {
    width: 100%;
  }
}

/* Nieuwe merklock-up: één consistente schaal in header en footer. */
.brand::before,
.footer-brand::before {
  display: none !important;
}

.brand-logo {
  display: block;
  width: 174px;
  height: auto;
}

.footer-brand img {
  display: block;
  width: 148px;
  height: auto;
}

/* Footer hoort donker te voelen: logo altijd wit onderaan. */
.site-footer .footer-brand img {
  filter: brightness(0) invert(1);
  opacity: .96;
}

@media (max-width: 980px) {
  .brand-logo {
    width: 142px;
  }

  .footer-brand img {
    width: 136px;
  }
}

/* HVACity UI sync: align product pages with the new premium site shell. */
html,
body {
  max-width: 100%;
  overflow-x: clip;
}

body {
  background:
    radial-gradient(circle at 78% 8%, rgba(23,111,214,.06), transparent 26%),
    radial-gradient(circle at 8% 84%, rgba(29,91,209,.035), transparent 24%),
    linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.site-header {
  background: rgba(255,255,255,.96);
  border-bottom-color: rgba(6,26,54,.10);
  box-shadow: 0 1px 0 rgba(6,26,54,.04);
}

.nav {
  max-width: 1300px;
  min-height: 72px;
  padding: 0 44px;
  gap: 34px;
}

.brand {
  gap: 0;
  color: var(--navy);
  font-weight: 760;
}

.brand::before {
  margin-right: 12px;
}

.brand span {
  color: var(--brand-orange);
  font-weight: 760;
}

.nav-links {
  gap: 34px;
}

.nav-links a {
  color: var(--navy);
  opacity: .92;
  transition: color .18s ease, opacity .18s ease;
}

.nav-links a:hover {
  color: var(--brand-blue);
  opacity: 1;
}

.nav-cta,
.btn {
  border-radius: 6px;
  background: var(--navy);
  border-color: var(--navy);
  color: #fff;
  box-shadow: 0 14px 32px rgba(6,26,54,.18);
  transition: background .18s ease, border-color .18s ease, transform .18s ease, box-shadow .18s ease;
}

.nav-cta:hover,
.btn:hover {
  background: var(--navy-2);
  border-color: var(--navy-2);
  color: #fff;
}

.btn.secondary {
  background: rgba(255,255,255,.76);
  color: var(--navy);
  border-color: rgba(6,26,54,.16);
  box-shadow: 0 1px 0 rgba(255,255,255,.7) inset;
}

main,
.site-footer {
  max-width: 1300px;
}

.product-hero,
.product-section,
.buy-panel,
.clean-list li,
.spec-table,
.download-list a,
.download-list span,
.related-card,
.collection-card,
.faq-list details,
.collection-hero,
.slim-config,
.slim-cfg-tile,
.config-summary,
.option-row button {
  border-radius: var(--radius-ui, 8px) !important;
}

.product-hero,
.product-section,
.collection-hero {
  box-shadow: 0 18px 54px rgba(14,37,71,.055);
}

.product-hero {
  background:
    radial-gradient(circle at 76% 34%, rgba(29,91,209,.10), transparent 32%),
    radial-gradient(circle at 10% 78%, rgba(29,91,209,.06), transparent 24%),
    linear-gradient(118deg, #fff 0%, #fff 64%, #f2f7fd 100%);
}

.product-section,
.product-section *,
.premium-config,
.premium-config * {
  box-sizing: border-box;
}

@media (max-width: 680px) {
  .spec-table {
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}

.product-media,
.collection-hero {
  background:
    radial-gradient(circle at 78% 26%, rgba(29,91,209,.10), transparent 30%),
    radial-gradient(circle at 18% 72%, rgba(29,91,209,.07), transparent 24%),
    linear-gradient(180deg, #ffffff 0%, #f4f7fa 100%);
}

.eyebrow,
.section-head span,
.collection-card span {
  letter-spacing: .14em;
}

.eyebrow::before,
.section-head span::before {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--brand-orange);
}

.site-footer {
  background: #071327;
  color: rgba(255,255,255,.74);
  border-top: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 0 0 100vmax #071327;
  clip-path: inset(0 -100vmax);
}

.site-footer strong {
  color: #fff;
}

.site-footer p,
.site-footer a {
  color: rgba(255,255,255,.72);
}

.footer-brand {
  color: #fff;
  font-weight: 760;
}

.direct-order-showcase {
  max-width: min(1180px, calc(100% - 44px));
  margin: clamp(44px, 6vw, 82px) auto;
  padding: 42px;
  border: 1px solid rgba(13,32,57,.12);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 8% 0%, rgba(39,111,232,.08), transparent 28%),
    #f8fbff;
  overflow: hidden;
}

.direct-order-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 24px;
}

.direct-order-head h2 {
  max-width: 760px;
  margin: 0 0 10px;
  font-size: clamp(28px, 2.7vw, 46px);
  letter-spacing: -.02em;
}

.direct-order-head p {
  max-width: 650px;
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
}

.direct-order-nav {
  display: flex;
  gap: 10px;
  flex: 0 0 auto;
}

.direct-order-nav button {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(13,32,57,.16);
  border-radius: var(--radius-ui);
  background: #fff;
  color: var(--navy);
  font-size: 20px;
  font-weight: 760;
  cursor: pointer;
  box-shadow: 0 14px 30px rgba(6,26,54,.08);
}

.direct-order-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(320px, 390px);
  gap: 18px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-snap-type: inline mandatory;
  scroll-padding-inline: 2px;
  padding: 2px 2px 18px;
  scrollbar-width: thin;
}

.direct-order-card {
  scroll-snap-align: start;
  display: grid;
  grid-template-rows: 220px 1fr;
  min-height: 610px;
  overflow: hidden;
  border: 1px solid rgba(13,32,57,.13);
  border-radius: var(--radius-ui);
  background: #fff;
  box-shadow: 0 22px 54px rgba(6,26,54,.10);
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.direct-order-card.is-highlighted {
  border-color: #2f73d8;
  box-shadow: 0 26px 68px rgba(47,115,216,.22);
  transform: translateY(-3px);
}

.direct-order-media {
  margin: 0;
  background: #eef3f8;
  overflow: hidden;
}

.direct-order-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.direct-order-body {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 22px;
}

.direct-order-eyebrow {
  color: var(--blue);
  font-size: 11px;
  font-weight: 820;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.direct-order-card h3 {
  margin: 0;
  color: var(--navy);
  font-size: 24px;
  line-height: 1.12;
  letter-spacing: -.02em;
}

.direct-order-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.direct-order-field {
  display: grid;
  gap: 8px;
  margin-top: auto;
}

.direct-order-field span {
  color: var(--navy);
  font-size: 12px;
  font-weight: 760;
}

.direct-order-field select {
  width: 100%;
  min-height: 46px;
  border: 1px solid rgba(13,32,57,.18);
  border-radius: var(--radius-ui);
  background: #f8fafc;
  color: var(--navy);
  padding: 0 12px;
  font: inherit;
  font-size: 13px;
  font-weight: 650;
}

.direct-order-price {
  margin-top: auto;
  color: var(--navy);
  font-size: 22px;
  letter-spacing: -.02em;
}

.direct-order-actions {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  align-items: center;
}

.direct-order-buy,
.direct-order-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  border-radius: var(--radius-ui);
  text-decoration: none;
  font-size: 13px;
  font-weight: 780;
  font-family: inherit;
  cursor: pointer;
}

.direct-order-buy {
  border: 0;
  background: var(--navy);
  color: #fff;
  box-shadow: 0 14px 30px rgba(6,26,54,.14);
}

.direct-order-more {
  padding: 0 14px;
  border: 1px solid rgba(13,32,57,.16);
  color: var(--navy);
  background: #fff;
}

@media (max-width: 980px) {
  .site-header {
    background: rgba(255,255,255,.98);
  }

  .nav {
    min-height: auto;
    padding: 14px 22px 0;
    flex-wrap: wrap;
    gap: 12px;
  }

  .brand {
    font-size: 24px;
  }

  .brand::before {
    margin-right: 8px;
  }

  .nav-cta {
    display: none;
  }

  .nav-links {
    order: 3;
    flex: 0 0 calc(100% + 44px);
    width: calc(100% + 44px);
    margin: 0 -22px;
    padding: 10px 18px 12px;
    display: flex;
    justify-content: flex-start;
    gap: 10px;
    overflow-x: auto;
    border-top: 1px solid rgba(6,26,54,.06);
    border-bottom: 1px solid rgba(6,26,54,.08);
    background: rgba(255,255,255,.97);
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .nav-links::-webkit-scrollbar {
    display: none;
  }

  .nav-links a {
    flex: 0 0 auto;
    min-height: 38px;
    display: inline-flex;
    align-items: center;
    padding: 0 14px;
    border: 1px solid rgba(6,26,54,.12);
    border-radius: var(--radius-ui, 8px);
    background: #fff;
    color: var(--navy);
    font-size: 13px;
    font-weight: 760;
  }
}

@media (max-width: 560px) {
  .direct-order-showcase {
    max-width: none;
    margin: 36px 0;
    padding: 32px 18px;
    border-radius: 0;
    border-left: 0;
    border-right: 0;
  }

  .direct-order-head {
    display: grid;
    align-items: start;
  }

  .direct-order-nav {
    justify-content: start;
  }

  .direct-order-track {
    grid-auto-columns: minmax(286px, 86vw);
    margin-inline: -2px;
  }

  .direct-order-card {
    grid-template-rows: 190px 1fr;
    min-height: 510px;
  }

  .direct-order-body {
    padding: 18px;
  }

  .direct-order-card h3 {
    font-size: 22px;
  }

  .direct-order-actions {
    grid-template-columns: 1fr;
  }

  .product-hero {
    border-radius: 0 !important;
    margin-left: -18px;
    margin-right: -18px;
    border-left: 0;
    border-right: 0;
  }

  .product-media {
    min-height: 0;
    aspect-ratio: 3 / 2;
    padding: 30px 22px;
  }
}
