:root {
  --navy: #071828;
  --blue: #0f5196;
  --light-blue: #74add2;
  --ice: #e3e6ea;
  --white: #ffffff;
  --ink: #0a1520;
  --muted: #5d6a76;
  --line: #d8dde3;
  --soft: #f5f7f9;
  --shadow: 0 24px 60px rgba(7, 24, 40, 0.12);
  --radius: 8px;
  --max: 1180px;
}

.home-v3 {
  background: #ffffff;
}

.home-v3 .v2-header,
.home-v3 .v2-nav {
  overflow: visible;
}

.home-v3 .v2-dropdown {
  position: relative;
  align-self: stretch;
  display: flex;
  align-items: center;
}

.home-v3 .v2-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  right: auto;
  display: grid;
  grid-template-columns: minmax(220px, 1fr);
  gap: 0;
  width: 248px;
  min-width: 248px;
  padding: 0;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid var(--line);
  border-radius: 0;
  box-shadow: 0 18px 38px rgba(7, 24, 40, 0.14);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
}

.home-v3 .v2-dropdown:hover .v2-dropdown-menu,
.home-v3 .v2-dropdown:focus-within .v2-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.home-v3 .v2-dropdown-menu a {
  display: block;
  min-height: 0;
  padding: 15px 18px;
  background: transparent;
  border: 0;
  border-radius: 0;
  color: var(--navy);
  font-size: 15px;
  font-weight: 850;
  line-height: 1.25;
}

.home-v3 .v2-dropdown-menu a:hover {
  background: #edf5fa;
}

.v3-eyebrow,
.v3-section-label,
.v3-card-kicker {
  display: inline-flex;
  width: max-content;
  color: #76b8e8;
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

.v3-hero {
  min-height: 720px;
}

.home-v3 .v2-hero-copy h1 {
  max-width: 10.8ch;
  margin-top: 18px;
  font-size: clamp(42px, 4.8vw, 68px);
}

.home-v3 .v2-hero-copy p {
  max-width: 570px;
}

.v3-source {
  position: relative;
  overflow: hidden;
  background: #ffffff;
  border-bottom: 1px solid var(--line);
}

.v3-source-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(320px, 0.8fr) minmax(360px, 0.95fr);
  gap: 44px;
  align-items: center;
}

.v3-source-copy h2 {
  max-width: 480px;
  margin: 14px 0 18px;
  color: var(--navy);
  font-size: clamp(34px, 3.5vw, 54px);
  line-height: 1.02;
  font-weight: 950;
}

.v3-source-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.v3-source-points {
  display: grid;
  gap: 12px;
}

.v3-source-points div {
  padding: 18px 0;
  border-top: 1px solid var(--line);
}

.v3-source-points div:last-child {
  border-bottom: 1px solid var(--line);
}

.v3-source-points strong,
.v3-source-points span {
  display: block;
}

.v3-source-points strong {
  color: var(--navy);
  font-size: 17px;
  line-height: 1.25;
}

.v3-source-points span {
  margin-top: 6px;
  color: var(--muted);
  line-height: 1.55;
}

.v3-source-map {
  margin: 0;
}

.v3-source-map img {
  width: 100%;
  display: block;
}

.v3-product-section .section-head {
  max-width: 820px;
}

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

.v3-category-card {
  display: grid;
  grid-template-rows: 250px 1fr;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.v3-category-card:hover {
  transform: translateY(-5px);
  border-color: rgba(15, 81, 150, 0.32);
  box-shadow: 0 22px 52px rgba(7, 24, 40, 0.12);
}

.v3-category-image {
  display: block;
  overflow: hidden;
  background: var(--navy);
}

.v3-category-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 220ms ease;
}

.v3-category-card:hover .v3-category-image img {
  transform: scale(1.04);
}

.v3-category-body {
  display: grid;
  align-content: start;
  gap: 13px;
  padding: 24px;
}

.v3-card-kicker {
  color: var(--blue);
  font-size: 12px;
}

.v3-category-body h3 {
  margin: 0;
  color: var(--navy);
  font-size: 24px;
  line-height: 1.1;
  font-weight: 950;
}

.v3-category-body p {
  margin: 0;
  color: var(--muted);
  line-height: 1.58;
}

.v3-spec-row {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 12px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
}

.v3-spec-row strong {
  color: var(--navy);
}

.v3-tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.v3-tag-row em {
  padding: 7px 9px;
  color: #24577d;
  background: #edf5fa;
  border-radius: 6px;
  font-size: 12px;
  font-style: normal;
  font-weight: 850;
}

.v3-benefits {
  background: #ffffff;
}

.v3-benefits-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(560px, 1.1fr);
  gap: 70px;
  align-items: start;
}

.v3-benefits-layout .section-head {
  position: sticky;
  top: 126px;
}

.v3-benefit-grid {
  display: grid;
  gap: 14px;
}

.v3-benefit-card {
  display: grid;
  grid-template-columns: 74px 1fr;
  gap: 22px;
  min-height: 128px;
  padding: 24px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(7, 24, 40, 0.06);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.v3-benefit-card:hover {
  transform: translateX(6px);
  border-color: rgba(15, 81, 150, 0.28);
  box-shadow: 0 22px 48px rgba(7, 24, 40, 0.1);
}

.v3-benefit-card span {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  color: var(--blue);
  background: #edf5fa;
  border-radius: 8px;
  font-size: 18px;
  font-weight: 950;
}

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

.v3-benefit-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.v3-process {
  background: #edf5fa;
}

.v3-process .v2-process-image {
  aspect-ratio: 1.25 / 1;
}

.v3-process .v2-process-image img {
  object-fit: cover;
}

.v3-guides {
  background: #ffffff;
}

.v3-article-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 28px;
}

.v3-article-card {
  display: grid;
  grid-template-rows: 190px auto;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.v3-article-card:hover {
  transform: translateY(-4px);
  border-color: rgba(15, 81, 150, 0.3);
  box-shadow: 0 18px 42px rgba(7, 24, 40, 0.1);
}

.v3-article-card img {
  width: 100%;
  height: 190px;
  object-fit: cover;
}

.v3-article-card span,
.v3-article-card h3,
.v3-article-card p {
  margin-left: 22px;
  margin-right: 22px;
}

.v3-article-card span {
  margin-top: 22px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.v3-article-card h3 {
  margin-top: 10px;
  margin-bottom: 10px;
  color: var(--navy);
  font-size: 21px;
  line-height: 1.16;
}

.v3-article-card p {
  margin-top: 0;
  margin-bottom: 24px;
  color: var(--muted);
  line-height: 1.55;
}

@media (max-width: 980px) {
  .home-v3 .v2-dropdown-menu {
    position: static;
    grid-template-columns: 1fr;
    padding: 10px 0 0;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .home-v3 .v2-dropdown-menu a {
    min-height: 0;
  }

  .v3-source-grid,
  .v3-benefits-layout {
    grid-template-columns: 1fr;
  }

  .v3-benefits-layout .section-head {
    position: static;
  }

  .v3-category-grid,
  .v3-article-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .v3-hero {
    min-height: 620px;
  }

  .home-v3 .v2-hero-copy h1 {
    max-width: 11ch;
    font-size: 42px;
  }

  .v3-source-copy h2 {
    font-size: 34px;
  }

  .v3-category-card {
    grid-template-rows: 220px 1fr;
  }

  .v3-benefit-card {
    grid-template-columns: 1fr;
  }
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding-top: 88px;
  background: var(--white);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.55;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

img,
svg {
  display: block;
  max-width: 100%;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.985);
  border-bottom: 1px solid rgba(216, 221, 227, 0.95);
  box-shadow: 0 12px 30px rgba(7, 24, 40, 0.1);
  backdrop-filter: blur(18px);
}

.nav {
  width: min(var(--max), calc(100% - 40px));
  min-height: 88px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  --logo-primary: #0f5196;
  --logo-light: #74add2;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 182px;
}

.brand-mark {
  width: 279px;
  height: auto;
  flex: 0 0 auto;
}

.brand-word {
  display: grid;
  gap: 0;
}

.brand-name {
  color: #02060a;
  font-size: 23px;
  font-weight: 650;
  letter-spacing: 0;
  line-height: 1;
}

.brand-line {
  color: var(--navy);
  font-size: 10px;
  font-weight: 550;
  letter-spacing: 0.6px;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  color: #1b2f42;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0;
}

.nav-links a {
  padding: 8px 0;
  color: inherit;
  border-bottom: 2px solid transparent;
  transition: color 180ms ease, border-color 180ms ease;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--blue);
  border-color: currentColor;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.cart-link {
  position: relative;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: var(--navy);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.cart-count {
  position: absolute;
  right: -6px;
  top: -7px;
  min-width: 20px;
  height: 20px;
  padding: 0 6px;
  border-radius: 999px;
  background: var(--blue);
  color: var(--white);
  display: grid;
  place-items: center;
  font-size: 11px;
  font-weight: 850;
}

.button {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  font-size: 14px;
  font-weight: 850;
  line-height: 1;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, color 180ms ease;
}

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

.button-primary {
  background: var(--blue);
  color: var(--white);
}

.button-primary:hover {
  background: #0b447f;
}

.button-secondary {
  background: var(--white);
  color: var(--navy);
  border-color: var(--line);
}

.button-secondary:hover {
  border-color: var(--blue);
  color: var(--blue);
}

.button-dark {
  background: var(--navy);
  color: var(--white);
}

.mobile-menu {
  display: none;
}

.section {
  padding: 92px 0;
}

.section-tight {
  padding: 54px 0;
}

.container {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.hero {
  min-height: 850px;
  display: grid;
  align-items: center;
  padding: 58px 0 74px;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(7, 24, 40, 0.94) 0%, rgba(7, 24, 40, 0.82) 36%, rgba(7, 24, 40, 0.28) 67%, rgba(7, 24, 40, 0.1) 100%),
    url("assets/hero-roll.webp") center / cover no-repeat;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 720px);
  align-items: center;
}

.hero-copy h1,
.page-hero h1 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(44px, 6vw, 82px);
  line-height: 0.96;
  font-weight: 900;
  letter-spacing: 0;
  max-width: 10.5ch;
  overflow-wrap: normal;
}

.hero-copy h1 {
  color: var(--white);
  font-size: clamp(42px, 5.2vw, 76px);
  line-height: 1.02;
  text-shadow: 0 16px 36px rgba(0, 0, 0, 0.22);
}

.hero-copy p,
.page-hero p {
  max-width: 660px;
  margin: 24px 0 0;
  color: #344554;
  font-size: 19px;
  line-height: 1.7;
}

.hero-copy p {
  color: rgba(255, 255, 255, 0.82);
}

.page-hero h1 {
  max-width: 18ch;
}

.hero-actions {
  margin-top: 34px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-proof {
  margin-top: 36px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.82);
}

.proof-item {
  min-height: 78px;
  padding: 14px 18px;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.proof-item:last-child {
  border-right: 0;
}

.proof-value {
  color: var(--blue);
  font-size: 22px;
  font-weight: 900;
}

.proof-label {
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 750;
}

.hero .hero-proof {
  max-width: 650px;
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(7, 24, 40, 0.5);
  backdrop-filter: blur(12px);
}

.hero .proof-value {
  color: var(--light-blue);
}


.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 36px;
}

.section-head h2 {
  max-width: 690px;
  margin: 0;
  color: var(--navy);
  font-size: clamp(30px, 4vw, 54px);
  line-height: 1;
  font-weight: 900;
}

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

.band {
  background: var(--soft);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

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

.family-card,
.product-card,
.panel,
.order-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.family-card {
  min-height: 0;
  padding: 16px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.family-card:hover {
  transform: translateY(-3px);
  border-color: rgba(15, 81, 150, 0.35);
  box-shadow: 0 18px 42px rgba(7, 24, 40, 0.1);
}

.family-icon {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  color: var(--blue);
  background: #edf5fa;
  border-radius: 8px;
}

.family-image {
  width: 100%;
  aspect-ratio: 1 / 1;
  display: block;
  overflow: hidden;
  border-radius: 8px;
  background: var(--navy);
}

.family-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.family-card h3,
.product-card h3,
.panel h3,
.order-card h3 {
  margin: 14px 0 8px;
  color: var(--navy);
  font-size: 21px;
  line-height: 1.14;
}

.family-card p,
.product-card p,
.panel p,
.order-card p {
  margin: 0;
  color: var(--muted);
}

.card-link {
  margin-top: 24px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--blue);
  font-size: 14px;
  font-weight: 900;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
  gap: 58px;
  align-items: start;
}

.spec-list {
  display: grid;
  gap: 12px;
}

.spec-row {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 18px;
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
}

.spec-row strong {
  color: var(--navy);
}

.spec-row span {
  color: var(--muted);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  border: 1px solid var(--line);
}

.process-step {
  min-height: 210px;
  padding: 24px;
  border-right: 1px solid var(--line);
}

.process-step:last-child {
  border-right: 0;
}

.step-number {
  color: var(--light-blue);
  font-size: 42px;
  font-weight: 950;
  line-height: 1;
}

.process-step h3 {
  margin: 22px 0 10px;
  color: var(--navy);
  font-size: 20px;
}

.process-step p {
  margin: 0;
  color: var(--muted);
}

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

.testimonial-card,
.benefit-card,
.blog-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.testimonial-card {
  padding: 24px;
  display: grid;
  gap: 22px;
}

.testimonial-quote {
  margin: 0;
  color: var(--navy);
  font-size: 20px;
  line-height: 1.55;
}

.testimonial-meta {
  display: grid;
  gap: 4px;
}

.testimonial-meta strong {
  color: var(--navy);
  font-size: 14px;
}

.testimonial-meta span {
  color: var(--muted);
  font-size: 14px;
}

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

.benefit-card {
  padding: 22px;
}

.benefit-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 8px;
  background: #edf5fa;
  color: var(--blue);
}

.benefit-card h3,
.blog-card h3 {
  margin: 0 0 10px;
  color: var(--navy);
  font-size: 20px;
  line-height: 1.15;
}

.benefit-card p,
.blog-card p {
  margin: 0;
  color: var(--muted);
}

.blog-strip {
  border-top: 1px solid var(--line);
}

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

.blog-card {
  padding: 24px;
}

.blog-kicker {
  margin-bottom: 16px;
  color: var(--light-blue);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.page-hero {
  padding: 74px 0 50px;
  background: linear-gradient(180deg, var(--soft), var(--white));
  border-bottom: 1px solid var(--line);
}

.page-hero.page-hero-compact {
  padding: 10px 0 8px;
}

.page-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 32px;
}

.page-hero.page-hero-compact .page-hero-inner {
  align-items: center;
  grid-template-columns: minmax(0, 1fr);
  gap: 6px;
}

.page-hero.page-hero-compact h1 {
  max-width: none;
  font-size: clamp(22px, 2.2vw, 30px);
  line-height: 1;
  white-space: nowrap;
}

.page-hero.page-hero-compact p {
  margin-top: 0;
  max-width: 720px;
  font-size: 14px;
  line-height: 1.35;
}

.filter-bar {
  margin-bottom: 28px;
  padding: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.filter-button {
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--navy);
  cursor: pointer;
  font-size: 13px;
  font-weight: 850;
}

.filter-button.is-active {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}

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

.product-card {
  min-height: 390px;
  padding: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.product-visual {
  height: 146px;
  display: block;
  background: var(--navy);
  overflow: hidden;
}

.product-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 220ms ease;
}

.product-card:hover .product-visual img {
  transform: scale(1.035);
}

.product-body {
  padding: 22px;
  display: flex;
  flex: 1;
  flex-direction: column;
}

.product-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 14px 0 18px;
}

.tag {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  padding: 0 9px;
  background: #edf5fa;
  color: #1b567f;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 850;
}

.price {
  margin-top: auto;
  color: var(--navy);
  font-size: 18px;
  font-weight: 950;
}

.price-large {
  margin-top: 10px;
  font-size: 20px;
}

.product-actions {
  margin-top: 16px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.product-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: 34px;
  align-items: start;
}

.product-detail-visual {
  min-height: 430px;
  background: var(--navy);
  border-radius: 8px;
  overflow: hidden;
}

.product-detail-visual img {
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
}

.crumb-bar {
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.crumb-inner {
  min-height: 46px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  overflow: hidden;
}

.crumbs,
.breadcrumbs {
  display: flex;
  flex-wrap: nowrap;
  gap: 8px;
  min-width: 0;
  overflow-x: auto;
  color: var(--muted);
  font-size: 14px;
  white-space: nowrap;
}

.crumbs a:hover,
.breadcrumbs a:hover {
  color: var(--blue);
}

.crumbs strong,
.breadcrumbs strong {
  color: var(--navy);
}

.crumb-back {
  color: var(--blue);
  font-size: 14px;
  font-weight: 800;
}

.section.section-after-crumb,
.section.section-after-compact-hero {
  padding-top: 22px;
}

.buy-box {
  position: sticky;
  top: 112px;
  padding: 22px;
  display: grid;
  gap: 12px;
}

.quantity {
  margin: 8px 0 2px;
  display: grid;
  gap: 8px;
}

.quantity label,
.field label,
.field-label {
  color: var(--navy);
  font-size: 13px;
  font-weight: 850;
}

.qty-control {
  display: grid;
  grid-template-columns: 42px 1fr 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}

.qty-control button {
  border: 0;
  background: var(--soft);
  color: var(--navy);
  cursor: pointer;
  font-size: 18px;
  font-weight: 900;
}

.qty-control input {
  width: 100%;
  height: 44px;
  border: 0;
  text-align: center;
  color: var(--navy);
  font-weight: 850;
}

.cart-layout,
.checkout-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 28px;
  align-items: start;
}

.cart-items {
  display: grid;
  gap: 14px;
}

.cart-item {
  padding: 18px;
  display: grid;
  grid-template-columns: 74px minmax(0, 1fr) 128px 42px;
  gap: 16px;
  align-items: center;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.mini-visual {
  width: 74px;
  height: 74px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--blue), var(--light-blue));
}

.cart-title {
  color: var(--navy);
  font-weight: 900;
}

.cart-detail {
  color: var(--muted);
  font-size: 13px;
}

.remove-button {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--muted);
  cursor: pointer;
}

.summary {
  padding: 22px;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 13px 0;
  color: var(--muted);
  border-bottom: 1px solid var(--line);
}

.summary-row strong {
  color: var(--navy);
}

.summary-total {
  color: var(--navy);
  font-size: 20px;
  font-weight: 950;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.field {
  display: grid;
  gap: 7px;
}

.field-full {
  grid-column: 1 / -1;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 46px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--navy);
}

.field textarea {
  min-height: 118px;
  resize: vertical;
}

.field-help {
  margin-top: 8px;
  color: var(--muted);
  font-size: 13px;
}

.buy-price {
  display: grid;
  gap: 4px;
}

.buy-price span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.buy-price .price-large {
  margin-top: 0;
}

.selection-list {
  display: grid;
  gap: 8px;
}

.selection-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 132px;
  gap: 10px;
  align-items: center;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.selection-copy {
  display: grid;
  gap: 3px;
}

.selection-copy strong {
  color: var(--navy);
  font-size: 15px;
}

.selection-copy span {
  color: var(--muted);
  font-size: 13px;
}

.qty-control-compact {
  grid-template-columns: 38px 1fr 38px;
}

.selection-summary {
  display: grid;
  gap: 8px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
  color: var(--muted);
  font-size: 14px;
}

.selection-summary-line {
  display: flex;
  justify-content: space-between;
  gap: 16px;
}

.selection-summary-line strong {
  color: var(--navy);
}

.notice {
  margin-top: 18px;
  padding: 14px;
  background: #edf5fa;
  color: #1f4d70;
  border: 1px solid #c9dfed;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
}

.footer {
  padding: 46px 0;
  background: var(--navy);
  color: var(--white);
}

.footer .brand {
  --logo-primary: #0f5196;
  --logo-light: #74add2;
  gap: 8px;
}

.footer .brand-mark {
  width: 264px;
  height: auto;
}

.footer .brand svg path[fill="#071828"] {
  fill: var(--white);
}

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

.footer h3,
.footer h4 {
  margin: 0 0 12px;
}

.footer p,
.footer a {
  color: rgba(255, 255, 255, 0.72);
}

.footer-links {
  display: grid;
  gap: 8px;
}

.empty-state {
  padding: 44px;
  text-align: center;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.toast {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 40;
  max-width: 340px;
  padding: 14px 16px;
  background: var(--navy);
  color: var(--white);
  border-radius: 8px;
  box-shadow: var(--shadow);
  font-size: 14px;
  font-weight: 750;
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition: opacity 180ms ease, transform 180ms ease;
}

.toast.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.home-v2 {
  padding-top: 82px;
  background: #ffffff;
}

.v2-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 30;
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid rgba(216, 221, 227, 0.9);
  box-shadow: 0 10px 28px rgba(7, 24, 40, 0.08);
  backdrop-filter: blur(16px);
}

.v2-nav {
  width: min(var(--max), calc(100% - 40px));
  min-height: 82px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.v2-brand {
  display: inline-flex;
  align-items: center;
  color: var(--navy);
  min-width: 230px;
}

.v2-brand-mark {
  width: 250px;
  height: auto;
}

.v2-nav-panel {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.v2-nav-links,
.v2-nav-actions {
  display: flex;
  align-items: center;
}

.v2-nav-links {
  justify-content: center;
  gap: 26px;
  color: #1b2f42;
  font-size: 15px;
  font-weight: 850;
}

.v2-nav-links > a,
.v2-dropdown > a {
  padding: 29px 0;
  border-bottom: 2px solid transparent;
  white-space: nowrap;
}

.v2-nav-links a:hover,
.v2-nav-links a[aria-current="page"] {
  color: var(--blue);
  border-color: currentColor;
}

.v2-nav-actions {
  gap: 10px;
}

.v2-nav-actions .button {
  white-space: nowrap;
}

.v2-dropdown {
  position: relative;
}

.v2-dropdown-menu {
  position: absolute;
  top: calc(100% + 1px);
  left: -18px;
  min-width: 220px;
  display: none;
  padding: 10px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.v2-dropdown:hover .v2-dropdown-menu,
.v2-dropdown:focus-within .v2-dropdown-menu {
  display: grid;
}

.v2-dropdown-menu a {
  padding: 10px 12px;
  color: var(--navy);
  border-radius: 6px;
}

.v2-dropdown-menu a:hover {
  background: var(--soft);
}

.v2-menu-button {
  display: none;
}

.v2-hero {
  min-height: 850px;
  display: grid;
  align-items: center;
  padding: 58px 0 74px;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(7, 24, 40, 0.94) 0%, rgba(7, 24, 40, 0.82) 36%, rgba(7, 24, 40, 0.28) 67%, rgba(7, 24, 40, 0.1) 100%),
    url("assets/hero-roll.webp") center / cover no-repeat;
}

.v2-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 720px);
  align-items: center;
}

.v2-hero-copy h1 {
  max-width: 12.6ch;
  margin: 0;
  color: var(--white);
  font-size: clamp(42px, 5.4vw, 76px);
  line-height: 1.02;
  font-weight: 950;
  letter-spacing: 0;
  text-shadow: 0 16px 36px rgba(0, 0, 0, 0.22);
}

.v2-hero-copy,
.v2-intro-copy {
  min-width: 0;
}

.v2-hero-copy p {
  max-width: 650px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 19px;
  line-height: 1.68;
}

.v2-hero .button-secondary {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
}

.v2-intro {
  background: var(--white);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.v2-intro-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.72fr) minmax(520px, 1fr);
  gap: 68px;
  align-items: center;
}

.v2-intro-text {
  max-width: 560px;
  display: grid;
  gap: 26px;
}

.v2-intro h2,
.v2-final-cta h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(34px, 4.4vw, 58px);
  line-height: 1;
  font-weight: 950;
}

.v2-intro-copy {
  display: grid;
  gap: 20px;
  color: #29445f;
  font-size: 18px;
  line-height: 1.72;
}

.v2-intro-copy p {
  margin: 0;
}

.v2-intro-map {
  margin: 0;
}

.v2-intro-map img {
  width: 100%;
  height: auto;
  display: block;
}

.v2-product-section,
.v2-process {
  background: var(--soft);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.v2-category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 310px), 1fr));
  gap: 18px;
}

.product-architecture-grid {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 360px), 440px));
  justify-content: center;
}

.v2-category-card {
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.v2-category-card:hover {
  transform: translateY(-3px);
  border-color: rgba(15, 81, 150, 0.35);
  box-shadow: 0 18px 42px rgba(7, 24, 40, 0.1);
}

.v2-category-image {
  aspect-ratio: 1.08 / 1;
  display: block;
  overflow: hidden;
  background: var(--navy);
}

.v2-category-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-architecture-card .v2-category-image {
  aspect-ratio: 1.35 / 1;
}

.v2-category-body {
  min-height: 260px;
  padding: 24px;
  display: flex;
  flex-direction: column;
}

.v2-category-body h3,
.v2-reason h3,
.v2-trust-item h3,
.v2-process-step h3 {
  margin: 0 0 10px;
  color: var(--navy);
  font-size: 22px;
  line-height: 1.12;
  font-weight: 900;
}

.v2-category-body p,
.v2-reason p,
.v2-trust-item p,
.v2-process-step p {
  margin: 0;
  color: var(--muted);
}

.v2-category-body .card-link {
  margin-top: auto;
}

.v2-why-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(520px, 1.08fr);
  gap: 76px;
  align-items: start;
}

.v2-why-layout .section-head {
  position: sticky;
  top: 126px;
  display: grid;
  gap: 22px;
  margin-bottom: 0;
}

.v2-why-layout .section-head h2,
.v2-why-layout .section-head p {
  max-width: 100%;
}

.v2-reason-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.v2-reason {
  position: relative;
  min-height: 0;
  padding: 24px 28px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  column-gap: 22px;
  align-items: start;
  background: var(--white);
  border: 1px solid rgba(216, 221, 227, 0.9);
  border-radius: 8px;
  box-shadow: 0 16px 34px rgba(7, 24, 40, 0.055);
  transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
}

.v2-reason::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: linear-gradient(180deg, var(--blue), var(--light-blue));
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 220ms ease;
}

.v2-reason:hover {
  transform: translateX(6px);
  border-color: rgba(15, 81, 150, 0.28);
  box-shadow: 0 20px 44px rgba(7, 24, 40, 0.1);
}

.v2-reason:hover::before {
  transform: scaleY(1);
}

.v2-reason span {
  position: relative;
  z-index: 1;
  width: 56px;
  height: 56px;
  padding: 0;
  display: grid;
  place-items: center;
  grid-row: 1 / span 2;
  color: var(--blue);
  background: #edf5fa;
  border-radius: 8px;
  font-size: 20px;
  font-weight: 950;
  line-height: 1;
}

.v2-reason h3,
.v2-reason p {
  position: relative;
  z-index: 1;
}

.v2-reason h3 {
  margin-bottom: 8px;
}

.v2-reason p {
  max-width: 34rem;
  font-size: 16px;
  line-height: 1.62;
}

.v2-trust {
  padding: 74px 0;
  background: var(--navy);
  color: var(--white);
}

.v2-trust-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
  perspective: 1200px;
}

.v2-trust-item {
  position: relative;
  min-height: 220px;
  text-align: center;
  transform-style: preserve-3d;
  transition: transform 520ms cubic-bezier(0.2, 0.8, 0.2, 1);
  cursor: default;
}

.v2-trust-face {
  position: absolute;
  inset: 0;
  padding: 30px 24px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.v2-trust-front {
  background: rgba(255, 255, 255, 0.055);
}

.v2-trust-back {
  background: #ffffff;
  transform: rotateY(180deg);
}

.v2-trust-item:hover {
  transform: rotateY(180deg);
}

.v2-trust-item svg {
  width: 42px;
  height: 42px;
  margin: 0 auto 22px;
  color: var(--light-blue);
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.v2-trust-item h3 {
  color: var(--white);
  max-width: 12rem;
  margin: 0;
  font-size: 21px;
  line-height: 1.16;
}

.v2-trust-item p {
  margin: 0;
  color: var(--navy);
  font-size: 16px;
  line-height: 1.55;
}

.v2-process-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
}

.v2-process-grid::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg, var(--blue), var(--light-blue));
  opacity: 0.42;
}

.v2-process-step {
  position: relative;
  min-height: 330px;
  padding: 0;
  display: grid;
  align-content: start;
  justify-items: center;
  text-align: center;
  z-index: 1;
}

.v2-process-image {
  position: relative;
  width: 100%;
  aspect-ratio: 1.25 / 1;
  margin: 0 0 24px;
  overflow: hidden;
  background: var(--navy);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 16px 34px rgba(7, 24, 40, 0.08);
}

.v2-process-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 260ms ease;
}

.v2-process-step:hover .v2-process-image img {
  transform: scale(1.045);
}

.v2-process-image span {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  background: var(--white);
  color: var(--blue);
  border: 2px solid var(--blue);
  border-radius: 8px;
  font-size: 21px;
  font-weight: 950;
  box-shadow: 0 10px 24px rgba(7, 24, 40, 0.18);
}

.v2-process-step h3,
.v2-process-step p {
  max-width: 240px;
}

.v2-guides {
  background: var(--white);
}

.v2-guide-list {
  display: grid;
  margin-bottom: 26px;
  border-top: 1px solid var(--line);
}

.v2-guide-list a {
  padding: 24px 0;
  color: var(--navy);
  border-bottom: 1px solid var(--line);
  font-size: clamp(21px, 2.6vw, 34px);
  line-height: 1.15;
  font-weight: 900;
  transition: color 180ms ease, padding-left 180ms ease;
}

.v2-guide-list a:hover {
  color: var(--blue);
  padding-left: 10px;
}

.v2-final-cta {
  background: linear-gradient(135deg, var(--navy), #0b345e);
  color: var(--white);
}

.v2-final-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 38px;
}

.v2-final-cta h2 {
  color: var(--white);
}

.v2-final-cta p {
  max-width: 610px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 18px;
}

.v2-final-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
}

.v2-final-actions .button-secondary {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.32);
}

.v2-footer {
  padding: 62px 0 28px;
  background: #061320;
  color: rgba(255, 255, 255, 0.74);
}

.v2-footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) repeat(3, minmax(0, 0.75fr));
  gap: 42px;
}

.v2-footer-brand {
  color: var(--white);
  margin-bottom: 18px;
}

.v2-footer-brand .v2-brand-mark {
  width: 230px;
}

.v2-footer p {
  margin: 0;
  max-width: 390px;
}

.v2-footer h4 {
  margin: 0 0 14px;
  color: var(--white);
}

.v2-footer a:not(.v2-brand) {
  display: block;
  margin: 8px 0;
  color: rgba(255, 255, 255, 0.72);
}

.v2-footer a:hover {
  color: var(--white);
}

.v2-social-links {
  display: flex;
  gap: 8px;
  margin-top: 22px;
}

.v2-social-links a {
  width: 34px;
  height: 34px;
  display: grid !important;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 900;
}

.v2-copyright {
  margin-top: 44px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.55);
  font-size: 14px;
}

@media (max-width: 980px) {
  body {
    padding-top: 80px;
  }

  .nav {
    min-height: 80px;
  }

  .brand {
    min-width: 0;
  }

  .brand-mark {
    width: 228px;
  }

  .mobile-menu {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    color: var(--navy);
  }

  .nav-links {
    position: absolute;
    top: 80px;
    left: 0;
    right: 0;
    display: none;
    padding: 18px 20px;
    background: var(--white);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 18px 40px rgba(7, 24, 40, 0.09);
  }

  .nav-links.is-open {
    display: grid;
    justify-content: stretch;
    gap: 12px;
  }

  .nav-actions .button-secondary {
    display: none;
  }

  .hero-grid,
  .split,
  .product-layout,
  .cart-layout,
  .checkout-layout,
  .page-hero-inner,
  .testimonial-grid,
  .benefits-grid,
  .blog-grid {
    grid-template-columns: 1fr;
  }

  .page-hero.page-hero-compact {
    padding: 8px 0 8px;
  }

  .hero {
    min-height: auto;
  }

  .hero-proof,
  .family-grid,
  .process-grid,
  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .process-step:nth-child(2) {
    border-right: 0;
  }

  .process-step {
    border-bottom: 1px solid var(--line);
  }

  .process-step:nth-child(3),
  .process-step:nth-child(4) {
    border-bottom: 0;
  }

  .buy-box {
    position: static;
  }

  .home-v2 {
    padding-top: 76px;
  }

  .v2-nav {
    min-height: 76px;
  }

  .v2-menu-button {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    gap: 4px;
    padding: 10px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
  }

  .v2-menu-button span {
    width: 18px;
    height: 2px;
    display: block;
    background: var(--navy);
  }

  .v2-nav-panel {
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    display: none;
    padding: 18px 20px 22px;
    background: var(--white);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 18px 40px rgba(7, 24, 40, 0.09);
  }

  .v2-nav-panel.is-open {
    display: grid;
    gap: 18px;
  }

  .v2-nav-links,
  .v2-nav-actions {
    display: grid;
    justify-content: stretch;
    gap: 12px;
  }

  .v2-nav-links > a,
  .v2-dropdown > a {
    padding: 4px 0;
  }

  .v2-dropdown-menu {
    position: static;
    display: grid;
    min-width: 0;
    margin-top: 8px;
    padding: 8px;
    box-shadow: none;
  }

  .v2-hero-grid,
  .v2-intro-grid,
  .v2-why-layout,
  .v2-footer-grid {
    grid-template-columns: 1fr;
  }

  .v2-why-layout {
    gap: 34px;
  }

  .v2-why-layout .section-head {
    position: static;
  }

  .v2-hero {
    min-height: auto;
    padding: 58px 0;
  }

  .v2-hero-media {
    min-height: 390px;
  }

  .v2-hero-media img {
    min-height: 390px;
  }

  .v2-category-grid,
  .v2-trust-grid,
  .v2-process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .v2-process-grid::before {
    left: 25%;
    right: 25%;
  }

  .v2-process-step {
    min-height: 360px;
  }

  .v2-final-inner {
    display: grid;
  }

  .v2-final-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 1120px) and (min-width: 981px) {
  .v2-nav {
    gap: 16px;
  }

  .v2-brand {
    min-width: 205px;
  }

  .v2-brand-mark {
    width: 215px;
  }

  .v2-nav-panel {
    gap: 16px;
  }

  .v2-nav-links {
    gap: 18px;
  }

  .v2-nav-actions .button {
    padding: 0 14px;
  }
}

@media (max-width: 680px) {
  .container,
  .nav {
    width: min(100% - 28px, var(--max));
  }

  .nav-links {
    font-size: 14px;
  }

  .section {
    padding: 64px 0;
  }

  .section-head {
    display: grid;
  }

  .hero-copy h1,
  .page-hero h1 {
    max-width: 8.5ch;
    font-size: clamp(34px, 10.7vw, 44px);
    line-height: 1.04;
  }

  .hero-copy p,
  .page-hero p {
    font-size: 17px;
  }

  .page-hero.page-hero-compact h1 {
    font-size: clamp(24px, 8vw, 34px);
    white-space: normal;
  }

.page-hero.page-hero-compact p {
  font-size: 14px;
  line-height: 1.45;
}

.page-hero.page-hero-compact .button {
  justify-self: start;
  width: auto;
}

  .hero-proof,
  .family-grid,
  .process-grid,
  .product-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .crumb-inner,
  .selection-row {
    grid-template-columns: 1fr;
  }

  .proof-item,
  .process-step,
  .process-step:nth-child(2),
  .process-step:nth-child(3) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .proof-item:last-child,
  .process-step:last-child {
    border-bottom: 0;
  }

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

  .cart-item {
    grid-template-columns: 60px minmax(0, 1fr) 42px;
  }

  .cart-item .qty-control {
    grid-column: 1 / -1;
  }

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

  .footer .brand-mark {
    width: 210px;
  }

  .v2-nav {
    width: min(100% - 28px, var(--max));
  }

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

  .v2-brand-mark {
    width: 205px;
  }

  .v2-hero-copy h1 {
    max-width: none;
    font-size: clamp(30px, 9.2vw, 38px);
    line-height: 1.08;
    overflow-wrap: break-word;
  }

  .v2-hero-copy p {
    font-size: 17px;
    line-height: 1.58;
  }

  .v2-hero-media,
  .v2-hero-media img {
    min-height: 300px;
  }

  .v2-category-grid,
  .v2-reason-grid,
  .v2-trust-grid,
  .v2-process-grid {
    grid-template-columns: 1fr;
  }

  .v2-trust-item {
    min-height: 190px;
  }

  .v2-trust-item svg {
    margin-bottom: 18px;
  }

  .v2-reason {
    min-height: 0;
    padding: 26px;
  }

  .v2-reason span {
    width: 48px;
    height: 48px;
  }

  .v2-process-grid {
    gap: 20px;
  }

  .v2-process-grid::before {
    display: none;
  }

  .v2-process-step {
    min-height: 0;
    grid-template-columns: 48px minmax(0, 1fr);
    justify-items: start;
    column-gap: 18px;
    text-align: left;
  }

  .v2-process-image {
    grid-column: 1 / -1;
    aspect-ratio: 1.5 / 1;
    margin-bottom: 18px;
  }

  .v2-process-image span {
    width: 42px;
    height: 42px;
    font-size: 18px;
  }

  .v2-process-step h3,
  .v2-process-step p {
    max-width: none;
  }

  .v2-category-body {
    min-height: 0;
  }

  .v2-final-actions,
  .v2-final-actions .button {
    width: 100%;
  }
}

.home-v3 {
  overflow-x: hidden;
}

.v3-source-grid > *,
.v3-benefits-layout > *,
.v3-category-card,
.v3-article-card {
  min-width: 0;
}

@media (max-width: 680px) {
  .home-v3 .v2-hero-copy,
  .v3-source-copy,
  .v3-source-points,
  .v3-source-map {
    max-width: min(340px, calc(100vw - 28px));
  }

  .home-v3 .v2-hero-copy h1 {
    font-size: 39px;
  }

  .home-v3 .v2-hero-copy p {
    font-size: 18px;
  }

  .v3-source-copy h2 {
    max-width: 100%;
    font-size: 30px;
    overflow-wrap: anywhere;
  }

  .v3-source-copy p,
  .v3-source-points span {
    font-size: 16px;
  }
}

@media (max-width: 980px) {
  .v3-source-grid,
  .v3-benefits-layout,
  .v3-category-grid,
  .v3-article-grid {
    grid-template-columns: minmax(0, 1fr) !important;
  }
}

.home-v3 main {
  display: flex;
  flex-direction: column;
}

.home-v3 .v3-hero {
  order: 1;
}

.home-v3 .v3-product-section {
  order: 2;
}

.home-v3 .v3-source {
  order: 3;
  background: #d7ebfb;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.home-v3 .v3-source-grid {
  grid-template-columns: minmax(280px, 0.85fr) minmax(360px, 1.05fr) minmax(320px, 0.95fr);
  gap: 58px;
}

.home-v3 .v3-source-copy h2 {
  font-size: clamp(42px, 4.6vw, 64px);
}

.home-v3 .v3-source-map img {
  max-height: 360px;
  object-fit: contain;
}

.home-v3 .v3-benefits {
  background: #071828;
}

.home-v3 .v3-benefits-layout {
  grid-template-columns: minmax(280px, 0.72fr) minmax(520px, 1.08fr);
  gap: 76px;
}

.home-v3 .v3-benefits .section-head {
  position: sticky;
  top: 126px;
  display: grid;
  gap: 22px;
}

.home-v3 .v3-benefit-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.home-v3 .v3-benefit-card {
  grid-template-columns: 78px minmax(0, 1fr);
  min-height: 220px;
  padding: 26px;
  align-content: start;
}

.home-v3 .v3-benefit-card p {
  grid-column: 2;
  max-width: 420px;
}

.home-v3 .v3-benefit-card:hover {
  transform: translateY(-4px);
}

.home-v3 .v2-final-cta {
  background: linear-gradient(135deg, #0f5196 0%, #123f70 100%);
}

.home-v3 .v2-final-cta .v2-final-inner {
  min-height: 0;
  padding: 0;
}

.home-v3 .v2-final-cta h2 {
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.02;
}

.home-v3 .v2-final-actions {
  align-items: center;
}

@media (max-width: 980px) {
  .home-v3 .v3-source-grid,
  .home-v3 .v3-benefits-layout,
  .home-v3 .v3-benefit-grid {
    grid-template-columns: minmax(0, 1fr) !important;
  }

  .home-v3 .v3-benefits .section-head {
    position: static;
  }

  .home-v3 .v3-benefit-card p {
    grid-column: auto;
  }
}

.home-v3 .v2-intro {
  background: #ffffff !important;
}

.home-v3 .v2-intro-grid {
  grid-template-columns: minmax(320px, 0.86fr) minmax(420px, 1.14fr) !important;
  gap: 72px !important;
}

.home-v3 .v2-intro-map img {
  width: 100%;
  max-height: 420px;
  object-fit: contain;
}

.home-v3 .v2-why {
  background: #ffffff !important;
}

.home-v3 .v2-why .section-head h2,
.home-v3 .v2-reason h3 {
  color: var(--navy) !important;
}

.home-v3 .v2-why .section-head p,
.home-v3 .v2-reason p {
  color: var(--muted) !important;
}

.home-v3 .v2-reason {
  background: #ffffff !important;
}

.home-v3 .v2-process .section-head {
  display: block;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 44px;
  text-align: center;
}

.home-v3 .v2-process .section-head h2 {
  max-width: none;
}

.home-v3 .v2-process .section-head p {
  max-width: 620px;
  margin: 16px auto 0;
}

.home-v3 .v2-final-cta {
  background: linear-gradient(135deg, var(--navy), #0b345e) !important;
}

.home-v3 .v2-final-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 38px;
}

.home-v3 .v2-final-cta h2 {
  font-size: clamp(36px, 4vw, 58px);
}

@media (max-width: 980px) {
  .home-v3 .v2-intro-grid {
    grid-template-columns: minmax(0, 1fr) !important;
  }

  .home-v3 .v2-final-inner {
    align-items: flex-start;
  }
}

.home-v3 main {
  display: block !important;
}

.home-v3 main > section {
  order: initial !important;
}
  order: 3;
}

.home-v3 .v3-benefits {
  order: 4;
}

.home-v3 .v3-process {
  order: 5;
}

.home-v3 .v3-guides {
  order: 6;
}

.home-v3 .v2-final-cta {
  order: 7;
}

.home-v3 .v3-product-section {
  background: #ffffff;
  border-top: 0;
}

.home-v3 .v3-product-section .section-head {
  display: none;
}

.home-v3 .v3-category-grid {
  grid-template-columns: minmax(0, 1fr);
  gap: 30px;
}

.home-v3 .v3-category-card {
  grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1fr);
  grid-template-rows: none;
  min-height: 330px;
  align-items: stretch;
  overflow: hidden;
}

.home-v3 .v3-category-card:nth-child(even) {
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr);
}

.home-v3 .v3-category-card:nth-child(even) .v3-category-image {
  grid-column: 2;
  grid-row: 1;
}

.home-v3 .v3-category-card:nth-child(even) .v3-category-body {
  grid-column: 1;
  grid-row: 1;
}

.home-v3 .v3-category-image {
  min-height: 330px;
}

.home-v3 .v3-category-body {
  align-content: center;
  padding: clamp(30px, 5vw, 64px);
}

.home-v3 .v3-category-body h3 {
  max-width: 12ch;
  font-size: clamp(34px, 4.2vw, 58px);
  line-height: 0.98;
}

.home-v3 .v3-benefits {
  background: #071828;
  color: #ffffff;
}

.home-v3 .v3-benefits-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  gap: 56px;
  align-items: start;
}

.home-v3 .v3-benefits .section-head {
  position: static;
  display: block;
  margin: 0;
}

.home-v3 .v3-benefits .section-head h2 {
  max-width: 460px;
  color: #ffffff;
}

.home-v3 .v3-benefits .section-head p {
  max-width: 420px;
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.72);
}

.home-v3 .v3-benefit-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.home-v3 .v3-benefit-card {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr);
  min-height: 180px;
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow: none;
}

.home-v3 .v3-benefit-card:hover {
  transform: translateY(-4px);
  border-color: rgba(116, 173, 210, 0.42);
  box-shadow: 0 20px 46px rgba(0, 0, 0, 0.22);
}

.home-v3 .v3-benefit-card h3 {
  color: #ffffff;
}

.home-v3 .v3-benefit-card p {
  color: rgba(255, 255, 255, 0.7);
}

.home-v3 .v3-guides {
  background: #0f0d14;
  color: #ffffff;
}

.home-v3 .v3-guides .section-head {
  display: block;
}

.home-v3 .v3-guides .section-head h2 {
  color: #ffffff;
}

.home-v3 .v3-guides .section-head p {
  max-width: 620px;
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.68);
}

.home-v3 .v3-article-grid {
  grid-template-columns: minmax(360px, 1.16fr) repeat(2, minmax(0, 0.82fr));
  grid-auto-rows: 210px;
  gap: 18px;
}

.home-v3 .v3-article-card {
  position: relative;
  display: block;
  min-height: 210px;
  overflow: hidden;
  background: #15111c;
  border: 0;
}

.home-v3 .v3-article-featured {
  grid-row: span 2;
}

.home-v3 .v3-article-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.home-v3 .v3-article-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 24, 40, 0.02) 18%, rgba(7, 24, 40, 0.84) 100%);
}

.home-v3 .v3-article-card span,
.home-v3 .v3-article-card h3,
.home-v3 .v3-article-card p {
  position: absolute;
  z-index: 1;
  margin: 0;
  left: 22px;
  right: 22px;
  color: #ffffff;
}

.home-v3 .v3-article-card span {
  bottom: 88px;
  color: #74add2;
}

.home-v3 .v3-article-card h3 {
  bottom: 34px;
  font-size: 17px;
  line-height: 1.18;
}

.home-v3 .v3-article-card p {
  display: none;
}

.home-v3 .v3-article-featured span {
  bottom: 150px;
}

.home-v3 .v3-article-featured h3 {
  bottom: 76px;
  font-size: 28px;
  max-width: 520px;
}

.home-v3 .v3-article-featured p {
  display: block;
  bottom: 28px;
  max-width: 520px;
  color: rgba(255, 255, 255, 0.74);
}

.home-v3 .v3-guides .button {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.24);
}

@media (max-width: 980px) {
  .home-v3 .v3-category-card,
  .home-v3 .v3-category-card:nth-child(even),
  .home-v3 .v3-benefits-layout,
  .home-v3 .v3-benefit-grid,
  .home-v3 .v3-article-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .home-v3 .v3-category-card:nth-child(even) .v3-category-image,
  .home-v3 .v3-category-card:nth-child(even) .v3-category-body {
    grid-column: auto;
    grid-row: auto;
  }

  .home-v3 .v3-article-grid {
    grid-auto-rows: auto;
  }

  .home-v3 .v3-article-card,
  .home-v3 .v3-article-featured {
    min-height: 320px;
    grid-row: auto;
  }
}

.home-v3 .v3-source {
  background: #d7ebfb;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.home-v3 .v3-source-grid {
  grid-template-columns: minmax(280px, 0.85fr) minmax(360px, 1.05fr) minmax(320px, 0.95fr);
  gap: 58px;
  align-items: center;
}

.home-v3 .v3-source-copy h2 {
  max-width: 480px;
  font-size: clamp(42px, 4.6vw, 64px);
}

.home-v3 .v3-source-map img {
  max-height: 360px;
  object-fit: contain;
}

.home-v3 .v3-benefits {
  background: #071828;
}

.home-v3 .v3-benefits-layout {
  grid-template-columns: minmax(280px, 0.72fr) minmax(520px, 1.08fr);
  gap: 76px;
}

.home-v3 .v3-benefits .section-head {
  position: sticky;
  top: 126px;
  display: grid;
  gap: 22px;
}

.home-v3 .v3-benefit-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.home-v3 .v3-benefit-card {
  grid-template-columns: 78px minmax(0, 1fr);
  min-height: 220px;
  align-content: start;
  padding: 26px;
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow: none;
}

.home-v3 .v3-benefit-card p {
  grid-column: 2;
  max-width: 420px;
}

.home-v3 .v3-benefit-card:hover {
  transform: translateY(-4px);
  border-color: rgba(116, 173, 210, 0.42);
  box-shadow: 0 20px 46px rgba(0, 0, 0, 0.22);
}

.home-v3 .v2-final-cta {
  background: linear-gradient(135deg, #0f5196 0%, #123f70 100%);
}

.home-v3 .v2-final-inner {
  min-height: 0;
  padding: 0;
}

.home-v3 .v2-final-cta h2 {
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.02;
}

.v3-legal-name {
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  line-height: 1.7;
}

.v3-legal-name span {
  display: inline-block;
  margin-top: 4px;
}

@media (max-width: 980px) {
  .home-v3 .v3-source-grid,
  .home-v3 .v3-benefits-layout,
  .home-v3 .v3-benefit-grid {
    grid-template-columns: minmax(0, 1fr) !important;
  }

  .home-v3 .v3-benefits .section-head {
    position: static;
  }

  .home-v3 .v3-benefit-card p {
    grid-column: auto;
  }
}

/* V3 responsive polish pass */
.home-v3 .v3-guides .button {
  background: #ffffff;
  border-color: #ffffff;
  color: var(--navy);
}

.home-v3 .v3-guides .button:hover {
  background: var(--light-blue);
  border-color: var(--light-blue);
  color: var(--navy);
}

.home-v3 .v2-footer p span[lang="ar"] {
  unicode-bidi: isolate;
}

@media (max-width: 680px) {
  .home-v3 .v2-process-step {
    display: block;
    text-align: left;
  }

  .home-v3 .v2-process-step h3,
  .home-v3 .v2-process-step p {
    max-width: none;
    margin-left: 0;
    margin-right: 0;
  }

  .home-v3 .v2-process-step h3 {
    margin-top: 0;
    margin-bottom: 8px;
    font-size: 24px;
    line-height: 1.12;
  }

  .home-v3 .v2-process-step p {
    font-size: 16px;
    line-height: 1.55;
  }

  .home-v3 .v3-guides {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .home-v3 .v3-guides .section-head h2 {
    font-size: clamp(34px, 10vw, 42px);
    line-height: 1.05;
  }

  .home-v3 .v3-article-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .home-v3 .v3-article-card,
  .home-v3 .v3-article-featured {
    display: grid;
    min-height: 0;
    grid-row: auto;
    background: #15111c;
    border: 1px solid rgba(255, 255, 255, 0.12);
  }

  .home-v3 .v3-article-card::after {
    display: none;
  }

  .home-v3 .v3-article-card img {
    height: 210px;
    object-fit: cover;
  }

  .home-v3 .v3-article-card span,
  .home-v3 .v3-article-card h3,
  .home-v3 .v3-article-card p,
  .home-v3 .v3-article-featured span,
  .home-v3 .v3-article-featured h3,
  .home-v3 .v3-article-featured p {
    position: static;
    display: block;
    max-width: none;
    margin: 0;
    padding-left: 18px;
    padding-right: 18px;
    color: #ffffff;
  }

  .home-v3 .v3-article-card span {
    padding-top: 18px;
    color: var(--light-blue);
  }

  .home-v3 .v3-article-card h3,
  .home-v3 .v3-article-featured h3 {
    padding-top: 8px;
    font-size: 22px;
    line-height: 1.14;
  }

  .home-v3 .v3-article-card p,
  .home-v3 .v3-article-featured p {
    display: block;
    padding-top: 10px;
    padding-bottom: 22px;
    color: rgba(255, 255, 255, 0.72);
  }

  .home-v3 .v3-guides .button {
    width: 100%;
    justify-content: center;
    margin-top: 22px;
  }
}

/* Products v3 brochure page */
.products-v3 main {
  background: var(--white);
}

.products-v3 .v3-products-hero {
  padding: clamp(64px, 8vw, 112px) 0 clamp(40px, 6vw, 72px);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.94) 0%, rgba(255, 255, 255, 0.84) 48%, rgba(255, 255, 255, 0.24) 100%),
    url("assets/product-vinyl.webp") right center / min(58vw, 780px) auto no-repeat,
    linear-gradient(180deg, #ffffff, #f3f8fc);
  border-bottom: 1px solid var(--line);
}

.products-v3 .v3-products-hero-inner {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 48px;
}

.products-v3 .v3-products-hero h1 {
  max-width: 760px;
  margin: 0;
  color: var(--navy);
  font-size: clamp(42px, 6.2vw, 82px);
  line-height: 0.96;
  letter-spacing: 0;
}

.products-v3 .v3-products-hero p {
  max-width: 640px;
  margin: 24px 0 0;
  color: #29445f;
  font-size: clamp(17px, 1.35vw, 21px);
  line-height: 1.62;
}

.products-v3 .v3-products-brochure {
  padding-top: clamp(54px, 7vw, 96px);
  background: var(--white);
}

.products-v3 .v3-brochure-grid {
  display: grid;
  gap: 22px;
}

.products-v3 .v3-brochure-card {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
  min-height: 360px;
  overflow: hidden;
  color: var(--navy);
  background: #ffffff;
  border: 1px solid var(--line);
  box-shadow: 0 20px 50px rgba(7, 24, 40, 0.06);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.products-v3 .v3-brochure-card:nth-child(even) {
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
}

.products-v3 .v3-brochure-card:nth-child(even) .v3-brochure-image {
  grid-column: 2;
  grid-row: 1;
}

.products-v3 .v3-brochure-card:nth-child(even) .v3-brochure-body {
  grid-column: 1;
  grid-row: 1;
}

.products-v3 .v3-brochure-card:hover {
  transform: translateY(-4px);
  border-color: rgba(15, 81, 150, 0.38);
  box-shadow: 0 28px 70px rgba(7, 24, 40, 0.12);
}

.products-v3 .v3-brochure-image {
  display: block;
  min-height: 100%;
  overflow: hidden;
  background: var(--navy);
}

.products-v3 .v3-brochure-image img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  display: block;
  object-fit: cover;
  transition: transform 260ms ease;
}

.products-v3 .v3-brochure-card:hover .v3-brochure-image img {
  transform: scale(1.04);
}

.products-v3 .v3-brochure-body {
  display: grid;
  align-content: center;
  gap: 18px;
  padding: clamp(30px, 5vw, 62px);
}

.products-v3 .v3-brochure-body h2 {
  max-width: 680px;
  margin: 0;
  color: var(--navy);
  font-size: clamp(34px, 4.4vw, 58px);
  line-height: 0.98;
}

.products-v3 .v3-brochure-body p {
  max-width: 620px;
  margin: 0;
  color: #4f657b;
  font-size: 18px;
  line-height: 1.65;
}

.products-v3 .v3-brochure-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  padding-top: 8px;
}

.products-v3 .v3-brochure-meta strong {
  width: 100%;
  color: var(--navy);
  font-size: 13px;
}

.products-v3 .v3-brochure-meta em {
  padding: 8px 10px;
  background: var(--soft);
  color: var(--blue);
  font-size: 12px;
  font-style: normal;
  font-weight: 900;
}

.products-v3 .v3-brochure-body .card-link {
  margin-top: 12px;
}

.products-v3 .v3-seo-section {
  background: #f5f8fb;
}

.products-v3 .v3-seo-article {
  max-width: 980px;
  margin: 0 auto;
  background: #ffffff;
  border: 1px solid var(--line);
}

.products-v3 .v3-seo-article summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: clamp(22px, 3vw, 34px);
  color: var(--navy);
  cursor: pointer;
  list-style: none;
}

.products-v3 .v3-seo-article summary::-webkit-details-marker {
  display: none;
}

.products-v3 .v3-seo-article summary span {
  font-size: clamp(24px, 3vw, 38px);
  line-height: 1.08;
  font-weight: 950;
}

.products-v3 .v3-seo-article summary strong {
  flex: 0 0 auto;
  color: var(--blue);
  font-size: 14px;
}

.products-v3 .v3-seo-copy {
  display: grid;
  gap: 18px;
  padding: 0 clamp(22px, 3vw, 34px) clamp(24px, 3vw, 36px);
  color: #405a74;
  font-size: 18px;
  line-height: 1.75;
}

.products-v3 .v3-seo-copy p {
  margin: 0;
}

@media (max-width: 860px) {
  .products-v3 .v3-products-hero {
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.92)),
      url("assets/product-vinyl.webp") right bottom / 520px auto no-repeat,
      #ffffff;
  }

  .products-v3 .v3-products-hero-inner {
    display: grid;
    gap: 26px;
  }

  .products-v3 .v3-products-hero .button {
    width: 100%;
    justify-content: center;
  }

  .products-v3 .v3-brochure-card,
  .products-v3 .v3-brochure-card:nth-child(even) {
    grid-template-columns: 1fr;
  }

  .products-v3 .v3-brochure-card:nth-child(even) .v3-brochure-image,
  .products-v3 .v3-brochure-card:nth-child(even) .v3-brochure-body {
    grid-column: auto;
    grid-row: auto;
  }

  .products-v3 .v3-brochure-image img {
    min-height: 260px;
  }

  .products-v3 .v3-seo-article summary {
    display: grid;
  }
}

/* Products v3 refinement */
.products-v3 .v3-products-hero {
  padding: clamp(42px, 5vw, 72px) 0 clamp(22px, 3vw, 34px);
  background: #ffffff;
  border-bottom: 0;
}

.products-v3 .v3-products-hero-inner {
  display: block;
}

.products-v3 .v3-products-hero h1 {
  max-width: none;
  margin: 0;
  color: var(--navy);
  font-size: clamp(42px, 5.4vw, 72px);
  line-height: 1;
}

.products-v3 .v3-products-brochure {
  padding-top: 20px;
  background: #ffffff;
}

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

.products-v3 .v3-brochure-card,
.products-v3 .v3-brochure-card:nth-child(even) {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto 1fr;
  min-height: 0;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid var(--line);
  box-shadow: none;
}

.products-v3 .v3-brochure-card:nth-child(even) .v3-brochure-image,
.products-v3 .v3-brochure-card:nth-child(even) .v3-brochure-body {
  grid-column: auto;
  grid-row: auto;
}

.products-v3 .v3-brochure-card:hover {
  transform: translateY(-3px);
  border-color: rgba(15, 81, 150, 0.35);
  box-shadow: 0 18px 42px rgba(7, 24, 40, 0.1);
}

.products-v3 .v3-brochure-image {
  aspect-ratio: 1.35 / 1;
  min-height: 0;
}

.products-v3 .v3-brochure-image img {
  min-height: 0;
  height: 100%;
}

.products-v3 .v3-brochure-body {
  min-height: 260px;
  display: flex;
  flex-direction: column;
  gap: 0;
  align-content: initial;
  padding: 24px;
}

.products-v3 .v3-brochure-body h2 {
  margin: 0 0 12px;
  color: var(--navy);
  font-size: clamp(22px, 2vw, 27px);
  line-height: 1.12;
}

.products-v3 .v3-brochure-body p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
}

.products-v3 .v3-brochure-body .card-link {
  margin-top: auto;
  padding-top: 30px;
}

.products-v3 .v3-seo-section {
  background: #f5f8fb;
}

.products-v3 .v3-seo-article {
  max-width: 980px;
  margin: 0 auto;
  padding: clamp(28px, 4vw, 44px);
  background: #ffffff;
  border: 1px solid var(--line);
}

.products-v3 .v3-seo-article h2 {
  max-width: 760px;
  margin: 0 0 18px;
  color: var(--navy);
  font-size: clamp(28px, 3.6vw, 46px);
  line-height: 1.06;
}

.products-v3 .v3-seo-toggle {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.products-v3 .v3-seo-copy {
  position: relative;
  max-height: 142px;
  overflow: hidden;
  display: grid;
  gap: 18px;
  padding: 0;
  color: #405a74;
  font-size: 18px;
  line-height: 1.75;
  transition: max-height 260ms ease;
}

.products-v3 .v3-seo-copy::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 74px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0), #ffffff 82%);
}

.products-v3 .v3-seo-toggle:checked ~ .v3-seo-copy {
  max-height: 720px;
}

.products-v3 .v3-seo-toggle:checked ~ .v3-seo-copy::after {
  display: none;
}

.products-v3 .v3-seo-read-more {
  display: inline-flex;
  margin-top: 16px;
  color: var(--blue);
  font-size: 15px;
  font-weight: 900;
  cursor: pointer;
}

.products-v3 .v3-seo-read-more .v3-less {
  display: none;
}

.products-v3 .v3-seo-toggle:checked ~ .v3-seo-read-more .v3-more {
  display: none;
}

.products-v3 .v3-seo-toggle:checked ~ .v3-seo-read-more .v3-less {
  display: inline;
}

@media (max-width: 860px) {
  .products-v3 .v3-products-hero {
    background: #ffffff;
  }

  .products-v3 .v3-brochure-grid {
    grid-template-columns: 1fr;
  }

  .products-v3 .v3-brochure-image img {
    min-height: 0;
  }

  .products-v3 .v3-brochure-body {
    min-height: 0;
  }
}

/* Products title spacing comparison pages */
.products-v3-option-a .v3-products-hero {
  padding: 46px 0 22px;
}

.products-v3-option-a .v3-products-brochure {
  padding-top: 16px;
}

.products-v3-option-b .v3-products-hero {
  padding: 56px 0 0;
}

.products-v3-option-b .v3-products-hero-inner {
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line);
}

.products-v3-option-b .v3-products-brochure {
  padding-top: 32px;
}

.products-v3-option-c .v3-products-brochure {
  padding-top: 56px;
}

.products-v3 .v3-products-inline-title {
  margin-bottom: 36px;
}

.products-v3 .v3-products-inline-title h1 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(42px, 5.4vw, 72px);
  line-height: 1;
}

@media (max-width: 860px) {
  .products-v3-option-a .v3-products-hero,
  .products-v3-option-b .v3-products-hero {
    padding-top: 34px;
  }

  .products-v3-option-c .v3-products-brochure {
    padding-top: 38px;
  }

  .products-v3 .v3-products-inline-title {
    margin-bottom: 24px;
  }
}

/* Main products page title + breadcrumb */
.products-v3:not(.products-v3-option-a):not(.products-v3-option-b):not(.products-v3-option-c) .v3-products-hero {
  padding: 46px 0 28px;
  background: #ffffff;
}

.products-v3:not(.products-v3-option-a):not(.products-v3-option-b):not(.products-v3-option-c) .v3-products-hero h1 {
  font-size: clamp(34px, 4.2vw, 52px);
  line-height: 1.05;
}

.products-v3 .v3-page-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-top: 12px;
  color: #5c6c7d;
  font-size: 15px;
  line-height: 1.4;
}

.products-v3 .v3-page-breadcrumb a {
  color: var(--blue);
  font-weight: 800;
}

.products-v3 .v3-page-breadcrumb span:last-child {
  color: var(--navy);
  font-weight: 800;
}

.products-v3:not(.products-v3-option-a):not(.products-v3-option-b):not(.products-v3-option-c) .v3-products-brochure {
  padding-top: 12px;
}

@media (max-width: 860px) {
  .products-v3:not(.products-v3-option-a):not(.products-v3-option-b):not(.products-v3-option-c) .v3-products-hero {
    padding: 34px 0 22px;
  }
}

/* Products SEO article and footer balance */
.products-v3 .v3-seo-section {
  background: #f5f8fb;
}

.products-v3 .v3-seo-article {
  max-width: none;
  margin: 0;
  padding: 0;
  background: transparent;
  border: 0;
}

.products-v3 .v3-seo-article h2 {
  max-width: 920px;
}

.products-v3 .v3-seo-copy {
  max-width: none;
}

.products-v3 .v3-seo-copy::after {
  background: linear-gradient(180deg, rgba(245, 248, 251, 0), #f5f8fb 82%);
}

.footer-grid {
  grid-template-columns: minmax(320px, 2fr) minmax(180px, 1fr) minmax(220px, 1fr);
  gap: clamp(34px, 5vw, 82px);
  align-items: start;
}

.footer p {
  max-width: 520px;
  line-height: 1.65;
}

.footer-links span {
  color: rgba(255, 255, 255, 0.72);
}

@media (max-width: 860px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

.category-crumb-bar,
.category-v3 .category-crumb-bar {
  border-bottom: 0;
}

.category-v3 .v3-products-brochure {
  padding-top: 22px;
}

/* Shared header dropdown across v3 pages */
.v2-header,
.v2-nav {
  overflow: visible;
}

.v2-dropdown {
  position: relative;
  align-self: stretch;
  display: flex;
  align-items: center;
}

.v2-dropdown .v2-dropdown-menu {
  position: absolute;
  z-index: 30;
  top: 100%;
  left: 0;
  right: auto;
  display: grid;
  grid-template-columns: minmax(220px, 1fr);
  gap: 0;
  width: 248px;
  min-width: 248px;
  padding: 0;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid var(--line);
  border-radius: 0;
  box-shadow: 0 18px 38px rgba(7, 24, 40, 0.14);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  pointer-events: none;
  transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
}

.v2-dropdown:hover .v2-dropdown-menu,
.v2-dropdown:focus-within .v2-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.v2-dropdown .v2-dropdown-menu a {
  display: block;
  min-height: 0;
  padding: 15px 18px;
  background: transparent;
  border: 0;
  border-radius: 0;
  color: var(--navy);
  font-size: 15px;
  font-weight: 850;
  line-height: 1.25;
}

.v2-dropdown .v2-dropdown-menu a:hover {
  background: #edf5fa;
}

@media (max-width: 980px) {
  .v2-dropdown {
    display: grid;
    align-self: auto;
  }

  .v2-dropdown .v2-dropdown-menu {
    position: static;
    width: 100%;
    min-width: 0;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    pointer-events: auto;
  }
}

/* SAV card cue experiment */
.card-cues-test .v3-brochure-card {
  position: relative;
  background: #ffffff;
}

.card-cues-test .v3-brochure-image {
  position: relative;
}

.card-cues-test .cue-strip {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.card-cues-test .cue-strip span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 10px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--navy);
  font-size: 12px;
  font-weight: 900;
  box-shadow: 0 10px 24px rgba(7, 24, 40, 0.18);
}

.card-cues-test .v3-brochure-body {
  position: relative;
  min-height: 260px;
  background: #ffffff;
}

.card-cues-test .v3-brochure-body p {
  margin-bottom: 22px;
}

.card-cues-test .attribute-cues {
  display: grid;
  gap: 8px;
  margin-top: auto;
}

.card-cues-test .attribute-cues span {
  display: grid;
  grid-template-columns: 62px minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  padding: 9px 10px;
  background: var(--soft);
  color: #29445f;
  font-size: 12px;
  font-weight: 900;
}

.card-cues-test .attribute-cues strong {
  color: #5d6a76;
  font-size: 11px;
  text-transform: uppercase;
}

.card-cues-test .attribute-cues em {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--navy);
  font-style: normal;
}

.card-cues-test .swatch {
  width: 13px;
  height: 13px;
  flex: 0 0 auto;
  border: 1px solid rgba(7, 24, 40, 0.18);
}

.card-cues-test .swatch-white {
  background: #ffffff;
}

.card-cues-test .swatch-grey {
  background: #aeb6bd;
}

.card-cues-test .tack-meter {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.card-cues-test .tack-meter em {
  margin-right: 3px;
  color: var(--navy);
  font-style: normal;
}

.card-cues-test .tack-meter i {
  width: 5px;
  height: 14px;
  background: rgba(15, 81, 150, 0.18);
}

.card-cues-test .tack-meter.normal i:nth-of-type(-n + 2),
.card-cues-test .tack-meter.high i {
  background: var(--blue);
}

.card-cues-test .v3-brochure-card:hover {
  border-color: var(--blue);
}

.availability-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  width: fit-content;
  min-height: 28px;
  padding: 0 10px;
  margin-bottom: 16px;
  background: #eef8f1;
  color: #176b37;
  font-size: 12px;
  font-weight: 900;
}

.availability-badge::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: currentColor;
}

.availability-badge.is-coming-soon {
  background: #eef1f5;
  color: #5d6a76;
}

.lamination-cues .future-card {
  cursor: default;
}

.lamination-cues .future-card .v3-brochure-image img,
.lamination-cues .future-card .v3-brochure-body {
  opacity: 0.72;
}

.lamination-cues .future-card:hover {
  transform: none;
  border-color: var(--line);
}

.product-detail-test .product-detail-test-hero {
  padding: 16px 0 64px;
  background: #fff;
}

.product-detail-test .crumb-bar {
  border: 0;
  box-shadow: none;
}

.product-detail-test .crumb-inner {
  border: 0;
}

.product-detail-test .detail-test-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(420px, 0.95fr);
  gap: 36px;
  align-items: start;
}

.product-detail-test .detail-gallery-main {
  aspect-ratio: 1.16;
  max-height: 650px;
  overflow: hidden;
  background: #071c30;
  border: 1px solid var(--line);
}

.product-detail-test .detail-gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.product-detail-test .detail-gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 14px;
}

.product-detail-test .detail-gallery-thumbs button {
  appearance: none;
  border: 1px solid var(--line);
  background: #f5f8fb;
  padding: 0;
  aspect-ratio: 1.2;
  cursor: pointer;
  overflow: hidden;
}

.product-detail-test .detail-gallery-thumbs button.is-active {
  border-color: var(--brand-blue);
  box-shadow: inset 0 0 0 2px var(--brand-blue);
}

.product-detail-test .detail-gallery-thumbs img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.product-detail-test .detail-gallery-thumbs .thumb-crop-a {
  object-position: 30% 38%;
  transform: scale(1.25);
}

.product-detail-test .detail-gallery-thumbs .thumb-crop-b {
  object-position: 72% 54%;
  transform: scale(1.35);
}

.product-detail-test .gallery-upsell {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.product-detail-test .gallery-upsell h2 {
  margin: 0 0 16px;
  color: var(--ink);
  font-size: 24px;
  line-height: 1.05;
}

.product-detail-test .gallery-upsell p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.product-detail-test .gallery-upsell-items {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

.product-detail-test .gallery-upsell-items a {
  display: grid;
  grid-template-columns: 86px minmax(0, 1fr);
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid var(--line);
  transition: background 180ms ease;
}

.product-detail-test .gallery-upsell-items a:hover {
  background: #f6f9fc;
}

.product-detail-test .gallery-upsell-items img {
  width: 86px;
  height: 100%;
  min-height: 94px;
  object-fit: cover;
}

.product-detail-test .gallery-upsell-items span {
  padding: 14px;
}

.product-detail-test .gallery-upsell-items strong {
  display: block;
  margin-bottom: 6px;
  color: var(--ink);
  font-size: 15px;
  line-height: 1.25;
}

.product-detail-test .gallery-upsell-items em {
  color: var(--muted);
  font-size: 13px;
  font-style: normal;
  line-height: 1.4;
}

.product-detail-test .product-spec-table {
  display: grid;
  gap: 0;
  margin: 32px 0 0;
  border-top: 1px solid var(--line);
}

.product-detail-test .product-spec-table div {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 24px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.product-detail-test .product-spec-table dt {
  color: var(--ink);
  font-size: 16px;
  font-weight: 900;
}

.product-detail-test .product-spec-table dd {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
}

.product-detail-test .detail-quote-panel {
  position: sticky;
  top: 104px;
  border: 1px solid var(--line);
  background: #fff;
  padding: 32px;
  box-shadow: 0 20px 55px rgba(8, 28, 48, 0.08);
}

.product-detail-test .availability-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  padding: 0 12px;
  background: #eef8f1;
  color: #176b37;
  font-size: 13px;
  font-weight: 800;
}

.product-detail-test .availability-pill span {
  width: 9px;
  height: 9px;
  background: #20a455;
  border-radius: 999px;
  box-shadow: 0 0 0 4px rgba(32, 164, 85, 0.12);
}

.product-detail-test .detail-family {
  margin: 0 0 8px;
  color: var(--brand-blue);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.product-detail-test .detail-title-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 14px;
}

.product-detail-test .detail-title-row .availability-pill {
  flex: 0 0 auto;
  margin-top: 6px;
}

.product-detail-test .detail-quote-panel h1 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(38px, 4.2vw, 58px);
  line-height: 0.95;
  letter-spacing: 0;
}

.product-detail-test .detail-intro {
  margin: 0 0 24px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
}

.product-detail-test .detail-fast-facts {
  display: grid;
  gap: 0;
  margin: 0 0 22px;
  border-top: 1px solid var(--line);
}

.product-detail-test .detail-fast-facts div {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 18px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.product-detail-test .detail-fast-facts dt {
  color: var(--ink);
  font-weight: 900;
}

.product-detail-test .detail-fast-facts dd {
  margin: 0;
  color: var(--muted);
}

.product-detail-test .quote-selection-box {
  margin-bottom: 0;
  padding: 18px;
  background: linear-gradient(180deg, #f8fbfe 0%, #f2f7fc 100%);
  border: 1px solid var(--line);
}

.product-detail-test .quote-selection-box.is-hidden {
  display: none;
}

.product-detail-test .quote-selection-box strong {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
  color: var(--ink);
  font-size: 13px;
}

.product-detail-test .quote-selection-box > strong::after {
  content: none;
}

.product-detail-test .selection-summary-list {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

.product-detail-test .selection-summary-line {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}

.product-detail-test .selection-summary-line:last-child {
  border-bottom: 0;
}

.product-detail-test .selection-summary-line p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.product-detail-test .selection-summary-line p strong {
  display: block;
  margin: 0 0 2px;
  color: var(--ink);
  font-size: 15px;
}

.product-detail-test .selection-summary-line button {
  border: 0;
  background: transparent;
  color: var(--brand-blue);
  cursor: pointer;
  font: inherit;
  font-size: 13px;
  font-weight: 900;
}

.product-detail-test .selection-summary-line button:hover {
  text-decoration: underline;
}

.product-detail-test .detail-quote-panel .button {
  width: 100%;
  justify-content: center;
  margin-top: 10px;
}

.product-detail-test .detail-secondary-action.button-secondary {
  background: #fff;
}

.product-detail-test .quantity-action-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 178px;
  gap: 12px;
  align-items: end;
}

.product-detail-test .quantity-action-row .detail-primary-action {
  min-height: 44px;
  margin-top: 0;
}

.product-detail-test .quote-selection-box:not(.is-hidden) + .detail-secondary-action {
  margin-top: -1px;
  border-color: var(--line);
  border-top: 0;
  border-radius: 0;
  background: #f8fbfe;
}

.product-detail-test .quote-selection-box:not(.is-hidden) + .detail-secondary-action:hover {
  background: #eef6fd;
}

.product-detail-test .detail-secondary-action + .detail-primary-action {
  margin-top: 12px;
}

.product-detail-test .detail-primary-action.is-hidden {
  display: none;
}

.product-detail-test .detail-primary-action:disabled,
.product-detail-test .detail-secondary-action:disabled {
  cursor: not-allowed;
  opacity: 0.55;
}

.product-detail-test .detail-note {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.product-detail-test .detail-application-section {
  background: #f3f6f9;
}

.product-detail-test .detail-split,
.product-detail-test .detail-related-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.75fr) minmax(0, 1.25fr);
  gap: 52px;
  align-items: start;
}

.product-detail-test h2 {
  margin: 0 0 14px;
  color: var(--ink);
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1;
  letter-spacing: 0;
}

.product-detail-test .detail-split > div > p,
.product-detail-test .detail-seo-article p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.75;
}

.product-detail-test .application-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.product-detail-test .application-grid article {
  min-height: 250px;
  background: #fff;
  border: 1px solid var(--line);
  overflow: hidden;
}

.product-detail-test .application-grid article img {
  width: 100%;
  height: 126px;
  object-fit: cover;
  display: block;
}

.product-detail-test .application-grid h3 {
  margin: 20px 20px 10px;
  color: var(--ink);
  font-size: 22px;
}

.product-detail-test .application-grid p {
  margin: 0 20px 22px;
  color: var(--muted);
  line-height: 1.55;
}

.product-detail-test .detail-seo-section {
  background: #fff;
}

.product-detail-test .detail-article-wrap {
  max-width: 1120px;
}

.product-detail-test .detail-seo-article {
  border-top: 0;
  padding-top: 0;
}

.product-detail-test .detail-seo-article h2 {
  max-width: 780px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line);
}

.product-detail-test .detail-seo-article .v3-seo-copy {
  max-width: 1040px;
}

.product-detail-test .detail-seo-article .v3-seo-copy::after {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0), #ffffff 82%);
}

.product-detail-test .detail-related-section {
  background: #071422;
  color: #fff;
}

.product-detail-test .detail-related-section h2 {
  color: #fff;
  font-size: clamp(30px, 3.4vw, 44px);
}

.product-detail-test .detail-related-section p {
  max-width: 390px;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 17px;
  line-height: 1.65;
}

.product-detail-test .blog-mini-grid {
  display: grid;
  gap: 14px;
}

.product-detail-test .blog-mini-grid a {
  display: grid;
  grid-template-columns: 86px minmax(0, 1fr);
  color: inherit;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.16);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.product-detail-test .blog-mini-grid a:hover {
  transform: translateY(-3px);
  border-color: rgba(108, 183, 239, 0.65);
  background: rgba(255, 255, 255, 0.1);
}

.product-detail-test .blog-mini-grid img {
  width: 86px;
  height: 100%;
  min-height: 82px;
  object-fit: cover;
}

.product-detail-test .blog-mini-grid a > span {
  padding: 18px;
}

.product-detail-test .blog-mini-grid strong {
  display: block;
  margin-bottom: 8px;
  color: #fff;
  font-size: 18px;
  line-height: 1.25;
}

.product-detail-test .blog-mini-grid em {
  color: rgba(255, 255, 255, 0.72);
  font-style: normal;
  line-height: 1.5;
}

.attribute-modal {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 2000;
}

.attribute-modal[aria-hidden="false"] {
  display: block;
}

.attribute-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 17, 30, 0.62);
}

.attribute-modal-dialog {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(560px, calc(100vw - 32px));
  transform: translate(-50%, -50%);
  background: #fff;
  padding: 28px;
  box-shadow: 0 30px 80px rgba(5, 17, 30, 0.25);
}

.attribute-modal-head {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: flex-start;
  margin-bottom: 26px;
}

.attribute-modal-head p {
  margin: 0 0 6px;
  color: var(--brand-blue);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.attribute-modal-head h2 {
  margin: 0;
  color: var(--ink);
  font-size: 30px;
}

.attribute-modal-head button {
  border: 1px solid var(--line);
  background: #fff;
  padding: 10px 12px;
  color: var(--ink);
  font-weight: 800;
  cursor: pointer;
}

.attribute-modal-head .modal-close {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  padding: 0;
  font-size: 0;
}

.attribute-modal-head .modal-close::before {
  content: "x";
  font-size: 18px;
  line-height: 1;
}

.attribute-step {
  margin-bottom: 22px;
}

.attribute-step:not(.is-active) {
  display: none;
}

.attribute-group > strong,
.attribute-quantity label {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  color: var(--ink);
  font-weight: 900;
}

.attribute-group > strong span,
.attribute-quantity label span {
  display: inline-grid;
  place-items: center;
  width: 24px;
  height: 24px;
  background: #e8f3ff;
  color: var(--brand-blue);
  font-size: 12px;
}

.attribute-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.attribute-options button {
  min-height: 48px;
  border: 1px solid var(--line);
  background: #f6f9fc;
  color: var(--ink);
  font-weight: 900;
  cursor: pointer;
}

.attribute-options button.is-selected {
  border-color: var(--brand-blue);
  background: #e8f3ff;
  box-shadow: inset 0 0 0 2px var(--brand-blue);
}

.attribute-quantity {
  margin-bottom: 26px;
}

.attribute-quantity > div {
  display: grid;
  grid-template-columns: 52px 1fr 52px;
  width: min(280px, 100%);
  border: 1px solid var(--line);
}

.attribute-quantity button,
.attribute-quantity input {
  width: 100%;
  min-width: 0;
  min-height: 48px;
  border: 0;
  background: #fff;
  color: var(--ink);
  font-size: 16px;
  font-weight: 900;
  text-align: center;
}

.attribute-quantity input::-webkit-outer-spin-button,
.attribute-quantity input::-webkit-inner-spin-button {
  appearance: none;
  margin: 0;
}

.attribute-quantity input {
  -moz-appearance: textfield;
}

.attribute-quantity button {
  cursor: pointer;
  background: #f6f9fc;
}

.attribute-quantity input {
  border-left: 1px solid var(--line);
  border-right: 1px solid var(--line);
}

.attribute-modal-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}

.attribute-modal-actions .button:disabled {
  cursor: not-allowed;
  opacity: 0.55;
}

.modal-open {
  overflow: hidden;
}

@media (max-width: 980px) {
  .product-detail-test .detail-test-layout,
  .product-detail-test .detail-split,
  .product-detail-test .detail-related-grid {
    grid-template-columns: 1fr;
  }

  .product-detail-test .detail-quote-panel {
    position: static;
  }

  .product-detail-test .application-grid {
    grid-template-columns: 1fr;
  }

  .product-detail-test .gallery-upsell {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .product-detail-test .product-detail-test-hero {
    padding: 14px 0 44px;
  }

  .product-detail-test .detail-gallery-main {
    aspect-ratio: 1;
  }

  .product-detail-test .detail-gallery-thumbs {
    gap: 8px;
  }

  .product-detail-test .detail-quote-panel {
    padding: 22px;
  }

  .product-detail-test .detail-quote-panel h1 {
    font-size: 42px;
  }

  .product-detail-test .detail-title-row {
    display: grid;
    gap: 10px;
  }

  .product-detail-test .detail-title-row .availability-pill {
    width: fit-content;
    margin-top: 0;
  }

  .product-detail-test .quantity-action-row {
    grid-template-columns: 1fr;
  }

  .product-detail-test .detail-fast-facts div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .product-detail-test .product-spec-table div {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .product-detail-test .gallery-upsell-items {
    grid-template-columns: 1fr;
  }

  .attribute-options {
    grid-template-columns: 1fr;
  }

  .attribute-modal-actions {
    display: grid;
  }
}

/* WhatsApp inquiry flow */
.inquiry-detail-page .detail-test-layout {
  grid-template-columns: minmax(0, 1.04fr) minmax(430px, 0.96fr);
}

.inquiry-detail-page .inline-selector {
  display: grid;
  gap: 18px;
  margin: 26px 0 18px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.inquiry-detail-page .inline-option-group {
  display: grid;
  gap: 10px;
}

.inquiry-detail-page .option-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
}

.inquiry-detail-page .option-head strong {
  color: var(--ink);
  font-weight: 900;
}

.inquiry-detail-page .option-head span {
  color: var(--muted);
  font-size: 14px;
}

.inquiry-detail-page .inline-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.inquiry-detail-page .inline-options button {
  min-height: 46px;
  border: 1px solid var(--line);
  background: #f7f9fb;
  color: var(--ink);
  font: inherit;
  font-weight: 850;
  cursor: pointer;
  transition: border-color 160ms ease, background 160ms ease, transform 160ms ease;
}

.inquiry-detail-page .inline-options button:hover {
  transform: translateY(-1px);
  border-color: rgba(15, 81, 150, 0.55);
}

.inquiry-detail-page .inline-options button.is-selected {
  border-color: var(--brand-blue);
  background: #e8f3ff;
  box-shadow: inset 0 0 0 1px var(--brand-blue);
}

.inquiry-detail-page .inline-quantity {
  margin: 0;
}

.inquiry-detail-page .inline-quantity > div {
  grid-template-columns: 56px minmax(0, 1fr) 56px;
  max-width: none;
}

.inquiry-detail-page .inquiry-view-link.is-hidden,
.inquiry-list-page [data-inquiry-continue].is-hidden {
  display: none;
}

.inquiry-detail-page .detail-secondary-action.button-secondary {
  margin-top: 10px;
}

.inquiry-detail-page .detail-secondary-action.button-primary {
  margin-top: 10px;
}

.cart-section {
  padding-top: 34px;
}

.inquiry-progress {
  --progress-blue: #155ea8;
  --progress-muted: #d9e0e8;
  --progress-label: #8f98a3;
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  width: min(500px, 100%);
  margin: 0 0 26px;
  padding: 0;
}

.inquiry-progress::before {
  content: "";
  position: absolute;
  left: calc(12.5% + 6px);
  right: calc(12.5% + 6px);
  top: 6px;
  height: 2px;
  background: var(--progress-muted);
  z-index: 0;
}

.inquiry-progress::after {
  content: "";
  position: absolute;
  left: calc(12.5% + 6px);
  top: 6px;
  width: 0;
  height: 2px;
  background: var(--progress-blue);
  transition: width 220ms ease;
  z-index: 0;
}

.inquiry-progress[data-step="2"]::after {
  width: calc(25% - 12px);
}

.inquiry-progress[data-step="3"]::after {
  width: calc(50% - 12px);
}

.inquiry-progress[data-step="4"]::after {
  width: calc(75% - 12px);
}

.inquiry-progress span {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  min-width: 0;
  color: var(--progress-label);
  font-size: 11px;
  font-weight: 900;
  line-height: 1.2;
  text-align: center;
}

.inquiry-progress strong {
  position: relative;
  z-index: 3;
  display: grid;
  place-items: center;
  width: 12px;
  height: 12px;
  border: 2px solid var(--progress-muted);
  border-radius: 50%;
  background: var(--white);
  color: transparent;
  font-size: 0;
  line-height: 1;
  box-shadow: 0 0 0 5px var(--white);
  transition: border-color 180ms ease, background 180ms ease, color 180ms ease;
}

.inquiry-progress .is-complete strong,
.inquiry-progress .is-active strong {
  border-color: var(--progress-blue);
}

.inquiry-progress .is-complete strong {
  background: var(--progress-blue);
}

.inquiry-progress .is-active {
  color: var(--progress-blue);
}

.inquiry-progress .is-active strong {
  background: var(--white);
}

.inquiry-progress .is-complete {
  color: var(--progress-blue);
}

.inquiry-progress-crumb {
  width: min(520px, 100%);
  margin: 0;
}

.inquiry-progress-crumb::before,
.inquiry-progress-crumb::after {
  top: 7px;
}

.inquiry-progress-crumb span {
  gap: 7px;
  font-size: 11px;
}

.inquiry-progress-crumb strong {
  width: 14px;
  height: 14px;
  box-shadow: 0 0 0 4px var(--white);
}

.inquiry-list-page .crumb-inner,
.send-inquiry-page .crumb-inner {
  min-height: 64px;
}

.inquiry-list-page .cart-section,
.send-inquiry-page .send-inquiry-section {
  padding-top: 30px;
}

.inquiry-list-page .cart-section .inquiry-left-head,
.send-inquiry-page .inquiry-left-head {
  margin-bottom: 24px;
}

.inquiry-detail-page .sidebar-upsell {
  margin-top: 28px;
  padding-top: 22px;
}

.inquiry-detail-page .detail-seo-article h2::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  margin-top: 22px;
  background: var(--line);
}

.inquiry-detail-page .detail-seo-article .v3-seo-copy::after {
  background: linear-gradient(180deg, rgba(255,255,255,0), #fff 86%);
}

.inquiry-submit-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 410px;
  gap: 36px;
  align-items: start;
}

.send-inquiry-section {
  padding-top: 48px;
}

.cart-section .inquiry-left-head {
  margin-bottom: 30px;
}

.inquiry-left-head {
  margin-bottom: 28px;
}

.inquiry-left-head h1 {
  margin: 0;
  max-width: 560px;
  color: var(--ink);
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1;
}

.inquiry-left-head p {
  margin: 14px 0 0;
  max-width: 560px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.55;
}

.send-crumb-bar {
  box-shadow: none;
}

.inquiry-submit-panel {
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.panel-title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 16px;
}

.panel-title-row h2,
.panel-title-row h3 {
  margin: 0;
}

.panel-title-row a,
.panel-title-row button {
  border: 0;
  background: transparent;
  color: var(--brand-blue);
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.inquiry-action-panel {
  position: sticky;
  top: 102px;
  display: grid;
  gap: 14px;
}

.inquiry-path-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 24px;
  border: 1px solid var(--line);
  background: var(--white);
}

.inquiry-path-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.inquiry-path-actions {
  display: grid;
  gap: 10px;
}

.optional-note {
  border-top: 1px solid var(--line);
  padding-top: 4px;
}

.optional-note summary {
  cursor: pointer;
  color: var(--brand-blue);
  font-weight: 900;
}

.optional-note .field {
  margin-top: 12px;
}

.callback-phone-field {
  max-height: 120px;
  overflow: hidden;
  opacity: 1;
  transform: translateY(0);
  transition: max-height 220ms ease, opacity 220ms ease, transform 220ms ease;
}

.callback-phone-field.is-collapsed {
  max-height: 0;
  opacity: 0;
  transform: translateY(-6px);
  pointer-events: none;
}

.primary-path h2 {
  margin: 0;
  color: var(--ink);
  font-size: 28px;
}

.checkout-items {
  display: grid;
  gap: 10px;
}

.checkout-item {
  display: grid;
  grid-template-columns: 82px minmax(0, 1fr);
  gap: 6px 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}

.checkout-item::before {
  content: "";
  grid-column: 1;
  grid-row: 1 / span 3;
  width: 82px;
  min-height: 82px;
  background: var(--checkout-thumb, #eef3f7);
  background-size: cover;
  background-position: center;
}

.checkout-item strong,
.checkout-item span,
.checkout-item em {
  grid-column: 2;
}

.checkout-item strong {
  color: var(--ink);
  font-weight: 900;
}

.checkout-item span,
.checkout-item em {
  color: var(--muted);
  font-style: normal;
}

.checkout-mini-summary {
  margin-top: 18px;
  padding: 14px 0;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: var(--muted);
}

.checkout-mini-summary strong {
  color: var(--ink);
}

.thank-you-section {
  min-height: 420px;
  display: grid;
  align-items: center;
}

.thank-you-wrap {
  display: grid;
  grid-template-columns: minmax(0, 620px);
}

.thank-you-copy {
  display: grid;
  gap: 18px;
}

.thank-you-copy .availability-pill {
  margin: 0;
  width: max-content;
}

.thank-you-copy h1 {
  margin: 0;
  max-width: 620px;
  color: var(--ink);
  font-size: clamp(42px, 5vw, 68px);
  line-height: 0.98;
}

.thank-you-copy p {
  margin: 0;
  max-width: 560px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
}

.thank-you-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 6px;
}

.compact-form-grid {
  grid-template-columns: 1fr;
}

.callback-modal[hidden] {
  display: none;
}

.callback-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 24px;
}

.callback-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(7, 22, 35, 0.62);
}

.callback-modal-dialog {
  position: relative;
  z-index: 1;
  width: min(520px, 100%);
  display: grid;
  gap: 18px;
  padding: 28px;
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: 0 24px 70px rgba(7, 22, 35, 0.28);
}

.callback-modal-head {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: start;
}

.callback-modal-head span {
  display: block;
  margin-bottom: 8px;
  color: var(--brand-blue);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.callback-modal-head h2 {
  margin: 0;
  color: var(--ink);
  font-size: 30px;
  line-height: 1.05;
}

.callback-modal-head button {
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--ink);
  cursor: pointer;
  font-weight: 900;
}

.callback-modal-dialog p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

[data-whatsapp-link].is-disabled {
  opacity: 0.55;
  pointer-events: auto;
}

.cart-item .mini-visual {
  object-fit: cover;
  display: block;
}

.v2-nav-actions {
  position: relative;
}

.inquiry-preview-trigger {
  font: inherit;
  cursor: pointer;
}

.inquiry-preview-popover {
  position: absolute;
  top: calc(100% + 14px);
  right: 0;
  z-index: 40;
  width: min(380px, calc(100vw - 32px));
  padding: 18px;
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: 0 20px 46px rgba(8, 22, 36, 0.18);
  color: var(--ink);
}

.inquiry-preview-popover::before {
  content: "";
  position: absolute;
  top: -8px;
  right: 34px;
  width: 14px;
  height: 14px;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  background: var(--white);
  transform: rotate(45deg);
}

.inquiry-preview-head,
.inquiry-preview-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.inquiry-preview-head span,
.inquiry-preview-more,
.inquiry-preview-empty p {
  color: var(--muted);
}

.inquiry-preview-list {
  display: grid;
  gap: 0;
  margin: 14px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.inquiry-preview-item {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 12px;
  padding: 12px 0;
  color: inherit;
  text-decoration: none;
}

.inquiry-preview-item + .inquiry-preview-item {
  border-top: 1px solid var(--line);
}

.inquiry-preview-item img {
  width: 54px;
  height: 54px;
  object-fit: cover;
}

.inquiry-preview-item strong,
.inquiry-preview-item em {
  display: block;
}

.inquiry-preview-item em {
  margin-top: 2px;
  color: var(--muted);
  font-style: normal;
  font-size: 13px;
  line-height: 1.35;
}

.inquiry-preview-actions {
  margin-top: 14px;
}

.inquiry-preview-actions .button {
  min-width: 0;
  flex: 1;
}

.inquiry-preview-empty {
  display: grid;
  gap: 10px;
}

@media (max-width: 980px) {
  .inquiry-submit-layout {
    grid-template-columns: 1fr;
  }

  .inquiry-action-panel {
    position: static;
  }
}

@media (max-width: 640px) {
  .inquiry-detail-page .inline-options {
    grid-template-columns: 1fr;
  }

  .inquiry-detail-page .inline-quantity > div {
    max-width: none;
  }

  .cart-section {
    padding-top: 26px;
  }

  .inquiry-progress {
    width: 100%;
    margin-bottom: 22px;
  }

  .inquiry-progress span {
    gap: 8px;
    font-size: 10px;
    line-height: 1.2;
  }

  .inquiry-progress strong {
    width: 10px;
    height: 10px;
    box-shadow: 0 0 0 4px var(--white);
  }

  .cart-item {
    grid-template-columns: 64px minmax(0, 1fr);
  }

  .cart-item .qty-control,
  .cart-item .remove-button {
    grid-column: 2;
  }

  .send-inquiry-section {
    padding-top: 36px;
  }

  .inquiry-left-head h1 {
    font-size: 42px;
  }

  .checkout-item {
    grid-template-columns: 64px minmax(0, 1fr);
  }

  .checkout-item::before {
    width: 64px;
    min-height: 64px;
  }

  .inquiry-preview-popover {
    position: fixed;
    inset: auto 12px 12px;
    width: auto;
    max-height: calc(100vh - 90px);
    overflow: auto;
  }

  .inquiry-preview-popover::before {
    display: none;
  }
}

/* Mobile inquiry flow cleanup */
@media (max-width: 760px) {
  .inquiry-list-page .crumb-inner,
  .send-inquiry-page .crumb-inner {
    min-height: auto;
    padding: 12px 0 14px;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  .inquiry-list-page .crumb-back,
  .send-inquiry-page .crumb-back {
    align-self: flex-start;
    font-size: 13px;
    line-height: 1.25;
  }

  .inquiry-progress-crumb {
    width: min(360px, 100%);
    align-self: center;
    margin: 2px auto 0;
  }

  .inquiry-progress-crumb span {
    gap: 5px;
    font-size: 9px;
    line-height: 1.1;
    text-align: center;
  }

  .inquiry-progress-crumb strong {
    width: 12px;
    height: 12px;
    font-size: 0;
    box-shadow: 0 0 0 3px var(--white);
  }

  .inquiry-list-page .cart-section,
  .send-inquiry-page .send-inquiry-section {
    padding-top: 22px;
  }

  .inquiry-list-page .cart-layout,
  .send-inquiry-page .inquiry-submit-layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .inquiry-action-panel,
  .summary {
    position: static;
  }

  .cart-item {
    grid-template-columns: 64px minmax(0, 1fr) 40px;
    gap: 10px 12px;
    align-items: start;
    padding: 14px;
  }

  .cart-item .mini-visual {
    grid-column: 1;
    grid-row: 1;
    width: 64px;
    height: 64px;
  }

  .cart-item > div:not(.qty-control) {
    grid-column: 2;
    grid-row: 1;
    min-width: 0;
  }

  .cart-item .qty-control {
    grid-column: 2 / 4;
    grid-row: 2;
    width: 100%;
    max-width: none;
  }

  .cart-item .remove-button {
    grid-column: 3;
    grid-row: 1;
    justify-self: end;
    align-self: start;
    width: 38px;
    height: 38px;
  }

  .inquiry-left-head h1 {
    font-size: clamp(38px, 12vw, 46px);
    line-height: 0.98;
  }

  .inquiry-left-head p {
    font-size: 16px;
    line-height: 1.5;
  }

  .checkout-item {
    grid-template-columns: 64px minmax(0, 1fr);
    gap: 10px 12px;
  }

  .checkout-item::before {
    width: 64px;
    min-height: 64px;
  }

  .product-detail-test .crumb-inner {
    min-height: auto;
    align-items: flex-start;
    gap: 8px;
    padding: 10px 0;
  }

  .product-detail-test .breadcrumbs {
    max-width: 100%;
    overflow-x: auto;
    white-space: nowrap;
    scrollbar-width: thin;
  }

  .product-detail-test .crumb-back {
    align-self: flex-start;
    font-size: 13px;
    line-height: 1.25;
  }

  .product-detail-test .product-detail-test-hero {
    padding: 12px 0 42px;
  }

  .product-detail-test .detail-test-layout,
  .inquiry-detail-page .detail-test-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) !important;
    gap: 18px;
  }

  .product-detail-test .detail-gallery {
    display: contents;
  }

  .product-detail-test .detail-gallery-main {
    order: 1;
    aspect-ratio: 1;
    max-height: none;
  }

  .product-detail-test .detail-gallery-thumbs {
    order: 2;
    gap: 8px;
    margin-top: -6px;
  }

  .product-detail-test .detail-quote-panel {
    order: 3;
    position: static;
    width: 100%;
    padding: 22px;
    box-shadow: none;
  }

  .product-detail-test .product-spec-table {
    order: 4;
    margin-top: 6px;
  }

  .product-detail-test .detail-title-row {
    align-items: flex-start;
    gap: 10px;
  }

  .product-detail-test .detail-quote-panel h1 {
    font-size: clamp(38px, 12vw, 46px);
    line-height: 1;
  }

  .product-detail-test .detail-intro {
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 18px;
  }

  .inquiry-detail-page .inline-selector {
    gap: 14px;
    margin: 20px 0 14px;
    padding-top: 16px;
  }

  .inquiry-detail-page .inline-options {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .inquiry-detail-page .inline-options button {
    min-height: 42px;
    padding: 9px 8px;
  }

  .product-detail-test .quantity-action-row {
    grid-template-columns: 1fr;
  }

  .inquiry-detail-page .inline-quantity > div {
    grid-template-columns: 56px minmax(0, 1fr) 56px;
  }

  .product-detail-test .product-spec-table div {
    grid-template-columns: minmax(110px, 0.65fr) minmax(0, 1fr);
    gap: 14px;
    padding: 14px 0;
  }

  .product-detail-test .product-spec-table dt,
  .product-detail-test .product-spec-table dd {
    font-size: 15px;
  }
}

@media (max-width: 420px) {
  .inquiry-progress-crumb {
    width: 100%;
  }

  .inquiry-progress-crumb span {
    font-size: 8px;
  }

  .cart-item {
    grid-template-columns: 58px minmax(0, 1fr) 36px;
    padding: 12px;
  }

  .cart-item .mini-visual {
    width: 58px;
    height: 58px;
  }

  .cart-title {
    font-size: 15px;
  }

  .cart-detail {
    font-size: 12px;
    line-height: 1.35;
  }

  .product-detail-test .detail-quote-panel {
    padding: 18px;
  }

  .inquiry-detail-page .inline-options button {
    font-size: 14px;
  }

  .product-detail-test .product-spec-table div {
    grid-template-columns: 1fr;
    gap: 4px;
  }
}

.page-crumb-bar {
  background: var(--white);
  border-bottom: 0;
}

.page-crumb-bar .crumb-inner {
  min-height: 52px;
  border-bottom: 0;
}

.blog-body-head {
  max-width: 640px;
  margin: 0 0 32px;
}

.blog-body-head h1 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(40px, 5vw, 56px);
  line-height: 0.96;
  letter-spacing: 0;
}

.blog-body-head p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
}

.nav-call-button,
.inquiry-icon-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.nav-call-button svg,
.inquiry-icon-button svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.inquiry-icon-button {
  min-width: 46px;
  overflow: hidden;
}

.inquiry-icon-button .inquiry-list-label {
  max-width: 0;
  opacity: 0;
  overflow: hidden;
  white-space: nowrap;
  transition: max-width 0.2s ease, opacity 0.16s ease;
}

.inquiry-icon-button:hover .inquiry-list-label,
.inquiry-icon-button:focus-visible .inquiry-list-label,
.inquiry-icon-button[aria-expanded="true"] .inquiry-list-label {
  max-width: 96px;
  opacity: 1;
}

.inquiry-count-pill:not(:empty) {
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--brand);
  color: var(--white);
  font-size: 11px;
  line-height: 1;
}

@media (max-width: 980px) {
  .inquiry-icon-button .inquiry-list-label {
    max-width: none;
    opacity: 1;
  }
}

@media (max-width: 640px) {
  .blog-body-head h1 {
    font-size: 38px;
  }

  .blog-body-head p {
    font-size: 16px;
  }
}
