:root {
  --nk-black: #151515;
  --nk-ink: #26231d;
  --nk-muted: #6d685f;
  --nk-line: #e8e0d2;
  --nk-bg: #fffaf0;
  --nk-soft: #f6efe0;
  --nk-gold: #d7b854;
  --nk-gold-dark: #a47a1c;
  --nk-green: #195b46;
  --nk-red: #b42318;
  --nk-white: #ffffff;
  --nk-radius: 8px;
  --nk-radius-lg: 22px;
  --nk-shadow: 0 18px 48px rgba(35, 28, 17, .12);
  --nk-shadow-soft: 0 16px 40px rgba(20, 30, 65, .08);
  --nk-shadow-hover: 0 26px 60px rgba(20, 30, 65, .14);
  --nk-ease: cubic-bezier(.22, 1, .36, 1);
  --nk-container: 1320px;
  --nk-font: "Be Vietnam Pro", Arial, Helvetica, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--nk-font);
  color: var(--nk-ink);
  background: var(--nk-bg);
  line-height: 1.6;
  font-weight: 500;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
.container { width: min(var(--nk-container), calc(100% - 32px)); margin: 0 auto; }
.site-header .container { width: min(1680px, calc(100% - 56px)); }
.section { padding: 72px 0; }
.content-narrow { max-width: 820px; }
.eyebrow {
  margin: 0 0 12px;
  color: var(--nk-gold-dark);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 13px;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #1d2327;
  backdrop-filter: none;
  border-bottom: 1px solid rgba(255,255,255,.1);
  transition: box-shadow .2s ease, border-color .2s ease;
}
.site-header.is-scrolled { border-color: rgba(255,255,255,.12); box-shadow: 0 8px 24px rgba(0, 0, 0, .2); }
.header-inner { min-height: 86px; display: flex; align-items: center; gap: 24px; }
.brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  overflow: hidden;
}
.brand img { width: 214px; height: 58px; object-fit: cover; object-position: center; }
.primary-nav { margin-left: 36px; }
.menu, .footer-menu { list-style: none; padding: 0; margin: 0; }
.menu { display: flex; align-items: center; gap: clamp(18px, 1.75vw, 30px); font-weight: 700; }
.menu li { position: relative; }
.menu a { display: inline-flex; align-items: center; min-height: 48px; padding: 0; color: rgba(255,255,255,.9); font-size: 16px; }
.menu a:hover { color: #f4d35e; }
.menu > li.menu-item-has-children > a::after { content: ""; width: 7px; height: 7px; margin-left: 8px; border-right: 2px solid currentColor; border-bottom: 2px solid currentColor; transform: rotate(45deg) translateY(-2px); }
.menu .sub-menu { position: absolute; left: 0; top: calc(100% + 10px); min-width: 245px; list-style: none; padding: 10px; margin: 0; background: #1d2327; border: 1px solid rgba(255,255,255,.14); border-radius: 8px; box-shadow: 0 20px 46px rgba(0,0,0,.28); opacity: 0; visibility: hidden; transform: translateY(8px); transition: .18s ease; }
.menu li:hover > .sub-menu, .menu li:focus-within > .sub-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.menu .sub-menu a { min-height: 38px; width: 100%; padding: 7px 10px; color: rgba(255,255,255,.9); font-size: 15px; border-radius: 6px; }
.menu .sub-menu a:hover { background: rgba(244,211,94,.12); color: #f4d35e; }
.primary-nav > .menu > li:last-child > a,
.header-quote {
  position: relative;
  overflow: hidden;
}
.primary-nav > .menu > li:last-child > a::after,
.header-quote::after {
  content: "";
  position: absolute;
  top: 0;
  left: -60%;
  width: 35%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,.6), transparent);
  transform: skewX(-18deg);
  animation: nkShine 3.4s ease-in-out infinite;
  pointer-events: none;
}
@keyframes nkShine {
  0% { left: -60%; }
  35% { left: 130%; }
  100% { left: 130%; }
}
.primary-nav > .menu > li:last-child > a {
  min-height: 38px;
  padding: 0 20px;
  border-radius: 999px;
  color: #fff;
  font-size: 13.5px;
  background: linear-gradient(155deg, #3fa2ff 0%, #0877ff 70%, #0a63d6 100%);
  box-shadow: 0 5px 12px rgba(8, 119, 255, .26);
  transition: transform .25s var(--nk-ease), box-shadow .25s var(--nk-ease);
}
.primary-nav > .menu > li:last-child > a:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(8, 119, 255, .34);
}
.header-quote {
  min-height: 38px;
  padding: 0 16px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(155deg, #f4d35e 0%, #d7b854 55%, #a47a1c 100%);
  color: #3a2c08;
  font: inherit;
  font-size: 12.5px;
  font-weight: 900;
  letter-spacing: .01em;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: 0 5px 12px rgba(164, 122, 28, .28);
  transition: transform .25s var(--nk-ease), box-shadow .25s var(--nk-ease);
}
.header-quote:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(164, 122, 28, .36);
}
.btn {
  border-radius: var(--nk-radius);
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
}
.btn.primary { background: var(--nk-gold); color: #17130a; box-shadow: 0 8px 20px rgba(164, 122, 28, .18); }
.btn.ghost { border: 1px solid var(--nk-line); background: var(--nk-white); }
.nav-toggle { display: none; }
.header-search-wrap {
  position: relative;
  flex: 1 1 200px;
  max-width: 400px;
}
.header-search-form { display: flex; align-items: center; gap: 8px; }
.header-search-input {
  flex: 1;
  min-width: 0;
  height: 38px;
  padding: 0 16px;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 999px;
  background: rgba(255,255,255,.07);
  color: #fff;
  font: inherit;
  font-size: 14px;
  transition: border-color .25s ease, background-color .25s ease;
}
.header-search-input::placeholder { color: rgba(255,255,255,.5); }
.header-search-input:focus { outline: none; border-color: #f4d35e; background: rgba(255,255,255,.12); }
.header-search-submit {
  flex: 0 0 auto;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 50%;
  background: #f4d35e;
  color: #151515;
  display: inline-grid;
  place-items: center;
  cursor: pointer;
  transition: transform .25s var(--nk-ease);
}
.header-search-submit:hover { transform: scale(1.06); }
.header-search-submit span { width: 12px; height: 12px; border: 2px solid currentColor; border-radius: 50%; position: relative; display: block; }
.header-search-submit span::after { content: ""; position: absolute; width: 6px; height: 2px; right: -5px; bottom: -3px; background: currentColor; transform: rotate(45deg); border-radius: 2px; }

.header-search-suggestions {
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  right: 0;
  background: #1d2327;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 16px;
  box-shadow: var(--nk-shadow);
  padding: 10px;
  z-index: 60;
  max-height: 380px;
  overflow-y: auto;
  display: grid;
  gap: 4px;
}
.header-search-item {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  padding: 8px;
  border-radius: 10px;
  color: #fff;
  transition: background-color .2s ease;
}
.header-search-item:hover { background: rgba(255,255,255,.08); }
.header-search-item img { width: 44px; height: 44px; border-radius: 8px; object-fit: cover; background: rgba(255,255,255,.1); }
.header-search-item-body { display: grid; gap: 2px; min-width: 0; }
.header-search-item-body strong { font-size: 14.5px; font-weight: 700; line-height: 1.3; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.header-search-item-meta { font-size: 12.5px; color: rgba(255,255,255,.6); }
.header-search-item-meta em { color: #f4d35e; font-style: normal; font-weight: 700; }
.header-search-see-all {
  display: block;
  margin-top: 6px;
  padding: 10px 8px;
  border-top: 1px solid rgba(255,255,255,.12);
  color: #f4d35e;
  font-weight: 700;
  font-size: 14px;
  text-align: center;
}
.header-search-empty { margin: 6px 0 0; padding: 10px 8px; color: rgba(255,255,255,.7); font-size: 14px; text-align: center; }

.split-grid, .contact-grid, .product-detail-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 42px;
  align-items: center;
}
.page-hero h1 {
  margin: 0;
  color: var(--nk-black);
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.04;
}
.page-hero p { font-size: 18px; color: var(--nk-muted); }
.banner-slider { position: relative; overflow: hidden; background: #0d234e; }
.banner-track { position: relative; height: calc(100svh - 90px); min-height: 620px; max-height: 860px; }
.banner-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1.1s var(--nk-ease), visibility 1.1s var(--nk-ease);
}
.banner-slide.is-active { opacity: 1; visibility: visible; }
.banner-slide a { display: block; height: 100%; }
.banner-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left center;
  transform: scale(1.06);
  transition: transform 6.5s var(--nk-ease);
}
.banner-slide.is-active img { transform: scale(1); }
.banner-dots {
  position: absolute;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 2;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(13, 24, 52, .28);
  backdrop-filter: blur(6px);
}
.banner-dots button {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255,255,255,.55);
  cursor: pointer;
  transition: width .4s var(--nk-ease), background-color .3s ease, opacity .3s ease;
}
.banner-dots button:hover { background: rgba(255,255,255,.85); }
.banner-dots button.is-active { width: 34px; background: #f4d35e; }
.home-about { background: var(--nk-bg); padding: 86px 0; }
.home-about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, .95fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
}
.home-about-media {
  margin: 0;
  border-radius: var(--nk-radius-lg);
  overflow: hidden;
  background: var(--nk-black);
  box-shadow: var(--nk-shadow-soft);
  transition: box-shadow .4s var(--nk-ease);
}
.home-about-media:hover { box-shadow: var(--nk-shadow-hover); }
.home-about-media img {
  width: 100%;
  aspect-ratio: 1.35 / 1;
  object-fit: cover;
  transition: transform .7s var(--nk-ease);
}
.home-about-media:hover img { transform: scale(1.045); }
.home-about-copy {
  max-width: 620px;
}
.home-about-copy .eyebrow {
  display: inline-flex;
  align-items: center;
  padding: 6px 16px;
  border-radius: 999px;
  background: rgba(215, 184, 84, .16);
}
.home-about-copy h2 {
  margin: 0;
  font-size: clamp(28px, 3.2vw, 42px);
  line-height: 1.15;
  color: var(--nk-black);
  letter-spacing: -.01em;
}
.home-about-copy p:not(.eyebrow) {
  margin: 22px 0 0;
  color: var(--nk-muted);
  font-size: 18px;
}
.about-actions {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}
.about-actions .btn {
  min-width: 230px;
  min-height: 50px;
  transition: transform .25s var(--nk-ease), box-shadow .25s var(--nk-ease), background-color .25s ease;
}
.about-actions .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(164, 122, 28, .22);
}
.category-showcase {
  background: var(--nk-white);
  padding: 78px 0 58px;
  overflow: hidden;
}
.category-slider-viewport {
  overflow: hidden;
  width: 100%;
  cursor: grab;
  touch-action: pan-y;
  user-select: none;
}
.category-slider-viewport.is-dragging { cursor: grabbing; }
.category-slider-track {
  display: flex;
  gap: 36px;
  align-items: stretch;
  transition: transform .55s var(--nk-ease);
  will-change: transform;
}
.category-slide-card {
  flex: 0 0 calc((100% - 144px) / 5);
  min-width: 0;
}
.category-slide-card a {
  display: grid;
  height: 100%;
  min-height: 258px;
  border-radius: 28px;
  background: linear-gradient(165deg, #f3fbff 0%, #eaf1fb 55%, #eef0f5 100%);
  color: #0f172a;
  place-items: center;
  padding: 18px 18px 28px;
  text-align: center;
  box-shadow: 0 10px 26px rgba(20, 44, 88, .05);
  transition: transform .4s var(--nk-ease), box-shadow .4s var(--nk-ease);
}
.category-slide-card a:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 42px rgba(20, 44, 88, .14);
}
.category-card-media {
  display: grid;
  place-items: center;
  width: 100%;
  min-height: 170px;
  overflow: hidden;
}
.category-card-media img {
  max-width: 82%;
  max-height: 175px;
  object-fit: contain;
  pointer-events: none;
  transition: transform .5s var(--nk-ease);
}
.category-slide-card a:hover .category-card-media img {
  transform: scale(1.06);
}
.category-slide-card strong {
  display: block;
  margin-top: 8px;
  font-size: clamp(14px, 1.15vw, 19px);
  line-height: 1.25;
  text-transform: uppercase;
}
.category-slider-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-top: 44px;
}
.category-slider-dots button {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: #d7dce3;
  cursor: pointer;
  transition: width .4s var(--nk-ease), background-color .3s ease;
}
.category-slider-dots button:hover { background: #aab6c6; }
.category-slider-dots button.is-active {
  width: 34px;
  background: #1458bc;
}
.polo-showcase {
  background: var(--nk-white);
  padding: 76px 0 86px;
}
.polo-top-grid {
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: clamp(30px, 5vw, 72px);
  align-items: stretch;
}
.polo-feature {
  min-height: 100%;
  display: grid;
  grid-template-rows: auto 1fr;
}
.polo-heading-row {
  display: grid;
  gap: 14px;
  align-items: start;
  margin-bottom: 22px;
}
.polo-heading-row h2 {
  margin: 0;
  color: #224a99;
  font-size: clamp(28px, 2.55vw, 40px);
  line-height: 1.12;
  text-transform: uppercase;
  letter-spacing: -.01em;
}
.polo-more {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  justify-self: center;
  color: var(--nk-ink);
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
  white-space: nowrap;
  transition: color .25s ease;
}
.polo-more:hover { color: #224a99; }
.polo-more span {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #224a99;
  color: #fff;
  font-size: 21px;
  line-height: 1;
  transition: transform .3s var(--nk-ease), background-color .25s ease;
}
.polo-more:hover span {
  transform: translateX(4px);
  background: #1a3a7a;
}
.polo-feature-products {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(22px, 3.4vw, 44px);
  align-items: end;
  align-self: end;
}
.polo-banner {
  display: block;
  position: relative;
  align-self: stretch;
  min-height: 520px;
  border-radius: 30px;
  overflow: hidden;
  background: #0b1d62;
  box-shadow: var(--nk-shadow);
}
.polo-banner img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.polo-bottom-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(22px, 2.5vw, 34px);
  margin-top: 50px;
}
.polo-product-title {
  margin: 15px 0 6px;
  font-size: clamp(17px, 1.35vw, 22px);
  line-height: 1.25;
  font-weight: 500;
}
.polo-product-title a { color: inherit; }
.polo-product-image {
  display: block;
  overflow: hidden;
  border-radius: 24px;
  background: #f4f7f9;
}
.polo-product-image img {
  width: 100%;
  aspect-ratio: 1 / 1.16;
  object-fit: cover;
  transition: transform .24s ease;
}
.polo-product-card:hover .polo-product-image img {
  transform: scale(1.035);
}
.polo-price {
  color: #224a99;
  font-size: 22px;
  font-weight: 900;
}
.promo-strip-section {
  padding: 26px 0 54px;
  background: var(--nk-white);
}
.promo-strip {
  position: relative;
  overflow: hidden;
  width: 100%;
  margin: 0 auto;
  padding: clamp(30px, 4vw, 46px) clamp(24px, 5.5vw, 70px) 32px;
  border-radius: var(--nk-radius-lg);
  background: linear-gradient(150deg, #1c2c72 0%, #182460 55%, #12193f 100%);
  color: #fff;
  text-align: center;
  box-shadow: 0 24px 54px rgba(16, 30, 92, .2);
  transition: box-shadow .4s var(--nk-ease);
}
.promo-strip::before {
  content: "";
  position: absolute;
  top: -140px;
  right: -90px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(244, 211, 94, .18), transparent 70%);
  pointer-events: none;
}
.promo-strip::after {
  content: "";
  position: absolute;
  bottom: -120px;
  left: -80px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(95, 116, 221, .28), transparent 70%);
  pointer-events: none;
}
.promo-strip:hover { box-shadow: 0 30px 64px rgba(16, 30, 92, .26); }
.promo-strip > * { position: relative; z-index: 1; }
.promo-strip h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(24px, 2.7vw, 38px);
  line-height: 1.16;
  text-transform: uppercase;
  letter-spacing: -.01em;
}
.promo-badges {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(12px, 2.2vw, 26px);
  margin: clamp(20px, 3vw, 30px) auto 24px;
}
.promo-badges span {
  position: relative;
  min-height: 50px;
  padding: 10px 18px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: linear-gradient(160deg, #f4d35e 0%, #d7b854 55%, #a47a1c 100%);
  color: #3a2c08;
  font-size: clamp(14px, 1.25vw, 18px);
  line-height: 1.15;
  font-weight: 800;
  text-transform: uppercase;
  box-shadow: inset 0 -3px 0 rgba(0,0,0,.1), 0 0 0 0 rgba(244,211,94,.5), 0 10px 20px rgba(0,0,0,.16);
  animation: nkBadgeGlow 2.8s var(--nk-ease) infinite;
  animation-delay: calc(var(--badge-index, 0) * .25s);
  transition: transform .3s var(--nk-ease), box-shadow .3s var(--nk-ease);
}
@keyframes nkBadgeGlow {
  0%, 100% { box-shadow: inset 0 -3px 0 rgba(0,0,0,.1), 0 0 0 0 rgba(244,211,94,.45), 0 10px 20px rgba(0,0,0,.16); }
  50% { box-shadow: inset 0 -3px 0 rgba(0,0,0,.1), 0 0 14px 4px rgba(244,211,94,.55), 0 10px 20px rgba(0,0,0,.16); }
}
.promo-badges span:hover {
  transform: translateY(-3px);
  box-shadow: inset 0 -3px 0 rgba(0,0,0,.1), 0 0 18px 6px rgba(244,211,94,.6), 0 16px 30px rgba(0,0,0,.2);
}
.promo-social-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(16px, 3vw, 32px);
  flex-wrap: wrap;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.14);
}
.promo-social-row strong {
  color: #fff;
  font-size: clamp(18px, 1.7vw, 26px);
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: .01em;
}
.promo-socials {
  display: inline-flex;
  align-items: center;
  gap: 18px;
}
.promo-social {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,.1);
  color: #fff;
  border: 1px solid rgba(255,255,255,.18);
  font-size: 22px;
  font-weight: 900;
  transition: transform .3s var(--nk-ease), background-color .25s ease;
}
.promo-social:hover {
  transform: translateY(-3px) scale(1.06);
  background: rgba(255,255,255,.2);
}
.promo-social-zalo {
  width: auto;
  min-width: 74px;
  padding: 0 14px;
  border-radius: 999px;
  font-size: 24px;
}
.company-showcase {
  background: var(--nk-white);
  padding: 10px 0 76px;
}
.company-showcase-grid {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: clamp(34px, 5.4vw, 84px);
  align-items: stretch;
}
.company-banner {
  display: block;
  position: relative;
  align-self: stretch;
  min-height: 560px;
  overflow: hidden;
  border-radius: 30px;
  background: #0b1d62;
  box-shadow: var(--nk-shadow);
}
.company-banner img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.company-feature {
  min-height: 100%;
  display: grid;
  grid-template-rows: auto 1fr;
}
.company-heading-row {
  display: grid;
  gap: 14px;
  align-items: start;
  margin-bottom: 22px;
}
.company-heading-row h2 {
  margin: 0;
  color: #224a99;
  font-size: clamp(28px, 2.55vw, 40px);
  line-height: 1.12;
  text-transform: uppercase;
  letter-spacing: -.01em;
}
.company-feature-products {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(22px, 3.4vw, 44px);
  align-items: end;
  align-self: end;
}
.company-bottom-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(22px, 2.5vw, 34px);
  margin-top: 50px;
}
.journey-pride {
  background: var(--nk-white);
  padding: 32px 0 78px;
}
.journey-panel {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: clamp(22px, 3.4vw, 48px);
  align-items: stretch;
  padding: clamp(26px, 3.6vw, 48px) clamp(24px, 5vw, 64px);
  border-radius: var(--nk-radius-lg);
  background: linear-gradient(125deg, #2a52ab 0%, #1552bf 45%, #0a62d7 100%);
  color: #fff;
  box-shadow: 0 28px 68px rgba(17, 66, 154, .24);
}
.journey-left {
  display: grid;
  align-content: center;
  text-align: center;
}
.journey-left h2 {
  margin: 0 0 clamp(18px, 2.6vw, 30px);
  color: #fff;
  font-size: clamp(24px, 2.6vw, 38px);
  line-height: 1.14;
  text-transform: uppercase;
  letter-spacing: -.01em;
}
.journey-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(10px, 1.6vw, 18px);
}
.journey-stat {
  min-height: 0;
  min-width: 0;
  overflow: hidden;
  padding: 18px 12px;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 16px;
  display: grid;
  gap: 6px;
  place-items: center;
  text-align: center;
  background: linear-gradient(165deg, rgba(255,255,255,.16), rgba(255,255,255,.04));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.18), 0 10px 22px rgba(6, 16, 50, .16);
  transition: transform .35s var(--nk-ease), background .35s ease, border-color .35s ease, box-shadow .35s ease;
}
.journey-stat:hover {
  transform: translateY(-4px);
  background: linear-gradient(165deg, rgba(255,255,255,.22), rgba(255,255,255,.07));
  border-color: rgba(255,255,255,.42);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.22), 0 16px 30px rgba(6, 16, 50, .24);
}
.journey-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(160deg, #ffe08a, #d7b854);
  box-shadow: 0 6px 14px rgba(0,0,0,.18);
  flex: 0 0 auto;
}
.journey-icon::before {
  content: "";
  width: 18px;
  height: 18px;
  background: #17264a;
  display: block;
}
.journey-icon-shirt::before {
  clip-path: polygon(20% 10%, 38% 0, 50% 14%, 62% 0, 80% 10%, 92% 34%, 72% 44%, 72% 100%, 28% 100%, 28% 44%, 8% 34%);
}
.journey-icon-users::before {
  clip-path: polygon(50% 0, 68% 16%, 68% 38%, 50% 54%, 32% 38%, 32% 16%);
  box-shadow: -9px 6px 0 -3px #17264a, 9px 6px 0 -3px #17264a, 0 19px 0 4px #17264a;
}
.journey-icon-factory::before {
  clip-path: polygon(0 100%, 0 42%, 22% 55%, 22% 42%, 44% 55%, 44% 42%, 68% 56%, 68% 22%, 88% 22%, 88% 100%);
}
.journey-stat strong {
  max-width: 100%;
  color: #fff;
  font-size: clamp(18px, 1.7vw, 26px);
  line-height: 1.05;
  overflow-wrap: anywhere;
  text-shadow: 0 6px 18px rgba(10, 30, 90, .35);
  animation: nkNumberPulse 4.2s var(--nk-ease) infinite;
  animation-delay: var(--pulse-delay, 0ms);
}
.journey-stat > span:last-child {
  color: rgba(255,255,255,.92);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.3;
}
.journey-right {
  padding-left: clamp(26px, 4vw, 54px);
  border-left: 1px solid rgba(255,255,255,.16);
  display: grid;
  align-content: center;
  justify-items: center;
  text-align: center;
}
.journey-right img {
  width: min(200px, 100%);
  max-height: 72px;
  object-fit: contain;
  border-radius: 8px;
  background: rgba(0,0,0,.16);
}
.journey-right p {
  margin: 16px 0 20px;
  color: #fff;
  font-size: clamp(15px, 1.3vw, 18px);
  line-height: 1.5;
  font-weight: 600;
}
.journey-consult-btn {
  min-height: 46px;
  padding: 0 28px;
  border: 0;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 16px;
  background: #fff;
  color: #244b9b;
  font: inherit;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 12px 26px rgba(10, 30, 90, .18);
  transition: transform .3s var(--nk-ease), box-shadow .3s var(--nk-ease);
}
.journey-consult-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 34px rgba(10, 30, 90, .26);
}
.journey-consult-btn span {
  font-size: 22px;
}
.consult-modal[hidden] {
  display: none;
}
html.has-consult-modal {
  overflow: hidden;
}
.consult-modal {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  padding: 18px;
}
.consult-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.52);
}
.consult-dialog {
  position: relative;
  width: min(100%, 520px);
  padding: 28px;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 24px 80px rgba(0,0,0,.26);
}
.consult-dialog h2 {
  margin: 0 0 8px;
  color: #224a99;
  font-size: 30px;
}
.consult-dialog p {
  margin: 0 0 18px;
  color: var(--nk-muted);
}
.consult-close {
  position: absolute;
  top: 10px;
  right: 12px;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 50%;
  background: #eef3fb;
  color: #224a99;
  font-size: 26px;
  cursor: pointer;
}
.consult-form {
  display: grid;
  gap: 14px;
}
.consult-form label {
  display: grid;
  gap: 6px;
  font-weight: 800;
}
.consult-form input,
.consult-form textarea,
.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  border: 1px solid var(--nk-line);
  border-radius: 10px;
  padding: 12px 14px;
  font: inherit;
}
.quote-modal[hidden] { display: none; }
html.has-quote-modal { overflow: hidden; }
.quote-modal {
  position: fixed;
  inset: 0;
  z-index: 130;
  display: grid;
  place-items: center;
  padding: 18px;
}
.quote-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.58);
}
.quote-dialog {
  position: relative;
  width: min(100%, 620px);
  max-height: min(92vh, 760px);
  overflow: auto;
  padding: 30px;
  border: 1px solid rgba(244,211,94,.22);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 26px 86px rgba(0,0,0,.32);
}
.quote-eyebrow {
  margin: 0 0 8px;
  color: #a47a1c;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}
.quote-dialog h2 {
  margin: 0 0 8px;
  color: #174fa7;
  font-size: 30px;
  line-height: 1.18;
}
.quote-dialog > p {
  margin: 0 0 18px;
  color: #596170;
}
.quote-close {
  position: absolute;
  top: 12px;
  right: 14px;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 50%;
  background: #eef3fb;
  color: #174fa7;
  font-size: 26px;
  cursor: pointer;
}
.quote-form {
  display: grid;
  gap: 14px;
}
.quote-form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.quote-form label {
  display: grid;
  gap: 6px;
  color: #1f2937;
  font-weight: 800;
}
.quote-form button {
  min-height: 52px;
  border: 0;
  border-radius: 999px;
  background: #174fa7;
  color: #fff;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}
.quote-honeypot {
  position: absolute;
  left: -9999px;
  opacity: 0;
}
.production-process {
  background: linear-gradient(180deg, #fff 0%, #f7f9fc 100%);
  padding: 34px 0 86px;
}
.production-process-grid {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: clamp(34px, 5vw, 76px);
  align-items: stretch;
}
.production-banner {
  margin: 0;
  min-height: 680px;
  border-radius: var(--nk-radius-lg);
  overflow: hidden;
  box-shadow: var(--nk-shadow-soft);
  background: #eef3f7;
  transition: box-shadow .4s var(--nk-ease);
}
.production-banner:hover { box-shadow: var(--nk-shadow-hover); }
.production-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s var(--nk-ease);
}
.production-banner:hover img { transform: scale(1.04); }
.production-content {
  min-height: 680px;
  padding: clamp(18px, 2vw, 26px) 0;
  display: grid;
  grid-template-rows: auto 1fr;
  background: linear-gradient(90deg, #fff 0%, #f8fbff 100%);
}
.production-content h2 {
  margin: 0 0 clamp(34px, 5vw, 72px);
  color: #224a99;
  font-size: clamp(30px, 3vw, 46px);
  line-height: 1.14;
  text-transform: uppercase;
  letter-spacing: -.01em;
}
.production-steps {
  position: relative;
  display: grid;
  align-content: start;
  gap: 18px;
  padding-left: 14px;
}
.production-steps::before {
  content: "";
  position: absolute;
  left: 38px;
  top: 28px;
  bottom: 28px;
  width: 2px;
  border-radius: 999px;
  background: linear-gradient(#1f55bb, #cfe8f5);
}
.production-step {
  position: relative;
  display: grid;
  grid-template-columns: 70px 1fr;
  column-gap: 20px;
}
.production-step button {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 70px 1fr;
  align-items: center;
  gap: 20px;
  width: 100%;
  border: 0;
  background: transparent;
  padding: 0;
  text-align: left;
  font: inherit;
  cursor: pointer;
}
.production-step button span {
  position: relative;
  z-index: 1;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  border: 3px solid #d8eff8;
  background: #fff;
  color: #224a99;
  font-size: 22px;
  font-weight: 900;
  transition: background-color .35s var(--nk-ease), border-color .35s var(--nk-ease), color .35s var(--nk-ease), box-shadow .35s var(--nk-ease);
}
.production-step button strong {
  color: #224a99;
  font-size: clamp(20px, 1.75vw, 28px);
  line-height: 1.15;
  text-transform: uppercase;
}
.production-step.is-active button span {
  background: #1f4fa6;
  border-color: #fff;
  color: #fff;
  box-shadow: 0 10px 24px rgba(31, 79, 166, .28);
}
.production-step-body {
  grid-column: 2;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height .45s ease, opacity .3s ease, padding .3s ease;
}
.production-step.is-active .production-step-body {
  max-height: 160px;
  opacity: 1;
  padding-top: 12px;
}
.production-step-body p {
  margin: 0;
  color: #31343b;
  font-size: clamp(17px, 1.4vw, 21px);
  line-height: 1.45;
}
.customer-partners {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(255,255,255,.96), rgba(255,255,255,.82)),
    #fff;
  padding: 42px 0 80px;
}
.partners-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(30px, 4vw, 56px);
  align-items: stretch;
}
.partners-copy,
.partners-banner {
  min-height: 560px;
}
.partners-copy {
  display: grid;
  align-content: start;
  padding: clamp(18px, 3vw, 34px) 0;
  background: #fff;
}
.partners-copy h2 {
  width: min(100%, 620px);
  margin: 0 0 clamp(34px, 4.5vw, 64px);
  color: #224a99;
  font-size: clamp(24px, 2.05vw, 32px);
  line-height: 1.22;
  text-transform: uppercase;
  letter-spacing: -.01em;
}
.partners-logo-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(120px, 1fr));
  gap: clamp(34px, 4vw, 58px) clamp(32px, 4vw, 64px);
  align-items: center;
}
.partner-logo {
  margin: 0;
  min-height: 112px;
  display: grid;
  place-items: center;
}
.partner-logo img {
  width: min(100%, 260px);
  max-height: 106px;
  object-fit: contain;
  filter: grayscale(.55) opacity(.82);
  transition: filter .4s var(--nk-ease), transform .4s var(--nk-ease);
}
.partner-logo:hover img {
  filter: grayscale(0) opacity(1);
  transform: translateY(-2px);
}
.partners-banner {
  margin: 0;
  position: relative;
  align-self: stretch;
  overflow: hidden;
  border-radius: var(--nk-radius-lg);
  background: #fff;
  box-shadow: var(--nk-shadow-soft);
}
.partners-banner img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 72% center;
  transition: transform .7s var(--nk-ease);
}
.partners-banner:hover img { transform: scale(1.04); }
@keyframes nkNumberPulse {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-1.5px) scale(1.015); }
}
.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 20px; margin-bottom: 28px; }
.section-heading h2 { margin: 0; font-size: clamp(26px, 3vw, 38px); line-height: 1.14; letter-spacing: -.01em; }
.section-heading a, .text-link { color: var(--nk-gold-dark); font-weight: 800; transition: color .25s ease; }
.section-heading a:hover, .text-link:hover { color: var(--nk-green); }
.product-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; }
.product-card {
  background: var(--nk-white);
  border: 1px solid var(--nk-line);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--nk-shadow-soft);
  transition: transform .35s var(--nk-ease), box-shadow .35s var(--nk-ease);
}
.product-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--nk-shadow-hover);
}
.product-image { background: var(--nk-soft); aspect-ratio: 1 / 1; display: block; overflow: hidden; }
.product-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--nk-ease); }
.product-card:hover .product-image img { transform: scale(1.06); }
.product-body { padding: 16px; }
.product-terms { min-height: 20px; color: var(--nk-green); font-size: 13px; font-weight: 700; }
.product-card-title { margin: 8px 0; font-size: 18px; line-height: 1.25; font-weight: 700; }
.product-card-title a { color: inherit; transition: color .25s ease; }
.product-card:hover .product-card-title a { color: var(--nk-gold-dark); }
.product-body p { margin: 0 0 12px; color: var(--nk-muted); }
.product-grid-empty {
  grid-column: 1 / -1;
  margin: 0;
  padding: 22px;
  border: 1px dashed #b8c8e8;
  border-radius: 10px;
  background: #f6f9ff;
  color: #4d5664;
  font-size: 16px;
}
.home-faq {
  background: linear-gradient(180deg, #f8fbfe 0%, #eef4fb 100%);
  padding: clamp(58px, 6vw, 92px) 0;
}
.home-faq h2 {
  margin: 0 0 clamp(28px, 4vw, 42px);
  color: #262b33;
  font-size: clamp(30px, 2.8vw, 42px);
  line-height: 1.14;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: -.01em;
}
.home-faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 28px;
  align-items: start;
}
.home-faq-column {
  display: grid;
  gap: 18px;
}
.home-faq-item {
  overflow: hidden;
  border-radius: 16px;
  background: linear-gradient(160deg, #f0f6fd 0%, #e6eff9 100%);
  border: 1px solid rgba(33, 79, 157, .06);
  box-shadow: 0 6px 18px rgba(33, 79, 157, .05);
  transition: box-shadow .35s var(--nk-ease), border-color .35s ease, transform .35s var(--nk-ease);
}
.home-faq-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(33, 79, 157, .1);
  border-color: rgba(33, 79, 157, .16);
}
.home-faq-item[open] {
  background: linear-gradient(160deg, #ffffff 0%, #eef5fd 100%);
  box-shadow: 0 16px 34px rgba(33, 79, 157, .12);
}
.home-faq-item summary {
  min-height: 78px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 30px;
  align-items: center;
  gap: 18px;
  padding: 18px 22px;
  color: #262b33;
  cursor: pointer;
  font-size: 19px;
  font-weight: 700;
  line-height: 1.4;
  list-style: none;
  transition: color .25s ease;
}
.home-faq-item summary:hover { color: #174fa7; }
.home-faq-item summary::-webkit-details-marker { display: none; }
.home-faq-item summary i {
  position: relative;
  width: 18px;
  height: 18px;
  justify-self: end;
}
.home-faq-item summary i::before,
.home-faq-item summary i::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 14px;
  height: 2px;
  border-radius: 999px;
  background: #2a4f8f;
  transition: transform .35s var(--nk-ease), background-color .25s ease;
}
.home-faq-item summary i::before { transform: translate(-50%, -50%) rotate(45deg); }
.home-faq-item summary i::after { transform: translate(-50%, -50%) rotate(-45deg); }
.home-faq-item:not([open]) summary i::before { transform: translate(-78%, -50%) rotate(45deg); }
.home-faq-item:not([open]) summary i::after { transform: translate(-22%, -50%) rotate(-45deg); }
.home-faq-answer {
  padding: 0 22px 22px;
  color: #565f6d;
  font-size: 16px;
  line-height: 1.7;
}
.home-faq-answer p { margin: 0; }
.post-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.post-card, .contact-card, .info-card { padding: 24px; background: var(--nk-white); border: 1px solid var(--nk-line); border-radius: 16px; color: var(--nk-ink); }
.info-card { display: grid; gap: 6px; }
.info-card strong { color: var(--nk-black); font-size: 17px; }
.info-card span { color: var(--nk-muted); font-size: 15px; line-height: 1.5; }
.post-card {
  box-shadow: var(--nk-shadow-soft);
  transition: transform .35s var(--nk-ease), box-shadow .35s var(--nk-ease);
}
.post-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--nk-shadow-hover);
}
.post-card time { color: var(--nk-gold-dark); font-weight: 800; }
.post-card-title {
  margin: 12px 0 10px;
  color: #111827;
  font-size: 20px;
  font-weight: 800;
  line-height: 1.25;
}
.post-card-title a { color: inherit; transition: color .25s ease; }
.post-card:hover .post-card-title a { color: #174fa7; }
.guide-breadcrumb { background: #165bb7; color: #fff; }
.guide-breadcrumb .container { display: flex; align-items: center; gap: 10px; min-height: 42px; }
.guide-breadcrumb a,
.guide-breadcrumb strong { color: #fff; font-size: 16px; font-weight: 600; }
.guide-breadcrumb span { color: rgba(255,255,255,.55); }
.guide-featured-section { padding: 42px 0 52px; background: #fff; }
.guide-featured-section h1 {
  margin: 0 0 8px;
  color: #214f9d;
  font-size: 26px;
  line-height: 1.15;
}
.guide-featured-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(420px, .92fr);
  gap: 30px;
  align-items: start;
}
.guide-featured-list { display: grid; gap: 26px; padding-top: 18px; }
.guide-card { min-width: 0; }
.guide-card-image {
  display: block;
  overflow: hidden;
  border-radius: 8px;
  background: #eef4ff;
}
.guide-card-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .25s ease;
}
.guide-card:hover .guide-card-image img { transform: scale(1.035); }
.guide-card-featured .guide-card-image { aspect-ratio: 1.72 / 1; }
.guide-card-side {
  display: grid;
  grid-template-columns: 236px minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}
.guide-card-side .guide-card-image { aspect-ratio: 1.82 / 1; }
.guide-card-body {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 20px;
  align-items: start;
  padding-top: 18px;
}
.guide-card-side .guide-card-body {
  grid-template-columns: 88px minmax(0, 1fr);
  padding-top: 4px;
}
.guide-card time {
  display: block;
  padding-right: 16px;
  border-right: 1px solid #d5dbe4;
  color: #26262a;
  text-align: left;
}
.guide-card time strong {
  display: block;
  font-size: 52px;
  font-weight: 500;
  line-height: .95;
}
.guide-card-side time strong { font-size: 44px; }
.guide-card time span {
  display: block;
  margin-top: 5px;
  font-size: 15px;
  font-weight: 800;
}
.guide-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 12px;
  color: #626a75;
  font-size: 16px;
}
.guide-meta a { color: #214f9d; }
.guide-meta span {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #686f79;
}
.guide-card h2 {
  margin: 0;
  color: #0d1118;
  font-size: 24px;
  line-height: 1.18;
}
.guide-card-side h2 { font-size: 22px; }
.guide-card h2 a { color: inherit; }
.guide-excerpt {
  margin: 26px 0 0;
  padding-top: 18px;
  border-top: 1px solid #d9dee6;
  color: #161b22;
  font-size: 18px;
  line-height: 1.45;
}
.guide-tabs-section { padding: 38px 0 76px; background: #fff; }
.guide-tabs-head {
  display: grid;
  grid-template-columns: minmax(320px, 1fr) auto;
  gap: 24px;
  align-items: center;
  margin-bottom: 36px;
}
.guide-tabs-head h2 {
  margin: 0;
  color: #214f9d;
  font-size: clamp(34px, 3.8vw, 48px);
  line-height: 1.08;
  text-transform: uppercase;
}
.guide-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 26px;
}
.guide-tabs button {
  min-width: 160px;
  min-height: 48px;
  padding: 0 24px;
  border: 1px solid #111827;
  border-radius: 999px;
  background: #fff;
  color: #111827;
  font: inherit;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
}
.guide-tabs button.is-active {
  border-color: #214f9d;
  color: #214f9d;
}
.guide-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 44px 36px;
}
.guide-card-grid .guide-card-image { aspect-ratio: 1.66 / 1; }
.guide-card-grid .guide-card-body { grid-template-columns: 92px minmax(0, 1fr); }
.guide-card-grid h2 { font-size: 23px; }
.guide-load-wrap { display: flex; justify-content: center; margin-top: 42px; }
.guide-load-more {
  min-width: 168px;
  min-height: 48px;
  border: 1px solid #214f9d;
  border-radius: 999px;
  background: #214f9d;
  color: #fff;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}
.guide-load-more:disabled { opacity: .65; cursor: wait; }
.guide-empty {
  grid-column: 1 / -1;
  padding: 24px;
  border-radius: 8px;
  background: #eef4ff;
  color: #4d5664;
}
.single-breadcrumb .container { min-height: 44px; }
.single-post-hero {
  padding: 44px 0 34px;
  background: #fff;
}
.single-post-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(420px, .72fr);
  gap: 42px;
  align-items: center;
}
.single-post-cat {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 16px;
  border: 1px solid #cfe0ff;
  border-radius: 999px;
  background: #eef5ff;
  color: #174fa7;
  font-size: 14px;
  font-weight: 700;
}
.single-post-hero h1 {
  margin: 18px 0 16px;
  color: #214f9d;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.08;
  letter-spacing: 0;
}
.single-post-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  color: #596170;
  font-size: 15px;
}
.single-post-meta span {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #7a8494;
}
.single-post-meta strong { font-weight: 600; }
.single-post-hero p {
  max-width: 780px;
  margin: 0;
  color: #303844;
  font-size: 18px;
  line-height: 1.65;
}
.single-post-hero-image {
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: #eef4ff;
  box-shadow: 0 18px 46px rgba(23, 79, 167, .12);
}
.single-post-hero-image img {
  width: 100%;
  aspect-ratio: 1.65 / 1;
  object-fit: cover;
}
.single-post-section {
  padding: 34px 0 64px;
  background: #fff;
}
.single-post-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 42px;
  align-items: start;
}
.single-post-main {
  min-width: 0;
}
.post-toc {
  margin: 0 0 30px;
  border: 1px solid #d8e6ff;
  border-radius: 8px;
  background: #f2f7ff;
  overflow: hidden;
}
.post-toc summary {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 14px;
  align-items: center;
  padding: 18px 22px;
  color: #123f88;
  cursor: pointer;
  list-style: none;
}
.post-toc summary::-webkit-details-marker { display: none; }
.post-toc summary span {
  font-size: 20px;
  font-weight: 800;
}
.post-toc summary em {
  color: #64748b;
  font-style: normal;
  font-size: 14px;
  font-weight: 500;
}
.post-toc summary::after {
  content: "+";
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #174fa7;
  color: #fff;
  font-size: 22px;
  line-height: 1;
}
.post-toc[open] summary::after { content: "-"; }
.post-toc ol {
  margin: 0;
  padding: 0 22px 20px 46px;
  color: #214f9d;
}
.post-toc li { margin: 8px 0; }
.post-toc .toc-level-3 {
  margin-left: 18px;
  font-size: 15px;
}
.post-toc a {
  color: #174fa7;
  font-weight: 650;
}
.single-post-content {
  color: #1b2430;
  font-size: 18px;
  line-height: 1.78;
}
.single-post-content > *:first-child { margin-top: 0; }
.single-post-content p { margin: 0 0 20px; }
.single-post-content h2,
.single-post-content h3 {
  scroll-margin-top: 118px;
  color: #214f9d;
  line-height: 1.22;
}
.single-post-content h2 {
  margin: 42px 0 16px;
  font-size: 32px;
}
.single-post-content h3 {
  margin: 30px 0 12px;
  font-size: 24px;
}
.single-post-content ul,
.single-post-content ol {
  margin: 0 0 24px;
  padding-left: 24px;
}
.single-post-content li { margin-bottom: 9px; }
.single-post-content img {
  border-radius: 8px;
  margin: 28px auto;
}
.single-post-content blockquote {
  margin: 30px 0;
  padding: 20px 24px;
  border-left: 4px solid #174fa7;
  border-radius: 0 8px 8px 0;
  background: #f2f7ff;
}
.single-post-sidebar {
  position: sticky;
  top: 112px;
  display: grid;
  gap: 18px;
}
.single-sidebar-card {
  padding: 22px;
  border: 1px solid #dfe8f7;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 34px rgba(15, 55, 118, .08);
}
.single-sidebar-card h2 {
  margin: 0 0 14px;
  color: #214f9d;
  font-size: 20px;
  line-height: 1.25;
}
.single-sidebar-card p {
  margin: 0 0 16px;
  color: #4b5563;
  font-size: 15px;
  line-height: 1.55;
}
.sidebar-call,
.sidebar-zalo {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  margin-top: 10px;
  border-radius: 999px;
  color: #fff;
  font-weight: 800;
}
.sidebar-call { background: #ff681c; }
.sidebar-zalo { background: #0d71f7; }
.single-sidebar-list {
  display: grid;
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.single-sidebar-list a {
  display: block;
  padding: 10px 0;
  border-bottom: 1px solid #edf2f7;
  color: #1f2937;
  font-weight: 650;
}
.single-sidebar-list li:last-child a { border-bottom: 0; }
.single-sidebar-posts {
  display: grid;
  gap: 14px;
}
.single-sidebar-posts a {
  display: grid;
  grid-template-columns: 82px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  color: #111827;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.35;
}
.single-sidebar-posts img {
  width: 82px;
  height: 64px;
  border-radius: 8px;
  object-fit: cover;
}
.single-related-posts {
  padding: 46px 0 82px;
  background: #fff;
}
.single-related-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 28px;
  padding-bottom: 14px;
  border-bottom: 1px solid #d9dee6;
}
.single-related-head h2 {
  margin: 0;
  color: #214f9d;
  font-size: 34px;
  line-height: 1.12;
}
.single-related-head a {
  color: #174fa7;
  font-size: 18px;
  font-weight: 700;
}
.page-hero { padding: 86px 0; background: linear-gradient(135deg, #211b13, #5d4514); color: var(--nk-white); }
.page-hero.compact { padding: 58px 0; }
.page-hero h1, .page-hero .eyebrow { color: var(--nk-white); }

.search-refine-form { display: flex; gap: 10px; max-width: 520px; margin-top: 24px; }
.search-refine-form input {
  flex: 1;
  min-width: 0;
  height: 50px;
  padding: 0 20px;
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  color: #fff;
  font: inherit;
  font-size: 15px;
}
.search-refine-form input::placeholder { color: rgba(255,255,255,.6); }
.search-refine-form input:focus { outline: none; border-color: var(--nk-gold); background: rgba(255,255,255,.12); }
.search-refine-form button {
  flex: 0 0 auto;
  height: 50px;
  padding: 0 28px;
  border: 0;
  border-radius: 999px;
  background: var(--nk-gold);
  color: #17130a;
  font-weight: 800;
  cursor: pointer;
  transition: transform .25s var(--nk-ease), box-shadow .25s var(--nk-ease);
}
.search-refine-form button:hover { transform: translateY(-2px); box-shadow: 0 10px 20px rgba(164,122,28,.32); }

.search-empty-section { text-align: center; }
.search-empty-title { margin: 0 0 8px; font-size: 21px; font-weight: 800; color: var(--nk-black); }
.search-empty-actions { display: flex; gap: 14px; justify-content: center; margin-top: 22px; flex-wrap: wrap; }
.search-products-section { padding-bottom: 30px; }
.archive-layout { display: grid; grid-template-columns: 260px 1fr; gap: 28px; align-items: start; }
.filter-panel { position: sticky; top: 105px; padding: 18px; background: var(--nk-white); border: 1px solid var(--nk-line); border-radius: var(--nk-radius); }
.filter-panel h2 { margin-top: 0; }
.filter-group { border-top: 1px solid var(--nk-line); padding-top: 12px; margin-top: 12px; }
.filter-group h3 { margin: 0 0 8px; font-size: 15px; }
.filter-group a { display: block; color: var(--nk-muted); padding: 4px 0; }
.archive-seo { margin-top: 42px; padding-top: 28px; border-top: 1px solid var(--nk-line); }
.archive-breadcrumb { background: #165bb7; color: #fff; }
.archive-breadcrumb .container {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 40px;
  overflow-x: auto;
  white-space: nowrap;
}
.archive-breadcrumb a,
.archive-breadcrumb strong { color: #fff; font-size: 16px; font-weight: 600; }
.archive-breadcrumb span { color: rgba(255,255,255,.55); }
.category-archive { padding: 36px 0 72px; background: #fff; }
.category-archive-head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 24px;
}
.category-archive-head h1 {
  margin: 0;
  color: #214f9d;
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 800;
  line-height: 1.06;
  text-transform: uppercase;
}
.category-sort select {
  min-width: 168px;
  min-height: 42px;
  padding: 0 42px 0 16px;
  border: 1px solid #edf1f7;
  border-radius: 999px;
  background: #fff;
  color: #2a2f38;
  font: inherit;
  font-size: 17px;
  box-shadow: 0 4px 12px rgba(15, 23, 42, .03);
}
.category-intro-box {
  width: min(100%, 1182px);
  margin: 0 auto 8px;
  padding: 20px 20px 26px;
  border-radius: 8px;
  background: #ecf9ff;
  color: #111827;
}
.category-intro-box p {
  margin: 0 0 22px;
  color: #111827;
  font-size: 20px;
  line-height: 1.55;
}
.category-intro-box p:first-child { font-style: italic; }
.category-intro-box strong { color: #111827; font-weight: 800; }
.category-intro-box a,
.category-intro-box em strong { color: #001eff; }
.category-intro-box ul {
  display: grid;
  gap: 13px;
  margin: 26px 0 0;
  padding-left: 24px;
  font-size: 18px;
  line-height: 1.45;
}
.category-archive-layout {
  display: grid;
  grid-template-columns: 390px minmax(0, 1fr);
  gap: 36px;
  align-items: start;
  margin-top: 8px;
}
.category-sidebar {
  position: sticky;
  top: 104px;
  padding: 26px 34px 30px;
  border-radius: 8px;
  background: #eef4ff;
}
.category-sidebar h2 {
  margin: 0 0 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(15,23,42,.22);
  color: #2d3036;
  font-size: 20px;
  font-weight: 800;
}
.category-sidebar ul {
  display: grid;
  gap: 13px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.category-sidebar .category-tree-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 28px;
  align-items: center;
  gap: 8px;
}
.category-sidebar li:not(.has-children) > .category-tree-row {
  grid-template-columns: 1fr;
}
.category-sidebar a {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: #4d5664;
  font-size: 18px;
  line-height: 1.35;
}
.category-sidebar .category-dot {
  width: 18px;
  height: 18px;
  border: 1px solid #b6c0cf;
  border-radius: 50%;
  background: #f8fbff;
}
.category-sidebar li.is-current a { color: #214f9d; font-weight: 700; }
.category-sidebar li.is-current > .category-tree-row .category-dot {
  border-color: #214f9d;
  box-shadow: inset 0 0 0 4px #eef4ff;
  background: #214f9d;
}
.category-sidebar li.has-children > ul {
  position: relative;
  display: none;
  gap: 13px;
  margin: 14px 0 4px 8px;
  padding-left: 24px;
}
.category-sidebar li.has-children.is-open > ul {
  display: grid;
}
.category-sidebar li.has-children > ul::before {
  content: "";
  position: absolute;
  left: 0;
  top: -4px;
  bottom: 4px;
  width: 1px;
  background: #214f9d;
}
.category-toggle {
  position: relative;
  width: 28px;
  height: 28px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}
.category-toggle::before,
.category-toggle::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 15px;
  height: 1.5px;
  border-radius: 999px;
  background: #4d5664;
  transform: translate(-50%, -50%);
}
.category-toggle::after {
  transform: translate(-50%, -50%) rotate(90deg);
}
.category-sidebar li.is-open > .category-tree-row .category-toggle::after {
  opacity: 0;
}
.category-related-posts {
  margin-top: 38px;
  padding: 24px 0 0;
  border-top: 1px solid rgba(15,23,42,.12);
}
.category-related-posts h2 {
  border-bottom: 0;
  margin-bottom: 18px;
  padding-bottom: 0;
}
.category-related-post {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 14px;
  align-items: center;
  margin-bottom: 14px;
  color: #111827;
}
.category-related-post img,
.related-post-thumb {
  width: 72px;
  height: 58px;
  border-radius: 6px;
  object-fit: cover;
  background: #dbe8fb;
}
.category-related-post strong {
  color: #111827;
  font-size: 15px;
  line-height: 1.25;
}
.category-section-stack { display: grid; gap: 42px; min-width: 0; }
.category-product-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 24px;
  padding-bottom: 14px;
  border-bottom: 1px solid #c7cdd6;
}
.category-product-heading h2 {
  margin: 0;
  color: #214f9d;
  font-size: clamp(24px, 2.35vw, 34px);
  font-weight: 800;
  line-height: 1.1;
}
.category-product-heading a {
  color: #001eff;
  font-size: 17px;
  font-weight: 500;
  white-space: nowrap;
}
.category-product-section .product-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
}
.category-product-section .product-card {
  border: 0;
  border-radius: 0;
  box-shadow: none;
  background: transparent;
}
.category-product-section .product-image {
  border-radius: 14px;
  background: #eef4ff;
}
.category-product-section .product-terms { display: none; }
.category-product-section .product-body {
  padding: 14px 0 0;
}
.category-product-section .product-card-title {
  margin: 0 0 8px;
  font-size: 19px;
  font-weight: 500;
  line-height: 1.25;
}
.category-product-section .product-card-title a { color: #111827; }
.category-product-section .product-body p {
  color: #214f9d;
  font-size: 20px;
  font-weight: 800;
}
.category-product-section .text-link { display: none; }
.category-seo-content {
  width: min(100%, 1180px);
  margin: 78px auto 0;
  padding-top: 56px;
  border-top: 1px solid #edf1f7;
}
.category-seo-content h2 {
  margin: 0 0 20px;
  color: #214f9d;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.16;
}
.category-seo-content p {
  color: #111827;
  font-size: 18px;
  line-height: 1.68;
}
.product-breadcrumb { background: #1458b4; color: #fff; }
.product-breadcrumb .container { display: flex; align-items: center; gap: 12px; min-height: 44px; overflow-x: auto; white-space: nowrap; }
.product-breadcrumb a { color: #fff; font-weight: 600; }
.product-breadcrumb span { color: rgba(255,255,255,.58); }
.product-breadcrumb strong { font-weight: 600; color: rgba(255,255,255,.92); }
.product-detail { padding: 42px 0 54px; background: #fff; }
.product-detail-grid { grid-template-columns: minmax(560px, .98fr) minmax(0, 1.02fr); gap: clamp(46px, 6.4vw, 96px); align-items: start; }
.detail-gallery { display: grid; grid-template-columns: 118px minmax(0, 1fr); gap: 18px; width: min(100%, 690px); max-width: none; justify-self: start; }
.detail-thumbs { display: grid; grid-template-rows: repeat(3, 1fr); gap: 14px; align-content: stretch; }
.detail-thumbs button {
  display: block;
  width: 118px;
  height: 118px;
  padding: 0;
  overflow: hidden;
  border: 2px solid transparent;
  border-radius: 10px;
  background: #eef4ff;
  cursor: pointer;
}
.detail-thumbs button.is-active { border-color: #1d56ad; }
.detail-thumbs img { width: 100%; height: 100%; object-fit: cover; }
.detail-media { position: relative; margin: 0; background: #eef4ff; border-radius: 14px; overflow: hidden; cursor: zoom-in; }
.detail-media img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  transform-origin: var(--zoom-x, 50%) var(--zoom-y, 50%);
  transition: transform .18s ease;
}
.detail-media.is-zooming img { transform: scale(1.85); }
.detail-copy { max-width: 620px; padding-top: 2px; }
.detail-copy h1 { margin: 0; color: #214f9d; font-size: clamp(30px, 2.7vw, 40px); font-weight: 800; line-height: 1.16; }
.detail-price { margin: 18px 0 22px; padding-bottom: 22px; border-bottom: 1px solid #cfd5de; color: #111827; font-size: 28px; font-weight: 800; }
.product-spec-list { display: grid; gap: 12px; margin: 0 0 22px; }
.product-spec-list div { display: grid; grid-template-columns: 170px 1fr; gap: 20px; align-items: start; }
.product-spec-list dt { display: inline-flex; align-items: center; gap: 12px; color: #111827; font-size: 18px; font-weight: 500; }
.product-spec-list dd { margin: 0; color: #111827; font-size: 18px; line-height: 1.45; }
.spec-icon,
.benefit-icon {
  position: relative;
  flex: 0 0 auto;
  display: inline-grid;
  place-items: center;
  width: 28px;
  height: 28px;
  color: #174fa7;
}
.spec-icon::before,
.benefit-icon::before { font-weight: 800; line-height: 1; }
.spec-grid::before { content: "✣"; }
.spec-shirt::before { content: "♙"; }
.spec-target::before { content: "⌖"; }
.spec-palette::before { content: "▧"; }
.size-guide-link { display: inline-block; margin: 4px 0 34px; color: #174fa7; font-size: 18px; font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }
.product-cta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  max-width: 580px;
  margin-bottom: 54px;
  padding: 18px 24px;
  border-radius: 999px;
  background: #eaf1ff;
}
.product-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 50px;
  padding: 0 24px;
  border-radius: 999px;
  background: #1458c8;
  color: #fff;
  font-size: 17px;
  font-weight: 800;
  text-align: center;
}
.product-cta-btn:hover { color: #fff; background: #0f459c; }
.cta-icon {
  position: relative;
  flex: 0 0 auto;
  display: inline-grid;
  place-items: center;
  width: 24px;
  height: 24px;
}
.zalo-icon {
  border-radius: 7px;
  background: #fff;
  color: #1268ff;
  font-size: 8px;
  font-weight: 900;
  line-height: 1;
}
.call-icon::before {
  content: "";
  width: 17px;
  height: 17px;
  background: #fff;
  clip-path: polygon(24% 0, 46% 0, 55% 25%, 42% 36%, 51% 52%, 65% 62%, 76% 48%, 100% 58%, 100% 80%, 85% 100%, 57% 92%, 30% 74%, 10% 49%, 0 21%);
}
.product-benefits { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 28px 40px; }
.product-benefit { display: grid; grid-template-columns: 56px 1fr; gap: 18px; align-items: center; }
.product-benefit strong { color: #0f172a; font-size: 17px; font-weight: 700; line-height: 1.28; }
.benefit-icon {
  width: 56px;
  height: 52px;
  border: 1px solid #acd0ff;
  border-radius: 6px;
  background: #f5f9ff;
}
.benefit-truck::before {
  content: "FREE";
  position: absolute;
  left: 7px;
  top: 14px;
  width: 28px;
  height: 14px;
  border-radius: 2px;
  background: #1458c8;
  color: #fff;
  font-size: 7px;
  line-height: 14px;
  text-align: center;
}
.benefit-truck::after {
  content: "";
  position: absolute;
  left: 8px;
  top: 29px;
  width: 35px;
  height: 10px;
  background:
    radial-gradient(circle at 8px 9px, #1458c8 0 4px, transparent 4px),
    radial-gradient(circle at 28px 9px, #1458c8 0 4px, transparent 4px),
    linear-gradient(#1458c8 0 0) 0 0 / 30px 8px no-repeat,
    linear-gradient(#1458c8 0 0) 29px 3px / 6px 5px no-repeat;
}
.benefit-price::before {
  content: "$";
  position: absolute;
  top: 8px;
  left: 26px;
  display: grid;
  place-items: center;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  background: #1458c8;
  color: #fff;
  font-size: 11px;
}
.benefit-price::after {
  content: "";
  position: absolute;
  left: 11px;
  top: 24px;
  width: 31px;
  height: 18px;
  background: #1458c8;
  clip-path: polygon(0 36%, 37% 36%, 47% 0, 76% 0, 66% 36%, 100% 36%, 100% 72%, 61% 72%, 49% 100%, 21% 100%, 31% 72%, 0 72%);
}
.benefit-rocket::before {
  content: "";
  width: 34px;
  height: 34px;
  background: #1458c8;
  clip-path: polygon(56% 3%, 87% 0, 86% 31%, 58% 60%, 55% 83%, 42% 67%, 20% 88%, 32% 56%, 16% 43%, 40% 39%);
}
.benefit-rocket::after {
  content: "";
  position: absolute;
  left: 12px;
  bottom: 8px;
  width: 16px;
  height: 16px;
  background: #1458c8;
  clip-path: polygon(0 100%, 38% 22%, 100% 0, 72% 63%);
}
.benefit-shield::before {
  content: "";
  width: 32px;
  height: 36px;
  background: #1458c8;
  clip-path: polygon(50% 0, 90% 13%, 86% 66%, 50% 100%, 14% 66%, 10% 13%);
}
.benefit-shield::after {
  content: "";
  position: absolute;
  width: 15px;
  height: 9px;
  border-left: 3px solid #fff;
  border-bottom: 3px solid #fff;
  transform: rotate(-45deg);
  top: 19px;
  left: 20px;
}
.has-product-lightbox { overflow: hidden; }
.product-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  padding: 28px;
  background: rgba(5, 12, 25, .86);
}
.product-lightbox img {
  display: block;
  max-width: min(96vw, 1180px);
  max-height: 90vh;
  border-radius: 14px;
  object-fit: contain;
  box-shadow: 0 24px 80px rgba(0,0,0,.35);
}
.product-lightbox button {
  position: fixed;
  top: 18px;
  right: 22px;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255,255,255,.5);
  border-radius: 999px;
  background: rgba(255,255,255,.14);
  color: #fff;
  font-size: 34px;
  line-height: 1;
  cursor: pointer;
}
.product-info-section { padding-top: 48px; background: #f6f9ff; }
.product-info-section .prose {
  max-width: 980px;
  padding: 34px;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  background: #fff;
}
.product-info-section h2 { margin-top: 0; color: #214f9d; font-size: clamp(26px, 2.5vw, 36px); }
.related-products { background: #fff; }
.prose h2 { line-height: 1.2; }
.prose p { color: var(--nk-muted); }
.contact-form { display: grid; gap: 14px; padding: 24px; background: var(--nk-white); border: 1px solid var(--nk-line); border-radius: 16px; box-shadow: var(--nk-shadow-soft); }
.contact-form label { display: grid; gap: 6px; font-weight: 800; }
.contact-form input, .contact-form textarea { width: 100%; border: 1px solid var(--nk-line); border-radius: var(--nk-radius); padding: 12px; font: inherit; transition: border-color .25s ease, box-shadow .25s ease; }
.contact-form input:focus, .contact-form textarea:focus { outline: none; border-color: var(--nk-gold-dark); box-shadow: 0 0 0 3px rgba(164,122,28,.12); }

/* About + Contact page sections */
.about-story-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 1fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
}
.about-story-media {
  margin: 0;
  border-radius: var(--nk-radius-lg);
  overflow: hidden;
  background: var(--nk-black);
  box-shadow: var(--nk-shadow-soft);
  transition: box-shadow .4s var(--nk-ease);
}
.about-story-media:hover { box-shadow: var(--nk-shadow-hover); }
.about-story-media img {
  width: 100%;
  aspect-ratio: 1.35 / 1;
  object-fit: cover;
  transition: transform .7s var(--nk-ease);
}
.about-story-media:hover img { transform: scale(1.04); }
.about-story-copy h2 {
  margin: 14px 0 18px;
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.18;
  color: var(--nk-black);
  letter-spacing: -.01em;
}
.about-story-copy p { margin: 0 0 16px; color: var(--nk-muted); font-size: 17px; line-height: 1.7; }
.about-story-copy p:last-child { margin-bottom: 0; }

.section-heading-center { justify-content: center; text-align: center; }

.about-values-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 20px; }
.value-card,
.why-card {
  position: relative;
  padding: 30px 24px 26px;
  background: var(--nk-white);
  border: 1px solid var(--nk-line);
  border-radius: 18px;
  box-shadow: var(--nk-shadow-soft);
  transition: transform .35s var(--nk-ease), box-shadow .35s var(--nk-ease);
}
.value-card { text-align: center; }
.value-card:hover,
.why-card:hover { transform: translateY(-6px); box-shadow: var(--nk-shadow-hover); }
.value-card-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  margin-bottom: 16px;
  border-radius: 50%;
  background: linear-gradient(160deg, #ffe08a, var(--nk-gold));
  color: #3a2c08;
  font-weight: 900;
  font-size: 16px;
  box-shadow: 0 8px 18px rgba(164, 122, 28, .28);
  transition: transform .35s var(--nk-ease);
}
.value-card:hover .value-card-badge { transform: scale(1.08) rotate(-6deg); }
.value-card-title,
.why-card-title { margin: 0 0 10px; color: var(--nk-black); font-size: 18px; font-weight: 800; line-height: 1.3; }
.value-card p:not(.value-card-title),
.why-card p:not(.why-card-title) { margin: 0; color: var(--nk-muted); font-size: 15.5px; line-height: 1.6; }
.why-timeline {
  position: relative;
  max-width: 940px;
  margin: 0 auto;
}
.why-timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 4px;
  bottom: 4px;
  width: 2px;
  background: linear-gradient(var(--nk-gold), var(--nk-line));
  transform: translateX(-50%);
}
.why-timeline-item {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 56px 1fr;
  align-items: start;
  margin-bottom: 30px;
}
.why-timeline-item:last-child { margin-bottom: 0; }
.why-timeline-node {
  grid-column: 2;
  grid-row: 1;
  justify-self: center;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin-top: 8px;
  border: 4px solid var(--nk-bg);
  border-radius: 50%;
  background: linear-gradient(160deg, #ffe08a, var(--nk-gold));
  color: #3a2c08;
  font-weight: 900;
  font-size: 14px;
  box-shadow: var(--nk-shadow-soft);
}
.why-timeline-item.side-left .why-card { grid-column: 1; grid-row: 1; justify-self: end; max-width: 380px; text-align: right; }
.why-timeline-item.side-right .why-card { grid-column: 3; grid-row: 1; justify-self: start; max-width: 380px; text-align: left; }

.about-stats-band {
  padding: 56px 0;
  background: linear-gradient(180deg, var(--nk-bg) 0%, var(--nk-soft) 100%);
  text-align: center;
}
.about-stats-band h2 {
  margin: 0 0 32px;
  font-size: clamp(26px, 3vw, 38px);
  color: var(--nk-black);
  letter-spacing: -.01em;
}
.about-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
}
.about-stat-card {
  padding: 30px 16px 26px;
  background: linear-gradient(165deg, #ffffff 0%, #fbf6ea 100%);
  border: 1px solid var(--nk-line);
  border-radius: 18px;
  box-shadow: var(--nk-shadow-soft);
  transition: transform .35s var(--nk-ease), box-shadow .35s var(--nk-ease);
}
.about-stat-card:hover { transform: translateY(-6px); box-shadow: var(--nk-shadow-hover); }
.about-stat-card .about-stat-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 14px;
  border-radius: 50%;
  background: linear-gradient(160deg, #ffe08a, var(--nk-gold));
  box-shadow: 0 8px 18px rgba(164, 122, 28, .24);
}
.about-stat-icon::before { content: ""; display: block; width: 20px; height: 20px; background: #17264a; }
.about-stat-icon-experience::before {
  clip-path: polygon(50% 0%, 63% 34%, 98% 34%, 69% 55%, 80% 89%, 50% 68%, 20% 89%, 31% 55%, 2% 34%, 37% 34%);
}
.about-stat-icon-shirt::before {
  clip-path: polygon(20% 10%, 38% 0, 50% 14%, 62% 0, 80% 10%, 92% 34%, 72% 44%, 72% 100%, 28% 100%, 28% 44%, 8% 34%);
}
.about-stat-icon-users::before {
  width: 18px;
  height: 18px;
  clip-path: polygon(50% 0, 68% 16%, 68% 38%, 50% 54%, 32% 38%, 32% 16%);
  box-shadow: -8px 6px 0 -3px #17264a, 8px 6px 0 -3px #17264a, 0 17px 0 4px #17264a;
}
.about-stat-icon-factory::before {
  clip-path: polygon(0 100%, 0 42%, 22% 55%, 22% 42%, 44% 55%, 44% 42%, 68% 56%, 68% 22%, 88% 22%, 88% 100%);
}
.about-stat-card strong { display: block; font-size: clamp(26px, 2.6vw, 38px); color: var(--nk-gold-dark); line-height: 1; margin-bottom: 8px; }
.about-stat-card span { display: block; color: var(--nk-muted); font-size: 14.5px; font-weight: 700; }

.page-hero.has-photo {
  position: relative;
  background:
    linear-gradient(135deg, rgba(33, 27, 19, .87), rgba(93, 69, 20, .82)),
    var(--hero-photo) center/cover no-repeat;
}

body.page-template-page-contact-php { background: var(--nk-white); }

.contact-info-section { padding-top: 44px; padding-bottom: 12px; }
.contact-info-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; }
.contact-info-card {
  padding: 26px 20px;
  background: var(--nk-white);
  border: 1px solid var(--nk-line);
  border-radius: 16px;
  box-shadow: var(--nk-shadow-soft);
  transition: transform .35s var(--nk-ease), box-shadow .35s var(--nk-ease);
}
.contact-info-card:hover { transform: translateY(-4px); box-shadow: var(--nk-shadow-hover); }
.contact-info-icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 16px;
  border-radius: 50%;
  box-shadow: 0 8px 16px rgba(0,0,0,.14);
}
.contact-info-icon::before { content: ""; display: block; width: 20px; height: 20px; background: #fff; }
.contact-info-icon-phone { background: linear-gradient(160deg, #ff8f4d, #ff6818); }
.contact-info-icon-phone::before {
  clip-path: polygon(24% 0, 46% 0, 55% 25%, 42% 36%, 51% 52%, 65% 62%, 76% 48%, 100% 58%, 100% 80%, 85% 100%, 57% 92%, 30% 74%, 10% 49%, 0 21%);
}
.contact-info-icon-zalo { background: linear-gradient(160deg, #3fa2ff, #0877ff); }
.contact-info-icon-zalo::before {
  width: auto;
  height: auto;
  background: none;
  content: "Z";
  color: #fff;
  font-size: 20px;
  font-weight: 900;
}
.contact-info-icon-email { background: linear-gradient(160deg, #3a6bd6, #174fa7); }
.contact-info-icon-email::before {
  width: 20px;
  height: 14px;
  background: transparent;
  border: 2px solid #fff;
  border-radius: 2px;
  clip-path: polygon(0 0, 50% 45%, 100% 0, 100% 100%, 0 100%);
}
.contact-info-icon-address { background: linear-gradient(160deg, #2f8464, var(--nk-green)); }
.contact-info-icon-address::before {
  width: 16px;
  height: 16px;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  background: #fff;
}
.contact-info-label { display: block; margin-bottom: 8px; color: var(--nk-gold-dark); font-weight: 800; text-transform: uppercase; font-size: 12.5px; letter-spacing: .02em; }
.contact-info-card a, .contact-info-card strong { display: block; color: var(--nk-black); font-size: 17px; font-weight: 700; line-height: 1.4; word-break: break-word; }
.contact-info-card a { transition: color .25s ease; }
.contact-info-card a:hover { color: var(--nk-green); }

.contact-hours-band {
  position: relative;
  overflow: hidden;
  padding: 52px 0;
  background: linear-gradient(150deg, #1c2c72 0%, #182460 55%, #12193f 100%);
  color: #fff;
}
.contact-hours-band::before {
  content: "";
  position: absolute;
  top: -120px;
  left: -80px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(244, 211, 94, .14), transparent 70%);
  pointer-events: none;
}
.contact-hours-inner { position: relative; z-index: 1; text-align: center; }
.contact-hours-inner h2 { margin: 0 0 28px; font-size: clamp(24px, 2.8vw, 34px); letter-spacing: -.01em; }
.contact-hours-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 18px;
  max-width: 980px;
  margin: 0 auto;
}
.contact-hour-item {
  padding: 22px 18px;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 18px;
  background: linear-gradient(165deg, rgba(255,255,255,.14), rgba(255,255,255,.04));
  box-shadow: 0 10px 22px rgba(6, 16, 50, .16);
  transition: transform .35s var(--nk-ease), background .35s ease, box-shadow .35s var(--nk-ease);
}
.contact-hour-item:hover {
  transform: translateY(-4px);
  background: linear-gradient(165deg, rgba(255,255,255,.2), rgba(255,255,255,.06));
  box-shadow: 0 16px 30px rgba(6, 16, 50, .24);
}
.contact-hour-item span { display: block; margin-bottom: 8px; color: rgba(255,255,255,.8); font-size: 13.5px; text-transform: uppercase; letter-spacing: .02em; font-weight: 700; }
.contact-hour-item strong { display: block; color: #fff; font-size: 18px; font-weight: 800; }

.contact-map-card { border-radius: var(--nk-radius-lg); overflow: hidden; box-shadow: var(--nk-shadow-soft); background: var(--nk-white); border: 1px solid var(--nk-line); }
.contact-map-title { margin: 0; padding: 16px 20px; font-weight: 800; color: var(--nk-black); font-size: 16px; border-bottom: 1px solid var(--nk-line); }
.contact-map-card iframe { display: block; width: 100%; height: 280px; border: 0; }
.contact-map-card-single iframe { height: 420px; }

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

.site-footer {
  padding: 0 0 90px;
  background: #1858ad;
  color: #fff;
  font-weight: 400;
  letter-spacing: 0;
}
.footer-cta-band { background: #244d98; }
.footer-cta {
  min-height: 118px;
  display: grid;
  grid-template-columns: 250px minmax(220px, 1fr) minmax(520px, 1.7fr);
  align-items: center;
  gap: 28px;
}
.footer-cta-logo { display: block; padding-right: 28px; border-right: 1px solid rgba(255,255,255,.28); }
.footer-cta-logo img { width: min(100%, 230px); max-height: 76px; object-fit: contain; }
.footer-cta > p { margin: 0; max-width: 380px; font-size: 20px; font-weight: 600; line-height: 1.34; }
.footer-consult-form { display: grid; grid-template-columns: auto minmax(240px, 1fr) 184px; align-items: center; gap: 20px; }
.footer-consult-form strong { font-size: 25px; font-weight: 650; white-space: nowrap; }
.footer-consult-form input {
  width: 100%;
  height: 50px;
  border: 1px solid rgba(255,255,255,.86);
  border-radius: 999px;
  background: transparent;
  color: #fff;
  padding: 0 22px;
  font: inherit;
  font-weight: 400;
}
.footer-consult-form input::placeholder { color: rgba(255,255,255,.92); }
.footer-consult-form button {
  height: 54px;
  border: 3px solid rgba(255,255,255,.55);
  border-radius: 999px;
  background: #fff;
  color: #244d98;
  font: inherit;
  font-size: 20px;
  font-weight: 500;
  cursor: pointer;
  box-shadow: inset 0 0 0 1px rgba(36,77,152,.18);
}
.footer-main {
  display: grid;
  grid-template-columns: 1.55fr .62fr .8fr 1.18fr 1.65fr;
  gap: clamp(20px, 2.2vw, 36px);
  padding-top: 50px;
  padding-bottom: 40px;
}
.footer-title {
  margin: 0 0 16px;
  color: #fff;
  font-size: 17px;
  font-weight: 550;
  line-height: 1.3;
  white-space: nowrap;
}
.footer-main a { color: #fff; }
.footer-menu li { margin-bottom: 13px; }
.footer-menu a {
  color: rgba(255,255,255,.9);
  font-size: 16px;
  font-weight: 350;
  line-height: 1.5;
}
.footer-contact-list { display: grid; gap: 14px; list-style: none; padding: 0; margin: 0 0 30px; }
.footer-contact-list li {
  display: grid;
  grid-template-columns: 23px minmax(0, 1fr);
  gap: 10px;
  color: rgba(255,255,255,.9);
  font-size: 16px;
  font-weight: 350;
  line-height: 1.52;
}
.footer-contact-inline .footer-contact-content {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  min-width: 0;
  white-space: nowrap;
}
.footer-contact-inline a {
  white-space: nowrap;
}
.footer-contact-list strong { font-weight: 450; }
.footer-contact-list span { font-size: 18px; color: rgba(255,255,255,.95); }
.footer-social-wrap { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; margin-bottom: 20px; }
.footer-social-wrap > strong { font-size: 16px; font-weight: 500; }
.footer-social { display: flex; gap: 16px; flex-wrap: wrap; }
.footer-social a {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255,255,255,.85);
  border-radius: 999px;
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 500;
}
.footer-map { margin-bottom: 20px; }
.footer-map-title { margin: 0 0 10px; color: rgba(255,255,255,.94); font-size: 16px; font-weight: 400; }
.footer-map iframe { display: block; width: 100%; height: 145px; border: 0; border-radius: 8px; background: rgba(255,255,255,.18); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.18);
  color: rgba(255,255,255,.82);
  font-size: 14px;
}
.floating-contact {
  position: fixed;
  left: 50%;
  bottom: 20px;
  z-index: 80;
  display: grid;
  grid-template-columns: repeat(3, minmax(190px, auto));
  gap: 12px;
  align-items: center;
  transform: translateX(-50%);
  filter: drop-shadow(0 12px 28px rgba(15, 20, 40, .22));
}
.floating-contact a,
.floating-contact button {
  min-height: 58px;
  border: 0;
  border-radius: 999px;
  display: grid;
  grid-template-columns: 50px minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  color: #fff;
  padding: 0 24px 0 6px;
  font: inherit;
  text-align: left;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 10px 22px rgba(0, 0, 0, .18), inset 0 1px 0 rgba(255,255,255,.16);
  transition: transform .3s var(--nk-ease), box-shadow .3s var(--nk-ease), filter .3s ease;
}
.floating-contact a:hover,
.floating-contact button:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 34px rgba(0, 0, 0, .26), inset 0 1px 0 rgba(255,255,255,.22);
}
.floating-contact span {
  width: 50px;
  height: 50px;
  border: 3px solid rgba(255,255,255,.9);
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,.16);
  font-size: 16px;
  font-weight: 900;
  transition: transform .3s var(--nk-ease);
}
.floating-contact a:hover span,
.floating-contact button:hover span {
  transform: scale(1.08) rotate(-6deg);
}
.floating-contact strong { display: block; min-width: 0; font-size: 19px; font-weight: 800; line-height: 1.12; letter-spacing: -.01em; }
.float-consult,
.float-phone { background: linear-gradient(155deg, #f4d35e 0%, #d7b854 55%, #a47a1c 100%); }
.floating-contact .float-consult,
.floating-contact .float-phone { color: #3a2c08; }
.float-zalo { background: linear-gradient(155deg, #3fa2ff 0%, #0877ff 70%, #0a63d6 100%); }
.float-phone {
  animation: nkPhoneGlow 2.6s var(--nk-ease) infinite;
}
@keyframes nkPhoneGlow {
  0%, 100% { box-shadow: 0 10px 22px rgba(164, 122, 28, .3), inset 0 1px 0 rgba(255,255,255,.24); }
  50% { box-shadow: 0 10px 26px rgba(164, 122, 28, .48), 0 0 0 7px rgba(164, 122, 28, .12), inset 0 1px 0 rgba(255,255,255,.24); }
}

@media (max-width: 900px) {
  .header-inner { min-height: 72px; }
  .site-header .container { width: min(100% - 24px, var(--nk-container)); }
  .brand img { width: 172px; height: 44px; object-fit: contain; }
  .nav-toggle { display: inline-flex; margin-left: auto; border: 1px solid rgba(255,255,255,.22); background: rgba(255,255,255,.08); color: #fff; border-radius: var(--nk-radius); padding: 9px 12px; font-weight: 800; }
  .header-search-wrap { flex: 1 1 auto; max-width: 220px; margin-left: 10px; }
  .header-quote { display: none; }
  .primary-nav { display: none; position: absolute; inset: 72px 16px auto 16px; background: #111316; border: 1px solid rgba(255,255,255,.12); border-radius: var(--nk-radius); box-shadow: var(--nk-shadow); padding: 14px; }
  .primary-nav.is-open { display: block; }
  .menu { display: grid; gap: 4px; }
  .menu > li.desktop-extra-menu { display: none; }
  .menu .sub-menu { position: static; min-width: 0; padding: 0 0 0 14px; border: 0; background: transparent; box-shadow: none; opacity: 1; visibility: visible; transform: none; }
  .primary-nav > .menu > li:last-child > a { width: fit-content; min-height: 42px; padding: 0 18px; }
  .banner-track { height: calc(100svh - 72px); min-height: 420px; max-height: 620px; }
  .hero-grid, .story-grid, .split-grid, .contact-grid, .product-detail-grid, .archive-layout, .about-story-grid { grid-template-columns: 1fr; }
  .about-values-grid,
  .about-stats-grid,
  .contact-info-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .why-timeline::before { left: 19px; }
  .why-timeline-item,
  .why-timeline-item.side-left,
  .why-timeline-item.side-right { grid-template-columns: 40px 1fr; }
  .why-timeline-node { grid-column: 1; justify-self: center; width: 36px; height: 36px; }
  .why-timeline-item.side-left .why-card,
  .why-timeline-item.side-right .why-card { grid-column: 2; justify-self: stretch; max-width: none; text-align: left; }
  .home-about-grid { grid-template-columns: 1fr; }
  .home-about-copy { max-width: none; }
  .category-slider-track { gap: 18px; }
  .category-slide-card { flex-basis: calc((100% - 18px) / 2); }
  .polo-top-grid,
  .polo-bottom-grid,
  .company-showcase-grid {
    grid-template-columns: 1fr;
  }
  .polo-heading-row {
    grid-template-columns: 1fr;
  }
  .polo-feature {
    min-height: 0;
    display: block;
  }
  .polo-feature-products {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: start;
  }
  .company-feature {
    min-height: 0;
    display: block;
  }
  .company-feature-products,
  .company-bottom-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: start;
  }
  .promo-strip {
    border-radius: 20px;
  }
  .promo-badges {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .category-archive-layout {
    grid-template-columns: 1fr;
  }
  .category-sidebar {
    position: static;
  }
  .category-product-section .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .guide-featured-layout,
  .guide-tabs-head {
    grid-template-columns: 1fr;
  }
  .guide-featured-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .guide-card-side {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .guide-tabs {
    justify-content: flex-start;
    gap: 14px;
  }
  .guide-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .post-grid { grid-template-columns: 1fr 1fr; }
  .footer-cta {
    grid-template-columns: 1fr;
    gap: 18px;
    padding-top: 24px;
    padding-bottom: 24px;
  }
  .footer-cta-logo { border-right: 0; padding-right: 0; }
  .footer-consult-form { grid-template-columns: 1fr; gap: 12px; }
  .footer-main { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-contact,
  .footer-map-col { grid-column: 1 / -1; }
  .filter-panel { position: static; }
  .detail-gallery {
    justify-self: stretch;
    max-width: none;
    width: 100%;
  }
  .detail-copy {
    max-width: none;
  }
  .single-post-hero-grid,
  .single-post-layout {
    grid-template-columns: 1fr;
  }
  .single-post-hero {
    padding: 30px 0 24px;
  }
  .single-post-hero h1 {
    font-size: 32px;
  }
  .single-post-hero p,
  .single-post-content {
    font-size: 16px;
  }
  .single-post-sidebar {
    position: static;
    grid-template-columns: 1fr;
  }
  .single-post-content h2 {
    font-size: 26px;
  }
  .single-post-content h3 {
    font-size: 21px;
  }
  .single-related-head h2 {
    font-size: 28px;
  }
}

@media (max-width: 560px) {
  .container { width: min(100% - 24px, var(--nk-container)); }
  .brand img { width: 140px; height: 36px; }
  .nav-toggle { padding: 8px 10px; }
  .header-search-wrap { flex: 1 1 60px; min-width: 0; max-width: none; margin-left: 6px; }
  .header-search-form { gap: 4px; }
  .header-search-input { padding: 0 10px; font-size: 12.5px; }
  .header-search-suggestions { left: auto; right: 0; width: min(280px, calc(100vw - 24px)); }
  .section { padding: 50px 0; }
  .home-about { padding: 18px 0 54px; }
  .home-about-copy h2 { font-size: 30px; }
  .home-about-copy p:not(.eyebrow) { font-size: 16px; }
  .category-showcase { padding: 44px 0 38px; }
  .category-slider-track { gap: 14px; }
  .category-slide-card { flex-basis: 78%; }
  .category-slide-card a { min-height: 230px; border-radius: 20px; }
  .category-card-media { min-height: 150px; }
  .category-card-media img { max-height: 152px; }
  .category-slider-dots { margin-top: 26px; gap: 9px; }
  .category-slider-dots button { width: 10px; height: 10px; }
  .category-slider-dots button.is-active { width: 38px; }
  .polo-showcase { padding: 50px 0 58px; }
  .polo-heading-row { gap: 14px; margin-bottom: 22px; }
  .polo-heading-row h2 {
    font-size: 22px;
    line-height: 1.12;
    overflow-wrap: normal;
    word-break: keep-all;
    text-align: center;
  }
  .polo-more { justify-content: center; font-size: 13px; }
  .polo-more span { width: 34px; height: 34px; font-size: 19px; }
  .polo-feature-products,
  .polo-bottom-grid {
    grid-template-columns: 1fr;
  }
  .polo-banner {
    min-height: 0;
    border-radius: 22px;
    aspect-ratio: 1 / .78;
  }
  .polo-banner img {
    position: absolute;
    height: 100%;
    object-fit: cover;
    object-position: center top;
  }
  .polo-product-image { border-radius: 18px; }
  .polo-price { font-size: 20px; }
  .promo-strip-section { padding: 18px 0 54px; }
  .promo-strip {
    padding: 30px 16px 28px;
  }
  .promo-strip h2 {
    font-size: 28px;
  }
  .promo-badges {
    grid-template-columns: 1fr;
    gap: 12px;
    margin: 24px auto;
  }
  .promo-badges span {
    min-height: 50px;
    font-size: 18px;
  }
  .promo-social-row {
    gap: 16px;
  }
  .promo-social-row strong {
    width: 100%;
    font-size: 26px;
  }
  .promo-social {
    width: 44px;
    height: 44px;
  }
  .journey-panel {
    grid-template-columns: 1fr;
  }
  .production-process-grid {
    grid-template-columns: 1fr;
  }
  .partners-grid {
    grid-template-columns: 1fr;
  }
  .partners-copy,
  .partners-banner {
    min-height: 0;
  }
  .partners-logo-grid {
    grid-template-columns: repeat(3, minmax(120px, 1fr));
  }
  .partners-banner img {
    position: static;
    aspect-ratio: 4 / 3;
    height: auto;
    object-fit: cover;
  }
  .production-banner,
  .production-content {
    min-height: 0;
  }
  .production-banner img {
    aspect-ratio: 4 / 3;
    height: auto;
  }
  .journey-stats {
    grid-template-columns: 1fr;
  }
  .journey-right {
    padding-left: 0;
    padding-top: 26px;
    border-left: 0;
    border-top: 1px solid rgba(255,255,255,.16);
  }
  .company-showcase { padding: 6px 0 54px; }
  .company-heading-row { gap: 14px; margin-bottom: 22px; }
  .company-heading-row h2 {
    font-size: 22px;
    line-height: 1.12;
    overflow-wrap: normal;
    word-break: keep-all;
    text-align: center;
  }
  .company-feature-products,
  .company-bottom-grid {
    grid-template-columns: 1fr;
  }
  .company-banner {
    min-height: 0;
    border-radius: 22px;
    aspect-ratio: 1 / .78;
  }
  .company-banner img {
    position: absolute;
    height: 100%;
    object-fit: cover;
    object-position: center top;
  }
  .production-process { padding: 42px 0 58px; }
  .production-content h2 { font-size: 30px; margin-bottom: 28px; }
  .production-steps { gap: 15px; padding-left: 0; }
  .production-steps::before { left: 27px; }
  .production-step,
  .production-step button {
    grid-template-columns: 54px 1fr;
    gap: 14px;
  }
  .production-step button span {
    width: 46px;
    height: 46px;
    font-size: 18px;
  }
  .production-step button strong { font-size: 18px; }
  .production-step.is-active .production-step-body { max-height: 230px; }
  .production-step-body p { font-size: 16px; }
  .customer-partners { padding: 40px 0 54px; }
  .partners-copy { padding: 0; }
  .partners-copy h2 {
    margin-bottom: 30px;
    font-size: 22px;
    line-height: 1.12;
  }
  .partners-logo-grid {
    grid-template-columns: repeat(2, minmax(132px, 1fr));
    gap: 28px 20px;
  }
  .partner-logo { min-height: 76px; }
  .partner-logo img {
    width: min(100%, 210px);
    max-height: 88px;
  }
  .hero { padding: 34px 0 46px; }
  .hero h1 { font-size: 36px; }
  .page-hero p { font-size: 16px; }
  .home-faq-grid,
  .product-grid, .post-grid,
  .about-values-grid, .about-stats-grid, .contact-info-grid, .contact-hours-grid { grid-template-columns: 1fr; }
  .home-faq-column { gap: 14px; }
  .contact-map-card iframe { height: 220px; }
  .home-faq h2 { font-size: 30px; }
  .home-faq-item summary {
    min-height: 68px;
    padding: 16px 18px;
    font-size: 17px;
  }
  .section-heading { display: block; }
  .archive-breadcrumb .container {
    gap: 9px;
    min-height: 38px;
  }
  .archive-breadcrumb a,
  .archive-breadcrumb strong { font-size: 14px; }
  .category-archive { padding: 28px 0 50px; }
  .category-archive-head {
    display: grid;
    gap: 16px;
    margin-bottom: 20px;
  }
  .category-archive-head h1 { font-size: 34px; }
  .category-sort select { width: 100%; }
  .category-intro-box {
    padding: 18px 16px;
    margin-bottom: 22px;
  }
  .category-intro-box p,
  .category-intro-box ul { font-size: 16px; }
  .category-archive-layout {
    gap: 28px;
  }
  .category-sidebar {
    padding: 20px;
  }
  .category-sidebar a {
    font-size: 16px;
  }
  .category-related-posts {
    margin-top: 24px;
  }
  .category-seo-content {
    margin-top: 48px;
    padding-top: 34px;
  }
  .category-seo-content h2 { font-size: 26px; }
  .category-seo-content p { font-size: 16px; }
  .category-product-heading {
    margin-bottom: 18px;
  }
  .category-product-heading h2 { font-size: 24px; }
  .category-product-section .product-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .guide-featured-section { padding: 30px 0 42px; }
  .guide-featured-layout,
  .guide-featured-list,
  .guide-grid {
    grid-template-columns: 1fr;
  }
  .guide-featured-list { gap: 24px; }
  .guide-tabs-section { padding: 24px 0 58px; }
  .guide-tabs-head { margin-bottom: 24px; }
  .guide-tabs-head h2 { font-size: 34px; }
  .guide-tabs {
    flex-wrap: nowrap;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 4px;
  }
  .guide-tabs button {
    min-width: max-content;
    min-height: 44px;
    font-size: 16px;
  }
  .guide-card-body,
  .guide-card-side .guide-card-body,
  .guide-card-grid .guide-card-body {
    grid-template-columns: 76px minmax(0, 1fr);
    gap: 14px;
  }
  .guide-card time strong,
  .guide-card-side time strong { font-size: 38px; }
  .guide-card h2,
  .guide-card-side h2,
  .guide-card-grid h2 { font-size: 20px; }
  .guide-excerpt { font-size: 16px; margin-top: 18px; }
  .post-toc summary {
    grid-template-columns: minmax(0, 1fr) auto;
    padding: 16px;
  }
  .post-toc summary em {
    display: none;
  }
  .post-toc ol {
    padding: 0 16px 16px 36px;
  }
  .single-post-hero-image img {
    aspect-ratio: 1.3 / 1;
  }
  .single-sidebar-posts a {
    grid-template-columns: 76px minmax(0, 1fr);
  }
  .single-related-head {
    align-items: start;
    display: grid;
  }
  .quote-dialog {
    padding: 24px 18px;
  }
  .quote-dialog h2 {
    font-size: 25px;
  }
  .quote-form-row {
    grid-template-columns: 1fr;
  }
  .product-breadcrumb .container { gap: 9px; font-size: 13px; }
  .product-detail { padding: 28px 0 42px; }
  .detail-gallery {
    grid-template-columns: 1fr;
  }
  .detail-thumbs {
    display: flex;
    order: 2;
    overflow-x: auto;
    padding-bottom: 4px;
  }
  .detail-thumbs button {
    width: 74px;
    height: 74px;
    flex: 0 0 auto;
  }
  .detail-media { order: 1; }
  .detail-copy h1 { font-size: 28px; }
  .detail-price { margin: 14px 0 18px; padding-bottom: 18px; font-size: 24px; }
  .product-spec-list div {
    grid-template-columns: 1fr;
    gap: 5px;
  }
  .product-spec-list dt,
  .product-spec-list dd,
  .size-guide-link { font-size: 16px; }
  .product-cta {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-bottom: 32px;
    padding: 12px;
    border-radius: 18px;
  }
  .product-benefits {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .product-info-section .prose {
    padding: 22px;
  }
  .site-footer { padding-bottom: 18px; }
  .footer-main { grid-template-columns: 1fr; padding-top: 34px; }
  .footer-bottom { display: grid; }
  .floating-contact {
    left: auto;
    right: 10px;
    bottom: 10px;
    grid-template-columns: 1fr;
    transform: none;
  }
  .floating-contact a,
  .floating-contact button {
    min-width: 60px;
    min-height: 52px;
    grid-template-columns: 1fr;
    border-radius: 999px;
    padding: 0;
    text-align: center;
  }
  .floating-contact span {
    width: 52px;
    height: 52px;
    border-width: 3px;
  }
  .floating-contact strong { display: none; }
  .banner-slider { display: none; }
  .banner-dots { bottom: 14px; gap: 9px; }
  .banner-dots button { width: 10px; height: 10px; }
  .banner-dots button.is-active { width: 38px; }
}
