:root {
  --teal: #0aa9b2;
  --teal-dark: #087f86;
  --teal-soft: #e8f8f8;
  --orange: #f29e24;
  --orange-dark: #ca7410;
  --cream: #fffef7;
  --ink: #0f172a;
  --muted: #64748b;
  --line: #dbe7e8;
  --white: #ffffff;
  --shadow: 0 18px 50px rgba(15, 23, 42, 0.1);
  font-family: Bahnschrift, Montserrat, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  line-height: 1.55;
  overflow-x: clip;
}

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

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

.container {
  width: min(1200px, calc(100% - 32px));
  margin: 0 auto;
}

.top-bar {
  background: var(--teal-dark);
  color: var(--white);
  font-size: 13px;
}

.top-bar__inner {
  min-height: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: nowrap;
}

.top-bar__item {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-width: 0;
}

.top-bar__icon {
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.top-bar__mobile-text {
  display: none;
}

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

.header__inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--teal-dark);
  font-weight: 900;
  letter-spacing: 0;
}

.brand img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  flex: 0 0 44px;
}

.brand span {
  font-size: 21px;
  line-height: 1;
}

.main-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 22px;
  color: #1f2937;
  font-size: 15px;
}

.main-nav a:hover,
.main-nav summary:hover,
.main-nav a[aria-current="page"],
.main-nav summary[aria-current="page"] {
  color: var(--teal-dark);
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown summary {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  list-style: none;
}

.nav-dropdown summary::-webkit-details-marker {
  display: none;
}

.nav-dropdown summary::after {
  content: "";
  width: 7px;
  height: 7px;
  border-right: 1.8px solid currentColor;
  border-bottom: 1.8px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
}

.nav-dropdown__panel {
  position: absolute;
  top: calc(100% + 16px);
  left: 0;
  z-index: 10;
  display: grid;
  gap: 4px;
  min-width: 248px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.nav-dropdown:not([open]) .nav-dropdown__panel {
  display: none;
}

.nav-dropdown__panel a {
  display: block;
  padding: 9px 10px;
  border-radius: 7px;
  color: #334155;
  font-size: 14px;
  line-height: 1.35;
}

.nav-dropdown__panel a:hover,
.nav-dropdown__panel a[aria-current="page"] {
  background: var(--teal-soft);
}

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

.main-nav__mobile-actions,
.nav-label--mobile {
  display: none;
}

.nav-toggle,
.icon-button {
  display: inline-grid;
  place-items: center;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--ink);
  border-radius: 8px;
  cursor: pointer;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  margin-left: auto;
}

.nav-toggle span {
  width: 18px;
  height: 2px;
  background: var(--ink);
}

.icon-button {
  width: 40px;
  height: 40px;
}

.header-icon {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border-radius: 8px;
  font-weight: 700;
  border: 1px solid transparent;
  cursor: pointer;
  text-align: center;
  text-transform: uppercase;
  white-space: nowrap;
}

.btn--primary {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 10px 20px rgba(242, 158, 36, 0.22);
}

.btn--primary:hover {
  background: var(--orange-dark);
}

.btn--teal {
  gap: 10px;
  background: #0aa9b2;
  color: var(--white);
  box-shadow: 0 12px 24px rgba(10, 169, 178, 0.22);
}

.btn--teal:hover {
  background: #087f86;
}

.btn__icon {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.btn--secondary {
  background: var(--white);
  color: var(--teal-dark);
  border-color: var(--teal);
}

.btn--ghost {
  background: var(--white);
  color: var(--teal-dark);
  border-color: var(--line);
}

.btn--small {
  min-height: 38px;
  padding: 0 14px;
  font-size: 14px;
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: 560px;
  padding: 58px 0 46px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(255, 254, 247, 0.98) 0%, rgba(255, 254, 247, 0.94) 35%, rgba(255, 254, 247, 0.66) 52%, rgba(255, 254, 247, 0.18) 70%, rgba(255, 254, 247, 0) 86%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(232, 248, 248, 0.28)),
    url("./assets/hero/hero-main.webp") right 84% / cover no-repeat,
    var(--cream);
}

.hero__inner {
  position: relative;
  min-height: 456px;
  display: block;
}

.hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
  min-width: 0;
  max-width: 660px;
  padding: 12px 0;
  display: flex;
  flex-direction: column;
}

.hero h1 {
  color: var(--orange);
  font-size: clamp(36px, 4.4vw, 56px);
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--teal-dark);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 13px;
}

h1,
h2,
h3,
p {
  overflow-wrap: break-word;
}

h1 {
  margin: 0;
  font-size: clamp(38px, 6vw, 70px);
  line-height: 1.02;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.12;
}

h3 {
  margin: 0;
  font-size: 20px;
  line-height: 1.22;
}

.hero__lead {
  margin: 16px 0 0;
  max-width: 560px;
  color: #334155;
  font-size: 19px;
  font-weight: 650;
}

.hero__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.hero__actions .btn {
  gap: 8px;
  min-height: 44px;
}

.cta-icon {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero__features {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 22px;
  color: #334155;
  background: transparent;
}

.hero-feature {
  position: relative;
  min-width: 0;
  min-height: 150px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
  background: rgba(255, 255, 255, 0.1);
  border: 0;
  border-radius: 0;
  padding: 8px 8px 0;
  box-shadow: none;
}

.hero-feature + .hero-feature::before {
  content: "";
  position: absolute;
  left: -9px;
  top: 18px;
  bottom: 18px;
  width: 1px;
  background: rgba(10, 169, 178, 0.18);
}

.hero-feature img {
  width: 88px;
  height: 88px;
  object-fit: contain;
  margin-bottom: 2px;
}

.hero-feature strong,
.hero-feature span {
  display: block;
}

.hero-feature strong {
  color: var(--teal-dark);
  font-size: 14px;
  line-height: 1.2;
}

.hero-feature span {
  margin-top: 4px;
  color: #475569;
  font-size: 11.5px;
  line-height: 1.35;
}

.hero__visual {
  position: absolute;
  inset: 0;
  z-index: 3;
  min-width: 0;
  pointer-events: none;
}

.hero__image-frame {
  display: none;
}

.hero__image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 73% 70%;
  transform: scale(1.28) translateY(-4%);
  transform-origin: 73% 72%;
}

.hero-treatment {
  position: absolute;
  top: 24px;
  right: -26px;
  transform: translateX(clamp(0px, calc((100vw - 1280px) / 2), 120px));
  width: min(220px, 42%);
  padding: 14px 12px 14px 14px;
  border: 1px solid rgba(10, 169, 178, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.16);
  color: var(--ink);
  pointer-events: auto;
}

.hero-treatment strong {
  display: block;
  color: var(--teal-dark);
  font-size: 18px;
  line-height: 1.2;
}

.hero-treatment ul {
  display: grid;
  gap: 8px;
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
  font-size: 14px;
  color: #334155;
}

.hero-treatment li {
  position: relative;
  padding-left: 24px;
}

.hero-treatment li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 16px;
  height: 16px;
  border-radius: 999px;
  background: var(--orange);
}

.hero-treatment li::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 5px;
  width: 5px;
  height: 9px;
  border: solid var(--white);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.trust-strip {
  position: relative;
  z-index: 8;
  margin: -34px 0 -42px;
  padding: 0;
  background: transparent;
  color: var(--ink);
}

.trust-strip__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  align-items: stretch;
  overflow: hidden;
  padding: 10px 16px;
  border: 1px solid rgba(10, 169, 178, 0.16);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.1);
}

.trust-strip article {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  column-gap: 15px;
  row-gap: 1px;
  align-items: center;
  min-height: 58px;
  padding: 0 15px;
  border-radius: 0;
}

.trust-strip article + article {
  border-left: 1px solid rgba(10, 169, 178, 0.16);
}

.trust-strip__icon {
  grid-row: 1 / span 2;
  width: 44px;
  height: 44px;
  color: var(--teal-dark);
  fill: none;
  object-fit: contain;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.trust-strip__icon--bold {
  width: 42px;
  height: 42px;
  color: #0aa9b2;
  stroke-width: 2.15;
  filter: none;
  opacity: 1;
  transform: none;
  shape-rendering: geometricPrecision;
}

.trust-strip__icon--bold path,
.trust-strip__icon--bold circle {
  vector-effect: non-scaling-stroke;
}

.trust-strip strong,
.trust-strip span {
  display: block;
}

.trust-strip strong {
  color: var(--teal-dark);
  font-size: 16px;
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: 0;
}

.trust-strip span {
  color: #475569;
  font-size: 15px;
  line-height: 1.3;
}

.section {
  padding: 76px 0;
  scroll-margin-top: 96px;
}

.site-footer {
  scroll-margin-top: 96px;
}

.section--soft {
  background: #f5fbfb;
}

.section--why {
  padding: 8px 0 20px;
  background: #ffffff;
}

.section--why + .section {
  padding-top: 40px;
}

.section--teal {
  background: #087f86;
  color: var(--white);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-heading p:last-child {
  color: var(--muted);
  font-size: 17px;
}

.section-heading--light .eyebrow,
.section-heading--light p:last-child {
  color: rgba(255, 255, 255, 0.82);
}

.product-heading {
  display: grid;
  justify-items: center;
  gap: 14px;
  max-width: none;
  margin-bottom: 30px;
  text-align: center;
}

.product-heading::after {
  content: "";
  width: 72px;
  height: 4px;
  border-radius: 999px;
  background: var(--orange);
}

#products .container {
  width: min(1288px, calc(100% - 24px));
}

#products {
  padding-bottom: 22px;
}

.product-heading h2 {
  color: var(--ink);
  font-size: 31px;
  line-height: 1.18;
  font-weight: 900;
}

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

.product-card {
  display: grid;
  grid-template-columns: 132px minmax(0, 1fr);
  align-items: stretch;
  height: 100%;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.05);
}

.product-card__media {
  min-height: 176px;
  overflow: hidden;
  background: var(--white);
}

.product-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  background: var(--white);
  padding: 0;
}

.badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 1;
  background: var(--teal);
  color: var(--white);
  border-radius: 999px;
  padding: 5px 9px;
  font-size: 12px;
  font-weight: 800;
}

.badge--sport {
  background: #475569;
}

.badge--light {
  background: var(--orange);
}

.product-card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-width: 0;
  gap: 6px;
  padding: 12px 12px 12px 10px;
  text-align: left;
  background: var(--white);
}

.sku {
  color: var(--teal-dark);
  font-weight: 800;
  font-size: 14px;
  line-height: 1.05;
}

.product-card h3 {
  color: var(--ink);
  font-size: 16.5px;
  line-height: 1.17;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-card p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.2;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-pressure {
  color: var(--teal-dark);
  font-weight: 700;
}

.product-card strong {
  margin-top: 0;
  color: var(--orange-dark);
  font-size: 19px;
  line-height: 1.05;
}

.card-actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
}

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

.product-card .card-actions {
  margin-top: auto;
}

.product-card .card-actions .btn {
  width: 100%;
}

.product-section-actions {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}

.product-price-note {
  max-width: 760px;
  margin: 18px auto 0;
  color: #64748b;
  font-size: 13.5px;
  line-height: 1.45;
  text-align: center;
}

.product-section-actions .btn {
  min-width: 240px;
}

.btn--outline {
  background: var(--white);
  color: var(--teal-dark);
  border-color: var(--teal);
  box-shadow: none;
}

.btn--outline:hover {
  background: var(--teal-soft);
}

.section--product-comparison {
  padding: 36px 0 30px;
  background: var(--white);
}

.section--product-comparison .container {
  width: min(1200px, calc(100vw - 32px));
  min-width: 0;
}

.product-comparison__heading {
  display: grid;
  justify-items: center;
  gap: 14px;
  margin-bottom: 28px;
  text-align: center;
}

.product-comparison__heading::after {
  content: "";
  width: 72px;
  height: 4px;
  border-radius: 999px;
  background: var(--orange);
}

.product-comparison__heading h2 {
  justify-self: center;
  width: 100%;
  max-width: 900px;
  margin: 0;
  color: #0b2b46;
  font-size: 31px;
  line-height: 1.18;
  font-weight: 900;
  overflow-wrap: anywhere;
}

.product-comparison__heading h2 span {
  display: inline;
}

.product-comparison__table-wrap {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--white);
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.06);
  -webkit-overflow-scrolling: touch;
}

.product-comparison__table-wrap:focus {
  outline: 2px solid rgba(10, 169, 178, 0.34);
  outline-offset: 3px;
}

.product-comparison__table {
  width: 100%;
  min-width: 860px;
  border-collapse: separate;
  border-spacing: 0;
  table-layout: fixed;
}

.product-comparison__criteria-col {
  width: 13%;
}

.product-comparison__table th,
.product-comparison__table td {
  padding: 14px 14px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  vertical-align: middle;
  text-align: center;
  font-size: 15px;
  line-height: 1.34;
}

.product-comparison__table th:last-child,
.product-comparison__table td:last-child {
  border-right: 0;
}

.product-comparison__table tr:last-child th,
.product-comparison__table tr:last-child td {
  border-bottom: 0;
}

.product-comparison__table thead th {
  background: #f5fbfb;
  color: #0b2b46;
  font-size: 15.5px;
  line-height: 1.22;
  font-weight: 900;
}

.product-comparison__table thead th:not(:first-child) {
  color: var(--teal-dark);
}

.product-comparison__table tbody th {
  background: #ffffff;
  color: #0b2b46;
  font-weight: 900;
}

.product-comparison__table tbody td {
  color: #475569;
}

.product-comparison__table tbody tr:nth-child(even) td,
.product-comparison__table tbody tr:nth-child(even) th {
  background: #fffdf8;
}

.product-comparison__note {
  max-width: 100%;
  margin: 18px auto 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
  text-align: center;
}

.product-comparison__actions {
  display: flex;
  justify-content: center;
  margin-top: 16px;
}

.product-comparison__cta {
  min-width: 176px;
  border-radius: 999px;
  background: #f29e24;
}

.product-comparison__cta:hover {
  background: #ca7410;
}

.why-choose {
  display: grid;
  grid-template-columns: minmax(270px, 0.72fr) minmax(0, 1.28fr);
  align-items: stretch;
  overflow: visible;
  max-width: 1220px;
  border: 0;
  border-radius: 0;
  background: #ffffff;
  box-shadow: none;
}

.why-choose__media {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  min-height: 430px;
  padding: 12px 20px 0 0;
  background: #ffffff;
}

.why-choose__media img {
  width: min(100%, 330px);
  height: 100%;
  max-height: 460px;
  object-fit: contain;
  object-position: center bottom;
}

.why-choose__content {
  min-width: 0;
  padding: 6px 0 18px 42px;
  background: #ffffff;
}

.why-choose__heading {
  display: grid;
  justify-items: center;
  gap: 14px;
  margin-bottom: 28px;
  text-align: center;
}

.why-choose__heading::after {
  content: "";
  width: 72px;
  height: 4px;
  border-radius: 999px;
  background: var(--orange);
}

.why-choose__heading h2 {
  margin: 0;
  color: #0b2b46;
  font-size: 31px;
  line-height: 1.18;
  font-weight: 900;
}

.why-choose__reasons {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  column-gap: 22px;
  row-gap: 0;
}

.why-choose__divider {
  grid-column: 1 / -1;
  height: 1px;
  margin: 2px 0 0;
  background: rgba(10, 169, 178, 0.18);
}

.why-reason {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  column-gap: 18px;
  align-items: center;
  min-width: 0;
}

.why-reason:nth-child(-n + 3) {
  padding-bottom: 22px;
}

.why-reason:nth-child(n + 5) {
  padding-top: 22px;
}

.why-reason__icon {
  display: grid;
  place-items: center;
  width: 88px;
  height: 88px;
  border: 1px solid rgba(10, 169, 178, 0.26);
  border-radius: 999px;
  background: #f9fefe;
  color: var(--teal);
}

.why-reason__icon svg {
  width: 52px;
  height: 52px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.85;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.why-reason__icon svg path,
.why-reason__icon svg circle,
.why-reason__icon svg rect {
  vector-effect: non-scaling-stroke;
}

.why-reason h3 {
  margin: 0;
  color: #0b2b46;
  font-size: 16px;
  line-height: 1.25;
  font-weight: 900;
}

.why-reason p {
  margin: 7px 0 0;
  color: #5b6f7f;
  font-size: 14.5px;
  line-height: 1.45;
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  gap: 40px;
  align-items: start;
}

.two-column p {
  color: var(--muted);
}

.section--certifications {
  padding: 34px 0 36px;
  background: #f6fbfb;
  color: var(--ink);
}

.cert-panel {
  position: relative;
  max-width: 1080px;
  margin: 12px auto 0;
  background: var(--white);
  border: 2px solid var(--teal);
  border-radius: 10px;
  padding: 34px 20px 18px;
}

.cert-panel h2 {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -52%);
  max-width: calc(100% - 44px);
  margin: 0;
  padding: 0 18px;
  background: var(--white);
  color: var(--ink);
  font-size: 31px;
  line-height: 1.18;
  text-align: center;
  font-weight: 900;
  letter-spacing: 0;
  white-space: nowrap;
}

.cert-panel h2::after {
  content: "";
  display: block;
  width: 72px;
  height: 4px;
  margin: 10px auto 0;
  border-radius: 999px;
  background: var(--orange);
}

.cert-grid {
  display: flex;
  flex-wrap: nowrap;
  align-items: stretch;
  justify-content: center;
  gap: 0;
  margin-top: 0;
}

.cert-item {
  flex: 1 1 0;
  min-width: 0;
  padding: 0 16px;
  display: grid;
  align-content: start;
  justify-items: center;
  text-align: center;
}

.cert-item + .cert-item {
  border-left: 1px solid rgba(10, 169, 178, 0.24);
}

.cert-grid img {
  width: 78px;
  height: 62px;
  object-fit: contain;
  margin-bottom: 8px;
}

.cert-grid strong,
.cert-grid span {
  display: block;
}

.cert-grid strong {
  color: #0b2b46;
  font-size: 15px;
  line-height: 1.24;
  font-weight: 900;
}

.cert-grid span {
  max-width: 160px;
  margin-top: 6px;
  color: #5b6f7f;
  font-size: 13px;
  line-height: 1.32;
}

.cert-panel__actions {
  display: grid;
  justify-items: center;
  gap: 10px;
  margin-top: 24px;
  text-align: center;
}

.cert-panel__actions p {
  max-width: 620px;
  margin: 0;
  color: #526173;
  font-size: 13.5px;
  line-height: 1.45;
}

.review-heading {
  display: grid;
  justify-items: center;
  gap: 14px;
  max-width: none;
  margin: 0 auto 30px;
  text-align: center;
}

.review-heading::after {
  content: "";
  width: 72px;
  height: 4px;
  border-radius: 999px;
  background: var(--orange);
}

.review-heading h2 {
  width: 100%;
  max-width: 900px;
  margin: 0;
  color: var(--ink);
  font-size: 31px;
  line-height: 1.18;
  font-weight: 900;
  overflow-wrap: anywhere;
}

.review-carousel {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
}

.review-carousel__viewport {
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding: 4px 0 10px;
}

.review-carousel__viewport::-webkit-scrollbar {
  display: none;
}

.review-carousel__track {
  display: flex;
  gap: 16px;
}

.review-slide {
  flex: 0 0 calc((100% - 32px) / 3);
  min-width: 0;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.05);
  cursor: zoom-in;
  overflow: hidden;
  scroll-snap-align: start;
}

.review-slide img {
  width: 100%;
  height: 176px;
  object-fit: contain;
  background: #f8fafc;
}

.carousel-button {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--teal-dark);
  font-size: 32px;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
}

.carousel-button:hover {
  border-color: var(--teal);
}

.carousel-dots {
  grid-column: 1 / -1;
  display: flex;
  justify-content: center;
  gap: 8px;
  min-height: 12px;
}

.carousel-dots button {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: #cbd5e1;
  cursor: pointer;
}

.carousel-dots button.is-active {
  width: 22px;
  background: var(--teal);
}

.review-hint {
  grid-column: 1 / -1;
  margin: 2px 0 0;
  color: var(--muted);
  font-size: 14px;
  text-align: center;
}

.review-actions {
  grid-column: 1 / -1;
  display: flex;
  justify-content: center;
  margin-top: 8px;
}

.review-actions .btn {
  min-width: 260px;
}

.review-lightbox {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: none;
  place-items: center;
  padding: 24px;
  background: rgba(15, 23, 42, 0.78);
}

.review-lightbox.is-open {
  display: grid;
}

.review-lightbox__content {
  max-width: min(100%, 1080px);
  max-height: 85svh;
  overflow: auto;
  background: var(--white);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.review-lightbox img {
  display: block;
  width: 100%;
  max-width: 100%;
  max-height: 85svh;
  object-fit: contain;
  background: var(--white);
}

.review-lightbox__close {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 2;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.55);
  color: var(--white);
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
}

.section--size {
  padding: 48px 0 52px;
  background: var(--white);
}

.size-heading {
  display: grid;
  justify-items: center;
  gap: 14px;
  max-width: 920px;
  margin: 0 auto 24px;
  text-align: center;
}

.size-heading h2 {
  width: 100%;
  margin: 0;
  color: var(--ink);
  font-size: 31px;
  line-height: 1.18;
  font-weight: 900;
  overflow-wrap: anywhere;
}

.size-heading h2::after {
  content: "";
  display: block;
  width: 72px;
  height: 4px;
  margin: 10px auto 0;
  border-radius: 999px;
  background: var(--orange);
}

.size-note {
  max-width: 880px;
  margin: 0;
  padding: 12px 16px;
  border: 1px solid rgba(242, 158, 36, 0.42);
  border-radius: 8px;
  background: #fff8ed;
  color: #3f4f5c;
  box-shadow: 0 10px 24px rgba(242, 158, 36, 0.08);
}

.size-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(0, 1.04fr);
  gap: 24px;
  align-items: stretch;
  max-width: 1080px;
  margin: 0 auto;
}

.size-measure-card {
  margin: 0;
  display: grid;
  place-items: center;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  overflow: visible;
}

.size-measure-card img {
  width: 100%;
  height: 100%;
  max-height: 392px;
  object-fit: contain;
}

.size-table-card {
  display: flex;
  align-items: stretch;
  margin: 0;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 14px 36px rgba(15, 23, 42, 0.08);
}

.table-wrap {
  overflow-x: auto;
}

.size-table-wrap {
  width: 100%;
}

table.size-table {
  min-width: 0;
  height: 100%;
  table-layout: fixed;
}

.size-table th,
.size-table td {
  padding: 14px 16px;
  text-align: center;
}

.size-table th {
  background: var(--teal);
  color: var(--white);
  font-weight: 800;
}

.size-table tbody tr:nth-child(even) {
  background: #f7fbfb;
}

.size-table tbody td:first-child {
  color: var(--teal-dark);
  font-weight: 800;
}

.size-cta {
  display: flex;
  justify-content: center;
  margin-top: 22px;
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 520px;
}

th,
td {
  padding: 12px 14px;
  border-top: 1px solid var(--line);
  text-align: left;
}

th {
  color: var(--teal-dark);
  background: #f7fbfb;
}

.faq-layout {
  max-width: 1120px;
  text-align: center;
}

.faq-heading {
  margin: 0 auto 24px;
}

.faq-heading h2 {
  width: 100%;
  margin: 0;
  color: var(--ink);
  font-size: 31px;
  font-weight: 900;
  line-height: 1.18;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}

.faq-heading h2::after {
  content: "";
  display: block;
  width: 72px;
  height: 4px;
  margin: 10px auto 0;
  border-radius: 999px;
  background: var(--orange);
}

.faq-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 12px;
  align-items: start;
  text-align: left;
}

.faq-list details {
  border: 1px solid #dbe1e3;
  border-radius: 8px;
  background: var(--white);
  overflow: hidden;
}

.faq-list summary {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  min-height: 54px;
  padding: 14px 16px;
  color: var(--ink);
  font-weight: 800;
  line-height: 1.35;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "";
  width: 8px;
  height: 8px;
  flex: 0 0 8px;
  border-right: 2px solid var(--teal-dark);
  border-bottom: 2px solid var(--teal-dark);
  transform: rotate(45deg) translateY(-2px);
  transition: transform 0.2s ease;
}

.faq-list details[open] summary::after {
  transform: rotate(-135deg) translateY(-2px);
}

.faq-list details p {
  margin: 0;
  padding: 0 16px 16px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}

input {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0 14px;
  font: inherit;
}

.site-footer {
  background: var(--white);
  color: var(--ink);
}

.footer-newsletter {
  background: #075f66;
  color: var(--white);
  padding: 28px 0;
}

.footer-newsletter__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
}

.footer-newsletter__content {
  display: flex;
  align-items: center;
  gap: 18px;
}

.footer-newsletter h2 {
  max-width: 720px;
  margin: 0;
  font-size: 22px;
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

.footer-newsletter__cta {
  justify-self: end;
  min-width: 206px;
  min-height: 50px;
  border-radius: 8px;
  padding: 0 28px;
  box-shadow: none;
}

.footer-main {
  padding: 46px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(220px, 1.25fr) minmax(130px, 0.72fr) minmax(150px, 0.8fr) minmax(250px, 1.18fr) minmax(170px, 0.85fr);
  gap: 28px;
  align-items: start;
}

.footer-logo {
  width: 70px;
  height: 70px;
  object-fit: contain;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--teal-dark);
  font-size: 22px;
  font-weight: 900;
}

.footer-company p {
  max-width: 320px;
  margin: 16px 0 0;
  color: #526173;
  font-size: 15px;
  line-height: 1.65;
}

.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.footer-social a {
  display: inline-block;
  position: relative;
  width: 36px;
  height: 36px;
  flex: 0 0 36px;
  border: 1px solid #d9e6e8;
  border-radius: 999px;
  background: var(--white);
  overflow: hidden;
}

.footer-social img {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 68px;
  height: 68px;
  object-fit: contain;
  max-width: none;
  transform: translate(-50%, -50%);
}

.footer-links,
.footer-contact,
.footer-protection,
.footer-support {
  display: grid;
  gap: 12px;
}

.footer-support {
  gap: 22px;
}

.site-footer h3 {
  margin: 0;
  color: var(--teal-dark);
  font-size: 15px;
  font-weight: 900;
  line-height: 1.25;
  text-transform: uppercase;
}

.footer-links a {
  color: #526173;
  font-size: 15px;
  line-height: 1.4;
}

.footer-links a:hover,
.footer-contact a:hover {
  color: var(--teal-dark);
}

.footer-contact ul {
  display: grid;
  gap: 11px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-contact li {
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr);
  gap: 9px;
  align-items: start;
  color: #526173;
  font-size: 14px;
  line-height: 1.45;
}

.footer-contact svg {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  fill: none;
  stroke: var(--teal-dark);
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer-contact a {
  color: inherit;
}

.footer-badge {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  width: 190px;
  min-height: 64px;
  padding: 9px 12px;
  border: 1px solid #d9e6e8;
  border-radius: 8px;
  background: var(--white);
}

.footer-badge__icon {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  overflow: hidden;
  position: relative;
}

.footer-badge__icon img {
  max-width: none;
  object-fit: contain;
  position: absolute;
}

.footer-badge__icon--bct img {
  width: 180px;
  height: 180px;
  left: -17px;
  top: -65px;
}

.footer-badge__icon--protected img {
  width: 250px;
  height: 250px;
  left: -44px;
  top: -104px;
}

.footer-badge strong {
  color: var(--teal-dark);
  font-size: 12px;
  line-height: 1.25;
  font-weight: 900;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  margin-top: 34px;
  padding-top: 20px;
  border-top: 1px solid #d9e6e8;
}

.footer-bottom p {
  margin: 0;
  color: #64748b;
  font-size: 14px;
}

.footer-bottom__meta {
  display: grid;
  gap: 8px;
  min-width: 0;
}

.footer-legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  color: #64748b;
  font-size: 13px;
  line-height: 1.35;
}

.footer-legal-links a:hover {
  color: var(--teal-dark);
}

.footer-sales-note {
  width: min(100%, 420px);
  max-width: 420px;
  text-align: right;
  white-space: normal;
  word-break: normal;
  overflow-wrap: anywhere;
}

.footer-sales-note span {
  display: inline;
}

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

.mobile-sticky-cta {
  display: none;
}

.content-page {
  background: linear-gradient(180deg, #f8ffff 0%, #ffffff 260px);
}

.page-hero {
  padding: 44px 0 24px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 14px;
}

.breadcrumb a:hover {
  color: var(--teal-dark);
}

.page-hero h1 {
  margin: 10px 0 14px;
  color: var(--ink);
  font-size: clamp(30px, 4vw, 42px);
  line-height: 1.08;
}

.page-lead {
  max-width: 760px;
  margin: 0;
  color: #475569;
  font-size: 18px;
}

.page-content {
  padding: 18px 0 56px;
}

.page-stack {
  display: grid;
  gap: 24px;
}

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

.info-card,
.category-card,
.split-panel,
.notice-card,
.media-card,
.table-wrap {
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--white);
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.05);
}

.info-card,
.category-card {
  padding: 22px;
}

.info-card h2,
.split-panel h2 {
  margin: 0 0 10px;
  color: var(--teal-dark);
  font-size: 20px;
}

.info-card p,
.category-card p,
.split-panel p {
  margin: 0;
  color: #526173;
}

.info-card .check-list,
.split-panel .check-list {
  margin-top: 2px;
}

.info-card a {
  color: var(--teal-dark);
  font-weight: 700;
}

.certificate-gallery {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  align-items: stretch;
}

.certificate-card {
  display: grid;
  grid-template-rows: auto auto 1fr;
  gap: 12px;
  align-content: start;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--white);
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.07);
}

.certificate-card h3 {
  margin: 0;
  color: var(--teal-dark);
  font-size: 18px;
  line-height: 1.25;
  text-align: center;
}

.certificate-card__image {
  position: relative;
  display: grid;
  place-items: center;
  height: 238px;
  padding: 0;
  border-radius: 12px;
  overflow: hidden;
  background: var(--white);
  box-shadow: inset 0 0 0 1px rgba(15, 23, 42, 0.06);
}

.certificate-card__image img {
  position: absolute;
  inset: 10px;
  width: calc(100% - 20px) !important;
  max-width: none;
  height: calc(100% - 20px) !important;
  max-height: none;
  object-fit: contain;
  border-radius: 8px;
  background: var(--white);
}

.certificate-card p {
  margin: 0;
  padding: 10px;
  border-radius: 10px;
  background: #f8ffff;
  color: #526173;
  font-size: 14px;
  line-height: 1.45;
  text-align: center;
}

.byt-lookup-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
  padding: 24px;
  border: 1px solid rgba(10, 169, 178, 0.24);
  border-radius: 20px;
  background: linear-gradient(135deg, #f4ffff 0%, #ffffff 62%, #fff8eb 100%);
  box-shadow: 0 16px 38px rgba(15, 23, 42, 0.07);
}

.byt-lookup-card h2 {
  margin: 4px 0 10px;
  color: var(--ink);
  font-size: clamp(22px, 2.6vw, 30px);
  line-height: 1.2;
}

.byt-lookup-card p {
  max-width: 760px;
  margin: 0;
  color: #526173;
}

.byt-lookup-card__note {
  margin-top: 10px !important;
  color: #0b5560 !important;
  font-weight: 700;
}

.byt-lookup-card__button {
  min-width: 260px;
}

.split-panel a {
  color: var(--teal-dark);
  font-weight: 700;
}

.legacy-notice {
  max-width: 820px;
  margin: 0 auto;
  padding: 24px;
  border: 1px solid rgba(10, 169, 178, 0.22);
  border-radius: 16px;
  background: #f8ffff;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.06);
}

.legacy-notice h2 {
  margin: 0 0 10px;
  color: var(--ink);
  font-size: clamp(22px, 2.6vw, 30px);
  line-height: 1.2;
}

.legacy-notice p {
  margin: 0;
  color: #526173;
}

.legacy-notice__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.info-grid--contact .info-card p {
  font-size: 16px;
}

.contact-grid {
  align-items: stretch;
}

.contact-card {
  display: grid;
  align-content: start;
  gap: 12px;
}

.contact-card__heading {
  display: flex;
  align-items: center;
  gap: 12px;
}

.contact-card__heading h2 {
  margin-bottom: 0;
}

.contact-icon {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  border-radius: 999px;
  background: var(--teal-soft);
  color: var(--teal-dark);
}

.contact-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-card__value {
  font-size: 18px;
  font-weight: 700;
}

.contact-card__actions,
.inline-actions,
.page-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

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

.contact-channel-card strong {
  overflow-wrap: anywhere;
}

.contact-directory {
  display: grid;
  gap: 24px;
}

.contact-hero-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  padding: 30px;
  border: 1px solid rgba(10, 169, 178, 0.28);
  border-radius: 20px;
  background:
    linear-gradient(135deg, rgba(10, 169, 178, 0.12) 0%, rgba(255, 255, 255, 0.96) 52%, rgba(242, 158, 36, 0.16) 100%),
    var(--white);
  box-shadow: 0 22px 55px rgba(8, 127, 134, 0.13);
}

.contact-hero-card__content {
  display: grid;
  gap: 8px;
}

.contact-hero-card__label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--teal-dark);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.contact-hero-card__dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--orange);
  box-shadow: 0 0 0 6px rgba(242, 158, 36, 0.18);
}

.contact-hero-card h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(24px, 3.2vw, 34px);
  line-height: 1.08;
}

.contact-hero-card__phone {
  margin: 0;
  color: var(--teal-dark);
  font-size: clamp(32px, 5vw, 54px);
  font-weight: 900;
  line-height: 1;
}

.contact-hero-card__phone a {
  color: inherit;
}

.contact-hero-card__note {
  margin: 0;
  color: #475569;
  font-size: 17px;
}

.contact-hero-card__actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(130px, 1fr));
  gap: 12px;
  min-width: 330px;
}

.contact-hero-card__actions .btn {
  min-height: 54px;
  padding-inline: 22px;
}

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

.contact-mini-card {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  min-height: 146px;
  height: 100%;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--white);
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.05);
}

.contact-mini-card > div {
  display: grid;
  align-content: start;
  min-width: 0;
}

.contact-mini-card__icon {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  border-radius: 12px;
  background: var(--teal-soft);
  color: var(--teal-dark);
}

.contact-mini-card__icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-mini-card h2 {
  margin: 0 0 6px;
  color: var(--teal-dark);
  font-size: 18px;
}

.contact-mini-card p {
  margin: 0;
  color: #526173;
}

.contact-mini-card p + p {
  margin-top: 4px;
}

.contact-mini-card a {
  color: var(--teal-dark);
  font-weight: 800;
  overflow-wrap: anywhere;
}

.contact-mini-card--email a[href^="mailto:"] {
  white-space: nowrap;
  font-size: 13px;
}

.contact-mini-card .btn {
  width: fit-content;
  min-width: 132px;
  min-height: 44px;
  margin-top: 12px;
  padding-inline: 14px;
}

.contact-section {
  display: grid;
  gap: 16px;
}

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

.contact-address-grid--single {
  grid-template-columns: 1fr;
}

.contact-address-card {
  display: grid;
  align-content: start;
  gap: 12px;
  min-height: 150px;
  padding: 24px;
  border: 1px solid rgba(10, 169, 178, 0.24);
  border-radius: 20px;
  background: #f8ffff;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.05);
}

.contact-address-card--showroom {
  border-color: rgba(242, 158, 36, 0.34);
  background: #fffaf0;
}

.contact-address-card__label {
  display: inline-flex;
  width: fit-content;
  padding: 5px 10px;
  border-radius: 999px;
  background: var(--teal);
  color: var(--white);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
}

.contact-address-card--showroom .contact-address-card__label {
  background: var(--orange);
}

.contact-address-card h3 {
  margin: 0;
  color: var(--ink);
  font-size: 22px;
  line-height: 1.2;
}

.contact-address-card p {
  margin: 0;
  color: #475569;
  font-size: 17px;
}

.contact-address-card .btn {
  width: fit-content;
  margin-top: auto;
}

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

.official-channel-card {
  display: grid;
  justify-items: center;
  align-content: start;
  gap: 10px;
  min-height: 154px;
  padding: 16px 12px;
  border: 0;
  border-radius: 16px;
  background: #f8ffff;
  color: var(--ink);
  text-align: center;
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.04);
}

.official-channel-card:hover {
  background: #f0fbfb;
  transform: translateY(-2px);
}

.official-channel-card__icon {
  position: relative;
  display: inline-block;
  width: 76px;
  height: 76px;
  overflow: hidden;
  border: 0;
  border-radius: 999px;
  background: var(--white);
}

.official-channel-card__icon img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 176px;
  height: 176px;
  max-width: none;
  object-fit: contain;
  transform: translate(-50%, -50%);
}

.official-channel-card__icon--svg {
  color: var(--teal-dark);
}

.official-channel-card__icon--svg svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.official-channel-card span:not(.official-channel-card__icon) {
  color: var(--teal-dark);
  font-size: 14px;
  font-weight: 900;
}

.official-channel-card strong {
  color: #526173;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.28;
  overflow-wrap: anywhere;
}

.split-panel {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  padding: 24px;
}

.split-panel--media {
  align-items: center;
}

.media-card {
  margin: 0;
  padding: 18px;
}

.media-card img {
  width: 100%;
  max-height: 360px;
  object-fit: contain;
}

.check-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 18px;
  color: #526173;
}

.notice-card {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  padding: 18px 20px;
  border-color: rgba(10, 169, 178, 0.28);
  background: var(--teal-soft);
  color: #0b5560;
}

.notice-card--warm {
  border-color: rgba(242, 158, 36, 0.3);
  background: #fff8eb;
  color: #8b4b05;
}

.notice-card--suggestion {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  border-color: rgba(242, 158, 36, 0.42);
  background: linear-gradient(180deg, #fffaf1 0%, #fffef7 100%);
  color: #70420c;
  box-shadow: 0 10px 24px rgba(242, 158, 36, 0.08);
}

.notice-card__icon {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 999px;
  background: #fff2dc;
  color: var(--orange-dark);
}

.notice-card__icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.notice-card__content {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.notice-card__content strong {
  color: #7a4508;
  font-size: 16px;
  line-height: 1.25;
}

.notice-card__content p {
  margin: 0;
  color: #45535f;
  font-size: 15.5px;
  line-height: 1.55;
}

.page-section-heading {
  display: grid;
  gap: 8px;
}

.page-section-heading h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(22px, 2.6vw, 28px);
  line-height: 1.2;
}

.usage-page .page-hero {
  padding: 46px 0 30px;
}

.usage-page .page-hero .container {
  display: grid;
  justify-items: center;
  text-align: center;
}

.usage-page .breadcrumb {
  justify-content: center;
}

.usage-page .page-hero h1 {
  display: grid;
  justify-items: center;
  gap: 12px;
  max-width: 100%;
  margin: 10px 0 14px;
  color: var(--teal-dark);
  overflow-wrap: anywhere;
}

.usage-page .page-hero h1::after {
  content: "";
  width: 72px;
  height: 4px;
  border-radius: 999px;
  background: var(--orange);
}

.usage-page .page-lead {
  max-width: 760px;
  margin: 0 auto;
}

.usage-page .page-content {
  padding: 18px 0 42px;
}

.usage-page .page-stack {
  gap: 34px;
}

.usage-section {
  display: grid;
  gap: 18px;
  min-width: 0;
}

.usage-section__intro {
  display: grid;
  gap: 8px;
}

.usage-section__intro h2,
.usage-alert-box h2 {
  margin: 0;
  color: var(--teal-dark);
  font-size: clamp(24px, 2.6vw, 32px);
  font-weight: 900;
  line-height: 1.2;
}

.usage-section__intro p {
  max-width: 760px;
  margin: 0;
  color: #526173;
  font-size: 17px;
}

.usage-section__intro--with-image {
  grid-template-columns: minmax(0, 1fr) minmax(220px, 340px);
  align-items: center;
  gap: 22px;
}

.usage-illustration {
  display: grid;
  justify-self: end;
  gap: 8px;
  margin: 0;
  padding: 12px;
  border: 1px solid rgba(10, 169, 178, 0.18);
  border-radius: 8px;
  background: #f8ffff;
}

.usage-illustration img {
  width: 100%;
  height: auto;
  max-height: 150px;
  object-fit: contain;
}

.usage-illustration figcaption {
  margin: 0;
  color: #526173;
  font-size: 13.5px;
  line-height: 1.35;
  text-align: center;
}

.wear-steps-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  min-width: 0;
}

.wear-step-card {
  display: grid;
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(10, 169, 178, 0.18);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.055);
}

.wear-step-card__media {
  display: grid;
  place-items: center;
  min-width: 0;
  aspect-ratio: 16 / 9;
  margin: 0;
  padding: 10px;
  overflow: hidden;
  background: #f8ffff;
}

.wear-step-card__media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.wear-step-card__body {
  display: grid;
  gap: 7px;
  padding: 16px;
}

.wear-step-card__number {
  color: var(--orange-dark);
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 0.02em;
}

.wear-step-card h3,
.usage-timing-card h3,
.usage-care-card h3,
.usage-lifetime-box h3,
.usage-note-box h3 {
  margin: 0;
  color: #0b2b46;
  font-size: 18px;
  line-height: 1.25;
}

.wear-step-card p,
.usage-timing-card p,
.usage-care-card p,
.usage-lifetime-box p {
  margin: 0;
  color: #526173;
  font-size: 15.5px;
  line-height: 1.55;
}

.usage-note-box,
.usage-alert-box {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
  border-radius: 8px;
}

.usage-note-box {
  padding: 20px;
  border: 1px solid rgba(242, 158, 36, 0.35);
  background: #fff8eb;
}

.usage-note-box__icon,
.usage-alert-box__icon,
.usage-timing-card__icon {
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
}

.usage-note-box__icon,
.usage-alert-box__icon {
  width: 48px;
  height: 48px;
  background: #fff2dc;
  color: var(--orange-dark);
}

.usage-note-box svg,
.usage-alert-box svg,
.usage-timing-card svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.usage-note-box ul,
.usage-alert-box ul {
  display: grid;
  gap: 8px;
  margin: 10px 0 0;
  padding-left: 18px;
  color: #45535f;
}

.usage-timing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  min-width: 0;
}

.usage-timing-card,
.usage-care-card {
  display: grid;
  min-width: 0;
  align-content: start;
  gap: 10px;
  padding: 18px;
  border: 1px solid rgba(10, 169, 178, 0.18);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 22px rgba(15, 23, 42, 0.045);
}

.usage-timing-card__icon {
  width: 42px;
  height: 42px;
  background: var(--teal-soft);
  color: var(--teal-dark);
}

.usage-timing-card__icon svg {
  width: 22px;
  height: 22px;
}

.usage-alert-box {
  padding: 22px;
  border: 1px solid rgba(242, 111, 36, 0.26);
  background: linear-gradient(135deg, #fff8eb 0%, #fffef7 100%);
}

.usage-alert-box__content {
  display: grid;
  gap: 12px;
}

.usage-alert-box h2 {
  color: #9a4f08;
}

.usage-alert-box ul {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 0;
  color: #0b2b46;
  font-weight: 700;
}

.usage-alert-box p {
  margin: 0;
  color: #45535f;
  font-size: 16px;
  line-height: 1.6;
}

.usage-care-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  min-width: 0;
}

.usage-care-card__symbol {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 999px;
  background: var(--teal-soft);
  color: var(--teal-dark);
  font-size: 17px;
  font-weight: 900;
  line-height: 1;
}

.usage-lifetime-box {
  padding: 20px;
  border: 1px solid rgba(10, 169, 178, 0.24);
  border-radius: 8px;
  background: #f8ffff;
}

.usage-final-cta {
  padding-bottom: 48px;
}

.usage-final-cta__inner {
  align-items: center;
  border-radius: 8px;
}

.usage-final-cta__inner h2 {
  margin: 0 0 8px;
}

.usage-final-cta__inner p {
  max-width: 720px;
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
}

.usage-final-cta__actions {
  display: grid;
  grid-template-columns: repeat(3, minmax(170px, 1fr));
  gap: 10px;
  width: min(100%, 660px);
}

.usage-final-cta__actions .btn {
  width: 100%;
  min-height: 48px;
  padding-inline: 14px;
  white-space: normal;
  text-align: center;
  line-height: 1.18;
}

@media (max-width: 1120px) {
  .usage-final-cta__inner {
    display: grid;
    justify-items: center;
    text-align: center;
  }

  .usage-final-cta__actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: min(100%, 620px);
  }

  .usage-final-cta__actions .btn:first-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 980px) {
  .usage-section__intro--with-image {
    grid-template-columns: 1fr;
  }

  .usage-illustration {
    justify-self: center;
    max-width: 520px;
  }

  .wear-steps-grid,
  .usage-timing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 700px) {
  .usage-page .page-hero {
    padding: 28px 0 20px;
  }

  .usage-page .container {
    width: min(1200px, calc(100vw - 24px));
  }

  .usage-page .page-hero h1 {
    gap: 9px;
    max-width: 330px;
    font-size: clamp(27px, 7vw, 31px);
  }

  .usage-page .page-hero h1::after {
    width: 52px;
    height: 3px;
  }

  .usage-page .page-content {
    padding: 12px 0 30px;
  }

  .usage-page .page-stack {
    gap: 26px;
  }

  .usage-section {
    gap: 14px;
  }

  .usage-section__intro h2,
  .usage-alert-box h2 {
    font-size: 22px;
  }

  .usage-section__intro p {
    font-size: 15.5px;
  }

  .usage-illustration {
    width: min(100%, 360px);
    max-width: 100%;
    padding: 10px;
  }

  .usage-illustration img {
    width: 100%;
    height: auto;
    max-height: none;
  }

  .usage-illustration figcaption {
    font-size: 13px;
  }

  .wear-steps-grid,
  .usage-timing-grid,
  .usage-care-grid {
    grid-template-columns: 1fr;
  }

  .wear-step-card__media {
    padding: 8px;
  }

  .wear-step-card__body,
  .usage-timing-card,
  .usage-care-card {
    padding: 15px;
  }

  .wear-step-card h3,
  .usage-timing-card h3,
  .usage-care-card h3,
  .usage-lifetime-box h3,
  .usage-note-box h3 {
    font-size: 17px;
  }

  .wear-step-card p,
  .usage-timing-card p,
  .usage-care-card p,
  .usage-lifetime-box p {
    font-size: 14.5px;
  }

  .usage-note-box,
  .usage-alert-box {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 18px;
  }

  .usage-note-box__icon,
  .usage-alert-box__icon {
    width: 42px;
    height: 42px;
  }

  .usage-alert-box ul {
    grid-template-columns: 1fr;
    gap: 7px;
  }

  .usage-lifetime-box {
    padding: 18px;
  }

  .usage-final-cta {
    padding-bottom: 34px;
  }

  .usage-final-cta__inner {
    display: grid;
    gap: 18px;
    padding: 20px;
  }

  .usage-final-cta__actions {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
  }

  .usage-final-cta__actions .btn:first-child {
    grid-column: auto;
  }

  .usage-final-cta__actions .btn {
    width: 100%;
  }
}

.about-hero h1 {
  max-width: 920px;
  overflow-wrap: anywhere;
}

.about-hero__copy {
  display: grid;
  gap: 12px;
  max-width: 820px;
  color: #475569;
  font-size: 18px;
}

.about-hero__copy p,
.about-copy p {
  margin: 0;
}

.about-copy {
  display: grid;
  gap: 14px;
  color: #526173;
}

.about-page-stack {
  gap: 28px;
}

.about-card {
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--white);
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.05);
  padding: 28px;
}

.about-card h2 {
  margin: 0 0 14px;
  color: var(--teal-dark);
  font-size: clamp(23px, 2.8vw, 32px);
  line-height: 1.18;
}

.about-card--wide {
  max-width: 980px;
}

.about-values {
  align-items: stretch;
}

.about-value-card {
  display: grid;
  align-content: start;
  gap: 8px;
}

.about-service-panel {
  align-items: start;
}

.about-service-panel .eyebrow {
  margin-bottom: 8px;
}

.about-commitment {
  border-color: rgba(10, 169, 178, 0.24);
  background: linear-gradient(180deg, #f8ffff 0%, #ffffff 100%);
}

.contact-list a {
  color: var(--teal-dark);
  font-weight: 700;
}

.table-block {
  display: grid;
  gap: 14px;
}

.table-wrap {
  overflow-x: auto;
}

.page-table {
  width: 100%;
  min-width: 560px;
  border-collapse: collapse;
}

.page-table th,
.page-table td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
  text-align: left;
}

.page-table th {
  color: var(--teal-dark);
  background: #f5fbfb;
}

.page-table a {
  color: var(--teal-dark);
  font-weight: 700;
}

.page-table tr:last-child td {
  border-bottom: 0;
}

.page-table--compact {
  min-width: 720px;
}

.page-table--wide {
  min-width: 680px;
}

.return-policy-page .page-hero .container {
  display: grid;
  justify-items: center;
  text-align: center;
}

.return-policy-page .breadcrumb {
  justify-content: center;
}

.return-policy-page .page-hero h1 {
  display: grid;
  justify-items: center;
  gap: 12px;
  color: var(--teal-dark);
}

.return-policy-page .page-hero h1::after,
.return-policy-page .page-section-heading h2::after {
  content: "";
  display: block;
  width: 72px;
  height: 4px;
  margin: 0 auto;
  border-radius: 999px;
  background: var(--orange);
}

.return-policy-page .page-section-heading {
  justify-items: center;
  text-align: center;
}

.return-policy-page .page-section-heading h2 {
  display: grid;
  justify-items: center;
  gap: 10px;
  color: var(--teal-dark);
  font-weight: 900;
  text-transform: uppercase;
}

.return-policy-page .page-stack > * {
  min-width: 0;
}

.return-policy-page .table-wrap {
  max-width: 100%;
  min-width: 0;
}

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

.return-benefit-card {
  display: grid;
  min-width: 0;
  min-height: 176px;
  align-content: center;
  justify-items: center;
  gap: 10px;
  padding: 18px 14px;
  border: 1px solid rgba(10, 169, 178, 0.22);
  border-radius: 18px;
  background: var(--white);
  text-align: center;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.05);
}

.return-icon,
.return-highlight-card__icon,
.return-step-card__icon {
  display: inline-grid;
  place-items: center;
  color: var(--teal);
}

.return-icon {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: var(--teal-soft);
}

.return-icon svg,
.return-highlight-card__icon svg,
.return-step-card__icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.return-benefit-card h2 {
  margin: 0;
  color: var(--teal-dark);
  font-size: 15px;
  font-weight: 900;
  line-height: 1.25;
  text-transform: uppercase;
}

.return-benefit-card p {
  margin: 0;
  color: #526173;
  font-size: 14px;
  line-height: 1.4;
}

.return-highlight-card {
  display: grid;
  grid-template-columns: 50px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  padding: 22px;
  border: 1px solid rgba(10, 169, 178, 0.34);
  border-radius: 20px;
  background:
    linear-gradient(135deg, #effcfc 0%, #ffffff 68%, #fff8eb 100%),
    var(--white);
  color: #314150;
  box-shadow: 0 14px 34px rgba(8, 127, 134, 0.08);
}

.return-highlight-card__icon {
  width: 50px;
  height: 50px;
  border-radius: 16px;
  background: rgba(10, 169, 178, 0.1);
}

.return-highlight-card p {
  margin: 0;
  color: #475569;
  font-size: 16.5px;
  line-height: 1.65;
}

.return-highlight-card strong {
  color: var(--teal-dark);
}

.return-steps-section,
.return-support-section,
.return-faq-section {
  display: grid;
  gap: 18px;
}

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

.return-step-card,
.return-support-card {
  min-width: 0;
  border: 1px solid rgba(10, 169, 178, 0.2);
  border-radius: 18px;
  background: var(--white);
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.055);
}

.return-step-card {
  position: relative;
  display: grid;
  align-content: start;
  gap: 10px;
  min-height: 244px;
  padding: 22px 20px;
  overflow: hidden;
}

.return-step-card__number {
  position: absolute;
  top: 14px;
  right: 16px;
  color: rgba(10, 169, 178, 0.14);
  font-size: 40px;
  font-weight: 900;
  line-height: 1;
}

.return-step-card__icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: var(--teal-soft);
}

.return-step-card h3,
.return-support-card h3 {
  margin: 4px 0 0;
  color: var(--teal-dark);
  font-size: 18px;
  line-height: 1.25;
}

.return-step-card p {
  margin: 0;
  color: #526173;
}

.return-steps-section__cta {
  display: flex;
  justify-content: center;
}

.return-support-card {
  padding: 20px;
}

.return-support-card .check-list {
  margin-top: 12px;
}

.return-contact-note {
  justify-content: center;
  text-align: center;
}

.return-contact-note a {
  color: var(--teal-dark);
  font-weight: 900;
}

.return-faq-list {
  grid-template-columns: 1fr;
  max-width: 940px;
  width: 100%;
  margin: 0 auto;
}

.return-faq-list details {
  border-color: rgba(10, 169, 178, 0.2);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.045);
}

.return-faq-list summary {
  color: #0b2b46;
}

.return-faq-list details p {
  color: #475569;
  font-size: 15.5px;
  line-height: 1.62;
}

.size-guide-hero .page-lead {
  max-width: 680px;
}

.size-guide-stack {
  gap: 24px;
}

.size-flow-card,
.size-measure-panel,
.size-product-nav,
.size-guide-block,
.size-secondary-section {
  min-width: 0;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--white);
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.06);
}

.size-flow-card,
.size-measure-panel {
  border-color: rgba(10, 169, 178, 0.22);
  background: linear-gradient(135deg, #f8ffff 0%, #ffffff 64%, #fff9ef 100%);
}

.size-guide-heading {
  display: grid;
  justify-items: center;
  gap: 8px;
  text-align: center;
}

.size-guide-heading--left {
  justify-items: start;
  text-align: left;
}

.size-guide-heading .eyebrow {
  margin: 0;
}

.size-guide-heading h2 {
  margin: 0;
  color: var(--orange);
  font-size: clamp(22px, 2.6vw, 30px);
  line-height: 1.18;
}

.size-guide-heading h2::after {
  content: "";
  display: block;
  width: 72px;
  height: 4px;
  margin: 10px auto 0;
  border-radius: 999px;
  background: var(--orange);
}

.size-guide-heading--left h2::after {
  margin-left: 0;
}

.size-step-grid,
.size-measure-grid,
.size-product-nav__grid {
  display: grid;
  gap: 14px;
}

.size-step-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 18px;
}

.size-step-card,
.size-guide-page .size-measure-card,
.size-product-link {
  min-width: 0;
  border: 1px solid rgba(10, 169, 178, 0.18);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.86);
}

.size-step-card {
  padding: 18px;
}

.size-step-card span {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: var(--teal);
  color: var(--white);
  font-weight: 900;
}

.size-step-card h3,
.size-product-link strong {
  margin: 12px 0 6px;
  color: var(--teal-dark);
  font-size: 18px;
  line-height: 1.25;
}

.size-step-card p {
  margin: 0;
  color: #526173;
}

.size-guide-alert {
  display: grid;
  gap: 6px;
  padding: 18px 20px;
  border: 1px solid rgba(242, 158, 36, 0.32);
  border-radius: 18px;
  background: #fff4df;
  color: #7a4305;
  box-shadow: 0 10px 26px rgba(242, 158, 36, 0.12);
}

.size-guide-alert strong {
  color: #9a570b;
  font-size: 17px;
}

.size-measure-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1fr);
  gap: 22px;
  align-items: center;
}

.size-measure-panel__content {
  min-width: 0;
}

.size-measure-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 18px;
}

.size-guide-page .size-measure-card {
  display: grid;
  justify-items: center;
  align-content: center;
  gap: 12px;
  min-height: 136px;
  padding: 20px 16px;
  border-color: rgba(10, 169, 178, 0.26);
  background: var(--white);
  text-align: center;
  box-shadow: 0 10px 24px rgba(8, 127, 134, 0.06);
}

.size-guide-page .size-measure-card__mark {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 999px;
  background: var(--teal-soft);
  color: var(--teal-dark);
  font-size: 18px;
  font-weight: 900;
  line-height: 1;
}

.size-guide-page .size-measure-card > span:not(.size-measure-card__mark) {
  max-width: 180px;
  color: #526173;
  font-weight: 700;
  line-height: 1.35;
}

.size-guide-page .size-measure-card__label--mobile {
  display: none;
}

.size-measure-figure {
  margin: 0;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--white);
}

.size-measure-figure img {
  width: 100%;
  max-height: 330px;
  object-fit: contain;
}

.size-product-nav__grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 18px;
}

.size-product-link {
  display: grid;
  gap: 4px;
  padding: 16px;
  color: var(--ink);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.size-product-link:hover {
  border-color: rgba(10, 169, 178, 0.42);
  box-shadow: 0 12px 28px rgba(8, 127, 134, 0.1);
  transform: translateY(-2px);
}

.size-product-link--primary {
  border-color: rgba(242, 158, 36, 0.34);
  background: #fff9ef;
}

.size-product-link strong {
  margin: 0;
}

.size-product-link span {
  color: #526173;
  font-size: 14px;
  font-weight: 700;
}

.size-guide-block {
  display: grid;
  gap: 18px;
}

.size-guide-block--featured {
  padding: 28px;
  border-color: rgba(10, 169, 178, 0.36);
  background: linear-gradient(135deg, rgba(10, 169, 178, 0.08) 0%, rgba(255, 255, 255, 0.98) 56%, rgba(242, 158, 36, 0.1) 100%);
  box-shadow: 0 20px 48px rgba(8, 127, 134, 0.12);
  scroll-margin-top: 120px;
}

.size-guide-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 30px;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--teal);
  color: var(--white);
  font-size: 12px;
  font-weight: 900;
  line-height: 1.2;
  text-transform: uppercase;
  box-shadow: 0 8px 18px rgba(10, 169, 178, 0.2);
}

.size-guide-table-shell {
  max-width: 100%;
  overflow-x: auto;
  border: 1px solid #dce8e9;
  border-radius: 18px;
  background: var(--white);
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.06);
  -webkit-overflow-scrolling: touch;
}

.size-guide-block--featured .size-guide-table-shell {
  border-color: rgba(10, 169, 178, 0.3);
}

.catalog-size-table {
  width: 100%;
  min-width: 560px;
  border-collapse: separate;
  border-spacing: 0;
}

.catalog-size-table--primary {
  min-width: 620px;
}

.catalog-size-table--narrow {
  min-width: 420px;
}

.catalog-size-table--medium {
  min-width: 620px;
}

.catalog-size-table--wide {
  min-width: 760px;
}

.catalog-size-table th,
.catalog-size-table td {
  padding: 17px 20px;
  border-right: 1px solid #e3edef;
  border-bottom: 1px solid #e3edef;
  text-align: center;
  line-height: 1.4;
  white-space: nowrap;
}

.catalog-size-table thead th {
  background: var(--teal);
  color: var(--white);
  font-weight: 900;
}

.catalog-size-table tbody tr:nth-child(even) td,
.catalog-size-table tbody tr:nth-child(even) th {
  background: #f7fcfc;
}

.catalog-size-table tbody th,
.catalog-size-table tbody td {
  color: var(--teal-dark);
  font-weight: 800;
}

.catalog-size-table tbody th,
.catalog-size-table tbody td:first-child {
  background: var(--orange);
  color: var(--white);
  font-weight: 900;
}

.catalog-size-table tbody tr:nth-child(even) td:first-child,
.catalog-size-table tbody tr:nth-child(even) th:first-child {
  background: #f29e24;
}

.catalog-size-table th:last-child,
.catalog-size-table td:last-child {
  border-right: 0;
}

.catalog-size-table tbody tr:last-child th,
.catalog-size-table tbody tr:last-child td {
  border-bottom: 0;
}

.size-guide-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.size-guide-meta span {
  padding: 8px 11px;
  border-radius: 999px;
  background: rgba(10, 169, 178, 0.1);
  color: #0b5560;
  font-size: 14px;
  font-weight: 700;
}

.size-secondary-section {
  display: grid;
  gap: 18px;
}

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

.size-accordion {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--white);
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.05);
  scroll-margin-top: 116px;
}

.size-accordion--inside {
  border-color: rgba(10, 169, 178, 0.2);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.035);
}

.size-accordion summary {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px 14px;
  align-items: center;
  padding: 17px 18px;
  color: var(--teal-dark);
  cursor: pointer;
  list-style: none;
}

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

.size-accordion summary::after {
  content: "+";
  display: inline-grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: var(--teal-soft);
  color: var(--teal-dark);
  font-size: 20px;
  font-weight: 900;
}

.size-accordion[open] summary::after {
  content: "−";
}

.size-accordion summary span {
  min-width: 0;
  color: var(--teal-dark);
  font-size: 17px;
  font-weight: 900;
  line-height: 1.25;
}

.size-accordion summary small {
  grid-column: 1 / 2;
  color: #64748b;
  font-size: 13px;
  font-weight: 700;
}

.size-accordion .size-guide-table-shell {
  margin: 0 18px 18px;
}

.size-reference-warning {
  margin: 0 18px 14px;
  padding: 12px 14px;
  border: 1px solid rgba(242, 158, 36, 0.28);
  border-radius: 14px;
  background: #fff8eb;
  color: #8b4b05;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.45;
}

.size-guide-final-cta {
  padding-bottom: 56px;
}

.size-guide-final-cta .page-cta__inner {
  border-radius: 24px;
  background: linear-gradient(135deg, #075f65 0%, #087f86 100%);
  box-shadow: 0 18px 42px rgba(8, 127, 134, 0.22);
}

.size-guide-final-cta .page-cta__inner p:not(.eyebrow) {
  max-width: 720px;
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 16px;
}

.size-guide-final-cta .btn {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 14px 28px rgba(242, 158, 36, 0.24);
}

.faq-list--page {
  max-width: none;
}

.faq-page .page-hero {
  padding: 46px 0 30px;
}

.faq-page .page-hero .container {
  display: grid;
  justify-items: center;
  text-align: center;
}

.faq-page .breadcrumb {
  justify-content: center;
}

.faq-page .page-hero h1 {
  display: grid;
  justify-items: center;
  gap: 12px;
  color: var(--teal-dark);
}

.faq-page .page-hero h1::after {
  content: "";
  width: 72px;
  height: 4px;
  border-radius: 999px;
  background: var(--orange);
}

.faq-page .page-lead {
  max-width: 760px;
}

.faq-page .page-content {
  padding: 18px 0 36px;
}

.faq-page .page-stack {
  gap: 34px;
}

.faq-section {
  display: grid;
  gap: 16px;
}

.faq-section__title {
  margin: 0;
  color: var(--teal-dark);
  font-size: clamp(22px, 2.4vw, 28px);
  font-weight: 900;
  line-height: 1.2;
}

.faq-page .faq-list--page {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.faq-page .faq-list details {
  border-color: rgba(10, 169, 178, 0.2);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.045);
}

.faq-page .faq-list summary {
  min-height: 52px;
  padding: 14px 16px;
  color: #0b2b46;
}

.faq-page .faq-list details p {
  color: #475569;
  font-size: 15.5px;
  line-height: 1.62;
}

.faq-page .faq-list details p + p {
  padding-top: 0;
}

.faq-support {
  padding: 0 0 58px;
}

.faq-support__box {
  display: grid;
  gap: 22px;
  padding: 26px;
  border: 1px solid rgba(10, 169, 178, 0.24);
  border-radius: 8px;
  background:
    linear-gradient(135deg, #f8ffff 0%, #ffffff 62%, #fff8eb 100%),
    #ffffff;
  box-shadow: 0 14px 34px rgba(8, 127, 134, 0.08);
}

.faq-support__box h2 {
  max-width: 820px;
  color: #0b2b46;
  font-size: clamp(22px, 2.6vw, 30px);
  line-height: 1.2;
}

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

.faq-support__actions .btn {
  width: 100%;
  min-height: 50px;
  padding: 8px 14px;
  line-height: 1.18;
  white-space: normal;
}

@media (max-width: 700px) {
  .faq-page .page-hero {
    padding: 28px 0 20px;
  }

  .faq-page .page-hero h1 {
    gap: 9px;
    font-size: clamp(28px, 7vw, 32px);
  }

  .faq-page .page-hero h1::after {
    width: 52px;
    height: 3px;
  }

  .faq-page .page-content {
    padding: 12px 0 28px;
  }

  .faq-page .page-stack {
    gap: 24px;
  }

  .faq-section {
    gap: 12px;
  }

  .faq-section__title {
    font-size: 20px;
  }

  .faq-page .faq-list--page {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .faq-page .faq-list summary {
    min-height: 48px;
    padding: 12px 13px;
    font-size: 14.5px;
  }

  .faq-page .faq-list details p {
    padding: 0 13px 13px;
    font-size: 14px;
    line-height: 1.58;
  }

  .faq-support {
    padding-bottom: 34px;
  }

  .faq-support__box {
    gap: 18px;
    padding: 18px;
  }

  .faq-support__actions {
    grid-template-columns: 1fr;
  }

  .faq-support__actions .btn {
    min-height: 46px;
    font-size: 13px;
  }
}

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

.category-card {
  display: grid;
  gap: 10px;
}

.category-card__meta {
  display: grid;
  gap: 10px;
  margin: 0;
}

.category-card__meta div {
  display: grid;
  gap: 3px;
}

.category-card__meta dt {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.category-card__meta dd {
  margin: 0;
  color: #526173;
  font-size: 14px;
  line-height: 1.4;
}

.category-card .btn {
  width: fit-content;
  margin-top: 2px;
}

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

.category-card strong {
  color: var(--teal-dark);
  font-size: 20px;
}

.category-card:hover {
  border-color: rgba(10, 169, 178, 0.45);
  transform: translateY(-2px);
}

.catalog-badge {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  min-height: 24px;
  padding: 0 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
}

.catalog-badge {
  color: var(--teal-dark);
  background: var(--teal-soft);
}

.catalog-badge--warm {
  color: #8b4b05;
  background: #fff8eb;
}

.category-product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
  margin-top: 0;
}

@media (min-width: 1280px) {
  .category-product-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.category-product-grid--single {
  grid-template-columns: minmax(280px, 360px);
}

.category-product-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--white);
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.06);
}

.category-product-card__media {
  display: grid;
  aspect-ratio: 1 / 1;
  place-items: center;
  padding: 18px;
  background:
    radial-gradient(circle at top, rgba(232, 248, 248, 0.9), rgba(255, 255, 255, 0.96) 68%),
    var(--white);
}

.category-product-card__media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

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

.category-product-card h3 {
  min-height: 2.44em;
  color: var(--ink);
  font-size: 18px;
  overflow-wrap: anywhere;
}

.category-product-card p {
  margin: 0;
  color: var(--muted);
}

.category-product-card strong {
  color: var(--orange-dark);
  font-size: 20px;
}

.category-product-card__actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: auto;
  padding-top: 8px;
}

.category-product-card__actions .btn {
  width: 100%;
}

.page-cta {
  padding: 0 0 56px;
}

.page-cta__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 26px;
  border-radius: 24px;
  background: #075f66;
  color: var(--white);
}

.page-cta__inner .eyebrow {
  color: rgba(255, 255, 255, 0.78);
}

.page-cta__inner h2 {
  max-width: 760px;
  margin: 6px 0 0;
  font-size: clamp(20px, 2.6vw, 28px);
  line-height: 1.2;
}

@media (max-width: 1120px) {
  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

  .footer-company {
    grid-column: 1 / -1;
  }

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

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

  .certificate-card__image {
    height: 300px;
  }

  .byt-lookup-card {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .byt-lookup-card__button {
    justify-self: start;
  }

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

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

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

  .return-benefit-grid,
  .return-step-grid,
  .return-support-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 1040px) {
  .main-nav,
  .header-actions {
    display: none;
  }

  .nav-toggle {
    display: inline-grid;
  }

  .main-nav.is-open {
    position: absolute;
    left: 16px;
    right: 16px;
    top: 78px;
    display: grid;
    gap: 0;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
    max-height: min(calc(100vh - 112px), 620px);
    max-height: min(calc(100dvh - 112px), 620px);
    overflow-y: auto;
    overscroll-behavior: contain;
  }

  .main-nav.is-open > a,
  .main-nav.is-open .nav-dropdown > summary {
    padding: 14px 16px;
    border-bottom: 1px solid var(--line);
  }

  .main-nav.is-open > a {
    display: block;
  }

  .main-nav.is-open > a:last-of-type {
    border-bottom: 0;
  }

  .main-nav.is-open .nav-dropdown {
    display: grid;
    border-bottom: 1px solid var(--line);
  }

  .main-nav.is-open .nav-dropdown__panel {
    position: static;
    min-width: 0;
    width: auto;
    padding: 8px 12px 12px;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    grid-template-columns: 1fr;
    gap: 6px;
    background: #f8fcfc;
  }

  .main-nav.is-open .nav-dropdown__panel a {
    padding: 10px 12px;
    border: 0;
    border-radius: 8px;
  }

  .main-nav.is-open .main-nav__mobile-actions {
    display: grid;
    gap: 10px;
    padding: 14px 16px 16px;
  }

  .main-nav.is-open .main-nav__mobile-actions .btn {
    width: 100%;
    min-height: 44px;
    padding: 0 12px;
    font-size: 14px;
  }

  .main-nav.is-open .nav-label--desktop {
    display: none;
  }

  .main-nav.is-open .nav-label--mobile {
    display: inline;
  }

  .hero__inner,
  .two-column {
    grid-template-columns: 1fr;
  }

  .product-grid,
  .trust-strip__grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .cert-grid {
    flex-wrap: wrap;
    gap: 22px 0;
  }

  .cert-panel h2 {
    font-size: 27px;
  }

  .cert-item {
    flex: 0 1 31%;
  }

  .cert-item + .cert-item {
    border-left: 0;
  }

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

  .footer-company {
    grid-column: 1 / -1;
  }

  .why-choose {
    grid-template-columns: 1fr;
  }

  .why-choose__media {
    min-height: 330px;
    padding: 8px 20px 0;
  }

  .why-choose__media img {
    width: min(100%, 300px);
    max-height: 360px;
  }

  .why-choose__content {
    padding: 24px 18px 26px;
  }

  .why-choose__heading h2 {
    font-size: 27px;
  }

  .product-heading h2 {
    font-size: 27px;
  }

  .product-comparison__heading h2 {
    font-size: 27px;
  }

  .review-heading h2 {
    font-size: 27px;
  }

  .size-heading h2 {
    font-size: 27px;
  }

  .product-comparison__table {
    min-width: 800px;
  }

  .why-choose__reasons {
    column-gap: 18px;
  }

  .trust-strip {
    margin: -26px 0 -34px;
  }

  .trust-strip__grid {
    padding: 8px 10px;
  }

  .trust-strip article {
    min-height: 62px;
    padding: 10px;
  }

  .trust-strip article + article {
    border-left: 0;
  }

  .trust-strip article:nth-child(even) {
    border-left: 1px solid rgba(10, 169, 178, 0.16);
  }

  .trust-strip article:nth-child(n + 3) {
    border-top: 1px solid rgba(10, 169, 178, 0.16);
  }

  .trust-strip__icon {
    width: 40px;
    height: 40px;
  }
}

@media (max-width: 768px) {
  .why-choose {
    grid-template-columns: minmax(118px, 0.36fr) minmax(0, 1fr);
    column-gap: 14px;
    align-items: start;
  }

  .why-choose__media {
    align-items: flex-start;
    min-height: 0;
    padding: 8px 0 0;
  }

  .why-choose__media img {
    width: min(100%, 150px);
    height: auto;
    max-height: none;
  }

  .why-choose__content {
    padding: 0 0 8px;
  }

  .why-choose__heading {
    justify-items: start;
    gap: 8px;
    margin-bottom: 14px;
    text-align: left;
  }

  .why-choose__heading h2 {
    font-size: 19px;
    line-height: 1.16;
  }

  .why-choose__heading::after {
    width: 50px;
    height: 3px;
  }

  .product-heading {
    gap: 8px;
  }

  .product-heading::after {
    width: 50px;
    height: 3px;
  }

  .why-choose__reasons {
    grid-template-columns: 1fr;
    row-gap: 10px;
  }

  .why-choose__divider {
    display: none;
  }

  .why-reason,
  .why-reason:nth-child(-n + 3),
  .why-reason:nth-child(n + 5) {
    padding: 0;
  }

  .why-reason {
    grid-template-columns: 50px minmax(0, 1fr);
    column-gap: 10px;
    align-items: start;
  }

  .why-reason__icon {
    width: 46px;
    height: 46px;
  }

  .why-reason__icon svg {
    width: 26px;
    height: 26px;
    stroke-width: 2;
  }

  .why-reason h3 {
    font-size: 13.5px;
    line-height: 1.18;
  }

  .why-reason p {
    margin-top: 3px;
    font-size: 12px;
    line-height: 1.32;
  }
}

@media (max-width: 700px) {
  body {
    padding-bottom: 96px;
  }

  .container {
    width: min(100% - 24px, 1200px);
  }

  .top-bar__inner {
    min-height: 44px;
    justify-content: center;
    flex-wrap: wrap;
    gap: 3px 14px;
    padding: 4px 0;
    overflow: visible;
    white-space: nowrap;
    font-size: 11px;
    line-height: 1.2;
  }

  .top-bar__item {
    gap: 5px;
  }

  .top-bar__icon {
    width: 14px;
    height: 14px;
    flex-basis: 14px;
  }

  .top-bar__desktop-text {
    display: none;
  }

  .top-bar__mobile-text {
    display: inline;
  }

  .header__inner {
    min-height: 64px;
    gap: 10px;
  }

  .brand img {
    width: 36px;
    height: 36px;
    flex-basis: 36px;
  }

  .brand span {
    font-size: 17px;
  }

  .nav-toggle {
    width: 44px;
    height: 44px;
  }

  .main-nav.is-open {
    left: 12px;
    right: 12px;
    top: 64px;
    max-height: min(calc(100vh - 88px), 600px);
    max-height: min(calc(100dvh - 88px), 600px);
  }

  .main-nav.is-open > a,
  .main-nav.is-open .nav-dropdown > summary {
    padding: 13px 14px;
  }

  .hero {
    min-height: 0;
    padding: 28px 0 24px;
    background: linear-gradient(180deg, var(--cream), #f5fbfb);
  }

  .hero__inner {
    min-height: 0;
    gap: 20px;
  }

  .hero__content {
    max-width: 100%;
    padding: 0;
  }

  .hero h1 {
    font-size: clamp(29px, 8vw, 33px);
    line-height: 1.12;
  }

  h1 {
    font-size: clamp(29px, 8vw, 33px);
    line-height: 1.12;
  }

  h2 {
    font-size: 26px;
    line-height: 1.15;
  }

  h3 {
    font-size: 18px;
  }

  .hero__lead {
    font-size: 16px;
    max-width: 345px;
    margin-top: 16px;
  }

  .hero__actions {
    order: 3;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
    max-width: 100%;
    min-width: 0;
    margin-top: 20px;
    gap: 10px;
  }

  .hero__actions .btn {
    min-width: 0;
    gap: 6px;
    padding: 0 8px;
    font-size: 12px;
    white-space: normal;
    line-height: 1.2;
  }

  .hero__actions .btn span {
    min-width: 0;
  }

  .hero__actions .cta-icon {
    width: 16px;
    height: 16px;
    flex-basis: 16px;
  }

  .hero__features {
    order: 4;
    grid-template-columns: repeat(4, 25%);
    gap: 0;
    width: 100%;
    max-width: 100%;
    align-self: flex-start;
    margin-top: 14px;
    padding: 7px 0;
    overflow: hidden;
    border: 1px solid rgba(10, 169, 178, 0.14);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.72);
    backdrop-filter: none;
  }

  .hero-feature {
    min-height: 84px;
    padding: 2px 2px 0;
    min-width: 0;
    overflow: hidden;
    background: transparent;
    border: 0;
    border-radius: 0;
    backdrop-filter: none;
  }

  .hero-feature + .hero-feature::before {
    display: none;
  }

  .hero-feature img {
    width: 30px;
    height: 30px;
    margin: 0 0 3px;
  }

  .hero-feature strong {
    font-size: 9.5px;
    line-height: 1.15;
  }

  .hero-feature span {
    display: -webkit-box;
    min-height: 10px;
    margin-top: 3px;
    overflow: hidden;
    color: #64748b;
    font-size: 8px;
    line-height: 1.2;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
  }

  .hero__visual {
    position: relative;
    inset: auto;
    z-index: auto;
    pointer-events: auto;
    margin-top: 2px;
  }

  .hero__image-frame {
    display: block;
    height: clamp(220px, 54vw, 310px);
    border-radius: 8px;
    overflow: hidden;
    background: var(--white);
    box-shadow: var(--shadow);
  }

  .hero__image-frame img {
    object-position: 75% 70%;
    transform: scale(1.28) translateY(-3%);
    transform-origin: 75% 72%;
  }

  .hero-treatment {
    position: static;
    width: 100%;
    transform: none;
    margin-top: 12px;
    padding: 14px;
  }

  .hero-treatment strong {
    font-size: 16px;
  }

  .hero-treatment ul {
    gap: 6px;
    margin-top: 10px;
    font-size: 13px;
  }

  .product-grid,
  .trust-strip__grid,
  .footer-newsletter__inner,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-newsletter {
    padding: 24px 0;
  }

  .footer-newsletter__content {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

  .footer-newsletter h2 {
    max-width: 330px;
    font-size: 18px;
    line-height: 1.18;
  }

  .footer-newsletter__cta {
    width: 100%;
    max-width: 320px;
    justify-self: center;
  }

  .footer-company {
    grid-column: auto;
  }

  .page-hero {
    padding: 28px 0 18px;
  }

  .page-lead {
    font-size: 16px;
  }

  .about-hero__copy {
    font-size: 16px;
  }

  .about-hero h1 {
    max-width: 100%;
    font-size: clamp(27px, 7vw, 31px);
  }

  .page-content {
    padding-bottom: 34px;
  }

  .contact-hero-card {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 22px;
  }

  .contact-hero-card__actions {
    grid-template-columns: 1fr;
    width: 100%;
    min-width: 0;
  }

  .contact-info-grid,
  .contact-address-grid {
    grid-template-columns: 1fr;
  }

  .contact-mini-card,
  .contact-address-card {
    padding: 16px;
  }

  .contact-mini-card {
    min-height: 0;
    height: auto;
  }

  .contact-address-card {
    min-height: 0;
  }

  .contact-address-card .btn {
    width: 100%;
    min-height: 44px;
  }

  .contact-mini-card .btn {
    width: 100%;
    min-height: 44px;
  }

  .official-channel-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .official-channel-card {
    min-height: 126px;
    padding: 14px 10px;
  }

  .official-channel-card--wide {
    grid-column: 1 / -1;
  }

  .split-panel,
  .category-grid {
    grid-template-columns: 1fr;
  }

  .certificate-gallery {
    grid-template-columns: 1fr;
  }

  .certificate-card {
    padding: 14px;
  }

  .certificate-card__image {
    height: 340px;
  }

  .certificate-card p {
    font-size: 14px;
  }

  .byt-lookup-card {
    padding: 20px;
  }

  .byt-lookup-card__button {
    width: 100%;
    min-width: 0;
  }

  .contact-card__actions,
  .inline-actions,
  .page-cta__actions {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
  }

  .split-panel,
  .info-card,
  .category-card,
  .about-card {
    padding: 18px;
  }

  .notice-card {
    align-items: flex-start;
  }

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

  .page-cta {
    padding-bottom: 32px;
  }

  .page-cta__inner {
    display: grid;
    justify-items: start;
    padding: 20px;
  }

  .page-cta__inner .btn {
    width: 100%;
  }

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

  .return-benefit-card {
    min-height: 158px;
    padding: 14px 10px;
  }

  .return-benefit-card h2 {
    font-size: 13px;
  }

  .return-benefit-card p {
    font-size: 13px;
  }

  .return-highlight-card {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 12px;
    padding: 18px;
    text-align: center;
  }

  .return-highlight-card p {
    font-size: 15px;
    line-height: 1.58;
  }

  .return-step-grid,
  .return-support-grid {
    grid-template-columns: 1fr;
  }

  .return-step-card {
    min-height: 0;
    padding: 18px;
  }

  .return-steps-section__cta .btn {
    width: 100%;
  }

  .return-support-card {
    padding: 18px;
  }

  .return-policy-page .page-section-heading h2::after {
    width: 54px;
    height: 3px;
  }

  .return-policy-page .table-wrap {
    overflow: visible;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .return-policy-page .page-table,
  .return-policy-page .page-table--compact,
  .return-policy-page .page-table--wide {
    display: block;
    min-width: 0;
  }

  .return-policy-page .page-table tbody {
    display: grid;
    gap: 10px;
  }

  .return-policy-page .page-table tr {
    display: grid;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: var(--white);
    box-shadow: 0 8px 18px rgba(15, 23, 42, 0.055);
  }

  .return-policy-page .page-table th,
  .return-policy-page .page-table td {
    display: block;
    width: 100%;
    min-width: 0;
    padding: 12px 14px;
    border-bottom: 1px solid #e4eeee;
    line-height: 1.48;
    white-space: normal;
  }

  .return-policy-page .page-table th {
    background: #f1fbfb;
  }

  .return-policy-page .page-table td {
    border-bottom: 0;
    background: var(--white);
  }

  .cert-grid {
    gap: 20px 8px;
  }

  .cert-panel {
    margin-top: 10px;
    padding: 32px 12px 16px;
  }

  .cert-panel h2 {
    padding: 0 10px;
    font-size: 23px;
  }

  .cert-panel h2::after {
    width: 46px;
    height: 3px;
    margin-top: 8px;
  }

  .cert-item {
    flex-basis: calc(50% - 4px);
    padding: 0 6px;
  }

  .section {
    padding: 42px 0;
  }

  .section--why {
    padding: 20px 0 22px;
  }

  .section--why + .section {
    padding-top: 30px;
  }

  #products {
    padding-bottom: 24px;
  }

  .section--product-comparison {
    padding: 28px 0 24px;
  }

  .section--product-comparison .container {
    width: min(1200px, calc(100vw - 24px));
  }

  .section-heading {
    margin-bottom: 24px;
  }

  .section-heading p:last-child {
    font-size: 15px;
  }

  .faq-heading {
    margin-bottom: 18px;
  }

  .faq-heading h2 {
    font-size: 23px;
    line-height: 1.18;
  }

  .faq-heading h2::after {
    width: 46px;
    height: 3px;
    margin-top: 8px;
  }

  .faq-list {
    grid-template-columns: 1fr;
  }

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

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

  .product-card {
    grid-template-columns: 76px minmax(0, 1fr);
  }

  .product-card__media {
    min-height: 112px;
  }

  .trust-strip {
    margin: -18px 0 -28px;
    padding: 0;
  }

  .trust-strip__grid {
    padding: 6px 10px;
  }

  .trust-strip article {
    min-height: 58px;
    padding: 9px 6px;
  }

  .trust-strip article:nth-child(even) {
    border-left: 0;
  }

  .trust-strip article:nth-child(n + 2) {
    border-top: 1px solid rgba(10, 169, 178, 0.16);
  }

  .trust-strip__icon {
    width: 36px;
    height: 36px;
  }

  .trust-strip__icon--bold {
    width: 32px;
    height: 32px;
  }

  .trust-strip strong {
    font-size: 15px;
  }

  .trust-strip span {
    font-size: 14.5px;
  }

  .why-choose {
    border-radius: 0;
    grid-template-columns: minmax(92px, 0.34fr) minmax(0, 1fr);
    column-gap: 12px;
    align-items: start;
  }

  .why-choose__media {
    align-items: flex-start;
    min-height: 0;
    padding: 6px 0 0;
  }

  .why-choose__media img {
    width: min(100%, 118px);
    height: auto;
    max-height: none;
  }

  .why-choose__content {
    padding: 0 0 6px;
  }

  .why-choose__heading {
    justify-items: start;
    gap: 7px;
    margin-bottom: 12px;
    text-align: left;
  }

  .why-choose__heading h2 {
    font-size: 17px;
    line-height: 1.16;
  }

  .product-heading h2 {
    font-size: 23px;
  }

  .product-comparison__heading {
    gap: 7px;
    margin-bottom: 20px;
  }

  .product-comparison__heading::after {
    width: 46px;
    height: 3px;
  }

  .product-comparison__heading h2 {
    font-size: 23px;
    line-height: 1.18;
  }

  .product-comparison__heading h2 span {
    display: block;
  }

  .review-heading {
    gap: 7px;
    margin-bottom: 20px;
  }

  .review-heading::after {
    width: 46px;
    height: 3px;
  }

  .review-heading h2 {
    max-width: 320px;
    font-size: 23px;
    line-height: 1.18;
  }

  .product-comparison__table-wrap {
    border-radius: 14px;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.05);
  }

  .product-comparison__table {
    min-width: 720px;
  }

  .product-comparison__table th,
  .product-comparison__table td {
    padding: 11px 10px;
    font-size: 13px;
    line-height: 1.3;
  }

  .product-comparison__table thead th {
    font-size: 13.5px;
    line-height: 1.2;
  }

  .product-comparison__note {
    width: 100%;
    max-width: 330px;
    margin-top: 14px;
    font-size: 12.5px;
    line-height: 1.4;
  }

  .product-comparison__actions {
    width: 100%;
    max-width: 280px;
    margin: 12px auto 0;
  }

  .product-comparison__cta {
    width: 100%;
    min-width: 0;
  }

  .why-choose__heading::after {
    width: 46px;
    height: 3px;
  }

  .product-heading {
    gap: 7px;
  }

  .product-heading::after {
    width: 46px;
    height: 3px;
  }

  .why-choose__reasons {
    grid-template-columns: 1fr;
    row-gap: 9px;
  }

  .why-choose__divider {
    display: none;
  }

  .why-reason,
  .why-reason:nth-child(-n + 3),
  .why-reason:nth-child(n + 5) {
    padding: 0;
  }

  .why-reason {
    grid-template-columns: 46px minmax(0, 1fr);
    column-gap: 9px;
    align-items: start;
  }

  .why-reason__icon {
    width: 42px;
    height: 42px;
  }

  .why-reason__icon svg {
    width: 24px;
    height: 24px;
    stroke-width: 2;
  }

  .why-reason h3 {
    font-size: 13px;
    line-height: 1.18;
  }

  .why-reason p {
    margin-top: 3px;
    font-size: 11.5px;
    line-height: 1.32;
  }

  details {
    padding: 14px;
  }

  .product-card__media img {
    object-fit: contain;
    object-position: center;
    padding: 0;
  }

  .product-card__body {
    gap: 3px;
    padding: 7px 7px 7px 6px;
  }

  .sku {
    font-size: 11.5px;
  }

  .product-card h3 {
    font-size: 12.5px;
    line-height: 1.12;
    -webkit-line-clamp: 3;
  }

  .product-card p {
    font-size: 10.5px;
    line-height: 1.12;
  }

  .product-card strong {
    font-size: 15px;
  }

  .product-card .btn--small {
    min-height: 27px;
    padding: 0 6px;
    font-size: 11px;
  }

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

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

  .product-section-actions {
    margin-top: 22px;
  }

  .review-carousel {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .section--reviews .container {
    width: min(100% - 12px, 1200px);
  }

  .review-carousel__viewport {
    padding: 2px 0 4px;
  }

  .review-carousel__track {
    gap: 12px;
  }

  .review-slide {
    flex: 0 0 100%;
    display: grid;
    place-items: center;
    min-height: 174px;
  }

  .review-slide img {
    width: 100%;
    height: 164px;
    object-fit: contain;
  }

  .carousel-button {
    display: none;
  }

  .carousel-dots {
    margin-top: 2px;
  }

  .review-hint {
    margin-top: 0;
    font-size: 13px;
  }

  .section--size {
    padding: 34px 0 38px;
  }

  .size-heading {
    gap: 12px;
    margin-bottom: 18px;
  }

  .size-heading h2 {
    max-width: 320px;
    font-size: 23px;
    line-height: 1.18;
  }

  .size-heading h2::after {
    width: 46px;
    height: 3px;
    margin-top: 8px;
  }

  .size-note {
    padding: 11px 12px;
    font-size: 14px;
    line-height: 1.5;
    text-align: left;
  }

  .size-layout {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .size-measure-card img {
    max-height: 250px;
  }

  .size-table th,
  .size-table td {
    padding: 11px 8px;
    font-size: 14px;
  }

  .size-cta {
    margin-top: 16px;
  }

  .size-cta .btn {
    width: min(100%, 340px);
    white-space: normal;
    text-align: center;
  }

  .footer-main {
    padding: 36px 0 calc(34px + 96px + env(safe-area-inset-bottom));
  }

  .footer-grid {
    gap: 24px;
  }

  .footer-brand {
    font-size: 20px;
  }

  .footer-logo {
    width: 58px;
    height: 58px;
  }

  .footer-company p {
    max-width: none;
  }

  .footer-bottom {
    align-items: center;
    flex-direction: column;
    gap: 12px;
    margin-top: 28px;
    text-align: center;
  }

  .footer-bottom__meta,
  .footer-sales-note {
    width: 100%;
    justify-items: center;
    max-width: none;
    text-align: center;
  }

  .footer-legal-links {
    justify-content: center;
  }

  .footer-sales-note span {
    display: block;
  }

  .review-lightbox {
    place-items: start center;
    overflow: hidden;
    padding: 72px 10px 24px;
    scrollbar-width: none;
  }

  .review-lightbox::-webkit-scrollbar {
    display: none;
  }

  .review-lightbox__content {
    width: 95vw;
    max-width: 95vw;
    max-height: 85svh;
    overflow: auto;
    overscroll-behavior: contain;
  }

  .review-lightbox img {
    width: 100%;
    max-width: 100%;
    height: auto;
    max-height: none;
    object-fit: contain;
  }

  .btn {
    width: 100%;
  }

  .card-actions .btn {
    width: auto;
  }

  .mobile-sticky-cta {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 40;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
    background: rgba(255, 255, 255, 0.96);
    border-top: 1px solid var(--line);
    box-shadow: 0 -10px 24px rgba(15, 23, 42, 0.1);
    backdrop-filter: blur(12px);
  }

  .mobile-sticky-cta .btn {
    min-height: 44px;
    padding: 0 10px;
    font-size: 14px;
  }
}

@media (max-width: 600px) {
  .hero-feature {
    min-height: 58px;
  }

  .hero-feature span {
    display: none;
  }
}

@media (max-width: 380px) {
  .cert-item {
    flex-basis: 100%;
  }

  .product-grid {
    gap: 10px;
  }

  .product-card {
    grid-template-columns: 68px minmax(0, 1fr);
  }

  .product-card__media {
    min-height: 104px;
  }

  .sku {
    font-size: 11px;
  }

  .product-card h3 {
    font-size: 12px;
  }

  .product-card p {
    font-size: 10px;
  }

  .product-card strong {
    font-size: 14px;
  }
}

@media (max-width: 768px) {
  .size-guide-stack {
    gap: 18px;
  }

  .size-flow-card,
  .size-measure-panel,
  .size-product-nav,
  .size-guide-block,
  .size-secondary-section {
    padding: 16px;
    border-radius: 18px;
  }

  .size-step-grid,
  .size-measure-grid,
  .size-product-nav__grid {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 14px;
  }

  .size-step-card {
    padding: 15px;
  }

  .size-step-card h3,
  .size-product-link strong {
    font-size: 16px;
  }

  .size-guide-alert {
    padding: 15px;
  }

  .size-measure-panel {
    grid-template-columns: 1fr;
  }

  .size-measure-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    margin-top: 12px;
  }

  .size-guide-page .size-measure-card {
    grid-template-columns: 1fr;
    min-height: 74px;
    gap: 6px;
    align-items: center;
    padding: 10px 6px;
    border-radius: 14px;
  }

  .size-guide-page .size-measure-card__mark {
    width: 34px;
    height: 34px;
    font-size: 14px;
  }

  .size-guide-page .size-measure-card__label--desktop {
    display: none;
  }

  .size-guide-page .size-measure-card__label--mobile {
    display: block;
    max-width: 100%;
    color: #3f4f5c;
    font-size: 12px;
    font-weight: 800;
    line-height: 1.2;
    white-space: nowrap;
  }

  .size-measure-figure {
    padding: 10px;
  }

  .size-measure-figure img {
    max-height: 240px;
  }

  .size-guide-heading {
    gap: 7px;
  }

  .size-guide-heading h2 {
    font-size: 22px;
  }

  .size-guide-heading h2::after {
    width: 52px;
    height: 3px;
    margin-top: 8px;
  }

  .size-guide-badge {
    max-width: 100%;
    min-height: 28px;
    padding: 6px 10px;
    font-size: 11px;
    white-space: normal;
  }

  .size-guide-table-shell {
    overflow: visible;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .catalog-size-table,
  .catalog-size-table--primary,
  .catalog-size-table--narrow,
  .catalog-size-table--medium,
  .catalog-size-table--wide {
    display: block;
    width: 100%;
    min-width: 0;
    table-layout: auto;
  }

  .catalog-size-table thead {
    display: none;
  }

  .catalog-size-table tbody {
    display: grid;
    gap: 10px;
  }

  .catalog-size-table tbody tr {
    display: grid;
    overflow: hidden;
    border: 1px solid #dce8e9;
    border-radius: 14px;
    background: var(--white);
    box-shadow: 0 8px 18px rgba(15, 23, 42, 0.055);
  }

  .catalog-size-table th,
  .catalog-size-table td,
  .catalog-size-table--primary th,
  .catalog-size-table--primary td {
    display: flex;
    min-width: 0;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    padding: 11px 13px;
    border-right: 0;
    border-bottom: 1px solid #e7f0f1;
    background: var(--white);
    color: var(--teal-dark);
    font-size: 14px;
    font-weight: 850;
    line-height: 1.35;
    text-align: right;
    white-space: normal;
  }

  .catalog-size-table tbody tr:nth-child(even) td,
  .catalog-size-table tbody tr:nth-child(even) th {
    background: var(--white);
  }

  .catalog-size-table tbody tr > :first-child,
  .catalog-size-table tbody tr:nth-child(even) > :first-child {
    justify-content: center;
    gap: 7px;
    min-height: 42px;
    border-bottom-color: rgba(255, 255, 255, 0.24);
    background: var(--orange);
    color: var(--white);
    font-size: 16px;
    font-weight: 900;
    text-align: center;
  }

  .catalog-size-table tbody tr > :first-child::before {
    content: attr(data-mobile-title);
    color: rgba(255, 255, 255, 0.86);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
  }

  .catalog-size-table tbody tr > :not(:first-child)::before {
    content: attr(data-mobile-label);
    flex: 0 0 auto;
    max-width: 54%;
    color: #526173;
    font-size: 12.5px;
    font-weight: 800;
    text-align: left;
  }

  .catalog-size-table tbody tr > :last-child {
    border-bottom: 0;
  }

  .size-guide-block--featured .size-guide-table-shell {
    border: 0;
    background: transparent;
    box-shadow: none;
  }

  .size-guide-block--featured .catalog-size-table tbody {
    gap: 12px;
  }

  .size-guide-block--featured .catalog-size-table tbody tr {
    border-color: rgba(10, 169, 178, 0.28);
    box-shadow: 0 10px 24px rgba(8, 127, 134, 0.08);
  }

  .size-guide-block--featured .catalog-size-table tbody tr > :first-child,
  .size-guide-block--featured .catalog-size-table tbody tr:nth-child(even) > :first-child {
    background: var(--teal);
  }

  .size-guide-meta {
    justify-content: stretch;
  }

  .size-guide-meta span {
    width: 100%;
    border-radius: 14px;
  }

  .size-accordion summary {
    padding: 15px;
  }

  .size-accordion summary span {
    font-size: 15.5px;
  }

  .size-accordion .size-guide-table-shell {
    margin: 0 14px 14px;
  }

  .size-reference-warning {
    margin: 0 14px 12px;
    font-size: 13.5px;
  }

  .size-guide-final-cta .page-cta__inner {
    gap: 16px;
    border-radius: 20px;
  }

  .size-guide-final-cta .page-cta__inner p:not(.eyebrow) {
    font-size: 14.5px;
  }
}

@media (max-width: 380px) {
  .catalog-size-table th,
  .catalog-size-table td {
    padding: 10px 11px;
    font-size: 13.5px;
  }

  .catalog-size-table--narrow {
    min-width: 0;
  }

  .size-guide-page .size-measure-card__label--mobile {
    font-size: 11.5px;
  }
}

.san-pham-page .btn {
  text-transform: none;
}

.san-pham-page .product-finder-page {
  background: #ffffff;
}

.san-pham-page .product-hero {
  padding: 54px 0 48px;
  background:
    linear-gradient(135deg, #f8ffff 0%, #ffffff 58%, #fff7e8 100%),
    #ffffff;
}

.san-pham-page .product-hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
  gap: 36px;
  align-items: center;
}

.san-pham-page .product-hero h1 {
  max-width: 780px;
  margin: 10px 0 16px;
  color: #0b2b46;
  font-size: clamp(34px, 4.7vw, 58px);
  line-height: 1.05;
}

.san-pham-page .product-hero .page-lead {
  max-width: 720px;
  color: #475569;
  font-size: clamp(17px, 1.8vw, 21px);
  font-weight: 650;
}

.san-pham-page .product-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.san-pham-page .product-hero__actions .btn {
  min-height: 50px;
}

.san-pham-page .product-hero__guide {
  display: grid;
  gap: 14px;
  padding: 24px;
  border: 1px solid rgba(10, 169, 178, 0.24);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 42px rgba(8, 127, 134, 0.1);
}

.san-pham-page .product-hero__guide-icon {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border-radius: 8px;
  background: var(--teal-soft);
  color: var(--teal-dark);
}

.san-pham-page .product-hero__guide-icon svg,
.san-pham-page .quick-condition-card__icon svg {
  width: 31px;
  height: 31px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.san-pham-page .product-hero__guide strong {
  color: #0b2b46;
  font-size: 20px;
  line-height: 1.2;
}

.san-pham-page .product-hero__guide ul {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: #475569;
}

.san-pham-page .product-hero__guide li {
  position: relative;
  padding-left: 24px;
}

.san-pham-page .product-hero__guide li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--orange);
}

.san-pham-page .product-page-section {
  padding: 68px 0;
  scroll-margin-top: 96px;
}

.san-pham-page .product-page-section--soft {
  background: #f6fbfb;
}

.san-pham-page .product-page-heading {
  display: grid;
  justify-items: center;
  gap: 14px;
  margin-bottom: 30px;
  text-align: center;
}

.san-pham-page .product-page-heading::after {
  content: "";
  width: 72px;
  height: 4px;
  border-radius: 999px;
  background: var(--orange);
}

.san-pham-page .product-page-heading h2 {
  max-width: 820px;
  color: #0b2b46;
  font-size: clamp(28px, 3.2vw, 38px);
  font-weight: 900;
  line-height: 1.16;
}

.san-pham-page .quick-condition-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.san-pham-page .quick-condition-card {
  display: grid;
  gap: 12px;
  align-content: start;
  min-height: 260px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.055);
}

.san-pham-page .quick-condition-card__icon {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 8px;
}

.san-pham-page .quick-condition-card--medical .quick-condition-card__icon {
  background: var(--teal-soft);
  color: var(--teal-dark);
}

.san-pham-page .quick-condition-card--sport .quick-condition-card__icon {
  background: #fff3df;
  color: #b65f08;
}

.san-pham-page .quick-condition-card--light .quick-condition-card__icon {
  background: #f2fbfb;
  color: #0b7c84;
}

.san-pham-page .quick-condition-card h3 {
  color: #0b2b46;
  font-size: 20px;
  line-height: 1.25;
}

.san-pham-page .quick-condition-card p {
  margin: 0;
  color: #526173;
  font-size: 15.5px;
  line-height: 1.45;
}

.san-pham-page .quick-condition-card strong {
  align-self: end;
  margin-top: auto;
  color: var(--teal-dark);
  font-size: 16px;
  line-height: 1.3;
}

.san-pham-page .quick-condition-card--sport strong {
  color: #b65f08;
}

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

.san-pham-page .product-family-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.06);
}

.san-pham-page .product-family-card--medical {
  border-top: 5px solid var(--teal);
}

.san-pham-page .product-family-card--sport {
  border-top: 5px solid var(--orange);
}

.san-pham-page .product-family-card--light {
  border-top: 5px solid #67c4c9;
}

.san-pham-page .product-family-card__label {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 14px;
  padding: 6px 11px;
  border-radius: 999px;
  background: var(--teal-soft);
  color: var(--teal-dark);
  font-size: 12.5px;
  font-weight: 800;
  line-height: 1.2;
}

.san-pham-page .product-family-card--sport .product-family-card__label {
  background: #fff3df;
  color: #9a5208;
}

.san-pham-page .product-family-card--light .product-family-card__label {
  background: #f2fbfb;
  color: #0b7c84;
}

.san-pham-page .product-family-card h3 {
  color: #0b2b46;
  font-size: 24px;
}

.san-pham-page .product-family-card dl {
  display: grid;
  gap: 14px;
  margin: 18px 0 22px;
}

.san-pham-page .product-family-card dl div {
  display: grid;
  gap: 4px;
}

.san-pham-page .product-family-card dt {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.san-pham-page .product-family-card dd {
  margin: 0;
  color: #334155;
  font-size: 15.5px;
  line-height: 1.45;
}

.san-pham-page .product-family-card .btn {
  width: fit-content;
  margin-top: auto;
}

.san-pham-page .catalog-tabs {
  display: grid;
  gap: 24px;
}

.san-pham-page .catalog-tabs__input {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  opacity: 0;
  pointer-events: none;
}

.san-pham-page .catalog-tabs__nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.san-pham-page .catalog-tabs__nav label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 9px 15px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #ffffff;
  color: #334155;
  font-weight: 800;
  line-height: 1.2;
  cursor: pointer;
  transition: border-color 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.san-pham-page .catalog-tabs__nav label:hover {
  border-color: rgba(10, 169, 178, 0.45);
  color: var(--teal-dark);
}

.san-pham-page #product-tab-medical:checked ~ .catalog-tabs__nav label[for="product-tab-medical"],
.san-pham-page #product-tab-light:checked ~ .catalog-tabs__nav label[for="product-tab-light"],
.san-pham-page #product-tab-accessory:checked ~ .catalog-tabs__nav label[for="product-tab-accessory"] {
  border-color: var(--teal);
  background: var(--teal);
  color: #ffffff;
}

.san-pham-page #product-tab-sport:checked ~ .catalog-tabs__nav label[for="product-tab-sport"] {
  border-color: var(--orange);
  background: var(--orange);
  color: #ffffff;
}

.san-pham-page .catalog-tabs__panel {
  display: none;
}

.san-pham-page #product-tab-medical:checked ~ .catalog-tabs__panels .catalog-tabs__panel--medical,
.san-pham-page #product-tab-sport:checked ~ .catalog-tabs__panels .catalog-tabs__panel--sport,
.san-pham-page #product-tab-light:checked ~ .catalog-tabs__panels .catalog-tabs__panel--light,
.san-pham-page #product-tab-accessory:checked ~ .catalog-tabs__panels .catalog-tabs__panel--accessory {
  display: block;
}

.san-pham-page .catalog-product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(238px, 1fr));
  gap: 18px;
  align-items: stretch;
}

.san-pham-page .catalog-product-grid--single {
  grid-template-columns: minmax(260px, 360px);
  justify-content: center;
}

.san-pham-page .catalog-product-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.055);
}

.san-pham-page .catalog-product-card__media {
  display: grid;
  place-items: center;
  aspect-ratio: 4 / 3;
  min-height: 186px;
  padding: 18px;
  overflow: hidden;
  border-bottom: 1px solid rgba(219, 231, 232, 0.75);
  background: linear-gradient(180deg, #f8ffff 0%, #ffffff 100%);
}

.san-pham-page .catalog-product-card--sport .catalog-product-card__media {
  background: linear-gradient(180deg, #fff8eb 0%, #ffffff 100%);
}

.san-pham-page .catalog-product-card--light .catalog-product-card__media {
  background: linear-gradient(180deg, #f3fbfb 0%, #ffffff 100%);
}

.san-pham-page .catalog-product-card__media img {
  width: 100%;
  height: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: center;
}

.san-pham-page .catalog-product-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 8px;
  padding: 16px;
}

.san-pham-page .catalog-product-card h3 {
  min-height: 2.5em;
  color: #0b2b46;
  font-size: 18px;
  line-height: 1.25;
}

.san-pham-page .catalog-product-card__sku {
  color: var(--teal-dark);
  font-size: 13px;
  font-weight: 850;
}

.san-pham-page .catalog-product-card__pressure {
  color: var(--teal-dark);
  font-weight: 800;
}

.san-pham-page .catalog-product-card--sport .catalog-product-card__sku,
.san-pham-page .catalog-product-card--sport .catalog-product-card__pressure {
  color: #9a5208;
}

.san-pham-page .catalog-product-card p {
  margin: 0;
  color: #526173;
  font-size: 14.5px;
  line-height: 1.42;
}

.san-pham-page .catalog-product-card p strong {
  color: #334155;
}

.san-pham-page .catalog-product-card__price {
  margin-top: auto;
  color: var(--orange-dark);
  font-size: 21px;
  line-height: 1.1;
}

.san-pham-page .catalog-product-card__actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  padding-top: 8px;
}

.san-pham-page .catalog-product-card__actions .btn {
  width: 100%;
  min-height: 40px;
  padding: 0 10px;
  font-size: 13px;
  white-space: normal;
}

.san-pham-page .catalog-badge--neutral {
  color: #0b5560;
  background: #f2fbfb;
}

.san-pham-page .size-reminder-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  padding: 30px;
  border: 1px solid rgba(10, 169, 178, 0.24);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 14px 34px rgba(8, 127, 134, 0.08);
}

.san-pham-page .size-reminder-card h2 {
  color: #0b2b46;
  font-size: clamp(26px, 3vw, 36px);
  line-height: 1.14;
}

.san-pham-page .size-reminder-card p:not(.eyebrow) {
  max-width: 820px;
  margin: 12px 0 0;
  color: #475569;
  font-size: 16.5px;
}

.san-pham-page .size-reminder-card__actions {
  display: grid;
  gap: 10px;
  min-width: 260px;
}

.san-pham-page .product-final-cta {
  padding-top: 56px;
}

.san-pham-page .product-final-cta .page-cta__inner {
  background: linear-gradient(135deg, #075f65 0%, #087f86 100%);
}

.san-pham-page .product-final-cta .page-cta__inner p:not(.eyebrow) {
  max-width: 680px;
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.86);
}

@media (max-width: 1120px) {
  .san-pham-page .product-hero__inner,
  .san-pham-page .size-reminder-card {
    grid-template-columns: 1fr;
  }

  .san-pham-page .product-hero__guide {
    max-width: 560px;
  }

  .san-pham-page .quick-condition-grid,
  .san-pham-page .product-family-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .san-pham-page .size-reminder-card__actions {
    display: flex;
    flex-wrap: wrap;
    min-width: 0;
  }
}

@media (max-width: 700px) {
  .san-pham-page .product-hero {
    padding: 30px 0 34px;
  }

  .san-pham-page .product-hero__inner {
    gap: 20px;
  }

  .san-pham-page .product-hero h1 {
    max-width: 100%;
    font-size: clamp(26px, 7.2vw, 30px);
    line-height: 1.12;
    overflow-wrap: anywhere;
  }

  .san-pham-page .product-hero .page-lead {
    max-width: 100%;
    font-size: 16px;
    overflow-wrap: anywhere;
  }

  .san-pham-page .product-hero__actions,
  .san-pham-page .size-reminder-card__actions {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
  }

  .san-pham-page .product-hero__guide,
  .san-pham-page .size-reminder-card {
    padding: 18px;
  }

  .san-pham-page .product-page-section {
    padding: 46px 0;
  }

  .san-pham-page .product-page-heading {
    gap: 8px;
    margin-bottom: 22px;
  }

  .san-pham-page .product-page-heading::after {
    width: 50px;
    height: 3px;
  }

  .san-pham-page .product-page-heading h2 {
    font-size: 24px;
  }

  .san-pham-page .quick-condition-grid,
  .san-pham-page .product-family-grid {
    grid-template-columns: 1fr;
  }

  .san-pham-page .quick-condition-card {
    min-height: 0;
    padding: 18px;
  }

  .san-pham-page .product-family-card {
    padding: 18px;
  }

  .san-pham-page .catalog-tabs__nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .san-pham-page .catalog-tabs__nav label {
    min-height: 42px;
    padding: 8px 10px;
    font-size: 13px;
    text-align: center;
  }

  .san-pham-page .catalog-product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .san-pham-page .catalog-product-card__media {
    min-height: 142px;
    padding: 12px;
  }

  .san-pham-page .catalog-product-card__body {
    gap: 6px;
    padding: 12px;
  }

  .san-pham-page .catalog-product-card h3 {
    min-height: 0;
    font-size: 15px;
  }

  .san-pham-page .catalog-product-card p {
    font-size: 13px;
  }

  .san-pham-page .catalog-product-card__price {
    font-size: 18px;
  }

  .san-pham-page .catalog-product-card__actions {
    grid-template-columns: 1fr;
    gap: 7px;
  }

  .san-pham-page .catalog-product-card__actions .btn {
    min-height: 34px;
    font-size: 12px;
  }

  .san-pham-page .catalog-product-grid--single {
    grid-template-columns: 1fr;
  }

  .san-pham-page .product-final-cta {
    padding-top: 34px;
  }
}

@media (max-width: 430px) {
  .san-pham-page .catalog-product-grid {
    grid-template-columns: 1fr;
  }
}

.san-pham-page .product-router-page {
  background: #ffffff;
}

.san-pham-page .router-hero {
  padding: 48px 0 36px;
  background:
    linear-gradient(135deg, #f8ffff 0%, #ffffff 62%, #fff8eb 100%),
    #ffffff;
}

.san-pham-page .router-hero h1 {
  max-width: 900px;
  margin: 10px 0 14px;
  color: #0b2b46;
  font-size: clamp(32px, 4.2vw, 52px);
  line-height: 1.08;
}

.san-pham-page .router-hero .page-lead {
  max-width: 760px;
  color: #475569;
  font-size: clamp(17px, 1.8vw, 20px);
  font-weight: 650;
}

.san-pham-page .router-section {
  padding: 50px 0 58px;
}

.san-pham-page .router-heading {
  display: grid;
  justify-items: center;
  gap: 14px;
  margin-bottom: 28px;
  text-align: center;
}

.san-pham-page .router-heading::after {
  content: "";
  width: 72px;
  height: 4px;
  border-radius: 999px;
  background: var(--orange);
}

.san-pham-page .router-heading h2 {
  max-width: 860px;
  color: #0b2b46;
  font-size: clamp(27px, 3.1vw, 38px);
  line-height: 1.16;
  font-weight: 900;
}

.san-pham-page .product-choice-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.san-pham-page .product-choice-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.06);
}

.san-pham-page .product-choice-card--medical {
  border-top: 5px solid var(--teal);
}

.san-pham-page .product-choice-card--light,
.san-pham-page .product-choice-card--sport {
  border-top: 5px solid var(--orange);
}

.san-pham-page .product-choice-card__label {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 14px;
  padding: 6px 11px;
  border-radius: 999px;
  background: var(--teal-soft);
  color: var(--teal-dark);
  font-size: 12.5px;
  font-weight: 850;
  line-height: 1.2;
}

.san-pham-page .product-choice-card--light .product-choice-card__label,
.san-pham-page .product-choice-card--sport .product-choice-card__label {
  background: #fff3df;
  color: #9a5208;
}

.san-pham-page .product-choice-card h3 {
  color: #0b2b46;
  font-size: 25px;
  line-height: 1.18;
}

.san-pham-page .product-choice-card p {
  margin: 14px 0 0;
  color: #475569;
  font-size: 16px;
  line-height: 1.5;
}

.san-pham-page .product-choice-card strong {
  display: block;
  margin: 18px 0 20px;
  color: var(--teal-dark);
  font-size: 15.5px;
  line-height: 1.35;
}

.san-pham-page .product-choice-card--light strong,
.san-pham-page .product-choice-card--sport strong {
  color: #b65f08;
}

.san-pham-page .product-choice-card .btn {
  width: 100%;
  margin-top: auto;
  min-height: 46px;
  white-space: normal;
}

.san-pham-page .product-help-box {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  margin-top: 22px;
  padding: 24px;
  border: 1px solid rgba(10, 169, 178, 0.24);
  border-radius: 8px;
  background:
    linear-gradient(135deg, #f8ffff 0%, #ffffff 64%, #fff8eb 100%),
    #ffffff;
  box-shadow: 0 14px 34px rgba(8, 127, 134, 0.08);
}

.san-pham-page .product-help-box h2 {
  color: #0b2b46;
  font-size: clamp(22px, 2.5vw, 30px);
  line-height: 1.2;
}

.san-pham-page .product-help-box ul {
  display: grid;
  gap: 8px;
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
  color: #475569;
  font-size: 16px;
  line-height: 1.45;
}

.san-pham-page .product-help-box li {
  position: relative;
  padding-left: 22px;
}

.san-pham-page .product-help-box li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--orange);
}

.san-pham-page .product-help-box .btn {
  min-width: 260px;
}

@media (max-width: 1040px) {
  .san-pham-page .product-choice-grid,
  .san-pham-page .product-help-box {
    grid-template-columns: 1fr;
  }

  .san-pham-page .product-help-box .btn {
    width: 100%;
    min-width: 0;
  }
}

@media (max-width: 700px) {
  .san-pham-page .router-hero {
    padding: 28px 0 30px;
  }

  .san-pham-page .router-hero h1 {
    max-width: 100%;
    font-size: clamp(27px, 7.2vw, 31px);
    line-height: 1.12;
    overflow-wrap: anywhere;
  }

  .san-pham-page .router-hero .page-lead {
    max-width: 100%;
    font-size: 15.5px;
    overflow-wrap: anywhere;
  }

  .san-pham-page .router-section {
    padding: 38px 0 42px;
  }

  .san-pham-page .router-heading {
    gap: 8px;
    margin-bottom: 22px;
  }

  .san-pham-page .router-heading::after {
    width: 50px;
    height: 3px;
  }

  .san-pham-page .router-heading h2 {
    font-size: 24px;
  }

  .san-pham-page .product-choice-grid {
    gap: 14px;
  }

  .san-pham-page .product-choice-card,
  .san-pham-page .product-help-box {
    padding: 18px;
  }

  .san-pham-page .product-choice-card h3 {
    font-size: 22px;
  }

  .san-pham-page .product-choice-card p,
  .san-pham-page .product-help-box ul {
    font-size: 15px;
  }

  .san-pham-page .product-help-box {
    gap: 18px;
    margin-top: 16px;
  }
}

@media (max-width: 768px) {
  .category-list-page .page-stack {
    gap: 16px;
  }

  .category-list-page .notice-card--suggestion {
    position: relative;
    display: block;
    padding: 12px 13px 12px 52px;
    border-radius: 14px;
  }

  .category-list-page .notice-card__icon {
    position: absolute;
    top: 12px;
    left: 12px;
    width: 34px;
    height: 34px;
  }

  .category-list-page .notice-card__icon svg {
    width: 18px;
    height: 18px;
  }

  .category-list-page .notice-card__content strong {
    font-size: 14.5px;
  }

  .category-list-page .notice-card__content p {
    font-size: 13.4px;
    line-height: 1.38;
  }

  .category-list-page .category-product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .category-list-page .category-product-card {
    border-radius: 14px;
    box-shadow: 0 8px 18px rgba(15, 23, 42, 0.06);
  }

  .category-list-page .category-product-card__media {
    height: clamp(142px, 40vw, 158px);
    aspect-ratio: auto;
    padding: 8px;
  }

  .category-list-page .category-product-card__media img {
    width: min(100%, 146px);
    height: auto;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    object-position: center;
    place-self: center;
  }

  .category-list-page .category-product-card__body {
    gap: 5px;
    padding: 9px;
  }

  .category-list-page .catalog-badge {
    min-height: 20px;
    max-width: 100%;
    padding: 0 7px;
    font-size: 10.5px;
    line-height: 1.12;
    white-space: normal;
  }

  .category-list-page .category-product-card .sku {
    font-size: 11px;
    line-height: 1.15;
  }

  .category-list-page .category-product-card h3 {
    display: -webkit-box;
    min-height: 0;
    overflow: hidden;
    color: var(--ink);
    font-size: 13.2px;
    line-height: 1.18;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
  }

  .category-list-page .category-product-card p {
    font-size: 11.2px;
    line-height: 1.25;
  }

  .category-list-page .category-product-card strong {
    font-size: 15.5px;
    line-height: 1.15;
  }

  .category-list-page .category-product-card__actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 6px;
    padding-top: 4px;
  }

  .category-list-page .category-product-card__actions .btn {
    min-height: 30px;
    padding: 0 5px;
    border-radius: 7px;
    font-size: 10px;
    line-height: 1.05;
    white-space: normal;
  }
}

@media (max-width: 380px) {
  .category-list-page .category-product-grid {
    gap: 8px;
  }

  .category-list-page .category-product-card__media {
    padding: 7px;
  }

  .category-list-page .category-product-card__media img {
    width: min(100%, 136px);
  }

  .category-list-page .category-product-card__body {
    padding: 8px;
  }

  .category-list-page .category-product-card h3 {
    font-size: 12.5px;
  }

  .category-list-page .category-product-card__actions .btn {
    min-height: 29px;
    padding: 0 4px;
    font-size: 9.5px;
  }
}

@media (max-width: 420px) {
  .return-benefit-card {
    min-height: 146px;
    gap: 7px;
    padding: 12px 8px;
    border-radius: 14px;
  }

  .return-icon {
    width: 36px;
    height: 36px;
  }

  .return-icon svg {
    width: 20px;
    height: 20px;
  }

  .return-benefit-card h2 {
    font-size: 11.8px;
    line-height: 1.22;
  }

  .return-benefit-card p {
    font-size: 12px;
    line-height: 1.32;
  }

  .return-highlight-card,
  .return-step-card,
  .return-support-card {
    border-radius: 14px;
  }

  .return-step-card__number {
    font-size: 32px;
  }
}
