:root {
  --ink: #102033;
  --muted: #637083;
  --soft: #f3f7f9;
  --surface: #ffffff;
  --line: #dce5ea;
  --line-strong: #b9c8d1;
  --marine: #006a8e;
  --brand: var(--marine);
  --marine-deep: #024c6b;
  --aqua: #00a7b5;
  --safety: #e8a236;
  --green: #1f7f68;
  --danger: #cc4b37;
  --shadow: 0 12px 32px rgba(16, 32, 51, 0.08), 0 1px 2px rgba(16, 32, 51, 0.08);
  --radius: 8px;
  --container: 1200px;
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--soft);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

body.is-menu-open {
  overflow: hidden;
}

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

button,
input,
textarea {
  font: inherit;
}

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

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

.skip-link:focus {
  width: auto;
  height: auto;
  margin: 12px;
  padding: 10px 14px;
  clip: auto;
  z-index: 1000;
  background: var(--ink);
  color: #fff;
  border-radius: var(--radius);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.topbar {
  background: var(--ink);
  color: #dce9ee;
  font-size: 13px;
}

.topbar__inner {
  width: min(var(--container), calc(100% - 32px));
  min-height: 38px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 18px;
}

.topbar__inner span {
  color: #aebfc8;
}

.topbar__quote {
  margin-left: auto;
  color: #fff;
  font-weight: 700;
}

.nav {
  width: min(var(--container), calc(100% - 32px));
  height: 76px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 26px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
}

.brand img {
  height: 48px;
  width: auto;
  object-fit: contain;
}

.brand__text-group {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 2px;
}

.brand--text {
  width: 230px;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 2px;
}

.brand__name {
  display: block;
  color: var(--marine-deep);
  font-size: 25px;
  font-weight: 950;
  line-height: 1;
  letter-spacing: 0;
}

.brand__tagline {
  display: block;
  max-width: 230px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
  line-height: 1.15;
  text-transform: uppercase;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 6px;
  height: 100%;
}

.nav-item {
  height: 100%;
  display: flex;
  align-items: center;
}

.nav-item > a,
.nav-search {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  color: #24374b;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 700;
}

.nav-item > a:hover,
.nav-item > a:focus-visible,
.nav-search:hover,
.nav-search:focus-visible {
  background: #edf5f8;
  color: var(--marine-deep);
  outline: none;
}

.nav__actions {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 10px;
}

.site-header .nav-toggle,
.menu-toggler {
  display: none;
  flex-direction: column;
  gap: 4px;
}

.nav-toggle span:not(.sr-only),
.menu-toggler span:not(.sr-only) {
  width: 18px;
  height: 2px;
  background: currentColor;
}

.mega-menu,
.catalog-menu {
  position: absolute;
  left: 50%;
  top: 114px;
  transform: translateX(-50%);
  width: min(1120px, calc(100vw - 32px));
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  translate: 0 8px;
  transition: opacity 160ms ease, translate 160ms ease;
}

.catalog-menu {
  left: auto;
  right: max(16px, calc((100vw - var(--container)) / 2));
  width: 240px;
  transform: none;
  padding: 8px;
}

.nav-item--mega:hover .mega-menu,
.nav-item--mega:focus-within .mega-menu,
.nav-item--catalog:hover .catalog-menu,
.nav-item--catalog:focus-within .catalog-menu {
  opacity: 1;
  pointer-events: auto;
  translate: 0 0;
}

.mega-menu__inner {
  display: grid;
  grid-template-columns: 280px 1fr;
  min-height: 420px;
}

.mega-menu__aside {
  padding: 24px;
  border-right: 1px solid var(--line);
  background: #f9fbfc;
}

.mega-menu__aside h3,
.mega-card h4,
.footer h3 {
  margin: 0;
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.mega-menu__aside p {
  margin: 10px 0 18px;
  color: var(--muted);
  font-size: 14px;
}

.mega-search {
  width: 100%;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0 12px;
  outline-color: var(--aqua);
}

.mega-menu__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  max-height: 520px;
  overflow: auto;
}

.mega-card {
  min-height: 146px;
  padding: 16px;
  background: #fff;
}

.mega-card a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
}

.mega-card ul {
  margin: 10px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 5px;
}

.mega-card li {
  color: var(--muted);
  font-size: 13px;
}

.catalog-menu a {
  display: block;
  padding: 10px 12px;
  border-radius: 6px;
  color: #31455b;
  font-weight: 700;
}

.catalog-menu a:hover,
.catalog-menu a:focus-visible {
  background: #edf5f8;
  outline: none;
}

.button,
.icon-button,
.segmented__button,
.slider-control {
  border: 0;
  cursor: pointer;
}

.button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 18px;
  border-radius: var(--radius);
  font-weight: 800;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.button:hover,
.button:focus-visible,
.icon-button:hover,
.icon-button:focus-visible {
  transform: translateY(-1px);
  outline: none;
}

.button--dark {
  background: var(--ink);
  color: #fff;
}

.button--light {
  background: #fff;
  color: var(--ink);
}

.button--ghost-light {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.54);
  background: rgba(255, 255, 255, 0.1);
}

.button--line {
  border: 1px solid var(--line-strong);
  background: #fff;
  color: var(--ink);
}

.icon-button,
.slider-control {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  font-size: 12px;
  font-weight: 800;
}

.hero {
  position: relative;
  width: 100%;
  height: 650px;
  isolation: isolate;
  overflow: hidden;
  background: var(--ink);
  margin-bottom: 60px;
}

.hero__media-link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  display: block;
  cursor: pointer;
}

.hero__media-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 75% center;
}

.hero__shade {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(6, 19, 31, 0.88), rgba(6, 19, 31, 0.56) 42%, rgba(6, 19, 31, 0.16) 72%),
    linear-gradient(0deg, rgba(6, 19, 31, 0.66), rgba(6, 19, 31, 0.06) 46%);
}

.hero__inner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 0;
  z-index: 2;
  pointer-events: none;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--aqua);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  max-width: 720px;
  font-size: clamp(68px, 10vw, 132px);
  line-height: 0.92;
  letter-spacing: 0;
}

.hero__lead {
  max-width: 620px;
  margin: 24px 0 0;
  color: #deedf2;
  font-size: clamp(18px, 2vw, 24px);
}

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

.hero__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 56px;
}

.hero__stats span {
  min-width: 160px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.1);
  color: #dce9ee;
}

.hero__stats strong {
  display: block;
  color: #fff;
  font-size: 24px;
}

.hero__controls {
  position: absolute;
  left: 50%;
  bottom: -45px;
  width: min(var(--container), calc(100% - 32px));
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  z-index: 15;
}

.hero__controls .slider-control {
  color: var(--navy);
  background: #fff;
  border: 1px solid var(--navy);
  border-radius: 4px;
  padding: 4px 12px;
  font-weight: 700;
  cursor: pointer;
  transition: 0.3s;
}
.hero__controls .slider-control:hover {
  background: var(--sky-strong);
  color: #fff;
}

.slider-dots {
  display: flex;
  gap: 8px;
}

.slider-dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 999px;
  background: transparent;
}

.slider-dot.is-active {
  width: 28px;
  background: #fff;
}

.trust-strip {
  width: min(var(--container), calc(100% - 32px));
  margin: -48px auto 0;
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.trust-strip div {
  min-height: 116px;
  padding: 24px;
  border-right: 1px solid var(--line);
}

.trust-strip div:last-child {
  border-right: 0;
}

.trust-strip span {
  display: block;
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.trust-strip strong {
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.1;
}

.section,
.brand-band,
.about-band,
.quote-band {
  width: min(var(--container), calc(100% - 32px));
  margin: 0 auto;
}

/* --- Catalogue Explorer Redesign --- */
.categories-dark-header {
  background: var(--ink) url('bg_catalogue_explorer.png') no-repeat center right;
  background-size: cover;
  padding: 86px 6% 40px;
  position: relative;
  border-radius: 0;
}
.categories-dark-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 15, 30, 0.95) 40%, rgba(0, 15, 30, 0.5) 100%);
  pointer-events: none;
}
.categories-dark-header .section__head {
  position: relative;
  z-index: 2;
}
.eyebrow--cyan { color: var(--aqua) !important; font-weight: 700; letter-spacing: 1px; }
.h2--white { color: #fff !important; font-size: 42px; margin-bottom: 12px; }
.text-cyan { color: var(--aqua); }
.subtitle--white { color: #e0e6ed; font-size: 16px; line-height: 1.5; max-width: 500px; }

.category-tools--styled {
  background: #fff;
  padding: 8px;
  border-radius: 12px;
  display: flex;
  gap: 12px;
  align-items: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}
.segmented--styled {
  background: #f4f6f8;
  padding: 4px;
  border-radius: 8px;
}
.segmented--styled .segmented__button {
  color: var(--ink);
  padding: 8px 24px;
  border-radius: 6px;
  font-weight: 600;
}
.segmented--styled .segmented__button.is-active {
  background: var(--brand);
  color: #fff;
  box-shadow: 0 2px 8px rgba(0, 114, 227, 0.3);
}
.search-field--styled {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0 16px;
  display: flex;
  align-items: center;
  background: #fff;
}
.search-field--styled input {
  border: none;
  background: transparent;
  padding: 12px 8px;
  color: var(--ink);
  outline: none;
  font-size: 14px;
}
.search-field--styled .search-icon { color: #8e9aab; }

.categories-white-body {
  background: #fff;
  border-radius: 24px 24px 0 0;
  margin-top: -24px;
  position: relative;
  z-index: 3;
  padding: 40px 6%;
}

.new-card-design {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 4px 16px rgba(16, 32, 51, 0.04);
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
  min-height: 280px;
}
.new-card-design:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(16, 32, 51, 0.08);
}
.category-card__bg {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 50%;
  opacity: 0.15;
  mask-image: linear-gradient(to bottom left, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 100%);
  -webkit-mask-image: linear-gradient(to bottom left, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 100%);
  pointer-events: none;
}
.category-card__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.new-icon-style {
  width: 48px;
  height: 48px;
  background: #eef5fc;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.new-icon-style img { width: 24px; height: 24px; }
.new-card-design h3 { font-size: 20px; color: var(--ink); margin-bottom: 8px; position: relative; z-index: 2; }
.category-card__subtitle { font-size: 13px; color: #64748b; line-height: 1.4; margin-bottom: 20px; position: relative; z-index: 2; }

.new-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  position: relative;
  z-index: 2;
}
.chip-new {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #f4f7fa;
  color: var(--brand);
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid transparent;
  transition: all 0.2s;
}
.chip-new:hover {
  background: #eef5fc;
  border-color: #d1e3f8;
}
.chip-new span { white-space: nowrap; }

.button--loadmore {
  background: var(--ink);
  color: #fff;
  border-radius: 8px;
  padding: 12px 24px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: none;
}
.button--loadmore:hover { background: #001a33; }
.category-count--styled { color: var(--ink); font-weight: 600; font-size: 14px; }
/* --- End Catalogue Explorer Redesign --- */

.section {
  padding: 86px 0 0;
}

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

.section__head h2,
.about-copy h2,
.quote-band h2 {
  margin: 0;
  max-width: 680px;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 0.98;
  letter-spacing: 0;
}

.category-tools {
  display: flex;
  align-items: center;
  gap: 12px;
}

.segmented {
  min-height: 44px;
  display: inline-flex;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.segmented__button {
  min-width: 92px;
  border-radius: 6px;
  background: transparent;
  color: var(--muted);
  font-weight: 900;
}

.segmented__button.is-active {
  background: var(--ink);
  color: #fff;
}

.search-field input {
  width: min(260px, 36vw);
  height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0 14px;
  outline-color: var(--aqua);
}

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

.category-card {
  min-height: 230px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 1px 2px rgba(16, 32, 51, 0.04);
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.category-card:hover,
.category-card:focus-within {
  transform: translateY(-3px);
  border-color: var(--aqua);
  box-shadow: var(--shadow);
}

.category-card__icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: var(--radius);
  background: #eef8fa;
}

.category-card__icon img {
  width: 38px;
  height: 38px;
  object-fit: contain;
}

.category-card h3 {
  margin: 0;
  font-size: 20px;
  line-height: 1.12;
}

.category-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: auto;
}

.chip-row span {
  padding: 5px 8px;
  border-radius: 999px;
  background: #eef3f6;
  color: #526273;
  font-size: 12px;
  font-weight: 800;
}

.section__foot {
  margin-top: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  color: var(--muted);
  font-weight: 800;
}

.rail-actions {
  display: flex;
  gap: 8px;
}

.product-rail {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(220px, 270px);
  gap: 14px;
  overflow-x: auto;
  padding: 2px 0 14px;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
}

.product-card {
  min-height: 350px;
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.product-card__image {
  aspect-ratio: 1 / 1;
  display: grid;
  place-items: center;
  background: #f8fbfc;
  border-bottom: 1px solid var(--line);
}

.product-card__image img {
  width: 86%;
  height: 86%;
  object-fit: contain;
}

.product-card__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 16px;
}

.product-card h3 {
  margin: 0;
  font-size: 16px;
  line-height: 1.28;
}

.product-card p {
  margin: 8px 0 16px;
  color: var(--muted);
  font-size: 13px;
}

.product-card .button {
  margin-top: auto;
  width: 100%;
}

.brand-band {
  margin-top: 78px;
  padding: 70px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

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

.brand-card {
  min-height: 104px;
  display: grid;
  place-items: center;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.brand-card img {
  max-width: 140px;
  max-height: 68px;
  object-fit: contain;
  filter: saturate(0.82);
}

.about-band {
  padding: 86px 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.82fr);
  gap: 54px;
  align-items: center;
}

.about-media {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  border-radius: var(--radius);
  background: #dce5ea;
}

.about-media img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

.about-media__badge {
  position: absolute;
  left: 18px;
  bottom: 18px;
  min-width: 150px;
  padding: 16px;
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}

.about-media__badge span {
  display: block;
  color: var(--muted);
  font-weight: 800;
  font-size: 13px;
  text-transform: uppercase;
}

.about-media__badge strong {
  font-size: 36px;
  line-height: 1;
}

.about-copy p,
.quote-band p {
  max-width: 620px;
  color: var(--muted);
  font-size: 17px;
}

.quote-band {
  margin-bottom: 86px;
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(340px, 0.7fr);
  gap: 42px;
  padding: 42px;
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(0, 106, 142, 0.14), rgba(0, 167, 181, 0.08)),
    #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

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

.quote-form label {
  display: grid;
  gap: 7px;
  color: #34485e;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.quote-form input,
.quote-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  color: var(--ink);
  padding: 12px 14px;
  resize: vertical;
  text-transform: none;
  outline-color: var(--aqua);
}

.form-note {
  min-height: 22px;
  margin: 0;
  color: var(--green);
  font-size: 13px;
  font-weight: 800;
}

.footer {
  background: #0e1a27;
  color: #c6d4dc;
}

.footer__inner {
  width: min(var(--container), calc(100% - 32px));
  margin: 0 auto;
  padding: 58px 0;
  display: grid;
  grid-template-columns: 1.4fr 0.65fr 0.65fr 1fr;
  gap: 36px;
}

.footer__brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.footer__brand-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  text-decoration: none;
  margin-bottom: 12px;
  width: 100%;
}

.footer__logo-img {
  height: 180px;
  width: auto;
  max-width: 100%;
  display: block;
  object-fit: contain;
  margin: 0 auto;
  filter: drop-shadow(0 6px 20px rgba(0, 180, 216, 0.45));
  transition: transform 0.3s ease;
}

.footer__brand-link:hover .footer__logo-img {
  transform: scale(1.04);
}

.footer__brand-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  text-align: center;
  width: 100%;
}

.footer__wordmark {
  margin: 0;
  color: #fff;
  font-size: 28px;
  font-weight: 950;
  line-height: 1.1;
  text-align: center;
}

.footer__tagline {
  display: block;
  color: #8da4c4;
  font-size: 11px;
  font-weight: 800;
  line-height: 1.3;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  text-align: center;
}

.footer__brand .button--line {
  margin: 16px auto 0 auto;
  display: inline-flex;
}

.footer h3 {
  color: #fff;
  margin-bottom: 16px;
}

.footer p {
  margin: 0 0 14px;
  color: #aebfc8;
}

.footer a {
  display: table;
  margin: 0 0 10px;
  color: #dce9ee;
}

.footer .button {
  margin-top: 18px;
  color: #fff;
  background: transparent;
  border-color: rgba(255, 255, 255, 0.24);
}

.social-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.social-row a {
  width: 36px;
  height: 36px;
  margin: 0;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  color: #fff;
  font-size: 12px;
  font-weight: 900;
}

.footer__bottom {
  width: min(var(--container), calc(100% - 32px));
  min-height: 56px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: #8ea1ad;
  font-size: 13px;
}

.mobile-menu {
  display: none;
}

@media (max-width: 1080px) {
  .site-header {
    position: relative;
  }

  .nav__links,
  .nav__actions {
    display: none;
  }

  .nav {
    height: 70px;
  }

  .site-header .nav-toggle,
  .menu-toggler {
    margin-left: auto;
    display: inline-flex;
  }

  .mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 290px;
    height: 100vh;
    z-index: 99999;
    display: block;
    padding: 20px;
    overflow-y: auto;
    background: #fff;
    border-left: 1px solid var(--line);
    transform: translateX(100%);
    transition: transform 250ms cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -5px 0 25px rgba(6, 38, 83, 0.15);
  }

  .mobile-menu.is-open {
    transform: translateX(0) !important;
  }

  .mobile-section {
    border-bottom: 1px solid var(--line);
    padding: 12px 0;
  }

  .mobile-section summary {
    cursor: pointer;
    font-weight: 900;
    list-style: none;
  }

  .mobile-section summary::-webkit-details-marker {
    display: none;
  }

  .mobile-section a {
    display: block;
    padding: 10px 0;
    color: #34485e;
  }

  .mobile-section__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0 14px;
    margin-top: 8px;
  }

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

  .brand-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .topbar__inner {
    min-height: auto;
    padding: 9px 0;
    flex-wrap: wrap;
    gap: 8px 14px;
  }

  .topbar__quote {
    margin-left: 0;
  }



  .hero__shade {
    background:
      linear-gradient(0deg, rgba(6, 19, 31, 0.84), rgba(6, 19, 31, 0.38)),
      linear-gradient(90deg, rgba(6, 19, 31, 0.74), rgba(6, 19, 31, 0.28));
  }



  .hero__stats,
  .trust-strip,
  .section__head,
  .category-tools,
  .about-actions,
  .footer__bottom {
    align-items: stretch;
    flex-direction: column;
  }

  .hero__controls {
    justify-content: center;
  }

  .trust-strip,
  .about-band,
  .quote-band,
  .footer__inner {
    grid-template-columns: 1fr;
  }

  .trust-strip div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .trust-strip div:last-child {
    border-bottom: 0;
  }

  .section {
    padding-top: 70px;
  }
  
  .categories-dark-header {
    padding: 70px 6% 30px;
  }
  .categories-dark-header .section__head {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  .category-tools--styled {
    width: 100%;
    flex-direction: column;
  }
  .search-field--styled { width: 100%; }
  
  .section__head {
    display: flex;
  }

  .category-tools {
    display: flex;
  }

  .search-field input {
    width: 100%;
  }

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

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

  .about-band {
    gap: 28px;
    padding-top: 70px;
  }

  .quote-band {
    padding: 24px;
  }
}

@media (max-width: 560px) {
  .brand {
    width: auto;
    max-width: 260px;
    gap: 8px;
  }

  .brand img {
    height: 40px;
    width: auto;
  }

  .brand--text {
    width: auto;
  }

  .brand__name {
    font-size: 18px;
    white-space: nowrap;
  }

  .brand__tagline {
    display: block;
    font-size: 8px;
    max-width: 180px;
    line-height: 1.2;
  }

  .hero h1 {
    font-size: clamp(56px, 20vw, 82px);
  }

  .hero__lead {
    font-size: 18px;
  }

  .hero__actions .button,
  .about-actions .button {
    width: 100%;
  }

  .trust-strip {
    margin-top: -30px;
  }

  .category-grid,
  .brand-grid,
  .mobile-section__grid {
    grid-template-columns: 1fr;
  }

  .category-card {
    min-height: 206px;
  }

  .product-rail {
    grid-auto-columns: minmax(240px, 82vw);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}

/* Modern sky blue + white theme with navy button system */
:root {
  --ink: #0b213c;
  --muted: #5d7087;
  --soft: #eef9ff;
  --surface: #ffffff;
  --line: #d5eaf5;
  --line-strong: #a9cee2;
  --navy: #062653;
  --navy-hover: #0b3774;
  --sky: #dff5ff;
  --sky-strong: #98dcff;
  --marine: #168fc1;
  --marine-deep: #075184;
  --aqua: #18b7de;
  --shadow: 0 18px 48px rgba(6, 38, 83, 0.12), 0 1px 2px rgba(6, 38, 83, 0.07);
  --shadow-soft: 0 10px 28px rgba(22, 143, 193, 0.1);
}

body {
  background: linear-gradient(180deg, #ffffff 0, var(--soft) 520px, #ffffff 1180px), var(--soft);
}

.skip-link:focus,
.button,
.button--dark,
.button--light,
.button--ghost-light,
.button--line,
.icon-button,
.slider-control,
.segmented__button.is-active {
  background: var(--navy);
  color: #fff;
}

.button,
.button--line,
.icon-button,
.slider-control {
  border-color: var(--navy);
  box-shadow: 0 10px 22px rgba(6, 38, 83, 0.18);
}

.button:hover,
.button:focus-visible,
.icon-button:hover,
.icon-button:focus-visible,
.slider-control:hover,
.slider-control:focus-visible {
  background: var(--navy-hover);
  box-shadow: 0 14px 28px rgba(6, 38, 83, 0.24);
}

.site-header {
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 8px 24px rgba(6, 38, 83, 0.06);
  backdrop-filter: blur(20px);
}

.topbar {
  background: linear-gradient(90deg, var(--navy), #0d477b);
  color: #dff5ff;
}

.topbar__inner span {
  color: #bfe7f8;
}

.brand__name,
.nav-search,
.segmented__button {
  color: var(--navy);
}

.nav-search {
  border: 1px solid rgba(6, 38, 83, 0.16);
  background: #f6fcff;
}

.nav-item > a:hover,
.nav-item > a:focus-visible,
.nav-search:hover,
.nav-search:focus-visible,
.catalog-menu a:hover,
.catalog-menu a:focus-visible {
  background: var(--sky);
  color: var(--navy);
}

.mega-menu,
.catalog-menu {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 24px 64px rgba(6, 38, 83, 0.16);
}

.mega-menu__aside {
  background: linear-gradient(180deg, #f5fcff, #ffffff);
}

.mega-card {
  transition: background 160ms ease, box-shadow 160ms ease;
}

.mega-card:hover {
  background: #f7fcff;
  box-shadow: inset 3px 0 0 var(--sky-strong);
}

.hero {
  background: var(--navy);
}

.hero__shade {
  background: linear-gradient(90deg, rgba(6, 38, 83, 0.88), rgba(12, 79, 126, 0.54) 42%, rgba(152, 220, 255, 0.12) 72%),
    linear-gradient(0deg, rgba(6, 38, 83, 0.7), rgba(223, 245, 255, 0.08) 52%);
}

.hero .eyebrow {
  color: var(--sky-strong);
}

.hero h1 {
  text-shadow: 0 14px 36px rgba(6, 38, 83, 0.3);
}

.hero__lead,
.hero__stats span {
  color: #eaf9ff;
}

.hero__stats span {
  border-color: rgba(223, 245, 255, 0.28);
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(14px);
}


.slider-dot.is-active {
  background: var(--sky-strong);
}

.eyebrow {
  color: var(--marine);
}

/* Topbar & Icons */
.topbar__inner a {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.topbar__inner svg {
  color: #8ea1ad;
  opacity: 0.9;
  flex-shrink: 0;
}

.topbar__inner span {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

/* Nav Actions - Search and Request Quote */
.search-bar-container {
  position: relative;
  display: flex;
  align-items: center;
  width: 210px;
  height: 38px;
  background: #f1f6f9;
  border: 1px solid #d9e6ee;
  border-radius: 100px;
  padding: 0 14px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.search-bar-container:hover {
  background: #e9f0f4;
  border-color: #c1d5e2;
}

.search-bar-container input {
  border: none;
  background: transparent;
  outline: none;
  font-size: 13px;
  color: var(--ink);
  width: 100%;
  padding-right: 20px;
  cursor: pointer;
  font-family: inherit;
  font-weight: 500;
}

.search-bar-container svg {
  position: absolute;
  right: 14px;
  color: #728b9a;
  pointer-events: none;
}

.button--navy {
  background: #062653;
  color: #fff;
  font-weight: 600;
  font-size: 13.5px;
  padding: 10px 20px;
  border-radius: 100px;
  display: inline-flex;
  align-items: center;
  transition: all 0.2s ease;
  border: none;
}

.button--navy:hover {
  background: #0d3b75;
  transform: translateY(-1px);
  box-shadow: 0 5px 15px rgba(6, 38, 83, 0.2);
}

/* Hero Modifications */
.hero {
  overflow: visible !important;
}



@media (min-width: 1081px) {
  .hero {
    height: auto;
    aspect-ratio: 16 / 7;
  }

  .hero__media-link {
    display: block;
    width: 100%;
    height: 100%;
    aspect-ratio: auto;
  }
  .hero__media-img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: fill;
    object-position: center;
  }

}

/* Toggle visibility of UI elements based on the active slide */
.hero:not(.hero--slide-2) .hero__actions,
.hero:not(.hero--slide-2) .hero__bottom-overlay {
  display: none !important;
}

.hero__bullets {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  font-size: 13px;
  font-weight: 600;
  color: #d8edf7;
  letter-spacing: 0.02em;
}

.hero__bullets .bullet-dot {
  color: var(--aqua);
  font-weight: 800;
}

.hero__actions .button--primary {
  background: var(--aqua);
  color: #fff;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: 100px;
  display: inline-flex;
  align-items: center;
  transition: all 0.25s ease;
}

.hero__actions .button--primary:hover {
  background: var(--marine);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(24, 183, 222, 0.35);
}

.hero__actions .button--ghost {
  border: 2px solid #fff;
  color: #fff;
  font-weight: 700;
  padding: 12px 26px;
  border-radius: 100px;
  display: inline-flex;
  align-items: center;
  transition: all 0.25s ease;
  background: transparent;
}

.hero__actions .button--ghost:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-2px);
}

/* Hero Bottom Overlay */
.hero__bottom-overlay {
  position: absolute;
  bottom: -32px;
  left: 50%;
  transform: translateX(-50%);
  width: min(var(--container), calc(100% - 32px));
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  z-index: 10;
}

.hero__cards {
  display: flex;
  gap: 12px;
}

.hero__card {
  background: #fff;
  border-radius: 12px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 10px 30px rgba(6, 38, 83, 0.08), 0 2px 6px rgba(6, 38, 83, 0.04);
  border: 1px solid #eef4f8;
  min-width: 175px;
}

.hero__card-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #f1f7fc;
  display: grid;
  place-items: center;
  color: #062653;
  flex-shrink: 0;
}

.hero__card-icon svg {
  stroke-width: 2.2;
}

.hero__card-content {
  display: flex;
  flex-direction: column;
}

.hero__card-content strong {
  font-size: 15px;
  font-weight: 700;
  color: #062653;
  line-height: 1.2;
}

.hero__card-content span {
  font-size: 11px;
  color: #6a7c87;
  font-weight: 500;
}

.hero__trust-bar {
  background: #062653;
  border-radius: 100px;
  padding: 12px 24px;
  display: flex;
  align-items: center;
  gap: 24px;
  box-shadow: 0 10px 30px rgba(6, 38, 83, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero__trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
}

.hero__trust-item:not(:last-child) {
  border-right: 1px solid rgba(255, 255, 255, 0.15);
  padding-right: 24px;
}

.hero__trust-item svg {
  color: var(--aqua);
  flex-shrink: 0;
}

.hero__trust-text {
  display: flex;
  flex-direction: column;
}

.hero__trust-text strong {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #fff;
  line-height: 1.2;
  white-space: nowrap;
}

.hero__trust-text span {
  font-size: 9.5px;
  color: #a0b5c3;
  font-weight: 400;
  white-space: nowrap;
}

/* Statistics Strip */
.stats-strip {
  background: #fff;
  padding: 64px 0 28px;
  border-bottom: 1px solid #eef4f8;
}

.stats-strip__inner {
  width: min(var(--container), calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.stats-item {
  display: flex;
  align-items: center;
  gap: 16px;
}

.stats-icon {
  width: 48px;
  height: 48px;
  background: #f1f7fc;
  border-radius: 100px;
  display: grid;
  place-items: center;
  color: #168fc1;
  flex-shrink: 0;
}

.stats-text {
  display: flex;
  flex-direction: column;
}

.stats-text strong {
  font-size: 22px;
  font-weight: 800;
  color: #062653;
  line-height: 1.1;
}

.stats-text span {
  font-size: 13px;
  font-weight: 500;
  color: #6a7c87;
}

/* Trust Markers Strip */
.trust-markers-strip {
  background: #f0f7fb;
  border-top: 1px solid #dcecf5;
  border-bottom: 1px solid #dcecf5;
  padding: 16px 0;
}

.trust-markers-strip__inner {
  width: min(var(--container), calc(100% - 32px));
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.trust-marker {
  display: flex;
  align-items: center;
  gap: 10px;
}

.trust-marker svg {
  color: #168fc1;
  flex-shrink: 0;
}

.trust-marker-text {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
}

.trust-marker-text strong {
  font-weight: 700;
  color: #062653;
}

.trust-marker-text span {
  color: #516573;
}

/* Media Query Responsive Overrides */
@media (max-width: 1080px) {
  .hero__bottom-overlay {
    position: relative;
    bottom: auto;
    left: auto;
    transform: none;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
    margin-top: 40px;
  }

  .hero__cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
  }

  .hero__card {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 8px 4px;
    gap: 4px;
    min-width: 0;
  }

  .hero__card-icon {
    width: 28px;
    height: 28px;
    margin-right: 0;
  }

  .hero__card-icon svg {
    width: 14px;
    height: 14px;
  }

  .hero__card-content strong {
    font-size: 11px;
    margin: 0;
  }

  .hero__card-content span {
    display: none;
  }

  .hero__trust-bar {
    border-radius: 12px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    padding: 10px 14px;
  }

  .hero__trust-item {
    font-size: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 4px;
    width: 100%;
  }

  .hero__trust-item svg {
    margin-right: 0 !important;
    width: 14px;
    height: 14px;
  }

  .hero__trust-item span {
    font-size: 9px;
    opacity: 0.8;
  }

  .hero__trust-item:not(:last-child) {
    border-right: none;
    border-bottom: none;
    padding-right: 0;
    padding-bottom: 0;
  }

  .stats-strip {
    padding: 40px 0;
  }

  .stats-strip__inner {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .trust-markers-strip__inner {
    justify-content: flex-start;
    gap: 16px;
  }
  
  .trust-marker-text {
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
  }
}

@media (max-width: 560px) {
  .stats-strip__inner {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}


.segmented {
  background: #f7fcff;
}

.search-field input,
.mega-search,
.quote-form input,
.quote-form textarea {
  outline-color: var(--aqua);
}

.category-card,
.product-card,
.brand-card {
  background: linear-gradient(180deg, #ffffff, #fbfeff);
  box-shadow: var(--shadow-soft);
}

.category-card:hover,
.category-card:focus-within,
.product-card:hover,
.product-card:focus-within,
.brand-card:hover,
.brand-card:focus-visible {
  border-color: var(--sky-strong);
  box-shadow: var(--shadow);
}

.product-card:hover,
.product-card:focus-within,
.brand-card:hover,
.brand-card:focus-visible {
  transform: translateY(-3px);
}

.category-card__icon {
  background: linear-gradient(135deg, var(--sky), #ffffff);
  box-shadow: inset 0 0 0 1px rgba(6, 38, 83, 0.06);
}

.chip-row span {
  background: #edf9ff;
  color: #245b80;
}

.product-card__image {
  background: linear-gradient(180deg, #f4fbff, #ffffff);
}

.brand-band {
  background: linear-gradient(180deg, rgba(223, 245, 255, 0.32), rgba(255, 255, 255, 0));
}

.about-media {
  background: var(--sky);
  box-shadow: var(--shadow);
}

.about-media__badge {
  border: 1px solid var(--line);
}

.quote-band {
  background: linear-gradient(135deg, rgba(152, 220, 255, 0.36), rgba(255, 255, 255, 0.72)), #fff;
}

.footer {
  background: linear-gradient(180deg, var(--navy), #04172e);
  color: #d2e7f2;
}

.footer .button {
  background: var(--navy-hover);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.36);
}

.mobile-menu {
  background: #ffffff;
}

/* Category Page Layout Grid */
.category-page-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 48px;
  align-items: start;
}

/* Left Sidebar styling */
.category-sidebar {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.sidebar-accordion {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.sidebar-accordion[open] summary {
  background: var(--sky-strong);
  color: #fff;
  border-bottom: 1px solid var(--line);
}

.sidebar-accordion summary {
  padding: 14px 18px;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.05em;
  color: var(--ink);
  background: var(--soft);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
}

.sidebar-accordion summary::-webkit-details-marker {
  display: none;
}

.sidebar-accordion summary .chevron::after {
  content: '▼';
  font-size: 10px;
}

.sidebar-accordion[open] summary .chevron::after {
  content: '▲';
}

.sidebar-links {
  display: flex;
  flex-direction: column;
  padding: 8px 0;
}

.sidebar-links a {
  padding: 10px 18px;
  color: var(--ink);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  border-left: 3px solid transparent;
  transition: all 0.2s ease;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.sidebar-links a:hover {
  background: var(--soft);
  color: var(--marine);
  border-left-color: var(--sky-strong);
}

.sidebar-links a.is-active {
  background: var(--soft);
  color: var(--marine);
  font-weight: 700;
  border-left-color: var(--sky-strong);
}

/* Right Content Area */
.category-main-content {
  display: flex;
  flex-direction: column;
}

.category-title {
  font-size: 2.2rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--navy);
  margin-top: 16px;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.category-products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  width: 100%;
}

.pagination-row {
  margin-top: 40px;
  display: flex;
  justify-content: center;
}

/* Responsive category layout */
@media (max-width: 991px) {
  .category-page-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .category-products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 575px) {
  .category-products-grid {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  }
}

/* Product Detail Layout */
.product-detail-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-top: 32px;
  align-items: start;
}

.product-detail-image {
  background: #ffffff;
  border-radius: var(--radius);
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border: 1px solid var(--line);
  box-shadow: 0 10px 30px rgba(10, 25, 47, 0.05);
}

.main-image-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 340px;
}

.main-image-wrapper img,
.product-detail-image > img {
  max-width: 100%;
  max-height: 420px;
  height: auto;
  border-radius: calc(var(--radius) - 2px);
  object-fit: contain;
}

.product-detail-info h1 {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 16px;
  line-height: 1.2;
}

.product-detail-meta {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 24px;
}

.product-detail-meta .badge {
  background: var(--soft);
  color: var(--marine);
  padding: 6px 12px;
  font-size: 13px;
  font-weight: 600;
  border-radius: 4px;
}

.product-detail-meta .stock-status {
  color: var(--green);
  font-size: 14px;
  font-weight: 500;
}

.price-notice {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 32px;
  border-left: 3px solid var(--marine);
  padding-left: 16px;
}

.quote-form-box {
  background: var(--surface);
  border: 1px solid var(--line);
  padding: 32px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.quote-form-box h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 20px;
}

/* Quote Form Inner Styles */
.quote-form-box .form-group {
  margin-bottom: 18px;
  display: flex;
  flex-direction: column;
}

.quote-form-box label {
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.quote-form-box .form-control {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  font-size: 14px;
  background-color: var(--soft);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
  outline: none;
  font-family: inherit;
  color: var(--ink);
}

.quote-form-box .form-control:focus {
  border-color: var(--marine);
  background-color: #fff;
  box-shadow: 0 0 0 3px rgba(0, 106, 142, 0.12);
}

.quote-form-box textarea.form-control {
  resize: vertical;
  min-height: 100px;
}

.quote-form-box .btn-primary {
  background-color: var(--marine);
  color: #fff;
  border: none;
  padding: 14px 24px;
  font-size: 16px;
  font-weight: 800;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
  margin-top: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.quote-form-box .btn-primary:hover {
  background-color: var(--marine-deep);
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(2, 76, 107, 0.2);
}

.quote-form-box .w-100 {
  width: 100%;
}


/* Responsive grid for mobile view */
@media (max-width: 768px) {
  .product-detail-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}
.subcategory-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
  margin: 0 0 28px;
}

.subcategory-card {
  display: flex;
  align-items: center;
  min-height: 54px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  color: var(--ink);
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 10px 24px rgba(15, 35, 60, 0.06);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.subcategory-card:hover {
  border-color: var(--marine);
  transform: translateY(-2px);
}

.product-gallery-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  width: 100%;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(0, 180, 216, 0.15);
}

.product-gallery-strip .gallery-thumb {
  width: 72px;
  height: 72px;
  aspect-ratio: 1;
  object-fit: contain;
  border: 2px solid var(--line);
  border-radius: 12px;
  background: #fff;
  padding: 6px;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 2px 6px rgba(0,0,0,0.04);
}

.product-gallery-strip .gallery-thumb:hover,
.product-gallery-strip .gallery-thumb.is-active-thumb {
  border-color: #00b4d8;
  transform: translateY(-3px) scale(1.06);
  box-shadow: 0 6px 14px rgba(0, 180, 216, 0.22);
}

.product-copy-block {
  margin: 22px 0;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--soft);
}

.product-copy-block h3 {
  margin: 0 0 10px;
}

.spec-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
}

.spec-table th,
.spec-table td {
  padding: 11px 12px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.spec-table th {
  width: 36%;
  color: var(--muted);
  font-weight: 700;
}
