:root {
  --primary: #083D77;
  --primary-dark: #052B55;
  --accent: #F9A03F;
  --soft: #EEF6FF;
  --ink: #172033;
  --muted: #667085;
  --line: #E5EAF2;
  --radius: 18px;
  --bg: #F7FAFD;
  --white: #fff;
  --shadow: 0 18px 50px rgba(8, 61, 119, .10);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: auto;
}

.routeViewport {
  min-height: 40vh;
}

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

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

button,
input {
  font: inherit;
}

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

.topPromo {
  background: var(--primary-dark);
  color: #fff;
}

.promoInner {
  min-height: 52px;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  font-weight: 800;
}

.promoImage {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  object-fit: cover;
}

.promoMessage {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}

.promoMessage strong {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, .82);
  font-size: 13px;
}

.promoMessage strong::before {
  content: "🎁";
}

.promoMessage span {
  color: var(--accent);
  font-size: 18px;
  line-height: 1.2;
  font-weight: 950;
}

.promoMessage em {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  color: rgba(255, 255, 255, .84);
  font-size: 13px;
  font-weight: 650;
  font-style: normal;
}

.promoActions {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 8px;
}

.promoInner a,
.promoInner button {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  padding: 0 14px;
  background: var(--accent);
  color: var(--primary-dark);
  font-family: inherit;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.1;
  white-space: nowrap;
  cursor: pointer;
}

.promoCatalogBtn {
  gap: 7px;
  border: 1px solid rgba(255, 255, 255, .38) !important;
  background: transparent !important;
  color: #fff !important;
  text-decoration: none;
}

.promoCatalogBtn:hover {
  border-color: #fff !important;
  color: #fff !important;
}

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

.headerInner {
  min-height: 104px;
  display: grid;
  grid-template-columns: minmax(240px, .7fr) minmax(300px, 1.2fr) auto;
  gap: 28px;
  align-items: center;
}

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

.brandLogo {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  border-radius: 20px;
  background:
    radial-gradient(circle at 35% 24%, rgba(255,255,255,.88), transparent 30%),
    linear-gradient(135deg, var(--primary), #1678B9);
  color: #fff;
  font-size: 20px;
  font-weight: 1000;
  box-shadow: 0 12px 24px rgba(8, 61, 119, .20);
}

.brandLogoImage {
  width: 92px;
  height: 68px;
  overflow: visible;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.brandLogoImage img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 0;
}

.companyPage {
  outline: 0;
}

.companyHero {
  padding: 76px 0;
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  color: #fff;
}

.companyHeroInner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, .42fr);
  gap: 56px;
  align-items: center;
}

.companyHero span,
.companyStory span,
.companyCta span {
  color: var(--accent);
  font-weight: 900;
}

.companyHero h1 {
  max-width: 780px;
  margin: 10px 0 16px;
  font-size: clamp(36px, 5vw, 62px);
  line-height: 1.08;
}

.companyHero p {
  max-width: 760px;
  margin: 0 0 28px;
  color: rgba(255,255,255,.8);
  font-size: 18px;
  line-height: 1.75;
}

.companyHero img {
  width: 100%;
  max-height: 270px;
  border-radius: 22px;
  object-fit: contain;
  background: #fff;
  padding: 18px;
}

.contactHero {
  padding: 58px 0;
}

.companyStory,
.contactPageGrid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  padding-top: 54px;
}

.companyStory article,
.contactInfoPanel,
.contactMapPanel,
.companyValues article {
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 26px;
  background: #fff;
  box-shadow: 0 14px 36px rgba(8, 61, 119, .06);
}

.companyStory h2,
.contactInfoPanel h2 {
  margin: 8px 0 14px;
  color: var(--primary-dark);
}

.companyStory p,
.companyValues p {
  color: var(--muted);
  line-height: 1.7;
}

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

.companyValues b {
  color: var(--accent);
  font-size: 32px;
}

.companyCta {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
  margin-top: 22px;
  border-radius: 16px;
  padding: 28px;
  background: var(--soft);
}

.companyCta h2 {
  margin: 6px 0 0;
}

.companyCta a,
.primaryAction {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 10px;
  padding: 0 18px;
  background: var(--accent);
  color: var(--primary-dark);
  font-weight: 900;
  cursor: pointer;
}

.contactInfoPanel dl {
  margin: 20px 0 24px;
}

.contactInfoPanel dl div {
  display: grid;
  grid-template-columns: 105px minmax(0, 1fr);
  gap: 14px;
  border-bottom: 1px solid var(--line);
  padding: 12px 0;
}

.contactInfoPanel dt {
  color: var(--muted);
}

.contactInfoPanel dd {
  margin: 0;
  font-weight: 750;
}

.contactMapPanel iframe {
  width: 100%;
  min-height: 430px;
  border: 0;
  border-radius: 12px;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  color: var(--primary-dark);
  font-size: 22px;
  line-height: 1.15;
}

.brand small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 13px;
}

.searchBox {
  height: 56px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 72px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
}

.searchBox input {
  min-width: 0;
  border: 0;
  padding: 0 24px;
  color: var(--ink);
  outline: none;
}

.searchBox button {
  border: 0;
  background: var(--primary);
  color: #fff;
  font-size: 30px;
  cursor: pointer;
}

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

.supportBtn,
.catalogBtn,
.favoriteBtn,
.cartBtn,
.menuBtn {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  padding: 0 18px;
  font-weight: 900;
  white-space: nowrap;
  cursor: pointer;
}

.catalogBtn {
  gap: 7px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--primary-dark);
}

.catalogBtn:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.mobileCatalogLink {
  display: none;
}

.supportBtn {
  background: var(--primary);
  color: #fff;
}

.cartBtn,
.favoriteBtn,
.menuBtn {
  background: var(--soft);
  color: var(--primary-dark);
}

.favoriteBtn {
  gap: 8px;
}

.favoriteBtn b,
.cartBtn b {
  min-width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  margin-left: 7px;
  border-radius: 999px;
  background: var(--accent);
  color: var(--primary-dark);
  font-size: 12px;
}

.favoriteBtn b {
  margin-left: 0;
  background: var(--primary);
  color: #fff;
}

.menuBtn {
  display: none;
}

.mainNav {
  position: sticky;
  top: 0;
  z-index: 8;
  background: rgba(255, 255, 255, .95);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.mobileNavTop {
  display: none;
}

.navInner {
  min-height: 64px;
  display: flex;
  justify-content: center;
  gap: 28px;
  align-items: center;
}

.navInner a {
  min-height: 64px;
  display: inline-flex;
  gap: 6px;
  align-items: center;
  color: var(--ink);
  font-weight: 900;
}

.navInner a.active,
.navInner a:hover {
  color: var(--accent);
}

.megaMenu {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  max-height: min(72vh, 720px);
  display: none;
  overflow-y: auto;
  overscroll-behavior: contain;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fff;
  box-shadow: 0 24px 60px rgba(8, 61, 119, .12);
}

.mainNav.megaOpen .megaMenu {
  display: block;
}

.megaInner {
  display: grid;
  grid-template-columns: minmax(250px, .86fr) minmax(260px, 1fr) minmax(260px, 1fr) minmax(260px, .95fr);
  gap: 24px;
  padding-top: 28px;
  padding-bottom: 28px;
}

.megaColumn {
  min-width: 0;
  display: grid;
  align-content: start;
  gap: 12px;
}

.megaColumn + .megaColumn {
  border-left: 1px solid var(--line);
  padding-left: 24px;
}

.megaColumn h3 {
  margin: 0 0 8px;
  color: var(--ink);
  font-size: 20px;
  line-height: 1.2;
  letter-spacing: -.02em;
}

.categoryColumn .megaCategoryLink,
.megaProduct {
  width: 100%;
  min-height: 72px;
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  border: 0;
  border-radius: 16px;
  padding: 8px;
  background: transparent;
  color: var(--ink);
  text-align: left;
  cursor: pointer;
}

.categoryColumn .megaCategoryLink:hover,
.megaProduct:hover {
  background: var(--soft);
}

.categoryColumn img,
.megaProduct img {
  width: 64px;
  height: 64px;
  object-fit: contain;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  mix-blend-mode: multiply;
}

.categoryColumn strong,
.categoryColumn small,
.megaProduct strong,
.megaProduct small {
  display: block;
}

.categoryColumn strong,
.megaProduct strong {
  overflow: hidden;
  color: var(--ink);
  font-size: 16px;
  font-weight: 900;
  line-height: 1.25;
  text-overflow: ellipsis;
}

.categoryColumn small,
.megaProduct small {
  margin-top: 4px;
  overflow: hidden;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.35;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.categoryColumn b {
  color: var(--muted);
  font-size: 24px;
}

.megaCategoryItem {
  position: relative;
}

.megaCategoryToggle,
.megaCategoryProducts {
  display: none;
}

.megaProduct {
  grid-template-columns: 76px minmax(0, 1fr);
  min-height: 86px;
}

.megaProduct img {
  width: 76px;
  height: 76px;
}

.megaViewAll {
  width: fit-content;
  min-height: 42px;
  margin-top: 4px;
  border: 0;
  border-radius: 999px;
  padding: 0 14px;
  background: transparent;
  color: var(--ink);
  font-weight: 950;
  cursor: pointer;
}

.megaViewAll:hover {
  background: var(--soft);
  color: var(--primary);
}

.productResultCount {
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.supportColumn a {
  position: relative;
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  border-radius: 16px;
  padding: 10px;
}

.supportColumn a:hover {
  background: var(--soft);
}

.supportColumn a span {
  grid-row: span 2;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--soft);
  color: var(--primary);
  font-size: 22px;
  font-weight: 950;
}

.supportColumn strong,
.supportColumn small {
  display: block;
}

.supportColumn strong {
  color: var(--ink);
  font-size: 16px;
}

.supportColumn small {
  color: var(--muted);
  line-height: 1.35;
}

.megaBanner {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  margin-top: 12px;
  border-radius: 18px;
  padding: 14px;
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  color: #fff;
}

.megaBanner img {
  width: 96px;
  height: 76px;
  object-fit: contain;
  border-radius: 12px;
  background: rgba(255,255,255,.92);
}

.megaBanner strong,
.megaBanner p {
  margin: 0;
}

.megaBanner strong {
  display: block;
  font-size: 18px;
}

.megaBanner p {
  margin-top: 5px;
  color: rgba(255,255,255,.78);
  font-size: 13px;
  line-height: 1.45;
}

.hero {
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(255,255,255,.96) 0%, rgba(255,255,255,.74) 42%, rgba(238,246,255,.78) 100%),
    radial-gradient(circle at 86% 24%, rgba(249,160,63,.28), transparent 28%);
}

.heroInner {
  min-height: 620px;
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(480px, 1.1fr);
  gap: 48px;
  align-items: center;
}

.heroPill {
  width: fit-content;
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  border: 1px solid rgba(8, 61, 119, .14);
  border-radius: 999px;
  padding: 0 14px;
  background: #fff;
  color: var(--primary);
  font-size: 13px;
  font-weight: 900;
}

.hero h1 {
  max-width: 760px;
  margin: 22px 0 18px;
  color: var(--primary-dark);
  font-size: clamp(42px, 5.6vw, 82px);
  line-height: .98;
  letter-spacing: -.05em;
}

.hero p {
  max-width: 650px;
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.heroActions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.primaryAction,
.secondaryAction {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0 22px;
  font-weight: 950;
}

.primaryAction {
  background: var(--primary);
  color: #fff;
}

.secondaryAction {
  border: 1px solid var(--line);
  background: #fff;
  color: var(--primary-dark);
}

.heroVisual {
  position: relative;
  min-height: 450px;
  display: grid;
  place-items: center;
  border-radius: 42px;
  background:
    linear-gradient(135deg, rgba(8,61,119,.12), rgba(249,160,63,.16)),
    #fff;
  box-shadow: var(--shadow);
}

.heroVisual img {
  width: min(72%, 520px);
  max-height: 380px;
  object-fit: contain;
  filter: drop-shadow(0 24px 34px rgba(8, 61, 119, .22));
}

.heroVisual article {
  position: absolute;
  right: 28px;
  bottom: 28px;
  width: min(330px, calc(100% - 56px));
  border: 1px solid rgba(255,255,255,.72);
  border-radius: 26px;
  padding: 20px;
  background: rgba(255,255,255,.88);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow);
}

.heroVisual small,
.sectionHead span,
.categoryStrip span {
  color: var(--accent);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.heroVisual strong,
.heroVisual span {
  display: block;
}

.heroVisual strong {
  margin: 6px 0;
  color: var(--primary-dark);
  font-size: 22px;
}

.heroVisual span {
  color: var(--primary);
  font-size: 26px;
  font-weight: 950;
}

.homeBannerSection {
  padding: 28px 0 12px;
  background: var(--soft);
}

.homeBannerSlider {
  position: relative;
  overflow: hidden;
  min-height: 390px;
  border-radius: calc(var(--radius) + 10px);
  background: var(--primary-dark);
  box-shadow: 0 24px 60px rgba(8, 44, 82, .2);
}

.homeBannerTrack,
.homeBannerSlide {
  min-height: inherit;
}

.homeBannerSlide {
  position: absolute;
  inset: 0;
  visibility: hidden;
  opacity: 0;
  transition: opacity .45s ease, visibility .45s ease;
}

.homeBannerSlide.isActive {
  position: relative;
  visibility: visible;
  opacity: 1;
}

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

.homeBannerShade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(4, 33, 66, .96) 0%, rgba(4, 33, 66, .82) 43%, rgba(4, 33, 66, .18) 78%, rgba(4, 33, 66, .08) 100%);
}

.homeBannerContent {
  position: relative;
  z-index: 1;
  width: min(660px, 68%);
  padding: 62px 76px 70px;
  color: #fff;
}

.homeBannerContent > span {
  display: inline-flex;
  border-radius: 999px;
  padding: 8px 12px;
  background: rgba(255, 255, 255, .12);
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
}

.homeBannerContent h2 {
  margin: 16px 0 14px;
  font-size: clamp(34px, 4vw, 58px);
  line-height: 1.02;
  letter-spacing: -.04em;
}

.homeBannerContent p {
  max-width: 580px;
  margin: 0;
  color: rgba(255, 255, 255, .84);
  font-size: 17px;
  line-height: 1.65;
}

.homeBannerActions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.homeBannerActions .primaryAction {
  border-radius: 14px;
  box-shadow: 0 10px 24px rgba(249, 160, 63, .24);
  background: var(--accent);
  color: var(--primary-dark);
  transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
}

.homeBannerActions .primaryAction::after {
  content: "→";
  margin-left: 9px;
  font-size: 18px;
  line-height: 1;
}

.homeBannerActions .primaryAction:hover,
.homeBannerActions .primaryAction:focus-visible {
  box-shadow: 0 14px 30px rgba(249, 160, 63, .32);
  filter: brightness(1.04);
  transform: translateY(-2px);
}

.homeBannerActions .secondaryAction {
  border-color: rgba(255, 255, 255, .28);
  border-radius: 14px;
  background: rgba(255, 255, 255, .12);
  color: #fff;
  backdrop-filter: blur(8px);
  transition: border-color .2s ease, background .2s ease, transform .2s ease;
}

.homeBannerActions .secondaryAction:hover,
.homeBannerActions .secondaryAction:focus-visible {
  border-color: rgba(255, 255, 255, .58);
  background: rgba(255, 255, 255, .2);
  transform: translateY(-2px);
}

.homeBannerControls {
  position: absolute;
  z-index: 2;
  right: 84px;
  bottom: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 46px;
  border: 1px solid rgba(255, 255, 255, .24);
  border-radius: 999px;
  padding: 5px 7px;
  background: rgba(4, 33, 66, .5);
  box-shadow: 0 12px 28px rgba(1, 18, 38, .2);
  backdrop-filter: blur(12px);
}

.homeBannerArrow {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  padding: 0;
  background: transparent;
  color: #fff;
  transition: background .2s ease, transform .2s ease;
}

.homeBannerArrow:hover,
.homeBannerArrow:focus-visible {
  background: rgba(255, 255, 255, .18);
  transform: scale(1.06);
}

.homeBannerArrow svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.homeBannerDots {
  display: flex;
  align-items: center;
  gap: 7px;
}

.homeBannerDots button {
  width: 9px;
  height: 9px;
  border: 0;
  border-radius: 999px;
  padding: 0;
  background: rgba(255, 255, 255, .5);
  transition: width .2s ease, background .2s ease;
}

.homeBannerDots button.isActive {
  width: 28px;
  background: var(--accent);
}

.trustGrid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: -46px;
  position: relative;
  z-index: 2;
}

.trustGrid article {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
  background: #fff;
  box-shadow: 0 12px 32px rgba(8, 61, 119, .08);
}

.homeCustomCta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-top: 42px;
  margin-bottom: 42px;
  border-radius: 28px;
  padding: 34px 40px;
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  color: #fff;
  box-shadow: 0 22px 50px rgba(8, 61, 119, .2);
}

.homeCustomCta span {
  color: var(--accent);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.homeCustomCta h2 {
  margin: 7px 0;
  font-size: clamp(26px, 3vw, 40px);
}

.homeCustomCta p {
  margin: 0;
  color: rgba(255, 255, 255, .76);
}

.homeCustomCta > a {
  min-height: 48px;
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  padding: 0 20px;
  background: var(--accent);
  color: var(--primary-dark);
  font-weight: 950;
}

.homeImageText {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
  margin-top: 54px;
  margin-bottom: 54px;
}

.homeImageText.is-image-right figure {
  order: 2;
}

.homeImageText figure {
  min-height: 360px;
  overflow: hidden;
  margin: 0;
  border-radius: 28px;
  background: var(--soft);
  box-shadow: 0 20px 48px rgba(8, 61, 119, .13);
}

.homeImageText img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  display: block;
  object-fit: cover;
}

.homeImageTextCopy > span {
  color: var(--accent);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.homeImageTextCopy h2 {
  margin: 8px 0 14px;
  color: var(--primary-dark);
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.1;
  letter-spacing: -.035em;
}

.homeImageTextCopy p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
  white-space: pre-line;
}

.homeImageTextCopy a {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 22px;
  border-radius: 13px;
  padding: 0 20px;
  background: var(--primary);
  color: #fff;
  font-weight: 900;
}

.trustGrid span {
  width: 28px;
  height: 28px;
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 999px;
  background: var(--soft);
  color: var(--primary);
  font-weight: 950;
}

.trustGrid p {
  margin: 0;
  color: var(--ink);
  font-weight: 760;
  line-height: 1.45;
}

.categoryStrip,
.sectionHead {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: end;
}

.categoryStrip {
  margin-top: 58px;
}

.sectionHead {
  margin-bottom: 22px;
}

.categoryStrip h2,
.sectionHead h2 {
  margin: 6px 0 0;
  color: var(--primary-dark);
  font-size: clamp(26px, 3vw, 42px);
  letter-spacing: -.03em;
}

.sectionHead a {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 0 16px;
  background: var(--primary);
  color: #fff;
  font-weight: 900;
}

.categoryButtons {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.categoryButtons button {
  min-height: 40px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0 16px;
  background: #fff;
  color: var(--primary-dark);
  font-weight: 900;
  cursor: pointer;
}

.categoryButtons button.active {
  border-color: var(--primary);
  background: var(--primary);
  color: #fff;
}

.productSection,
.pricingSection {
  padding: 54px 0 10px;
}

.searchPage {
  padding: 48px 0 72px;
}

.searchHero {
  border-radius: 28px;
  padding: 34px;
  background:
    linear-gradient(135deg, rgba(8, 61, 119, .92), rgba(22, 120, 185, .82)),
    var(--primary);
  color: #fff;
  box-shadow: var(--shadow);
}

.searchHero span {
  color: rgba(255, 255, 255, .78);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.searchHero h1 {
  max-width: 840px;
  margin: 8px 0 10px;
  font-size: clamp(34px, 4vw, 58px);
  line-height: 1.04;
  letter-spacing: -.04em;
}

.searchHero p {
  max-width: 760px;
  margin: 0;
  color: rgba(255,255,255,.82);
  font-size: 18px;
  line-height: 1.6;
}

.searchResultBar {
  min-height: 58px;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  margin-top: 22px;
  border-radius: 14px;
  padding: 12px 16px;
  background: #EEF2F6;
}

.searchResultBar > div:first-child {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: baseline;
  color: var(--muted);
  font-size: 16px;
}

.searchResultBar strong {
  color: var(--ink);
  font-size: 22px;
}

.searchResultBar em {
  color: var(--ink);
  font-style: normal;
  font-weight: 900;
}

.searchSort {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 6px;
}

.searchSort button {
  border: 0;
  border-radius: 999px;
  padding: 7px 10px;
  background: transparent;
  color: var(--muted);
  font-weight: 900;
  cursor: pointer;
}

.searchSort button.active,
.searchSort button:hover {
  background: #fff;
  color: var(--primary);
}

.searchLayout {
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr);
  gap: 22px;
  margin-top: 28px;
  align-items: start;
}

.searchFilters {
  position: sticky;
  top: 86px;
  display: grid;
  gap: 10px;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 16px;
  background: #fff;
  box-shadow: 0 12px 34px rgba(8, 61, 119, .07);
}

.searchFilters h2 {
  margin: 0 0 4px;
  color: var(--primary-dark);
  font-size: 20px;
}

.searchFilters button {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 12px;
  background: #fff;
  color: var(--ink);
  text-align: left;
  font-weight: 850;
  cursor: pointer;
}

.searchFilters button.active,
.searchFilters button:hover {
  border-color: var(--primary);
  background: var(--soft);
  color: var(--primary-dark);
}

.searchFilters b {
  min-width: 28px;
  height: 24px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--primary);
  color: #fff;
  font-size: 12px;
}

.searchFilters a {
  margin-top: 4px;
  color: var(--primary);
  font-weight: 900;
}

.emptySearch {
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 34px;
  background: #fff;
  box-shadow: var(--shadow);
}

.emptySearch strong {
  display: block;
  color: var(--primary-dark);
  font-size: 26px;
}

.emptySearch p {
  max-width: 620px;
  color: var(--muted);
  line-height: 1.7;
}

.emptySearch a,
.emptySearch button {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  margin: 8px 8px 0 0;
  border: 0;
  border-radius: 999px;
  padding: 0 16px;
  background: var(--primary);
  color: #fff;
  font-weight: 900;
  cursor: pointer;
}

.emptySearch button {
  background: var(--soft);
  color: var(--primary-dark);
}

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

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

.productCollectionSection {
  padding-top: 34px;
  padding-bottom: 34px;
}

.productCollectionSection .sectionHead p {
  max-width: 680px;
  margin: 8px 0 0;
  color: var(--muted);
}

.productCollectionSection.isCompact .productCollectionGrid {
  grid-template-columns: repeat(4, minmax(220px, 1fr));
  overflow-x: auto;
  padding-bottom: 8px;
  scroll-snap-type: x proximity;
}

.productCollectionSection.isCompact .productCard {
  scroll-snap-align: start;
}

.productCard {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 12px 34px rgba(8, 61, 119, .07);
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.productCard:hover {
  border-color: rgba(8, 61, 119, .22);
  box-shadow: 0 18px 44px rgba(8, 61, 119, .12);
  transform: translateY(-3px);
}

.productImage {
  position: relative;
  min-height: 250px;
  display: grid;
  place-items: center;
  box-sizing: border-box;
  padding-top: 40px;
  background: linear-gradient(135deg, #fff, var(--soft));
}

.productImage span {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  width: 100%;
  height: 40px;
  display: flex;
  align-items: center;
  gap: 7px;
  overflow: hidden;
  box-sizing: border-box;
  border-bottom: 1px solid #dce8f2;
  padding: 0 52px 0 14px;
  background: linear-gradient(90deg, #edf5fb, #f8fbfe);
  color: var(--primary-dark);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .01em;
  line-height: 1.2;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.productImage span::before {
  content: "";
  width: 6px;
  height: 6px;
  flex: 0 0 6px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 0 3px rgba(249, 160, 63, .14);
}

.productImage img {
  width: 82%;
  height: 200px;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.favoriteToggle {
  position: absolute;
  z-index: 2;
  top: 4px;
  right: 10px;
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border: 1px solid #d6e3ee;
  border-radius: 999px;
  background: rgba(255,255,255,.9);
  color: var(--primary-dark);
  font-size: 19px;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(8, 61, 119, .08);
  transition: transform .18s ease, color .18s ease, border-color .18s ease, background .18s ease;
}

.favoriteToggle:hover {
  transform: translateY(-1px) scale(1.04);
  border-color: rgba(220, 38, 38, .28);
  color: #dc2626;
}

.favoriteToggle.active {
  border-color: rgba(220, 38, 38, .22);
  background: #fff1f2;
  color: #dc2626;
}

.productBody {
  padding: 16px;
}

.productBody h3 {
  min-height: 54px;
  margin: 0 0 8px;
  color: var(--ink);
  font-size: 18px;
  line-height: 1.35;
}

.rating {
  color: var(--primary);
  font-weight: 950;
}

.rating small {
  color: var(--muted);
  font-weight: 650;
}

.productBody ul {
  display: grid;
  gap: 6px;
  min-height: 76px;
  margin: 12px 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.4;
}

.productCardDescription {
  min-height: 45px;
  display: -webkit-box;
  overflow: hidden;
  margin: 10px 0 12px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.5;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.priceRow {
  min-height: 36px;
  display: flex;
  gap: 10px;
  align-items: baseline;
  margin-bottom: 14px;
}

.priceRow strong {
  color: var(--primary);
  font-size: 24px;
  font-weight: 1000;
}

.priceRow del,
.priceRow em {
  color: var(--muted);
}

.priceRow em {
  font-style: normal;
  font-weight: 800;
}

.productActions {
  display: grid;
  grid-template-columns: 1fr 76px;
  gap: 10px;
}

.productActions button,
.productActions a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 12px;
  font-weight: 950;
}

.productActions button {
  background: var(--primary);
  color: #fff;
  cursor: pointer;
}

.productActions a,
.productActions .lightAction {
  border: 1px solid var(--line);
  background: var(--soft);
  color: var(--primary-dark);
  cursor: pointer;
}

.productActions .lightAction:hover {
  border-color: var(--primary);
  background: #fff;
}

.favoritesPage {
  padding: 28px 0 70px;
  background:
    radial-gradient(circle at top right, rgba(8, 61, 119, .06), transparent 34%),
    linear-gradient(180deg, #fff, #f7fbff);
}

.favoriteHero {
  display: grid;
  gap: 10px;
  margin-bottom: 26px;
  text-align: center;
}

.favoriteHero .detailBreadcrumb {
  justify-content: flex-start;
  margin-bottom: 20px;
  text-align: left;
}

.favoriteHero span {
  color: var(--primary);
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.favoriteHero h1 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(32px, 5vw, 54px);
  line-height: 1;
}

.favoriteHero p {
  max-width: 680px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.6;
}

.favoriteContent {
  min-height: 360px;
}

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

.favoriteEmpty {
  max-width: 620px;
  margin: 0 auto;
  text-align: center;
}

.technicalBand {
  margin-top: 54px;
  padding: 54px 0;
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  color: #fff;
}

.technicalBand .sectionHead h2 {
  color: #fff;
}

.technicalBand .sectionHead a {
  background: #fff;
  color: var(--primary-dark);
}

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

.knowledgeGrid article {
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 22px;
  padding: 20px;
  background: rgba(255,255,255,.08);
}

.knowledgeGrid small {
  color: var(--accent);
  font-weight: 950;
}

.knowledgeGrid h3 {
  margin: 10px 0;
  font-size: 22px;
  line-height: 1.25;
}

.knowledgeGrid p {
  color: rgba(255,255,255,.78);
  line-height: 1.6;
}

.knowledgeGrid a {
  color: #fff;
  font-weight: 950;
}

.knowledgeGrid .homeArticleCard {
  overflow: hidden;
  padding: 0;
  background: #fff;
  transition: transform .2s ease, box-shadow .2s ease;
}

.knowledgeGrid .homeArticleCard:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 34px rgba(0, 0, 0, .18);
}

.homeArticleCard > a {
  position: relative;
  height: 100%;
  display: block;
  overflow: hidden;
  color: var(--ink);
  text-decoration: none;
}

.homeArticleCard img {
  width: 100%;
  aspect-ratio: 1.45;
  display: block;
  object-fit: cover;
  transition: transform .25s ease;
}

.homeArticleCard:hover img {
  transform: scale(1.035);
}

.knowledgeGrid .homeArticleCard h3 {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  min-height: 0;
  display: -webkit-box;
  overflow: hidden;
  margin: 0;
  padding: 54px 16px 16px;
  background: linear-gradient(180deg, transparent, rgba(3, 24, 48, .94));
  color: #fff;
  font-size: 18px;
  line-height: 1.35;
  text-shadow: 0 1px 3px rgba(0, 0, 0, .35);
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.articleHubPage,
.contentPage {
  padding: 42px 0 64px;
  background: #fff;
}

.articleHubHero,
.contentHero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: 28px;
  align-items: end;
  border-bottom: 1px solid var(--line);
  padding-bottom: 28px;
}

.articleHubHero {
  grid-template-columns: minmax(0, 900px);
  align-items: start;
}

.latestArticles {
  margin-top: 34px;
}

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

.latestArticleGrid .articleCard h3 {
  font-size: 18px;
}

.latestArticleGrid .articleCard p {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.contentHero {
  display: block;
  max-width: 980px;
}

.articleHubHero span,
.contentHero span,
.articleListHead span {
  color: var(--accent);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.articleHubHero h1,
.contentHero h1 {
  margin: 10px 0 12px;
  color: var(--ink);
  font-size: clamp(38px, 5vw, 72px);
  line-height: .98;
}

.articleHubHero p,
.contentHero p {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.contentHero a {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--primary);
  font-weight: 950;
  text-decoration: none;
}

.articleHeroCard {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #fff;
  color: var(--ink);
  text-decoration: none;
  box-shadow: 0 18px 45px rgba(8, 61, 119, .1);
}

.articleHeroCard img {
  width: 100%;
  height: 220px;
  display: block;
  object-fit: cover;
}

.articleHeroCard small,
.articleHeroCard strong {
  display: block;
  padding: 0 18px;
}

.articleHeroCard small {
  margin-top: 16px;
  color: var(--primary);
  font-weight: 950;
}

.articleHeroCard strong {
  padding-bottom: 18px;
  font-size: 20px;
  line-height: 1.3;
}

.articleHubLayout,
.contentLayout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 34px;
  margin-top: 34px;
  align-items: start;
}

.articleListHead {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 20px;
}

.articleListHead h2 {
  margin: 8px 0 0;
  color: var(--ink);
  font-size: 28px;
}

.articleListHead a,
.contentSidebar a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 12px 18px;
  background: var(--primary);
  color: #fff;
  font-weight: 950;
  text-decoration: none;
  white-space: nowrap;
}

.articleListHead .articleZaloAction {
  border: 0;
  font: inherit;
  cursor: pointer;
}

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

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

.articleCompactItem {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr) 40px;
  gap: 18px;
  align-items: start;
  border-bottom: 1px solid var(--line);
  padding: 20px 0;
}

.articleCompactItem time {
  padding-top: 4px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.articleCompactItem h3 {
  margin: 0;
  color: var(--ink);
  font-size: 19px;
  line-height: 1.35;
}

.articleCompactItem h3 a,
.articleCompactArrow {
  color: inherit;
  text-decoration: none;
}

.articleCompactItem p {
  overflow: hidden;
  display: -webkit-box;
  margin: 7px 0 0;
  color: var(--muted);
  line-height: 1.55;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.articleCompactArrow {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--primary);
  font-size: 20px;
  font-weight: 900;
}

.articleCompactItem:hover h3 a {
  color: var(--primary);
}

.articlePagination {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-top: 28px;
}

.articlePagination a,
.articlePagination span {
  min-width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  font-weight: 900;
  text-decoration: none;
}

.articlePagination a.is-active {
  border-color: var(--primary);
  background: var(--primary);
  color: #fff;
}

.articlePagination .is-disabled,
.articlePagination .paginationGap {
  border-color: transparent;
  color: var(--muted);
  opacity: .55;
}

.productPagination {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 28px;
}

.productPagination > span {
  color: var(--muted, #667085);
  font-size: 14px;
}

.productPagination > div {
  display: flex;
  align-items: center;
  gap: 6px;
}

.productPagination button {
  min-width: 38px;
  min-height: 38px;
  padding: 8px 12px;
  border: 1px solid rgba(15, 23, 42, 0.14);
  border-radius: 10px;
  background: #fff;
  color: inherit;
  cursor: pointer;
}

.productPagination button.active {
  border-color: var(--primary, #0f766e);
  background: var(--primary, #0f766e);
  color: #fff;
}

.productPagination button:disabled {
  cursor: not-allowed;
  opacity: 0.45;
}

.productPagination i {
  padding: 0 4px;
  font-style: normal;
}

@media (max-width: 640px) {
  .productPagination {
    align-items: flex-start;
    flex-direction: column;
  }

  .productPagination > div {
    flex-wrap: wrap;
  }
}

.articleCard {
  min-width: 0;
}

.articleCardImage {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 22px;
  background: var(--soft);
}

.articleCardImage img {
  width: 100%;
  aspect-ratio: 1.55;
  display: block;
  object-fit: cover;
  transition: transform .25s ease;
}

.articleCardImage:hover img {
  transform: scale(1.04);
}

.articleCardImage span {
  position: absolute;
  left: 16px;
  bottom: 14px;
  border-radius: 10px;
  padding: 8px 12px;
  background: rgba(255,255,255,.92);
  color: var(--primary-dark);
  font-size: 13px;
  font-weight: 950;
}

.articleCard div {
  padding-top: 14px;
}

.articleCard small {
  color: var(--muted);
  font-weight: 800;
}

.articleCard h3 {
  margin: 8px 0;
  color: var(--ink);
  font-size: 22px;
  line-height: 1.28;
}

.articleCard h3 a,
.articleCard .readMore {
  color: inherit;
  text-decoration: none;
}

.articleCard p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.articleCard .readMore {
  display: inline-flex;
  margin-top: 14px;
  color: var(--primary);
  font-weight: 950;
}

.articleSidebar,
.contentSidebar {
  display: grid;
  gap: 18px;
  position: sticky;
  top: 20px;
}

.articleSidebar section,
.contentSidebar {
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 20px;
  background: #fff;
  box-shadow: 0 12px 34px rgba(8, 61, 119, .06);
}

.articleSidebar h3 {
  margin: 0 0 14px;
  color: var(--primary-dark);
  font-size: 20px;
}

.articleSidebar section > a:not(.featuredArticle) {
  display: block;
  border-top: 1px solid var(--line);
  padding: 12px 0;
  color: var(--ink);
  font-weight: 850;
  text-decoration: none;
}

.featuredArticle {
  display: grid;
  grid-template-columns: 86px minmax(0, 1fr);
  gap: 12px;
  padding: 10px 0;
  color: var(--ink);
  text-decoration: none;
}

.featuredArticle img {
  width: 86px;
  height: 68px;
  border-radius: 12px;
  object-fit: cover;
}

.featuredArticle strong,
.featuredArticle small {
  display: block;
}

.featuredArticle strong {
  overflow: hidden;
  display: -webkit-box;
  color: var(--ink);
  font-size: 14px;
  line-height: 1.35;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.featuredArticle small {
  margin-top: 4px;
  color: var(--muted);
}

.articleHelpBox {
  display: grid;
  gap: 14px;
  background: linear-gradient(135deg, var(--primary-dark), var(--primary)) !important;
  color: #fff;
}

.articleHelpBox strong {
  display: block;
  font-size: 20px;
  line-height: 1.3;
}

.articleHelpBox p {
  margin: 0;
  color: rgba(255,255,255,.78);
  line-height: 1.55;
}

.articleSidebar .articleHelpAction {
  display: inline-flex;
  width: fit-content;
  max-width: 100%;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  padding: 10px 20px;
  background: #fff;
  color: var(--primary-dark);
  font: inherit;
  font-weight: 950;
  line-height: 1.25;
  text-align: center;
  cursor: pointer;
}

.contentArticle {
  overflow: hidden;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: clamp(22px, 4vw, 42px);
  background: #fff;
  box-shadow: 0 18px 45px rgba(8, 61, 119, .07);
}

.contentHtmlBody {
  display: grid;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  gap: 28px;
}

.contentHtmlBody .landing-section {
  display: grid;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  gap: 14px;
}

.contentHtmlBody > *,
.contentHtmlBody .landing-grid > *,
.contentHtmlBody .landing-steps > *,
.contentHtmlBody .landing-gallery > *,
.contentBlocks,
.contentBlock {
  max-width: 100%;
  min-width: 0;
}

.contentHtmlBody h2,
.contentHtmlBody h3,
.contentHtmlBody h4,
.contentHtmlBody p,
.contentHtmlBody ul,
.contentHtmlBody ol,
.contentHtmlBody blockquote,
.contentHtmlBody figure {
  margin: 0;
}

.contentHtmlBody h2 {
  color: var(--primary-dark);
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.2;
}

.contentHtmlBody h3 {
  color: var(--ink);
  font-size: 20px;
  line-height: 1.35;
}

.contentHtmlBody p,
.contentHtmlBody li,
.contentHtmlBody td,
.contentHtmlBody th {
  color: var(--muted);
  line-height: 1.75;
  overflow-wrap: anywhere;
  word-break: normal;
}

.contentHtmlBody img,
.contentHtmlBody video,
.contentHtmlBody iframe,
.contentHtmlBody svg,
.contentHtmlBody canvas {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
}

.contentHtmlBody img {
  border-radius: 16px;
}

.contentHtmlBody video,
.contentHtmlBody iframe {
  aspect-ratio: 16 / 9;
  border: 0;
}

.contentHtmlBody pre {
  overflow-x: auto;
  max-width: 100%;
  white-space: pre-wrap;
}

.contentHtmlBody code,
.contentHtmlBody a {
  overflow-wrap: anywhere;
}

.contentHtmlBody .landing-grid,
.contentHtmlBody .landing-steps,
.contentHtmlBody .landing-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.contentHtmlBody .landing-highlight,
.contentHtmlBody .landing-quote,
.contentHtmlBody .landing-grid > article,
.contentHtmlBody .landing-steps > article {
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 20px;
  background: var(--soft);
}

.contentHtmlBody .landing-checklist {
  display: grid;
  gap: 10px;
  padding-left: 22px;
}

.contentHtmlBody .landing-table {
  width: 100%;
  max-width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.contentHtmlBody table {
  width: 100%;
  border-collapse: collapse;
}

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

.contentHtmlBody a {
  color: var(--primary);
  font-weight: 800;
}

@media (max-width: 720px) {
  .contentHtmlBody .landing-grid,
  .contentHtmlBody .landing-steps,
  .contentHtmlBody .landing-gallery {
    grid-template-columns: 1fr;
  }
}

.contentBlocks { display: grid; gap: 30px; }
.contentBlock { min-width: 0; }
.contentBlock h2 { margin: 0 0 12px; color: var(--ink); font-size: clamp(22px, 2.5vw, 30px); line-height: 1.25; }
.contentBlock > p,
.contentBlock > div > p { margin: 0; color: var(--muted); line-height: 1.75; }
.contentBlock ul,
.contentBlock ol { display: grid; gap: 10px; margin: 16px 0 0; padding-left: 22px; line-height: 1.65; }
.contentBlockQuickAnswer { padding: 20px 22px; border-left: 4px solid var(--primary); border-radius: 0 8px 8px 0; background: var(--soft); }
.contentBlockQuickAnswer h2 { font-size: 21px; }
.contentBlockChecklist ul { padding: 0; list-style: none; }
.contentBlockChecklist li { position: relative; padding-left: 30px; }
.contentBlockChecklist li::before { position: absolute; top: 1px; left: 0; content: "✓"; color: var(--primary); font-weight: 800; }
.contentBlockSteps ol { padding: 0; list-style: none; counter-reset: content-step; }
.contentBlockSteps li { position: relative; min-height: 34px; padding: 6px 0 6px 46px; counter-increment: content-step; }
.contentBlockSteps li::before { position: absolute; top: 0; left: 0; display: grid; width: 34px; height: 34px; place-items: center; border-radius: 50%; color: #fff; background: var(--primary); content: counter(content-step); font-weight: 800; }
.contentBlockTableWrap { overflow-x: auto; margin-top: 16px; border: 1px solid var(--line); border-radius: 8px; }
.contentBlockTable table { width: 100%; border-collapse: collapse; }
.contentBlockTable th,
.contentBlockTable td { padding: 13px 14px; border-bottom: 1px solid var(--line); text-align: left; vertical-align: top; }
.contentBlockTable thead th { color: #fff; background: var(--primary); }
.contentBlockTable tbody th { color: var(--ink); background: var(--soft); }
.contentBlockTable tr:last-child > * { border-bottom: 0; }
.contentBlockImageText { display: grid; grid-template-columns: minmax(220px, .85fr) minmax(0, 1.15fr); gap: 26px; align-items: center; }
.contentBlockImageText.is-image-right img { order: 2; }
.contentBlockImageText img,
.contentBlockCaseStudy > img { width: 100%; max-height: 420px; border-radius: 8px; object-fit: cover; }
.contentBlockGallery > div { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; margin-top: 16px; }
.contentBlockGallery figure { margin: 0; }
.contentBlockGallery img { width: 100%; aspect-ratio: 4 / 3; border-radius: 8px; object-fit: cover; }
.contentBlockGallery figcaption { padding-top: 7px; color: var(--muted); font-size: 13px; }
.contentBlockCallout { padding: 20px 22px; border: 1px solid #b8d1eb; border-radius: 8px; background: #eef6ff; }
.contentBlockCallout.is-success { border-color: #abd8bb; background: #edf9f1; }
.contentBlockCallout.is-warning { border-color: #ebcf8c; background: #fff8e6; }
.contentBlockCallout h2 { font-size: 20px; }
.contentBlockCaseStudy { display: grid; gap: 16px; }
.contentBlockCaseGrid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; }
.contentBlockCaseGrid article { padding: 16px; border: 1px solid var(--line); border-radius: 8px; background: #fff; }
.contentBlockCaseGrid p { margin: 8px 0; line-height: 1.55; }
.contentBlockCaseGrid small { color: var(--muted); }

@media (max-width: 720px) {
  .contentBlocks { gap: 24px; }
  .contentBlockImageText { grid-template-columns: 1fr; }
  .contentBlockImageText.is-image-right img { order: 0; }
  .contentBlockGallery > div { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .contentBlockCaseGrid { grid-template-columns: 1fr; }
}

.contentHeroImage,
.contentSectionImage {
  display: block;
  width: 100%;
  max-height: 560px;
  object-fit: cover;
  border-radius: var(--radius, 8px);
  margin-top: 22px;
}

.contentQuickAnswer {
  border-left: 4px solid var(--primary);
  background: var(--soft);
  padding: 18px 20px;
}

.contentModuleSteps ol {
  display: grid;
  gap: 12px;
  padding: 0;
  counter-reset: content-step;
  list-style: none;
}

.contentModuleSteps li {
  position: relative;
  min-height: 48px;
  padding: 13px 16px 13px 62px;
  border: 1px solid var(--line);
  background: var(--bg);
  line-height: 1.55;
}

.contentModuleSteps li::before {
  position: absolute;
  top: 9px;
  left: 12px;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  counter-increment: content-step;
  content: counter(content-step);
  font-weight: 900;
}

.contentModuleList {
  padding: 22px;
  border: 1px solid var(--line);
  background: var(--soft);
}

.contentModuleList ul {
  display: grid;
  gap: 10px;
  margin-bottom: 0;
}

.contentModuleTableWrap {
  overflow-x: auto;
  border: 1px solid var(--line);
}

.contentModuleTable table {
  width: 100%;
  border-collapse: collapse;
}

.contentModuleTable th,
.contentModuleTable td {
  padding: 13px 14px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.contentModuleTable thead th {
  background: var(--primary-dark);
  color: #fff;
}

.contentModuleCaseStudy > div,
.contentModuleGallery > div {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.contentModuleCaseStudy article {
  padding: 18px;
  border-left: 3px solid var(--accent);
  background: var(--bg);
}

.contentModuleCaseStudy article p {
  margin-bottom: 0;
}

.contentModuleGallery img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

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

.contentRelatedProducts a {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  color: var(--ink);
  text-decoration: none;
  border: 1px solid var(--line);
  padding: 10px;
}

.contentRelatedProducts img { width: 72px; height: 72px; object-fit: contain; grid-row: span 2; }
.contentRelatedProducts span { color: var(--primary); font-weight: 700; }
.contentReviews blockquote { margin: 12px 0; padding: 16px; border: 1px solid var(--line); }
.contentReviews cite { color: var(--muted); font-style: normal; }
.contentInternalLinks { display: flex; flex-wrap: wrap; gap: 10px; }
.contentInternalLinks h2 { width: 100%; }
.contentInternalLinks a { color: var(--primary); }
.contentPageCta { border: 1px solid var(--primary); padding: 20px; }
.contentPageCta a { display: inline-flex; margin-top: 8px; padding: 10px 16px; background: var(--primary); color: #fff; text-decoration: none; }

@media (max-width: 700px) {
  .contentRelatedProducts > div { grid-template-columns: 1fr; }
  .contentModuleCaseStudy > div,
  .contentModuleGallery > div { grid-template-columns: 1fr; }
}

.contentArticle section + section {
  margin-top: 28px;
}

.contentArticle h2 {
  margin: 0 0 12px;
  color: var(--primary-dark);
  font-size: 28px;
  line-height: 1.2;
}

.contentArticle p,
.contentSidebar p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}

.contentFaq details {
  border-top: 1px solid var(--line);
  padding: 16px 0;
}

.contentFaq summary {
  color: var(--ink);
  font-weight: 950;
  cursor: pointer;
}

.priceTableWrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 12px 34px rgba(8, 61, 119, .07);
}

.priceCatalog {
  margin-top: 28px;
}

.priceCatalogHead {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 18px;
}

.priceCatalogHead span {
  color: var(--accent);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.priceCatalogHead h2 {
  margin-top: 6px;
}

.priceProduct {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  text-decoration: none;
}

.priceProduct img {
  width: 54px;
  height: 54px;
  flex: 0 0 54px;
  object-fit: contain;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
}

.priceDetailLink {
  color: var(--primary);
  font-weight: 850;
  white-space: nowrap;
}

.priceCatalogNote {
  margin-top: 14px;
  color: var(--muted);
  font-size: 14px;
}

@media (max-width: 720px) {
  .priceCatalogHead {
    align-items: stretch;
    flex-direction: column;
  }
}

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

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

th {
  background: var(--soft);
  color: var(--primary-dark);
  font-size: 13px;
  letter-spacing: .04em;
  text-transform: uppercase;
}

td {
  color: var(--muted);
}

td:first-child {
  color: var(--ink);
  font-weight: 850;
}

.footer {
  margin-top: 60px;
  padding: 48px 0;
  background: #071F3A;
  color: #fff;
}

.footerGrid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(150px, .45fr) minmax(220px, .65fr) minmax(220px, .7fr);
  gap: 36px;
}

.footerCompany > small {
  margin-top: 8px;
  line-height: 1.5;
}

.footerMap iframe {
  width: 100%;
  height: 190px;
  border: 0;
  border-radius: 12px;
}

.footerBottom {
  margin-top: 30px;
  border-top: 1px solid rgba(255,255,255,.12);
  padding-top: 20px;
  color: rgba(255,255,255,.58);
  font-size: 13px;
}

.footer .brandLogo {
  box-shadow: none;
}

.footerBrand strong {
  color: #fff;
}

.footerBrand small,
.footer p,
.footer a,
.footer span {
  color: rgba(255,255,255,.72);
}

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

.footer h3 {
  margin: 0 0 14px;
  color: #fff;
}

.footer a,
.footer span {
  display: block;
  margin-top: 9px;
}

.contactWidget {
  position: fixed;
  right: 22px;
  bottom: 96px;
  z-index: 22;
  width: min(360px, calc(100vw - 32px));
  overflow: hidden;
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 24px 58px rgba(8, 61, 119, .22);
}

.contactWidgetHead {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr) 32px;
  gap: 12px;
  align-items: center;
  padding: 18px;
  background: var(--primary);
  color: #fff;
}

.contactWidgetHead > span {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: #fff;
  color: var(--primary);
  font-size: 26px;
  font-weight: 950;
}

.contactWidgetHead strong,
.contactWidgetHead small {
  display: block;
}

.contactWidgetHead strong {
  font-size: 18px;
}

.contactWidgetHead small {
  margin-top: 4px;
  color: rgba(255,255,255,.78);
  line-height: 1.35;
}

.contactWidgetHead button,
.contactToggle {
  border: 0;
  cursor: pointer;
}

.contactWidgetHead button {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: transparent;
  color: rgba(255,255,255,.85);
  font-size: 28px;
  line-height: 1;
}

.contactWidgetBody {
  display: grid;
  gap: 10px;
  padding: 14px;
}

.contactWidgetBody a {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) 24px;
  gap: 10px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 12px;
  background: #fff;
}

.contactAction {
  width: 100%;
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) 24px;
  gap: 10px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 12px;
  background: #fff;
  text-align: left;
  cursor: pointer;
}

.contactWidgetBody a > span {
  grid-row: span 2;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: #fff;
  font-weight: 950;
}

.contactAction > span {
  grid-row: span 2;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: #fff;
  font-weight: 950;
}

.phoneIcon {
  background: #22C55E;
  font-size: 24px;
}

.quoteIcon {
  background: var(--accent);
  color: var(--primary-dark) !important;
  font-size: 22px;
}

.zaloIcon {
  background: #0B84FF;
  font-size: 12px;
}

.mailIcon {
  background: #EF4444;
  font-size: 22px;
}

.contactWidgetBody strong,
.contactWidgetBody small,
.contactAction strong,
.contactAction small {
  display: block;
  min-width: 0;
}

.contactWidgetBody strong,
.contactAction strong {
  color: var(--primary-dark);
  font-size: 16px;
}

.contactWidgetBody small,
.contactAction small {
  overflow: hidden;
  color: var(--primary);
  text-overflow: ellipsis;
  white-space: nowrap;
}

.contactWidgetBody b,
.contactAction b {
  grid-row: span 2;
  color: var(--muted);
  font-size: 24px;
}

.contactWidget p {
  margin: 0;
  padding: 14px 18px;
  background: #F0F8F1;
  color: var(--primary-dark);
  font-size: 14px;
  line-height: 1.45;
  font-weight: 760;
}

.floatingCta {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 23;
}

.contactToggle {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--primary);
  color: #fff;
  font-size: 28px;
  font-weight: 950;
  box-shadow: 0 16px 34px rgba(8, 61, 119, .24);
}

.contactWidget.isClosed {
  width: auto;
  background: transparent;
  box-shadow: none;
}

.quickContactRail {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 24;
  display: grid;
  gap: 10px;
}

.quickContactIcon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border: 3px solid #fff;
  border-radius: 999px;
  color: #fff;
  box-shadow: 0 12px 28px rgba(18, 36, 52, .22);
  transition: transform .18s ease, box-shadow .18s ease;
}

.quickContactIcon:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(18, 36, 52, .28);
}

.quickContactIcon.isPhone {
  background: #22a447;
  font-size: 24px;
}

.quickContactIcon.isZalo {
  background: #0877e8;
  font-size: 12px;
  font-weight: 950;
}

.quickContactIcon.isFacebook {
  background: #1877f2;
  font-family: Arial, sans-serif;
  font-size: 30px;
  font-weight: 900;
}

.quickContactIcon.backToTopBtn {
  border: 3px solid #fff;
  background: var(--primary-dark);
  font-size: 25px;
  font-weight: 900;
  cursor: pointer;
}

.quoteModalOverlay {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(10, 22, 35, .62);
  backdrop-filter: blur(8px);
}

.quoteModal {
  position: relative;
  width: min(1180px, 100%);
  max-height: min(840px, 92vh);
  display: grid;
  grid-template-columns: minmax(320px, .9fr) minmax(420px, 1.1fr);
  overflow: auto;
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 34px 90px rgba(8, 30, 60, .32);
}

.quoteClose {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 999px;
  background: rgba(8, 61, 119, .08);
  color: var(--primary-dark);
  font-size: 22px;
  font-weight: 950;
  cursor: pointer;
}

.quoteModalVisual {
  min-height: 620px;
  display: flex;
  flex-direction: column;
  gap: 26px;
  padding: 42px;
  background:
    radial-gradient(circle at 78% 22%, rgba(249, 160, 63, .18), transparent 28%),
    linear-gradient(135deg, #edf7ff 0%, #fff8ed 54%, #eaf4ef 100%);
  color: var(--ink);
}

.quoteBrand {
  align-self: flex-start;
}

.quoteModalVisual span {
  color: var(--primary);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.quoteModalVisual h2 {
  max-width: 560px;
  margin: 0;
  color: var(--primary-dark);
  font-size: clamp(34px, 4vw, 58px);
  line-height: .98;
  letter-spacing: -.05em;
}

.quoteModalVisual p {
  max-width: 520px;
  margin: 0;
  color: #3f4a5f;
  font-size: 18px;
  font-weight: 760;
  line-height: 1.6;
}

.quoteModalVisual ul {
  display: grid;
  gap: 16px;
  margin: auto 0 0;
  padding: 0;
  list-style: none;
}

.quoteModalVisual li {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
}

.quoteModalVisual li b {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: #fff;
  color: var(--primary);
  box-shadow: 0 10px 24px rgba(8, 61, 119, .12);
}

.quoteModalVisual li strong,
.quoteModalVisual li small {
  display: block;
}

.quoteModalVisual li strong {
  color: var(--primary-dark);
  font-size: 17px;
}

.quoteModalVisual li small {
  margin-top: 4px;
  color: var(--muted);
  line-height: 1.45;
}

.quoteForm {
  display: grid;
  gap: 18px;
  padding: 42px;
}

.quoteFormHead span {
  color: var(--accent);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.quoteFormHead h2 {
  margin: 6px 0 8px;
  color: var(--primary-dark);
  font-size: clamp(30px, 3vw, 44px);
  line-height: 1;
  letter-spacing: -.04em;
}

.quoteFormHead p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.5;
}

.quoteFormHead b {
  color: #f04d2f;
}

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

.quoteFields label,
.quoteNote {
  display: grid;
  gap: 8px;
}

.quoteFields span,
.quoteNote span,
.quoteInterest h3 {
  color: var(--primary-dark);
  font-size: 14px;
  font-weight: 900;
}

.quoteFields input,
.quoteNote textarea {
  width: 100%;
  min-height: 54px;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 0 16px;
  background: #fff;
  color: var(--ink);
  outline: none;
}

.quoteFields input:focus,
.quoteNote textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(8, 61, 119, .08);
}

.quoteNote textarea {
  min-height: 110px;
  padding: 16px;
  resize: vertical;
}

.quoteInterest {
  display: grid;
  gap: 10px;
}

.quoteInterest h3 {
  margin: 0;
}

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

.quoteInterest label {
  min-height: 54px;
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 0 14px;
  color: #3f4a5f;
  font-weight: 760;
  cursor: pointer;
}

.quoteInterest input,
.quoteConsent input {
  accent-color: var(--primary);
}

.quoteConsent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--muted);
  font-weight: 720;
  line-height: 1.45;
}

.quoteSubmit {
  min-height: 56px;
  border: 0;
  border-radius: 16px;
  background: var(--primary);
  color: #fff;
  font-weight: 950;
  cursor: pointer;
  box-shadow: 0 16px 30px rgba(8, 61, 119, .20);
}

.quoteSubmit:disabled {
  opacity: .65;
  cursor: wait;
}

.quoteHotline {
  margin: 0;
  color: var(--muted);
  text-align: center;
  font-weight: 720;
}

.quoteHotline a {
  color: var(--primary);
  font-weight: 950;
}

.quoteAlert {
  border-radius: 14px;
  padding: 12px 14px;
  font-weight: 850;
  line-height: 1.45;
}

.quoteAlert.success {
  border: 1px solid #bbf7d0;
  background: #ecfdf3;
  color: #166534;
}

.quoteAlert.error {
  border: 1px solid #fecdd3;
  background: #fff1f2;
  color: #be123c;
}

.cartDrawer {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 50;
  width: min(480px, 100vw);
  height: 100vh;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 28px;
  background: #fff;
  box-shadow: -20px 0 60px rgba(8, 61, 119, .18);
  transform: translateX(104%);
  transition: transform .24s ease;
}

.cartDrawer.open {
  transform: translateX(0);
}

.cartClose {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 999px;
  background: var(--soft);
  color: var(--primary-dark);
  font-size: 24px;
  cursor: pointer;
}

.cartDrawer h2 {
  margin: 0;
  color: var(--primary-dark);
  font-size: 32px;
  text-align: center;
}

.cartDrawer p {
  margin: 0;
  color: var(--muted);
  text-align: center;
  line-height: 1.45;
}

.cartProgress {
  height: 10px;
  overflow: hidden;
  border-radius: 999px;
  background: var(--line);
}

.cartProgress span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: #22C55E;
}

.cartItems {
  display: grid;
  gap: 0;
  overflow-y: auto;
  margin: 12px -28px 0;
  border-top: 1px solid var(--line);
}

.cartItems article {
  display: grid;
  grid-template-columns: 86px minmax(0, 1fr) 38px;
  gap: 14px;
  align-items: center;
  border-bottom: 1px dashed var(--line);
  padding: 16px 28px;
}

.cartItems img {
  width: 86px;
  height: 86px;
  object-fit: contain;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--soft);
  mix-blend-mode: multiply;
}

.cartItems strong,
.cartItems span {
  display: block;
}

.cartItems strong {
  color: var(--ink);
  font-size: 16px;
  line-height: 1.35;
}

.cartItems span {
  margin-top: 5px;
  color: var(--primary);
  font-weight: 950;
}

.cartQty {
  width: fit-content;
  display: grid;
  grid-template-columns: 40px 56px 40px;
  overflow: hidden;
  margin-top: 12px;
  border: 1px solid var(--line);
  border-radius: 4px;
}

.cartQty button,
.cartQty b {
  height: 38px;
  display: grid;
  place-items: center;
  border: 0;
  background: #fff;
  color: var(--primary-dark);
  font-size: 16px;
}

.cartQty b {
  border-right: 1px solid var(--line);
  border-left: 1px solid var(--line);
  font-weight: 900;
}

.cartQty button {
  cursor: pointer;
}

.cartRemove {
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 999px;
  background: #fff;
  color: #EF4444;
  font-size: 18px;
  cursor: pointer;
}

.cartRemove:hover {
  background: #FFF0F0;
}

.vatCheck {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-top: auto;
  color: var(--ink);
  font-weight: 750;
}

.vatCheck input {
  width: 18px;
  height: 18px;
}

.cartTotal {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding-top: 8px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 22px;
  font-weight: 900;
}

.cartTotal strong {
  color: var(--primary);
  font-size: 24px;
}

.checkoutBtn {
  min-height: 58px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: var(--primary);
  color: #fff;
  font-weight: 950;
}

.checkoutPage {
  min-height: 720px;
  padding: 44px 0 66px;
  background:
    linear-gradient(90deg, rgba(255,255,255,.96), rgba(238,246,255,.68)),
    #fff;
}

.checkoutShell {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(360px, .55fr);
  gap: 30px;
  align-items: start;
}

.checkoutBack {
  width: fit-content;
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--primary);
  font-weight: 950;
}

.checkoutLogo {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: center;
  margin-bottom: 26px;
  color: var(--primary-dark);
  font-size: 22px;
  font-weight: 1000;
}

.checkoutMain,
.checkoutSummary,
.emptyCheckout,
.checkoutSuccess {
  border: 1px solid var(--line);
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 18px 54px rgba(8, 61, 119, .10);
}

.checkoutMain {
  padding: 28px;
}

.checkoutCard + .checkoutCard {
  margin-top: 18px;
}

.checkoutTitleRow {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: flex-start;
  margin-bottom: 18px;
}

.checkoutTitleRow span {
  color: var(--accent);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.checkoutTitleRow h1,
.checkoutTitleRow h2 {
  margin: 5px 0 0;
  color: var(--primary-dark);
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.08;
  letter-spacing: -.03em;
}

.checkoutTitleRow small {
  max-width: 260px;
  color: var(--muted);
  text-align: right;
  line-height: 1.45;
}

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

.checkoutFields label {
  display: grid;
  gap: 7px;
}

.checkoutFields label.full {
  grid-column: 1 / -1;
}

.checkoutFields span {
  color: var(--ink);
  font-size: 14px;
  font-weight: 900;
}

.checkoutFields input,
.checkoutFields textarea,
.checkoutDiscount input {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  color: var(--ink);
  font: inherit;
}

.checkoutFields input {
  height: 48px;
  padding: 0 14px;
}

.checkoutFields textarea {
  resize: vertical;
  min-height: 104px;
  padding: 13px 14px;
}

.checkoutFields input:focus,
.checkoutFields textarea:focus,
.checkoutDiscount input:focus {
  outline: 2px solid rgba(8, 61, 119, .16);
  border-color: var(--primary);
}

.checkoutAlert {
  margin-bottom: 16px;
  border-radius: 14px;
  padding: 12px 14px;
  font-weight: 900;
}

.checkoutAlert.error {
  border: 1px solid rgba(239, 68, 68, .26);
  background: #FFF1F2;
  color: #B91C1C;
}

.shippingNotice {
  border-radius: 14px;
  padding: 15px 16px;
  background: #DDF4FA;
  color: var(--primary-dark);
  font-weight: 850;
}

.paymentOptions {
  display: grid;
  gap: 10px;
  margin-top: 14px;
}

.paymentOptions label {
  min-height: 58px;
  display: flex;
  gap: 12px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 0 14px;
  color: var(--ink);
  font-weight: 900;
}

.paymentOptions input {
  width: 19px;
  height: 19px;
}

.checkoutSummary {
  position: sticky;
  top: 24px;
  padding: 26px;
}

.checkoutSummary h2 {
  margin: 0 0 20px;
  color: var(--primary-dark);
  font-size: 28px;
}

.checkoutItems {
  display: grid;
  gap: 14px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.checkoutItems article {
  display: grid;
  grid-template-columns: 74px minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
}

.checkoutItemImage {
  position: relative;
}

.checkoutItemImage img {
  width: 74px;
  height: 74px;
  object-fit: contain;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--soft);
  mix-blend-mode: multiply;
}

.checkoutItemImage b {
  position: absolute;
  top: -8px;
  right: -8px;
  min-width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--accent);
  color: var(--primary-dark);
  font-size: 12px;
}

.checkoutItems strong,
.checkoutItems small {
  display: block;
}

.checkoutItems strong {
  color: var(--ink);
  line-height: 1.35;
}

.checkoutItems small {
  margin-top: 4px;
  color: var(--muted);
}

.checkoutItemBody {
  min-width: 0;
}

.checkoutItemQty {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
}

.checkoutItemQty button {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
  color: var(--primary-dark);
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.checkoutItemQty b {
  min-width: 24px;
  text-align: center;
  color: var(--ink);
}

.checkoutItemQty .checkoutItemRemove {
  width: auto;
  padding: 0 8px;
  border-color: transparent;
  color: #b42318;
  font-size: 12px;
}

.checkoutItems article > span {
  color: var(--primary);
  font-weight: 950;
}

.checkoutCouponBox {
  margin: 18px 0;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 16px;
  background: #f8fafc;
}

.checkoutCouponIntro {
  display: grid;
  gap: 3px;
}

.checkoutCouponIntro strong {
  color: var(--ink);
  font-size: 16px;
}

.checkoutCouponIntro span,
.checkoutCouponHelp {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.checkoutDiscount {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 110px;
  gap: 10px;
  margin: 12px 0 8px;
}

.checkoutDiscount input {
  height: 48px;
  padding: 0 14px;
}

.checkoutDiscount button {
  border: 0;
  border-radius: 12px;
  background: #A8CF87;
  color: #fff;
  font-weight: 950;
  cursor: pointer;
}

.checkoutDiscount button:disabled {
  cursor: wait;
  opacity: .7;
}

.checkoutCouponMessage {
  margin: 9px 0 0;
  font-size: 14px;
  font-weight: 800;
}

.checkoutCouponBox.is-applied {
  border-color: #86c79a;
  background: #f0fdf4;
}

.checkoutCouponHeading {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
}

.checkoutCouponCheck {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  background: #15803d;
  color: #fff;
  font-weight: 950;
}

.checkoutCouponHeading div {
  display: grid;
  gap: 2px;
}

.checkoutCouponHeading small {
  color: #427251;
}

.checkoutCouponHeading strong {
  color: #166534;
  font-size: 18px;
  letter-spacing: .5px;
}

.checkoutCouponHeading button {
  border: 0;
  background: transparent;
  color: #475569;
  font-weight: 850;
  cursor: pointer;
}

.checkoutCouponBox.is-applied p {
  margin: 12px 0 4px;
  color: #427251;
  font-size: 13px;
  line-height: 1.5;
}

.checkoutCouponBox.is-applied > b {
  color: #15803d;
  font-size: 14px;
}

.checkoutCouponMessage.success,
.checkoutTotals .discount dd {
  color: #15803d;
}

.checkoutCouponMessage.error {
  color: #b91c1c;
}

.checkoutCouponLoading {
  margin-top: 14px;
  color: var(--muted);
  font-size: 13px;
}

.checkoutCouponLoading.is-error {
  color: #b91c1c;
}

.checkoutCouponList {
  display: grid;
  gap: 10px;
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.checkoutCouponList > strong {
  color: var(--ink);
  font-size: 14px;
}

.checkoutCouponOptions {
  display: grid;
  gap: 9px;
}

.checkoutCouponOption {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  padding: 11px 12px;
  border: 1px dashed #a9b9ca;
  border-radius: 12px;
  background: #fff;
}

.checkoutCouponOption > div {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.checkoutCouponOption b {
  color: var(--primary);
  font-size: 15px;
  letter-spacing: .4px;
}

.checkoutCouponOption span,
.checkoutCouponOption small {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.4;
}

.checkoutCouponOption button {
  min-width: 76px;
  min-height: 36px;
  padding: 0 12px;
  border: 0;
  border-radius: 9px;
  background: var(--primary);
  color: #fff;
  font-weight: 850;
  cursor: pointer;
}

.checkoutCouponOption button:disabled {
  cursor: wait;
  opacity: .65;
}

@media (max-width: 520px) {
  .checkoutCouponOption {
    align-items: end;
  }

  .checkoutCouponOption button {
    min-width: 70px;
  }
}

.checkoutTotals {
  display: grid;
  gap: 12px;
  margin: 0 0 18px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.checkoutTotals div {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  color: var(--muted);
  font-size: 18px;
}

.checkoutTotals dt,
.checkoutTotals dd {
  margin: 0;
}

.checkoutTotals div:last-child {
  color: var(--ink);
  font-size: 24px;
  font-weight: 1000;
}

.checkoutTotals div:last-child dd {
  color: var(--accent);
}

.placeOrderBtn,
.backCartBtn {
  width: 100%;
  min-height: 56px;
  border-radius: 14px;
  font-weight: 1000;
  cursor: pointer;
}

.placeOrderBtn {
  border: 0;
  background: var(--primary);
  color: #fff;
  text-transform: uppercase;
}

.placeOrderBtn:disabled {
  cursor: wait;
  opacity: .72;
}

.backCartBtn {
  margin-top: 10px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--primary);
}

.emptyCheckout,
.checkoutSuccess {
  max-width: 760px;
  margin: 0 auto;
  padding: 46px;
  text-align: center;
}

.emptyCheckout h1,
.checkoutSuccess h1 {
  margin: 16px 0 10px;
  color: var(--primary-dark);
  font-size: clamp(32px, 4vw, 52px);
}

.emptyCheckout p,
.checkoutSuccess p {
  margin: 0 auto 22px;
  max-width: 580px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.emptyCheckout a {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 0 20px;
  background: var(--primary);
  color: #fff;
  font-weight: 950;
}

.checkoutSuccess > span {
  width: 76px;
  height: 76px;
  display: grid;
  place-items: center;
  margin: 0 auto;
  border-radius: 999px;
  background: #DCFCE7;
  color: #16A34A;
  font-size: 38px;
  font-weight: 1000;
}

.checkoutSuccess div {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.productDetailPage {
  padding: 26px 0 34px;
  background: #fff;
}

.detailBreadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-bottom: 24px;
  color: var(--muted);
  font-weight: 850;
}

.detailBreadcrumb a {
  color: var(--muted);
}

.detailBreadcrumb strong {
  color: var(--primary);
}

.productDetailPanel {
  position: relative;
  max-height: none;
  display: grid;
  grid-template-columns: minmax(420px, .9fr) minmax(520px, 1.1fr);
  gap: 26px;
  overflow: visible;
  border-radius: 28px;
  padding: 26px;
  background: #fff;
  box-shadow: 0 18px 54px rgba(8, 61, 119, .10);
}

.detailGallery {
  min-width: 0;
}

.detailMainImage {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 560px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: linear-gradient(135deg, #fff, var(--soft));
}

.detailMainImage img {
  width: min(88%, 620px);
  max-height: 520px;
  object-fit: contain;
  mix-blend-mode: multiply;
  filter: drop-shadow(0 18px 24px rgba(8, 61, 119, .14));
}

.detailMainImage .favoriteToggle {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 54px;
  height: 54px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,.92);
  color: var(--primary-dark);
  font-size: 28px;
  cursor: pointer;
  box-shadow: 0 12px 24px rgba(8, 61, 119, .12);
}

.detailThumbs {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
  margin-top: 14px;
}

.detailThumbs button {
  height: 88px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  cursor: pointer;
}

.detailThumbs button.active {
  border: 2px solid var(--primary);
}

.detailThumbs img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.shareRow {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-top: 20px;
  color: var(--muted);
  font-weight: 800;
}

.shareRow button {
  min-width: 42px;
  height: 42px;
  border: 0;
  border-radius: 10px;
  background: var(--primary);
  color: #fff;
  font-weight: 950;
  cursor: pointer;
}

.shareRow button:nth-child(3) {
  background: #0EA5E9;
}

.shareRow button:nth-child(4) {
  background: #D92D20;
}

.detailInfo {
  min-width: 0;
  padding: 8px 8px 0;
}

.soldRow {
  display: flex;
  gap: 12px;
  align-items: center;
  color: var(--primary-dark);
  font-weight: 900;
}

.soldRow b {
  height: 12px;
  flex: 1 1 auto;
  overflow: hidden;
  border-radius: 999px;
  background: var(--line);
}

.soldRow i {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: repeating-linear-gradient(45deg, #EF4444, #EF4444 8px, #FB7185 8px, #FB7185 16px);
}

.detailInfo h2 {
  margin: 18px 0 10px;
  color: var(--primary-dark);
  font-size: clamp(30px, 4vw, 54px);
  line-height: 1.03;
  letter-spacing: -.04em;
}

.detailPrice {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: baseline;
  margin-bottom: 18px;
}

.detailPrice strong {
  color: var(--primary);
  font-size: 34px;
  font-weight: 1000;
}

.detailPrice del,
.detailPrice em {
  color: var(--muted);
  font-size: 18px;
  font-style: normal;
}

.detailInfo p {
  max-width: 820px;
  margin: 0;
  color: var(--ink);
  font-size: 18px;
  line-height: 1.65;
}

.productDescription {
  max-width: 820px;
}

.optionGroup,
.qtyRow {
  margin-top: 20px;
}

.optionGroup strong,
.qtyRow strong {
  display: block;
  margin-bottom: 10px;
  color: var(--ink);
  font-size: 18px;
}

.optionGroup div,
.qtyRow div {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.optionGroup button,
.qtyRow button {
  min-width: 72px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  color: var(--ink);
  font-weight: 900;
  cursor: pointer;
}

.optionGroup button.active {
  border: 2px solid var(--primary);
  background: var(--soft);
  color: var(--primary-dark);
}

.qtyRow div {
  width: fit-content;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
}

.qtyRow button,
.qtyRow span {
  width: 64px;
  min-width: 0;
  height: 46px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 0;
  color: var(--primary);
}

.qtyRow span {
  border-right: 1px solid var(--line);
  border-left: 1px solid var(--line);
  font-weight: 950;
}

.detailActions {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(180px, .7fr);
  gap: 12px;
  margin-top: 24px;
}

.detailActions button,
.detailActions a {
  min-height: 58px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 12px;
  font-weight: 1000;
  text-transform: uppercase;
}

.detailActions button {
  border: 0;
  background: var(--primary);
  color: #fff;
  cursor: pointer;
}

.detailActions a,
.detailActions .buyNowBtn {
  border: 1px solid var(--primary);
  background: #fff;
  color: var(--primary);
}

.storeLink {
  min-height: 48px;
  display: grid;
  place-items: center;
  color: var(--primary);
  font-weight: 950;
}

.bundleBox,
.specBox {
  margin-top: 18px;
  border-radius: 18px;
  padding: 18px;
  background: #F5F8FA;
}

.bundleBox h3,
.specBox h3 {
  margin: 0 0 12px;
  color: var(--primary-dark);
  font-size: 22px;
}

.bundleBox button {
  width: 100%;
  display: grid;
  grid-template-columns: 82px minmax(0, 1fr) 34px;
  gap: 12px;
  align-items: center;
  margin-top: 10px;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 10px;
  background: #fff;
  text-align: left;
  cursor: pointer;
}

.bundleBox img {
  width: 82px;
  height: 66px;
  object-fit: contain;
  border-radius: 10px;
  background: var(--soft);
  mix-blend-mode: multiply;
}

.bundleBox strong,
.bundleBox small {
  display: block;
}

.bundleBox strong {
  overflow: hidden;
  color: var(--ink);
  font-size: 16px;
  line-height: 1.3;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.bundleBox small {
  margin-top: 4px;
  color: var(--muted);
}

.bundleBox b {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--primary);
  color: #fff;
}

.specGroup {
  margin-top: 12px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  overflow: hidden;
}

.specGroup > strong {
  display: block;
  padding: 10px 12px;
  border-bottom: 1px solid var(--line);
  color: var(--primary-dark);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.specGroup dl {
  margin: 0;
}

.specGroup dl > div {
  display: grid;
  grid-template-columns: minmax(120px, .7fr) minmax(0, 1fr);
  gap: 12px;
  padding: 10px 12px;
}

.specGroup dl > div + div {
  border-top: 1px solid var(--line);
}

.specGroup dt,
.specGroup dd {
  margin: 0;
  font-size: 14px;
  line-height: 1.45;
}

.specGroup dt {
  color: var(--muted);
  font-weight: 750;
}

.specGroup dd {
  color: var(--ink);
  font-weight: 900;
}

.productDetailSupport {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, .78fr);
  gap: 22px;
  margin-top: 24px;
}

.productLongDescription {
  grid-column: 1 / -1;
  scroll-margin-top: 120px;
}

.productRelatedBlock {
  grid-column: 1 / -1;
}

.productRichContent {
  color: var(--ink);
  font-size: 17px;
  line-height: 1.75;
}

.productRichContent h2,
.productRichContent h3 {
  margin: 24px 0 10px;
  color: var(--primary-dark);
  line-height: 1.3;
}

.productRichContent p,
.productRichContent ul,
.productRichContent ol,
.productRichContent blockquote,
.productRichContent figure {
  margin: 0 0 16px;
}

.productRichContent img,
.contentHtmlBody figure img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: 16px;
}

.productRichContent figure,
.contentHtmlBody figure {
  max-width: 100%;
  box-sizing: border-box;
  text-align: center;
}

.productRichContent figure.image-width-25,
.contentHtmlBody figure.image-width-25 { width: 25%; }
.productRichContent figure.image-width-50,
.contentHtmlBody figure.image-width-50 { width: 50%; }
.productRichContent figure.image-width-75,
.contentHtmlBody figure.image-width-75 { width: 75%; }
.productRichContent figure.image-width-100,
.contentHtmlBody figure.image-width-100 { width: 100%; }
.productRichContent figure.image-align-left,
.contentHtmlBody figure.image-align-left { margin-right: auto; margin-left: 0; }
.productRichContent figure.image-align-center,
.contentHtmlBody figure.image-align-center { margin-right: auto; margin-left: auto; }
.productRichContent figure.image-align-right,
.contentHtmlBody figure.image-align-right { margin-right: 0; margin-left: auto; }
.productRichContent figure.image-height-240 img,
.contentHtmlBody figure.image-height-240 img { max-height: 240px; }
.productRichContent figure.image-height-360 img,
.contentHtmlBody figure.image-height-360 img { max-height: 360px; }
.productRichContent figure.image-height-480 img,
.contentHtmlBody figure.image-height-480 img { max-height: 480px; }
.productRichContent figure[class*="image-height-"] img,
.contentHtmlBody figure[class*="image-height-"] img { width: 100%; object-fit: contain; }

@media (max-width: 640px) {
  .productRichContent figure[class*="image-width-"],
  .contentHtmlBody figure[class*="image-width-"] {
    width: 100%;
  }
}

.productRichContent figcaption {
  margin-top: 8px;
  color: var(--muted);
  font-size: 14px;
}

.productDetailSupport article {
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 24px;
  background: #fff;
  box-shadow: 0 14px 42px rgba(8, 61, 119, .08);
}

.productDetailSupport span {
  color: var(--accent);
  font-size: 12px;
  font-weight: 1000;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.productDetailSupport h2 {
  margin: 8px 0 10px;
  color: var(--primary-dark);
  font-size: clamp(24px, 2.5vw, 34px);
  letter-spacing: -.03em;
}

.productDetailSupport p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.supportProductList {
  display: grid;
  gap: 10px;
  margin-top: 14px;
}

.supportProductList button {
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 10px;
  background: #fff;
  text-align: left;
  cursor: pointer;
}

.supportProductList button::after {
  content: "›";
  color: var(--primary);
  font-size: 26px;
  font-weight: 900;
}

.supportProductList img {
  width: 76px;
  height: 62px;
  border-radius: 10px;
  object-fit: contain;
  background: var(--soft);
  mix-blend-mode: multiply;
}

.supportProductList strong,
.supportProductList small {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.supportProductList strong {
  color: var(--ink);
  font-size: 15px;
}

.supportProductList small {
  margin-top: 4px;
  color: var(--primary);
  font-weight: 900;
}

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

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

  .headerActions {
    justify-content: space-between;
  }

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

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

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

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

  .checkoutSummary {
    position: static;
  }

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

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

  .articleHubHero,
  .articleHubLayout,
  .contentLayout {
    grid-template-columns: 1fr;
  }

  .articleSidebar,
  .contentSidebar {
    position: static;
  }

  .searchFilters {
    position: static;
  }

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

  .detailMainImage {
    min-height: 420px;
  }

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

  .quoteModalVisual {
    min-height: auto;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(100% - 28px, 1180px);
  }

  .homeCustomCta {
    align-items: stretch;
    flex-direction: column;
    margin-top: 26px;
    margin-bottom: 26px;
    border-radius: 20px;
    padding: 24px;
  }

  .homeImageText,
  .homeImageText.is-image-right {
    grid-template-columns: 1fr;
    gap: 22px;
    margin-top: 32px;
    margin-bottom: 32px;
  }

  .homeImageText.is-image-right figure {
    order: 0;
  }

  .homeImageText figure,
  .homeImageText img {
    min-height: 240px;
  }

  .homeBannerSection {
    padding: 14px 0 6px;
  }

  .homeBannerSlider {
    min-height: 420px;
    border-radius: 20px;
  }

  .homeBannerSlide > img {
    object-position: 60% center;
  }

  .homeBannerShade {
    background: linear-gradient(0deg, rgba(4, 33, 66, .98) 0%, rgba(4, 33, 66, .8) 58%, rgba(4, 33, 66, .18) 100%);
  }

  .homeBannerContent {
    width: 100%;
    padding: 118px 22px 82px;
  }

  .homeBannerContent h2 {
    margin: 12px 0 10px;
    font-size: 32px;
  }

  .homeBannerContent p {
    font-size: 14px;
    line-height: 1.55;
  }

  .homeBannerActions {
    margin-top: 18px;
  }

  .homeBannerActions a {
    min-height: 44px;
    padding: 0 16px;
    font-size: 14px;
  }

  .homeBannerControls {
    right: 68px;
    bottom: 14px;
    min-height: 42px;
    padding: 4px 6px;
  }

  .homeBannerArrow {
    width: 32px;
    height: 32px;
  }

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

  .articleCompactItem {
    grid-template-columns: minmax(0, 1fr) 36px;
    gap: 10px;
  }

  .articleCompactItem time {
    grid-column: 1 / -1;
    padding: 0;
  }

  .promoInner {
    min-height: 48px;
    justify-content: space-between;
    gap: 10px;
    overflow: visible;
    white-space: normal;
  }

  .promoMessage {
    min-width: 0;
  }

  .promoMessage span {
    font-size: 15px;
    line-height: 1.2;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .promoMessage strong,
  .promoMessage em,
  .promoImage {
    display: none;
  }

  .promoActions {
    gap: 6px;
  }

  .promoInner a,
  .promoInner button {
    min-height: 32px;
    flex: 0 0 auto;
    padding: 0 9px;
    font-size: 11px;
  }

  .companyHero {
    padding: 42px 0;
  }

  .companyHeroInner,
  .companyStory,
  .contactPageGrid,
  .companyValues {
    grid-template-columns: 1fr;
  }

  .companyHeroInner {
    gap: 26px;
  }

  .companyHero h1 {
    font-size: 38px;
  }

  .companyCta {
    align-items: flex-start;
    flex-direction: column;
  }

  .menuBtn {
    display: inline-flex;
  }

  .mainHeader {
    position: sticky;
    top: 0;
    z-index: 12;
  }

  .headerInner {
    min-height: 86px;
    grid-template-columns: 1fr auto;
    gap: 12px;
  }

  .headerInner > .searchBox {
    grid-column: 1 / -1;
    order: 3;
  }

  .brand small {
    display: none;
  }

  .brandLogo {
    width: 56px;
    height: 56px;
    font-size: 22px;
  }

  .headerActions {
    gap: 8px;
  }

  .favoriteBtn,
  .cartBtn {
    width: 42px;
    height: 42px;
    min-height: 42px;
    padding: 0;
    font-size: 0;
  }

  .favoriteBtn::before {
    content: "♡";
    font-size: 24px;
  }

  .cartBtn::before {
    content: "🛒";
    font-size: 20px;
  }

  .favoriteBtn b,
  .cartBtn b {
    position: absolute;
    transform: translate(14px, -14px);
    margin-left: 0;
  }

  .supportBtn {
    display: none;
  }

  .catalogBtn {
    display: none;
  }

  .mainNav {
    position: fixed;
    inset: 0;
    z-index: 40;
    display: block;
    overflow: auto;
    background: #050505;
    border: 0;
    opacity: 0;
    pointer-events: none;
    transform: translateX(-100%);
    transition: opacity .2s ease, transform .24s ease;
    backdrop-filter: none;
  }

  .mainNav.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(0);
  }

  .mobileNavTop {
    display: block;
    padding: 16px 14px 18px;
    background: #fff;
    border-bottom: 1px solid #e7eaee;
  }

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

  .mobileNavClose {
    width: 40px;
    height: 40px;
    border: 0;
    border-radius: 999px;
    background: transparent;
    color: #1f2937;
    font-size: 34px;
    line-height: 1;
    cursor: pointer;
  }

  .mobileBrand {
    min-width: 0;
  }

  .mobileBrand .brandLogo {
    width: 76px;
    height: 54px;
  }

  .mobileBrand strong {
    font-size: 16px;
  }

  .mobileNavActions {
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .mobileIconBtn {
    position: relative;
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border: 0;
    border-radius: 999px;
    background: var(--soft);
    color: var(--primary);
    font-size: 20px;
    font-weight: 900;
    cursor: pointer;
  }

  .mobileIconBtn b {
    position: absolute;
    top: -3px;
    right: -3px;
    min-width: 20px;
    height: 20px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    background: var(--primary);
    color: #fff;
    font-size: 11px;
  }

  .mobileSearchBox {
    margin-top: 14px;
    height: 52px;
    border-radius: 999px;
    border: 1px solid #dfe5e8;
    overflow: hidden;
  }

  .mobileSearchBox input {
    font-size: 16px;
  }

  .mobileSearchBox button {
    width: 72px;
  }

  .navInner {
    width: 100%;
    min-height: 0;
    display: grid;
    justify-content: stretch;
    gap: 0;
    padding: 0;
    background: #050505;
  }

  .navInner .mobileCatalogLink {
    min-height: 52px;
    display: flex;
    justify-content: flex-start;
    gap: 10px;
    background: var(--primary-dark);
    color: var(--accent);
    text-transform: none;
  }

  .navInner a {
    min-height: 54px;
    padding: 0 14px;
    border-bottom: 1px solid rgba(255, 255, 255, .12);
    color: #fff;
    font-size: 15px;
    letter-spacing: .2px;
    text-transform: uppercase;
    justify-content: space-between;
  }

  .navInner a.active {
    color: var(--accent);
  }

  .navInner a:hover {
    color: #fff;
  }

  .navExpandIcon {
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 36px;
    align-self: center;
    margin-left: 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .14);
    color: #fff;
    font-size: 0;
    line-height: 1;
    cursor: pointer;
  }

  .navExpandIcon::before {
    content: "";
    width: 8px;
    height: 8px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: translateY(-2px) rotate(45deg);
    transition: transform .18s ease;
  }

  .mainNav.megaOpen .productNavTrigger .navExpandIcon::before {
    transform: translateY(2px) rotate(225deg);
  }

  .megaMenu {
    position: static;
    max-height: none;
    display: none;
    overflow: visible;
    box-shadow: none;
    background: #050505;
    border: 0;
  }

  .mainNav.megaOpen .megaMenu {
    display: block;
  }

  .megaInner {
    width: 100%;
    grid-template-columns: 1fr;
    gap: 0;
    padding: 0 0 28px;
    color: #fff;
  }

  .megaColumn + .megaColumn {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, .12);
    padding: 16px 0 0;
  }

  .categoryColumn {
    gap: 0;
  }

  .megaInner > .productColumn,
  .megaInner > .supportColumn {
    display: none;
  }

  .categoryColumn h3 {
    margin: 0;
    padding: 18px 14px 10px;
    color: #fff;
    font-size: 15px;
    font-weight: 900;
    letter-spacing: .04em;
    text-transform: uppercase;
  }

  .megaCategoryItem {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 52px;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, .12);
  }

  .categoryColumn .megaCategoryLink {
    min-height: 82px;
    grid-template-columns: 68px minmax(0, 1fr);
    gap: 12px;
    border-radius: 0;
    padding: 10px 0 10px 14px;
    background: transparent;
    color: #fff;
  }

  .categoryColumn .megaCategoryLink:hover {
    background: rgba(255, 255, 255, .06);
  }

  .categoryColumn .megaCategoryLink img {
    width: 60px;
    height: 60px;
    border-color: rgba(255, 255, 255, .18);
    border-radius: 12px;
    mix-blend-mode: normal;
  }

  .categoryColumn .megaCategoryLink b {
    display: none;
  }

  .categoryColumn .megaCategoryLink strong {
    color: #fff;
    font-size: 15px;
    line-height: 1.25;
  }

  .categoryColumn .megaCategoryLink small {
    max-width: 230px;
    color: rgba(255, 255, 255, .62);
    font-size: 13px;
    white-space: nowrap;
  }

  .megaCategoryToggle {
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    justify-self: center;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, .14);
    color: #fff;
    font-size: 0;
    cursor: pointer;
    transition: transform .18s ease, background .18s ease;
  }

  .megaCategoryToggle::before {
    content: "";
    width: 8px;
    height: 8px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: translateY(-2px) rotate(45deg);
  }

  .megaCategoryItem.open .megaCategoryToggle {
    background: rgba(255, 255, 255, .28);
  }

  .megaCategoryItem.open .megaCategoryToggle::before {
    transform: translateY(2px) rotate(225deg);
  }

  .megaCategoryProducts {
    grid-column: 1 / -1;
    display: none;
    padding: 0 14px 14px 94px;
  }

  .megaCategoryItem.open .megaCategoryProducts {
    display: grid;
    gap: 8px;
  }

  .mobileCategoryProduct {
    width: 100%;
    min-height: 50px;
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 10px;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 12px;
    padding: 5px 8px 5px 5px;
    background: rgba(255, 255, 255, .045);
    color: #fff;
    text-align: left;
    cursor: pointer;
  }

  .mobileCategoryProduct img {
    width: 42px;
    height: 42px;
    object-fit: contain;
    border-radius: 9px;
    background: #fff;
  }

  .mobileCategoryProduct strong,
  .mobileCategoryProduct small {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .mobileCategoryProduct strong {
    color: #fff;
    font-size: 14px;
    font-weight: 850;
  }

  .mobileCategoryProduct small {
    margin-top: 2px;
    color: rgba(255, 255, 255, .64);
    font-size: 12px;
  }

  .mobileCategoryViewAll {
    width: fit-content;
    min-height: 34px;
    border: 0;
    border-radius: 999px;
    padding: 0 11px;
    background: rgba(255, 255, 255, .1);
    color: #fff;
    font-size: 13px;
    font-weight: 850;
    cursor: pointer;
  }

  .heroInner,
  .productGrid,
  .productGrid.searchProductGrid,
  .articleGrid,
  .knowledgeGrid,
  .footerGrid,
  .trustGrid {
    grid-template-columns: 1fr;
  }

  .heroInner {
    min-height: 0;
    padding: 36px 0;
  }

  .heroVisual {
    min-height: 360px;
  }

  .categoryStrip,
  .sectionHead {
    display: grid;
    align-items: start;
  }

  .categoryButtons {
    justify-content: flex-start;
  }

  .trustGrid {
    margin-top: 18px;
  }

  .productImage {
    min-height: 220px;
  }

  .productDetailPanel {
    border-radius: 20px;
    padding: 14px;
  }

  .detailMainImage {
    min-height: 300px;
  }

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

  .detailInfo h2 {
    font-size: 30px;
  }

  .detailInfo p {
    font-size: 16px;
  }

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

  .checkoutPage {
    padding: 24px 0 42px;
  }

  .checkoutMain,
  .checkoutSummary,
  .emptyCheckout,
  .checkoutSuccess {
    border-radius: 20px;
    padding: 18px;
  }

  .checkoutTitleRow {
    display: grid;
  }

  .checkoutTitleRow small {
    max-width: none;
    text-align: left;
  }

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

  .checkoutItems article {
    grid-template-columns: 62px minmax(0, 1fr);
  }

  .checkoutItems article > span {
    grid-column: 2;
  }

  .checkoutItemImage img {
    width: 62px;
    height: 62px;
  }

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

  .contactWidget {
    right: 14px;
    bottom: 82px;
    width: min(340px, calc(100vw - 28px));
  }

  .contactWidgetHead {
    grid-template-columns: 44px minmax(0, 1fr) 30px;
    padding: 14px;
  }

  .contactWidgetHead > span {
    width: 44px;
    height: 44px;
  }

  .floatingCta {
    right: 14px;
    bottom: 14px;
  }

  .contactToggle {
    width: 56px;
    height: 56px;
  }

  .quickContactRail {
    right: 14px;
    bottom: 14px;
    gap: 8px;
  }

  .quickContactIcon {
    width: 48px;
    height: 48px;
  }

  .quoteModalOverlay {
    padding: 12px;
  }

  .quoteModal {
    max-height: 94vh;
    border-radius: 22px;
  }

  .quoteModalVisual,
  .quoteForm {
    padding: 24px;
  }

  .quoteFields,
  .quoteInterest div {
    grid-template-columns: 1fr;
  }

  .quoteModalVisual ul {
    margin-top: 6px;
  }

  .cartDrawer {
    padding: 24px 18px;
  }

  .cartItems {
    margin-right: -18px;
    margin-left: -18px;
  }

  .cartItems article {
    grid-template-columns: 76px minmax(0, 1fr) 34px;
    padding-right: 18px;
    padding-left: 18px;
  }

  .cartItems img {
    width: 76px;
    height: 76px;
  }

  .cartQty {
    grid-template-columns: 34px 46px 34px;
  }
}
.contentWidget { margin-top: 30px; }
.reviewWidgetGrid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.contentReviews blockquote {
  margin: 0;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}
.contentReviews blockquote p { margin: 8px 0 12px; }
.contentReviews blockquote cite { color: var(--muted); font-style: normal; font-weight: 700; }
.reviewStars { color: #e3a21a; letter-spacing: 1px; }

@media (max-width: 720px) {
  .reviewWidgetGrid { grid-template-columns: 1fr; }
}

.productReviews {
  overflow: hidden;
  border: 1px solid var(--line);
  background: #fff;
}

.productReviewsSummary {
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr);
  gap: 28px;
  padding: 28px;
  background: color-mix(in srgb, var(--primary) 7%, #fff);
}

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

.reviewScore > strong { color: var(--primary); font-size: 34px; }
.reviewScore > span { color: var(--muted); }
.reviewStars { color: #f5aa00; font-size: 22px; letter-spacing: 1px; }

.reviewSubmitOpen,
.reviewSubmitButton {
  min-height: 46px;
  padding: 0 22px;
  border: 0;
  border-radius: 4px;
  color: #fff;
  background: var(--primary);
  font-weight: 700;
  cursor: pointer;
}

.reviewFilters {
  display: flex;
  align-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 10px;
}

.reviewFilters button {
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 4px;
  color: var(--text);
  background: #fff;
  cursor: pointer;
}

.reviewFilters button.active { border-color: var(--primary); color: var(--primary); font-weight: 700; }
.productReviewList { padding: 0 28px; }
.productReviewItem { padding: 24px 0; border-bottom: 1px solid var(--line); }
.productReviewItem:last-child { border-bottom: 0; }
.productReviewAuthor { display: flex; align-items: center; flex-wrap: wrap; gap: 12px; }
.productReviewAuthor .reviewStars { font-size: 17px; }
.productReviewItem p { margin: 10px 0; line-height: 1.65; }
.productReviewItem time { color: var(--muted); font-size: 13px; }
.productReviewImages { display: flex; gap: 10px; margin: 12px 0; }
.productReviewImages img { width: 92px; height: 92px; border-radius: 4px; object-fit: cover; }
.reviewEmpty { margin: 0; padding: 28px 0; color: var(--muted); text-align: center; }

.reviewModalOverlay {
  position: fixed;
  z-index: 1200;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(12, 25, 40, .66);
}

.reviewModal {
  position: relative;
  width: min(720px, 100%);
  max-height: calc(100vh - 40px);
  overflow: auto;
  padding: 32px;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 24px 70px rgba(10, 30, 55, .22);
}

.reviewModalClose {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 50%;
  background: #eef3f7;
  font-size: 28px;
  cursor: pointer;
}

.reviewModal header { padding: 0 38px 22px; text-align: center; }
.reviewModal header span { color: var(--muted); }
.reviewModal header h2 { margin: 6px 0 0; font-size: 24px; }
.reviewModal form { display: grid; gap: 16px; }
.reviewModal label { display: grid; gap: 7px; font-weight: 700; }
.reviewModal input,
.reviewModal textarea { width: 100%; border: 1px solid var(--line); border-radius: 4px; padding: 14px; font: inherit; box-sizing: border-box; }
.reviewModal textarea { min-height: 145px; resize: vertical; }
.reviewRatingField { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 14px; }
.reviewRatingField > span { font-weight: 700; }
.reviewRatingField button { padding: 0; border: 0; color: #c9d0d6; background: none; font-size: 36px; cursor: pointer; }
.reviewRatingField button.active { color: #f5aa00; }
.reviewUpload { padding: 14px; border: 1px dashed var(--line); }
#reviewImagePreview { display: flex; flex-wrap: wrap; gap: 10px; }
#reviewImagePreview > span { display: grid; width: 90px; gap: 4px; }
#reviewImagePreview img { width: 90px; height: 78px; border-radius: 4px; object-fit: cover; }
#reviewImagePreview small { overflow: hidden; color: var(--muted); text-overflow: ellipsis; white-space: nowrap; }
.reviewFileError, .reviewFormMessage.error { color: #b42318; }
.reviewFormMessage { padding: 12px 14px; border-radius: 4px; background: #f2f7fb; }
.reviewFormMessage.success { color: #146c43; background: #eaf8f0; }
.reviewFormMessage.error { background: #fff0ef; }

.formHoneypot {
  position: fixed !important;
  left: -10000px !important;
  top: auto !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}
.reviewSubmitButton { justify-self: center; min-width: 170px; }
.reviewSubmitButton:disabled { cursor: wait; opacity: .65; }

@media (max-width: 720px) {
  .productReviewsSummary { grid-template-columns: 1fr; padding: 20px 16px; }
  .reviewFilters { justify-content: center; }
  .reviewFilters button { min-height: 40px; padding: 0 12px; }
  .productReviewList { padding: 0 16px; }
  .reviewModalOverlay { align-items: end; padding: 0; }
  .reviewModal { width: 100%; max-height: 92vh; padding: 24px 18px; border-radius: 8px 8px 0 0; }
  .reviewModal header { padding-right: 32px; padding-left: 32px; }
  .reviewRatingField { display: grid; justify-items: center; }
}
.checkoutPage [hidden] { display: none !important; }
.orderStatusGrid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; width: 100%; margin: 20px 0; }
.orderStatusGrid article { padding: 16px; border: 1px solid var(--line); border-radius: 14px; background: #fff; text-align: left; }
.orderStatusGrid span, .orderStatusGrid strong { display: block; }
.orderStatusGrid span { color: var(--muted); font-size: 13px; margin-bottom: 6px; }
.orderStatusEvents { width: 100%; margin: 18px 0; text-align: left; }
.orderStatusEvents article { display: flex; justify-content: space-between; gap: 16px; padding: 12px 0; border-bottom: 1px solid var(--line); }
.orderStatusEvents small { color: var(--muted); white-space: nowrap; }
@media (max-width: 680px) { .orderStatusGrid { grid-template-columns: 1fr; } .orderStatusEvents article { display: block; } .orderStatusEvents small { display: block; margin-top: 5px; } }

/* Compact phone layout: keep the iPhone view calm without changing tablet/desktop. */
@media (max-width: 760px) {
  body {
    font-size: 15px;
  }

  .container {
    width: calc(100% - 24px);
  }

  .promoInner {
    min-height: 40px;
    gap: 6px;
  }

  .promoMessage span {
    font-size: 12px;
  }

  .promoInner a,
  .promoInner button {
    min-height: 28px;
    padding: 0 8px;
    font-size: 10px;
  }

  .headerInner {
    min-height: 0;
    gap: 8px;
    padding: 8px 0 10px;
  }

  .brand {
    gap: 7px;
  }

  .brandLogo,
  .brandLogoImage {
    width: 48px;
    height: 42px;
  }

  .brand strong {
    font-size: 18px;
    line-height: 1.08;
  }

  .headerActions {
    gap: 5px;
  }

  .favoriteBtn,
  .cartBtn,
  .menuBtn {
    width: 38px;
    height: 38px;
    min-height: 38px;
  }

  .menuBtn {
    padding: 0 11px;
    width: auto;
    font-size: 13px;
  }

  .headerInner > .searchBox {
    height: 44px;
  }

  .searchBox input {
    padding-left: 16px;
    font-size: 14px;
  }

  .searchBox button {
    width: 58px;
  }

  .heroInner {
    gap: 22px;
    padding: 24px 0 28px;
  }

  .heroPill {
    min-height: 30px;
    padding: 0 11px;
    font-size: 11px;
  }

  .hero h1 {
    margin: 16px 0 12px;
    font-size: 34px;
    line-height: 1.02;
    letter-spacing: -.045em;
  }

  .hero p {
    font-size: 15px;
    line-height: 1.55;
  }

  .heroActions {
    gap: 8px;
    margin-top: 20px;
  }

  .primaryAction,
  .secondaryAction {
    min-height: 42px;
    padding: 0 16px;
    font-size: 13px;
  }

  .heroVisual {
    min-height: 270px;
    border-radius: 24px;
  }

  .heroVisual img {
    width: 68%;
    max-height: 220px;
  }

  .heroVisual article {
    right: 14px;
    bottom: 14px;
    width: calc(100% - 28px);
    border-radius: 16px;
    padding: 13px;
  }

  .heroVisual strong {
    font-size: 17px;
  }

  .heroVisual span {
    font-size: 20px;
  }

  .trustGrid {
    gap: 9px;
    margin-top: 14px;
  }

  .trustGrid article {
    gap: 10px;
    border-radius: 14px;
    padding: 13px;
  }

  .trustGrid p {
    font-size: 14px;
    line-height: 1.35;
  }

  .categoryStrip {
    margin-top: 34px;
  }

  .sectionHead {
    gap: 10px;
    margin-bottom: 16px;
  }

  .categoryStrip h2,
  .sectionHead h2,
  .companyHero h1,
  .articleHubHero h1,
  .contentHero h1,
  .favoriteHero h1 {
    font-size: 28px;
    line-height: 1.08;
  }

  .sectionHead a,
  .categoryButtons button {
    min-height: 36px;
    padding: 0 12px;
    font-size: 12px;
  }

  .productCollectionSection {
    padding-top: 24px;
    padding-bottom: 24px;
  }

  .productGrid,
  .productGrid.searchProductGrid,
  .favoriteProductGrid,
  .productCollectionSection.isCompact .productCollectionGrid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    overflow: visible;
  }

  .productCard,
  .articleCardImage,
  .knowledgeGrid article {
    border-radius: 13px;
  }

  .productImage {
    min-height: 150px;
    box-sizing: border-box;
    padding-top: 34px;
  }

  .productImage img {
    width: 82%;
    height: 105px;
  }

  .productImage span {
    top: 0;
    right: 0;
    bottom: auto;
    left: 0;
    width: 100%;
    max-width: none;
    height: 34px;
    display: flex;
    align-items: center;
    gap: 6px;
    overflow: hidden;
    box-sizing: border-box;
    border: 0;
    border-bottom: 1px solid #dce8f2;
    border-radius: 0;
    padding: 0 44px 0 11px;
    background: linear-gradient(90deg, #edf5fb, #f8fbfe);
    color: var(--primary-dark);
    font-size: 10px;
    line-height: 1.15;
    letter-spacing: .01em;
    text-overflow: ellipsis;
    text-transform: none;
    white-space: nowrap;
    box-shadow: none;
    backdrop-filter: none;
  }

  .favoriteToggle {
    top: 3px;
    right: 7px;
    width: 28px;
    height: 28px;
    font-size: 17px;
  }

  .productBody {
    padding: 10px;
  }

  .productBody h3 {
    min-height: 38px;
    display: -webkit-box;
    overflow: hidden;
    margin-bottom: 5px;
    font-size: 14px;
    line-height: 1.35;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }

  .rating {
    font-size: 12px;
  }

  .rating small {
    display: none;
  }

  .productBody ul {
    display: none;
  }

  .priceRow {
    min-height: 46px;
    display: grid;
    align-content: end;
    gap: 2px;
    margin: 5px 0 8px;
  }

  .priceRow strong {
    font-size: 17px;
    line-height: 1.2;
  }

  .priceRow del {
    font-size: 11px;
  }

  .priceRow em {
    display: none;
  }

  .productActions {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .productActions button,
  .productActions a {
    min-height: 38px;
    border-radius: 9px;
    padding: 0 6px;
    font-size: 12px;
  }

  .productActions .lightAction {
    display: none;
  }

  .productDetailPage {
    padding: 16px 0 26px;
  }

  .detailBreadcrumb {
    gap: 6px;
    margin-bottom: 12px;
    font-size: 12px;
  }

  .productDetailPanel {
    gap: 16px;
    border-radius: 15px;
    padding: 10px;
    box-shadow: 0 8px 24px rgba(8, 61, 119, .08);
  }

  .detailMainImage {
    min-height: 235px;
    border-radius: 13px;
  }

  .detailMainImage img {
    width: 88%;
    max-height: 215px;
  }

  .detailMainImage .favoriteToggle {
    top: 9px;
    right: 9px;
    width: 36px;
    height: 36px;
    font-size: 20px;
  }

  .detailThumbs {
    gap: 7px;
    margin-top: 8px;
  }

  .detailThumbs button {
    height: 58px;
    border-radius: 9px;
  }

  .shareRow {
    gap: 6px;
    margin-top: 12px;
    font-size: 12px;
  }

  .shareRow button {
    min-width: 34px;
    height: 34px;
    border-radius: 8px;
    font-size: 11px;
  }

  .detailInfo {
    padding: 0 2px;
  }

  .soldRow {
    gap: 8px;
    font-size: 12px;
  }

  .detailInfo h2 {
    margin: 12px 0 7px;
    font-size: 24px;
    line-height: 1.08;
  }

  .detailPrice {
    gap: 8px;
    margin-bottom: 10px;
  }

  .detailPrice strong {
    font-size: 25px;
  }

  .detailPrice del,
  .detailPrice em {
    font-size: 13px;
  }

  .detailInfo p {
    font-size: 14px;
    line-height: 1.55;
  }

  .optionGroup,
  .qtyRow {
    margin-top: 14px;
  }

  .optionGroup strong,
  .qtyRow strong {
    margin-bottom: 7px;
    font-size: 15px;
  }

  .optionGroup button,
  .qtyRow button,
  .qtyRow span {
    min-width: 0;
    height: 40px;
  }

  .optionGroup button {
    min-width: 56px;
    padding: 0 10px;
  }

  .qtyRow button,
  .qtyRow span {
    width: 48px;
  }

  .detailActions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin-top: 16px;
  }

  .detailActions button,
  .detailActions a {
    min-height: 44px;
    border-radius: 9px;
    padding: 0 8px;
    font-size: 12px;
  }

  .storeLink {
    min-height: 40px;
    font-size: 13px;
    text-align: center;
  }

  .bundleBox,
  .specBox {
    margin-top: 12px;
    border-radius: 12px;
    padding: 13px;
  }

  .bundleBox h3,
  .specBox h3 {
    margin-bottom: 9px;
    font-size: 18px;
  }

  .specGroup dl > div {
    grid-template-columns: minmax(90px, .65fr) minmax(0, 1fr);
    gap: 8px;
    padding: 8px 9px;
  }

  .specGroup dt,
  .specGroup dd {
    font-size: 12px;
  }

  .productDetailSupport {
    gap: 12px;
    margin-top: 14px;
  }

  .productDetailSupport article {
    border-radius: 15px;
    padding: 15px;
  }

  .productDetailSupport h2 {
    font-size: 21px;
  }

  .productDetailSupport p {
    font-size: 14px;
    line-height: 1.55;
  }

  .supportProductList button {
    grid-template-columns: 58px minmax(0, 1fr) auto;
    gap: 9px;
    border-radius: 10px;
    padding: 7px;
  }

  .supportProductList img {
    width: 58px;
    height: 52px;
  }

  .supportProductList strong {
    font-size: 13px;
  }

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

  .articleCardImage {
    border-radius: 12px;
  }

  .articleCardImage span,
  .articleCard p {
    display: none;
  }

  .articleCard div {
    padding-top: 10px;
  }

  .articleCard h3 {
    margin: 5px 0 8px;
    font-size: 14px;
    line-height: 1.4;
  }

  .articleCard .readMore {
    font-size: 13px;
  }

  .knowledgeGrid .homeArticleCard h3 {
    min-height: 0;
    padding: 46px 12px 12px;
    font-size: 15px;
    line-height: 1.35;
    -webkit-line-clamp: 3;
  }

  .technicalBand {
    margin-top: 34px;
    padding: 34px 0;
  }

  .companyHero,
  .articleHubHero {
    padding: 32px 0;
  }

  .companyHero p,
  .articleHubHero p,
  .favoriteHero p {
    font-size: 15px;
    line-height: 1.55;
  }

  .companyStory,
  .contactPageGrid {
    gap: 14px;
    padding-top: 28px;
  }

  .companyStory article,
  .contactInfoPanel,
  .contactMapPanel,
  .companyValues article {
    border-radius: 14px;
    padding: 16px;
  }

  .contactMapPanel iframe {
    min-height: 280px;
  }

  .footer {
    margin-top: 38px;
    padding: 32px 0 24px;
  }

  .footerGrid {
    gap: 24px;
  }

  .footerMap iframe {
    height: 150px;
  }

  .quickContactRail {
    right: 10px;
    bottom: 10px;
    gap: 6px;
  }

  .quickContactIcon {
    width: 42px;
    height: 42px;
  }
}
