:root {
  --bg: #ffffff;
  --paper: #ffffff;
  --paper-deep: #f3f3f3;
  --ink: #221b17;
  --ink-soft: #5f5f5f;
  --muted: #8a8a8a;
  --gold: #8E6F3D;
  --gold-light: #B89868;
  --red: #9d2b25;
  --red-dark: #6F1D1B;
  --china-red: #8b0616;
  --line: #dedede;
  --line-soft: #eeeeee;
  --shadow: 0 18px 60px rgba(60, 39, 25, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  max-width: 100%;
}

body {
  margin: 0;
  padding-top: 104px;
  background: var(--bg);
  color: var(--ink);
  font-family: Inter, Arial, sans-serif;
  font-size: 15px;
  overflow-x: hidden;
  max-width: 100%;
}

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

button {
  font: inherit;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  width: 100%;
  overflow: visible;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
}

.topbar {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: 64px;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 48px;
}

.brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1;
}

.logo-brand {
  display: flex;
  align-items: center;
  justify-content: center;
}

.brand span {
  font-family: "Montserrat", Inter, Arial, sans-serif;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.2em;
}

.brand small {
  display: none;
  margin-top: 7px;
  color: var(--muted);
  font-size: 10px;
  letter-spacing: 0.35em;
}

.logo-brand small {
  margin-top: 5px;
}

.language {
  justify-self: start;
  color: var(--ink-soft);
  font-size: 12px;
}

.language-switcher {
  justify-self: start;
  position: relative;
  z-index: 4;
  display: inline-block;
  color: var(--ink-soft);
  font-family: "Montserrat", "Inter", sans-serif;
  font-size: 13px;
  letter-spacing: 0.08em;
}

.language-current {
  min-width: 38px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  border: 0;
  background: transparent;
  color: var(--red);
  cursor: pointer;
}

.language-current span {
  font-size: 9px;
}

.language-menu {
  /* Language dropdown compact pass */
  position: absolute;
  top: calc(100% + 16px);
  left: 0;
  z-index: 4000;
  width: 190px;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: 0 18px 44px rgba(34, 27, 23, 0.12);
}

.language-switcher .language-menu {
  display: none;
}

.floating-language-menu {
  /* Mobile language body portal pass */
  position: fixed;
  display: block;
  z-index: 9000;
}

.language-option {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 0 16px;
  color: inherit;
  font-size: 14px;
  letter-spacing: 0;
  border: 0;
}

.language-option strong {
  color: var(--ink);
  font-weight: 500;
}

.language-option span {
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 0.12em;
}

.language-option.is-active {
  background: #f7f7f7;
}

.header-actions {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 18px;
}

.icon-button,
.inquiry-icon {
  width: 34px;
  height: 34px;
  min-width: 34px;
  min-height: 34px;
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  border: 0;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
}

.icon-button svg,
.inquiry-icon svg {
  width: 19px;
  height: 19px;
  min-width: 19px;
  min-height: 19px;
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.4;
  vector-effect: non-scaling-stroke;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 4px;
}

.mobile-menu span {
  width: 20px;
  height: 1px;
  background: currentColor;
}

.inquiry-icon {
  position: relative;
}

.inquiry-icon span {
  position: absolute;
  top: 0;
  right: 0;
  min-width: 16px;
  height: 16px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--red);
  color: #fff;
  font-size: 10px;
}

.main-nav {
  position: relative;
  z-index: 1;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 2.2vw, 38px);
  border-top: 1px solid var(--line);
  font-size: 13px;
  letter-spacing: 0.08em;
}

.main-nav .nav-link {
  height: 48px;
  display: inline-flex;
  align-items: center;
  color: var(--ink);
  white-space: nowrap;
}

.main-nav .nav-link.is-active {
  color: var(--red);
  font-weight: 600;
}

/* Spanish desktop nav compact fit pass */
html[lang="es"] .main-nav {
  gap: clamp(10px, 1.35vw, 20px);
  font-size: 12px;
  letter-spacing: 0.045em;
}

html[lang="es"] .main-nav .nav-link {
  letter-spacing: 0.045em;
}

/* Additional language layout pass */
html[lang="pt-BR"] .main-nav,
html[lang="id"] .main-nav,
html[lang="fr"] .main-nav {
  gap: clamp(8px, 1.08vw, 16px);
  font-size: 13.5px;
  letter-spacing: 0.025em;
}

html[lang="pt-BR"] .main-nav .nav-link,
html[lang="id"] .main-nav .nav-link,
html[lang="fr"] .main-nav .nav-link {
  letter-spacing: 0.025em;
}

html[lang="id"] .main-nav {
  gap: clamp(14px, 1.55vw, 26px);
}

.search-panel {
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  z-index: 1001;
  padding: 18px 24px 22px;
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 22px 50px rgba(35, 26, 22, 0.08);
}

.search-panel[hidden] {
  display: none;
}

.search-shell {
  max-width: 860px;
  margin: 0 auto;
}

.search-field {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 18px;
  min-height: 54px;
  padding: 0 58px 0 18px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
}

.search-field span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.16em;
}

.search-field input {
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--ink);
  font-size: 17px;
}

.search-field input::placeholder {
  color: #a5a5a5;
}

.search-close {
  position: absolute;
  top: 28px;
  left: calc(50% + 375px);
  width: 34px;
  height: 34px;
  border: 0;
  background: transparent;
  color: var(--ink);
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
}

.search-results {
  display: grid;
  gap: 0;
  margin-top: 10px;
  border: 1px solid var(--line-soft);
  border-bottom: 0;
  background: #fff;
}

.search-result {
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  min-height: 96px;
  padding: 12px 16px;
  border-bottom: 1px solid var(--line-soft);
}

.search-result:hover {
  color: var(--red);
  background: #fafafa;
}

.search-result img,
.search-result-placeholder {
  width: 76px;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  background: #f7f7f7;
}

.search-result strong {
  display: block;
  margin-bottom: 7px;
  color: var(--ink);
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.search-result small {
  display: block;
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.08em;
}

.search-result em {
  color: var(--muted);
  font-size: 13px;
  font-style: normal;
  white-space: nowrap;
}

.search-empty {
  margin: 0;
  padding: 22px 18px;
  color: var(--muted);
  font-size: 14px;
}

@media (max-width: 640px) {
  .search-panel {
    padding: 12px;
  }

  .search-field {
    grid-template-columns: 1fr;
    gap: 6px;
    min-height: 68px;
    padding: 10px 46px 10px 14px;
  }

  .search-field input {
    font-size: 15px;
  }

  .search-close {
    top: 22px;
    right: 22px;
    left: auto;
  }

  .search-result {
    grid-template-columns: 58px minmax(0, 1fr);
    gap: 12px;
    min-height: 78px;
    padding: 10px;
  }

  .search-result img,
  .search-result-placeholder {
    width: 58px;
  }

  .search-result strong {
    font-size: 15px;
  }

  .search-result em {
    display: none;
  }
}

.nav-item {
  position: relative;
  height: 48px;
  display: inline-flex;
  align-items: center;
}

.nav-dropdown {
  position: absolute;
  top: calc(100% - 1px);
  left: 50%;
  z-index: 20;
  width: max-content;
  min-width: 260px;
  max-width: min(760px, 92vw);
  display: grid;
  grid-template-columns: repeat(2, minmax(190px, 1fr));
  gap: 0;
  padding: 18px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 8px);
  transition: opacity 160ms ease, transform 160ms ease;
}

.nav-item:hover .nav-dropdown,
.nav-item:focus-within .nav-dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

/* Navigation dropdown viewport clamp pass */
.main-nav .nav-item:first-of-type .nav-dropdown {
  left: 0;
  transform: translate(0, 8px);
}

.main-nav .nav-item:first-of-type:hover .nav-dropdown,
.main-nav .nav-item:first-of-type:focus-within .nav-dropdown {
  transform: translate(0, 0);
}

.nav-dropdown a {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-height: 58px;
  padding: 12px 14px;
  border-bottom: 1px solid rgba(222, 222, 222, 0.9);
  color: var(--ink);
  letter-spacing: 0.02em;
}

.nav-dropdown a:nth-last-child(-n + 2) {
  border-bottom: 0;
}

.nav-dropdown a:hover {
  background: var(--paper);
}

.nav-dropdown strong {
  display: flex;
  align-items: baseline;
  gap: 8px;
  justify-content: space-between;
  font-size: 15px;
  font-weight: 600;
}

.nav-dropdown small {
  color: var(--muted);
  font-size: 11px;
  line-height: 1.5;
  letter-spacing: 0.08em;
}

/* Spanish category layout pass */
html[lang="es"] .nav-dropdown {
  grid-template-columns: repeat(2, minmax(170px, 1fr));
}

html[lang="es"] .nav-dropdown a {
  min-height: 54px;
  padding: 10px 12px;
}

html[lang="es"] .nav-dropdown strong {
  font-size: 13px;
}

html[lang="es"] .nav-dropdown small {
  font-size: 10px;
  letter-spacing: 0.02em;
}

html[lang="pt-BR"] .nav-dropdown,
html[lang="id"] .nav-dropdown,
html[lang="fr"] .nav-dropdown {
  grid-template-columns: repeat(2, minmax(170px, 1fr));
}

html[lang="pt-BR"] .nav-dropdown a,
html[lang="id"] .nav-dropdown a,
html[lang="fr"] .nav-dropdown a {
  min-height: 54px;
  padding: 10px 12px;
}

html[lang="pt-BR"] .nav-dropdown strong,
html[lang="id"] .nav-dropdown strong,
html[lang="fr"] .nav-dropdown strong {
  font-size: 13px;
}

html[lang="pt-BR"] .nav-dropdown small,
html[lang="id"] .nav-dropdown small,
html[lang="fr"] .nav-dropdown small {
  font-size: 10px;
  letter-spacing: 0.02em;
}

.mobile-drawer {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100dvh;
  min-height: 100vh;
  z-index: 2000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
  isolation: isolate;
}

.mobile-drawer.is-open {
  opacity: 1;
  pointer-events: auto;
}

.drawer-scrim {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: rgba(34, 27, 23, 0.45);
  backdrop-filter: blur(4px);
  pointer-events: none;
}

.drawer-panel {
  position: relative;
  z-index: 1;
  width: min(86vw, 360px);
  height: 100vh;
  max-height: 100vh;
  display: flex;
  flex-direction: column;
  background: var(--bg);
  border-right: 1px solid var(--line);
  box-shadow: var(--shadow);
  transform: translateX(-100%);
  transition: none;
  overflow-y: auto;
  overflow-x: hidden;
}

.mobile-drawer.is-open .drawer-scrim {
  /* Mobile drawer clickable scrim area pass */
  pointer-events: auto;
  cursor: pointer;
}

.mobile-drawer.is-open .drawer-panel {
  transform: translateX(0);
}

.drawer-panel header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 22px;
  border-bottom: 1px solid var(--line);
}

.drawer-brand {
  align-items: flex-start;
}

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

.drawer-brand.logo-brand {
  justify-content: flex-start;
}

.drawer-panel header button {
  border: 0;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  font-size: 30px;
  line-height: 1;
}

.drawer-panel nav {
  padding: 8px 22px 0;
}

.drawer-panel nav a,
.drawer-main-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 52px;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  font-size: 15px;
  letter-spacing: 0.04em;
}

.drawer-panel nav > a:first-child {
  color: var(--red);
  font-weight: 600;
}

.drawer-panel nav span {
  color: var(--muted);
}

.drawer-category-group {
  border-bottom: 1px solid var(--line);
}

.drawer-category-group .drawer-main-link {
  border-bottom: 0;
  min-height: 48px;
  font-weight: 600;
}

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

/* Mobile drawer subcategory compact pass */
.drawer-subnav a {
  min-height: 28px;
  border-bottom: 0;
  color: var(--muted);
  font-size: 9.5px;
  line-height: 1.2;
  letter-spacing: 0.01em;
}

html[lang="es"] .drawer-subnav a {
  /* Spanish mobile drawer subcategory readable pass */
  font-size: 14px;
  line-height: 1.25;
}

html[lang="pt-BR"] .drawer-subnav a,
html[lang="id"] .drawer-subnav a,
html[lang="fr"] .drawer-subnav a {
  font-size: 13px;
  line-height: 1.24;
}

.drawer-inquiry {
  margin: 28px 22px 0;
}

/* Mobile drawer inquiry button black pass */
.drawer-inquiry.btn {
  background: #1a1a1a;
  color: #fff;
  border-color: #1a1a1a;
}

.drawer-panel footer {
  margin-top: auto;
  padding: 18px 22px 24px;
  border-top: 1px solid var(--line);
  background: var(--paper);
}

.drawer-panel footer span,
.drawer-panel footer small {
  display: block;
  color: var(--ink-soft);
  font-size: 12px;
}

.drawer-panel footer small {
  margin-top: 8px;
  color: var(--muted);
  letter-spacing: 0.08em;
  line-height: 1.7;
  text-transform: uppercase;
}

.drawer-contact-list {
  display: grid;
  gap: 2px;
}

.drawer-panel footer .drawer-contact-list span {
  display: grid;
  grid-template-columns: 5em max-content;
  column-gap: 0.25em;
  align-items: baseline;
}

html[lang="en"] .drawer-panel footer .drawer-contact-list span {
  /* English mobile drawer contact fit pass */
  grid-template-columns: 1fr;
  gap: 1px;
}

.drawer-panel footer .drawer-contact-list b,
.drawer-panel footer .drawer-contact-list em {
  font: inherit;
  font-style: normal;
  font-weight: inherit;
}

.drawer-panel footer .drawer-contact-list b {
  white-space: nowrap;
}

.drawer-panel footer .language-switcher {
  display: block;
}

.drawer-panel footer .language-current {
  justify-content: flex-start;
  min-width: 0;
}

.drawer-panel footer .language-menu {
  top: auto;
  bottom: calc(100% + 10px);
  left: 0;
  width: min(190px, calc(100vw - 44px));
}

.hero {
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  min-height: 720px;
  aspect-ratio: 1672 / 662;
  overflow: hidden;
  background: var(--paper);
}

.hero-picture {
  /* Desktop hero image fill pass */
  position: absolute;
  inset: 0;
  display: block;
}

.hero img {
  /* Homepage desktop hero no gray band pass */
  /* Desktop hero bottom crop pass */
  position: absolute;
  inset: 0;
  width: 100%;
  height: calc(100% + 18px);
  object-fit: cover;
  object-position: center top;
}

.hero-wash {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(34, 27, 23, 0.48), rgba(34, 27, 23, 0.28) 48%, rgba(34, 27, 23, 0.08)),
    linear-gradient(0deg, rgba(34, 27, 23, 0.18), rgba(34, 27, 23, 0.04));
}

.hero-content {
  position: relative;
  max-width: 1440px;
  margin: 0 auto;
  padding: 250px 48px 90px;
}

.eyebrow,
.section-kicker {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
}

.eyebrow span {
  width: 40px;
  height: 1px;
  background: var(--gold-light);
}

.section-kicker {
  display: block;
  margin-bottom: 18px;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 400;
}

h1 {
  max-width: 720px;
  margin-top: 40px;
  color: #fff;
  font-size: clamp(3.2rem, 5.2vw, 5.4rem);
  line-height: 1.06;
  text-shadow: 0 10px 36px rgba(34, 27, 23, 0.28);
}

h1 span {
  display: block;
  color: #fff;
}

.hero h1 {
  max-width: none;
  font-size: clamp(2.55rem, 3.55vw, 4.05rem);
  line-height: 1.02;
}

.hero h1 span {
  display: block;
}

.hero p {
  max-width: 1040px;
  margin: 38px 0 0;
  color: rgba(255, 255, 255, 0.92);
  font-family: "Playfair Display", Georgia, "Songti SC", "SimSun", serif;
  /* Homepage hero subtitle smaller pass */
  /* Homepage desktop hero subtitle align pass */
  font-size: clamp(1.05rem, 1.18vw, 1.35rem);
  font-weight: 400;
  line-height: 1.55;
  letter-spacing: 0.12em;
  text-wrap: balance;
  text-shadow: 0 6px 22px rgba(34, 27, 23, 0.25);
}

/* Full language layout pass */
/* Arabic hero content block alignment pass */
html[lang="en"] .hero h1,
html[lang="es"] .hero h1,
html[lang="pt-BR"] .hero h1,
html[lang="id"] .hero h1,
html[lang="fr"] .hero h1 {
  max-width: 860px;
  font-size: clamp(2.1rem, 3vw, 3.45rem);
  line-height: 1.04;
}

html[lang="en"] .hero p,
html[lang="es"] .hero p,
html[lang="pt-BR"] .hero p,
html[lang="id"] .hero p,
html[lang="fr"] .hero p {
  max-width: 860px;
  font-size: clamp(0.92rem, 1.02vw, 1.12rem);
  line-height: 1.45;
  letter-spacing: 0.04em;
}

html[lang="ar"] body {
  unicode-bidi: plaintext;
}

html[lang="ar"] .hero-content {
  text-align: left;
}

html[lang="ar"] .hero h1 {
  max-width: 820px;
  font-size: clamp(2rem, 2.85vw, 3.25rem);
  line-height: 1.18;
}

html[lang="ar"] .hero p {
  max-width: 860px;
  font-size: clamp(0.94rem, 1.02vw, 1.12rem);
  line-height: 1.65;
  letter-spacing: 0;
}

html[lang="ar"] .hero-cta {
  justify-content: flex-start;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 36px;
}

/* Homepage desktop hero lower CTA pass */
@media (min-width: 641px) {
  /* Homepage desktop hero image reveal pass */
  .hero {
    min-height: clamp(560px, 36.6vw, 720px);
    aspect-ratio: 2073 / 758;
    background: var(--paper);
  }

  .hero img {
    /* Desktop hero no black letterbox pass */
    object-fit: cover;
    object-position: center top;
  }

  .hero-content {
    padding-top: 190px;
  }

  .hero .hero-cta .btn.primary {
    background: #1a1a1a;
    color: #fff;
  }
}

.btn {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  padding: 0 28px;
  cursor: pointer;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  transition: opacity 160ms ease, transform 160ms ease, background 160ms ease;
}

.btn:hover,
.product-card button:hover {
  opacity: 0.88;
  transform: translateY(-1px);
}

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

.btn.outline {
  border-color: var(--line);
  color: var(--muted);
  background: rgba(255, 255, 255, 0.66);
}

.stats {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.stats div {
  padding: 34px 20px;
  text-align: center;
  border-right: 1px solid var(--line);
}

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

.stats strong {
  display: block;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.9rem, 3vw, 2.6rem);
  font-weight: 400;
}

.stats span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
}

html[lang="en"] .stats span,
html[lang="es"] .stats span,
html[lang="ar"] .stats span {
  font-size: 10px;
  letter-spacing: 0.08em;
  line-height: 1.15;
  white-space: nowrap;
}

.section,
.catalog,
.factory,
.contact-strip,
.oem-band {
  max-width: 1440px;
  margin: 0 auto;
  padding: 110px 48px 0;
}

.intro {
  max-width: 880px;
  padding-top: 0;
  text-align: center;
}

.intro-image {
  width: 100%;
  aspect-ratio: 3 / 2;
  margin-bottom: 56px;
  display: block;
  object-fit: cover;
  object-position: center;
}

.intro h2,
.section-head h2,
.factory h2,
.contact-strip h2,
.oem-band h2 {
  color: var(--ink);
  font-size: clamp(2.1rem, 4vw, 4rem);
  line-height: 1.08;
}

.intro p,
.factory-copy p,
.contact-strip p,
.oem-band p {
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.9;
}

.certifications {
  margin-top: 46px;
  text-align: left;
}

.certifications span {
  display: block;
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 13px;
  letter-spacing: 0.18em;
}

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

.certifications strong {
  min-width: 0;
  padding: 11px 18px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.42);
  color: var(--ink);
  font-family: "Montserrat", Inter, Arial, sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-align: center;
}

.intro-inquiry {
  margin-top: 48px;
  display: flex;
  width: max-content;
  margin-left: 0;
  margin-right: auto;
}

.market-marquee {
  width: 100%;
  margin-top: 56px;
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.28);
}

.market-track {
  width: max-content;
  display: flex;
  align-items: center;
  gap: 34px;
  padding: 16px 0;
  animation: market-slide 24s linear infinite;
}

.market-track span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-family: "Montserrat", Inter, Arial, sans-serif;
  font-size: 13px;
  letter-spacing: 0.1em;
  white-space: nowrap;
}

.market-track b {
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0;
}

@keyframes market-slide {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.showroom-section {
  max-width: 880px;
}

.showroom-image,
.gel-display-image,
.nail-machines-image,
.tools-accessories-image,
.digital-center-image,
.warehouse-image,
.global-delivery-image {
  width: 100%;
  aspect-ratio: 4 / 3;
  display: block;
  object-fit: cover;
  object-position: center;
}

.showroom-section p {
  margin: 38px 0 0;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.9;
}

.digital-center-section {
  max-width: 880px;
}

.gel-display-section {
  max-width: 880px;
}

.nail-machines-section {
  max-width: 880px;
}

.tools-accessories-section {
  max-width: 880px;
}

.digital-center-section p {
  margin: 38px 0 0;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.9;
}

.showroom-section h2,
.gel-display-section h2,
.nail-machines-section h2,
.tools-accessories-section h2,
.digital-center-section h2 {
  margin-top: 42px;
  color: var(--ink);
  font-size: clamp(2.1rem, 4vw, 4rem);
  line-height: 1.08;
}

.showroom-section h2 + p,
.gel-display-section h2 + p,
.nail-machines-section h2 + p,
.tools-accessories-section h2 + p,
.digital-center-section h2 + p {
  margin-top: 26px;
}

.gel-display-section p,
.nail-machines-section p,
.tools-accessories-section p {
  margin: 38px 0 0;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.9;
}

.warehouse-section,
.global-delivery-section {
  max-width: 880px;
}

.warehouse-section h2,
.global-delivery-section h2 {
  margin-top: 42px;
  color: var(--ink);
  font-size: clamp(2.1rem, 4vw, 4rem);
  line-height: 1.08;
}

.warehouse-section p,
.global-delivery-section p {
  margin: 26px 0 0;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.9;
}

.warehouse-section .btn {
  margin-top: 42px;
}

.trust-card-list {
  display: grid;
  gap: 28px;
  margin-top: 56px;
}

.trust-card-list article {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.42);
  padding: 46px 54px 52px;
}

.trust-card-list span {
  display: block;
  margin-bottom: 26px;
  color: var(--muted);
  font-size: 30px;
  line-height: 1;
}

.trust-card-list h3 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.8rem, 3vw, 3rem);
  font-weight: 400;
  line-height: 1.14;
}

.trust-card-list p {
  margin: 24px 0 0;
  color: var(--ink);
  font-size: 16px;
  line-height: 1.9;
}

.trust-section {
  padding-top: 48px;
}

.trust-section .trust-card-list {
  margin-top: 0;
}

.testimonials-section {
  max-width: 880px;
  padding-top: 94px;
}

.testimonial-kicker {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  color: var(--red);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.22em;
}

.testimonial-kicker span {
  width: 72px;
  height: 1px;
  background: var(--red);
}

.testimonials-section h2 {
  max-width: 760px;
  margin: 34px auto 0;
  color: var(--ink);
  font-size: clamp(2.4rem, 4.6vw, 4.4rem);
  font-weight: 400;
  line-height: 1.08;
  text-align: center;
}

/* Testimonial translated heading center pass */
html[lang="en"] .testimonials-section h2,
html[lang="es"] .testimonials-section h2,
html[lang="ar"] .testimonials-section h2 {
  position: relative;
  left: 50%;
  width: max-content;
  max-width: calc(100vw - 96px);
  margin-left: 0;
  margin-right: 0;
  transform: translateX(-50%);
  text-align: center;
}

.testimonial-list {
  display: grid;
  gap: 28px;
  margin-top: 72px;
}

.testimonial-list article {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.42);
  padding: 48px 54px 44px;
}

.quote-mark {
  color: var(--red);
  font-family: Georgia, serif;
  font-size: 48px;
  line-height: 1;
}

.testimonial-list article > p {
  margin: 24px 0 0;
  color: var(--ink);
  font-size: 18px;
  line-height: 1.9;
}

.testimonial-author {
  display: grid;
  grid-template-columns: 74px 1fr;
  column-gap: 22px;
  align-items: center;
  margin-top: auto;
  padding-top: 28px;
  border-top: 1px solid rgba(222, 222, 222, 0.9);
}

.testimonial-author img {
  grid-row: 1 / span 2;
  width: 74px;
  height: 74px;
  border-radius: 50%;
  display: block;
  object-fit: cover;
  object-position: center;
}

.testimonial-author strong {
  color: var(--ink);
  font-family: "Montserrat", Inter, Arial, sans-serif;
  font-size: 22px;
}

.testimonial-author span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}

.global-reach-section {
  max-width: 880px;
  padding-top: 92px;
  text-align: center;
}

.global-reach-section h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(2.4rem, 4.6vw, 4.4rem);
  font-weight: 400;
  line-height: 1.08;
  white-space: nowrap;
  word-break: keep-all;
  overflow-wrap: normal;
}

.global-reach-section > p {
  max-width: 760px;
  margin: 34px auto 0;
  color: var(--ink);
  font-size: 18px;
  line-height: 2;
}

.global-reach-grid {
  display: grid;
  gap: 28px;
  margin-top: 78px;
}

.global-reach-grid article {
  min-height: 212px;
  display: grid;
  place-items: center;
  align-content: center;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.48);
}

.global-reach-grid strong {
  color: #c8102e;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(4.2rem, 10vw, 7rem);
  font-weight: 400;
  line-height: 1;
}

.global-reach-grid span {
  margin-top: 26px;
  color: var(--muted);
  font-size: 15px;
  letter-spacing: 0.08em;
}

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

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

.product-card {
  min-height: 460px;
  display: flex;
  flex-direction: column;
  background: var(--bg);
}

.product-art {
  aspect-ratio: 1 / 1;
  min-height: 0;
  margin: 20px;
  background: var(--paper-deep);
}

.product-photo {
  width: calc(100% - 40px);
  aspect-ratio: 1 / 1;
  height: auto;
  margin: 20px;
  display: block;
  object-fit: cover;
  background: var(--paper-deep);
}

.product-image-link {
  display: block;
}

.product-card h3 a {
  display: inline-block;
}

.product-card h3 a:hover {
  color: var(--muted);
}

.product-card-info {
  display: grid;
  gap: 8px;
  margin: 0 24px 22px;
  justify-items: center;
  text-align: center;
}

.product-sku,
.product-moq {
  color: var(--ink-soft);
  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  width: 100%;
  text-align: center;
}

.product-moq {
  letter-spacing: 0.06em;
}

.product-art.polish {
  background:
    radial-gradient(circle at 35% 32%, #fff 0 5%, transparent 6%),
    linear-gradient(90deg, transparent 13%, #6f1d1b 13% 22%, transparent 22% 30%, #8f8f8f 30% 39%, transparent 39% 48%, #b8b8b8 48% 57%, transparent 57% 66%, #6f6f6f 66% 75%, transparent 75%),
    linear-gradient(#f3f3f3, #e7e7e7);
}

.product-art.lamp {
  background:
    radial-gradient(ellipse at 50% 68%, rgba(255, 255, 255, 0.95) 0 22%, transparent 23%),
    radial-gradient(ellipse at 50% 58%, #fbfbfb 0 38%, #cfcfcf 39% 45%, transparent 46%),
    linear-gradient(#eeeeee, #f5f5f5);
}

.product-art.tools {
  background:
    linear-gradient(130deg, transparent 22%, #8b8b8b 23% 26%, transparent 27%),
    linear-gradient(40deg, transparent 32%, #6f1d1b 33% 36%, transparent 37%),
    linear-gradient(80deg, transparent 45%, #b0b0b0 46% 49%, transparent 50%),
    linear-gradient(#f3f3f3, #e7e7e7);
}

.product-art.tips {
  background:
    radial-gradient(ellipse at 30% 46%, #fbfbfb 0 10%, transparent 11%),
    radial-gradient(ellipse at 45% 50%, #e8e8e8 0 10%, transparent 11%),
    radial-gradient(ellipse at 60% 46%, #d8d8d8 0 10%, transparent 11%),
    radial-gradient(ellipse at 75% 50%, #c8c8c8 0 10%, transparent 11%),
    linear-gradient(#f3f3f3, #e7e7e7);
}

.product-card p {
  margin: 0 24px 10px;
  color: var(--red);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.product-card h3 {
  margin: 0 24px;
  font-size: 25px;
  line-height: 1.18;
}

.product-card-info h3 {
  margin: 0;
}

.product-card span {
  display: block;
  margin: 14px 24px 22px;
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.7;
}

.product-card button {
  margin: 14px 24px 24px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--muted);
  min-height: 42px;
  cursor: pointer;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.oem-band {
  display: grid;
  grid-template-columns: 1.1fr 1fr auto;
  align-items: center;
  gap: 42px;
  margin-top: 110px;
  padding-top: 70px;
  padding-bottom: 70px;
  background: var(--red-dark);
  color: #fff;
}

.oem-band .section-kicker,
.oem-band p {
  color: rgba(255, 255, 255, 0.72);
}

.oem-band h2 {
  color: #fff;
}

.oem-band .btn.primary {
  background: #fff;
  color: var(--red-dark);
}

.factory {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 80px;
}

.factory-copy {
  position: sticky;
  top: 150px;
  align-self: start;
}

.factory-copy .btn {
  margin-top: 20px;
}

.process-list {
  display: grid;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.process-list div {
  padding: 42px;
  background: var(--paper);
}

.process-list span {
  color: var(--red);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.process-list h3 {
  margin-top: 12px;
  font-size: 30px;
}

.process-list p {
  color: var(--ink-soft);
  line-height: 1.8;
}

.contact-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.contact-strip div {
  max-width: 720px;
}

.inquiry-panel {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 3000;
  display: flex;
  justify-content: flex-end;
  background: rgba(34, 27, 23, 0.35);
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.inquiry-panel.is-open {
  opacity: 1;
  pointer-events: auto;
}

.panel-card {
  position: relative;
  width: min(520px, 94vw);
  height: 100%;
  max-height: 100vh;
  display: flex;
  flex-direction: column;
  padding: 0;
  background: var(--bg);
  box-shadow: var(--shadow);
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 240ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
  backface-visibility: hidden;
  contain: layout paint;
  -webkit-overflow-scrolling: touch;
}

/* Inquiry panel compact pass */
.inquiry-panel.is-open .panel-card {
  transform: translateX(0);
}

.close-panel {
  position: absolute;
  top: 22px;
  right: 24px;
  border: 0;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  font-size: 28px;
  line-height: 1;
}

.panel-card h2 {
  margin: 0;
  padding: 58px 24px 20px;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  font-size: clamp(1.7rem, 2.4vw, 2.4rem);
  font-weight: 400;
  line-height: 1.08;
}

.panel-card .section-kicker {
  position: absolute;
  top: 22px;
  left: 24px;
  font-size: 10px;
}

.panel-card ul {
  flex: 1;
  min-height: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  overflow-y: auto;
}

.panel-card li {
  display: grid;
  grid-template-columns: 24px 78px minmax(0, 1fr) auto;
  gap: 14px;
  padding: 14px 24px;
  border-bottom: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 13px;
}

.panel-card li button {
  border: 0;
  background: transparent;
  color: var(--red);
  cursor: pointer;
}

.panel-card .inquiry-bulk-actions {
  position: sticky;
  top: 0;
  z-index: 2;
  grid-template-columns: minmax(0, 1fr) auto auto;
  align-items: center;
  gap: 12px;
  background: rgba(255, 253, 248, 0.96);
  backdrop-filter: blur(10px);
  color: var(--ink);
  font-size: 12px;
}

.inquiry-bulk-actions label,
.inquiry-select {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.inquiry-bulk-actions input,
.inquiry-select input {
  width: 16px;
  height: 16px;
  accent-color: var(--red);
}

.inquiry-bulk-actions button {
  padding: 0;
  font-size: 12px;
}

.inquiry-bulk-actions button:disabled {
  color: var(--muted);
  cursor: not-allowed;
}

.inquiry-select {
  align-self: center;
  justify-content: center;
}

.empty-note {
  padding: 24px;
  color: var(--muted);
}

.inquiry-thumb,
.checkout-thumb {
  width: 78px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  background: #f4eee4;
  overflow: hidden;
}

.inquiry-thumb img,
.checkout-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.inquiry-item-copy strong,
.checkout-item-body strong {
  display: block;
  color: var(--ink);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.25;
}

.inquiry-item-copy small,
.checkout-item-body small,
.checkout-item-body em {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
  font-style: normal;
}

.quantity-control,
.checkout-controls {
  margin-top: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.quantity-control button,
.quantity-control span,
.checkout-controls button,
.checkout-controls output {
  min-width: 32px;
  height: 30px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  font-size: 15px;
}

.checkout-controls output {
  min-width: 58px;
  padding: 0 8px;
  font-size: 13px;
}

.quantity-control span {
  min-width: 58px;
  padding: 0 8px;
  font-size: 13px;
}

.quantity-control em {
  font-style: normal;
}

.inquiry-panel .whatsapp-link {
  width: calc(100% - 48px);
  min-height: 42px;
  margin: 18px 24px 0;
  border-color: #1a1a1a;
  background: #1a1a1a;
  color: #fff;
  font-size: 11px;
}

.panel-note {
  margin: 22px 24px 24px;
  color: var(--muted);
  font-size: 12px;
  text-align: center;
}

.inquiry-page {
  min-height: 72vh;
  display: grid;
  place-items: center;
  padding: 120px 48px 150px;
}

.inquiry-empty-state {
  width: min(760px, 100%);
  text-align: center;
}

.inquiry-empty-state h1 {
  margin: 34px 0 0;
  color: var(--ink);
  font-size: clamp(2.8rem, 4.2vw, 4.6rem);
  font-weight: 400;
  line-height: 1.08;
}

.inquiry-empty-subtitle {
  margin: 22px 0 0;
  color: #8a8a8a;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.4rem, 1.8vw, 2rem);
  font-style: italic;
  line-height: 1.35;
}

.inquiry-empty-copy {
  margin: 54px auto 0;
  color: var(--ink-soft);
  font-size: 19px;
  font-weight: 600;
  line-height: 1.8;
}

.inquiry-empty-state .btn {
  margin-top: 42px;
}

.inquiry-checkout-layout {
  width: min(1320px, 100%);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(520px, 0.75fr);
  gap: 48px;
  align-items: start;
}

.inquiry-list-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line);
}

.inquiry-list-heading h1,
.inquiry-checkout-form h2 {
  margin: 0;
  color: var(--ink);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 30px;
  font-weight: 400;
}

.inquiry-checkout-form h2 {
  margin-bottom: 34px;
  font-size: 26px;
}

.inquiry-list-heading button,
.checkout-item-heading button {
  border: 0;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-size: 14px;
}

.inquiry-checkout-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.checkout-inquiry-item {
  display: grid;
  grid-template-columns: 128px minmax(0, 1fr);
  gap: 28px;
  padding: 30px 0;
  border-bottom: 1px solid var(--line);
}

.checkout-thumb {
  width: 128px;
}

.checkout-item-heading {
  display: flex;
  justify-content: space-between;
  gap: 24px;
}

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

.checkout-controls label {
  margin-left: 18px;
  color: var(--ink-soft);
  font-size: 14px;
}

.checkout-note {
  width: 100%;
  margin-top: 18px;
  padding: 16px 18px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  font: inherit;
}

.inquiry-total {
  margin: 28px 0 0;
  color: var(--muted);
  text-align: right;
}

.inquiry-checkout-form {
  display: grid;
  grid-template-columns: 1fr;
  padding: 56px 54px 46px;
  border: 1px solid #e8e8e8;
  background: #f8f8f8;
}

.inquiry-checkout-form .form-row {
  margin-top: 24px;
  gap: 24px;
}

.inquiry-checkout-form > .form-field {
  grid-column: 1 / -1;
  margin-top: 24px;
}

.inquiry-checkout-form .form-field {
  display: grid;
  gap: 10px;
}

.inquiry-checkout-form .form-field span {
  color: var(--ink);
  font-family: Inter, Arial, sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.inquiry-checkout-form input,
.inquiry-checkout-form select,
.inquiry-checkout-form textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid #e5e5e5;
  background: #fafafa;
  color: var(--ink);
  font-size: 14px;
  padding: 12px 16px;
}

.inquiry-checkout-form select {
  appearance: auto;
}

.inquiry-checkout-form textarea {
  min-height: 160px;
  border-color: var(--line);
  resize: vertical;
}

.inquiry-checkout-form textarea::placeholder {
  color: #9a9a9a;
  font-size: 16px;
}

.inquiry-checkout-form .btn {
  width: 100%;
  min-height: 60px;
  margin-top: 36px;
  font-size: 14px;
  letter-spacing: 0.18em;
}

.inquiry-submit-area {
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid var(--line-soft);
  text-align: center;
}

.inquiry-submit-area .btn.dark {
  width: min(100%, 760px);
  max-width: 760px;
  margin: 0 auto;
  background: #1b1b1b;
  border-color: #1b1b1b;
  color: #fff;
}

.inquiry-privacy {
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 14px;
  text-align: center;
}

.inquiry-submit-status {
  margin: 14px auto 0;
  max-width: 560px;
  color: var(--red);
  font-size: 13px;
  line-height: 1.6;
}

.submitted-page {
  min-height: 72vh;
  display: grid;
  place-items: center;
  padding: 120px 24px;
  background: #fff;
  text-align: center;
}

.submitted-panel {
  width: min(100%, 720px);
}

.submitted-panel .section-kicker {
  justify-content: center;
  margin-bottom: 42px;
  color: var(--red);
}

.submitted-panel h1 {
  margin: 0;
  font-family: "Playfair Display", serif;
  font-size: clamp(58px, 8vw, 104px);
  font-weight: 400;
  line-height: 0.98;
  color: var(--ink);
}

.submitted-subtitle {
  margin: 28px 0 0;
  font-family: "Playfair Display", serif;
  font-size: clamp(26px, 3.4vw, 42px);
  font-style: italic;
  color: #9a9a9a;
}

.submitted-copy {
  margin: 58px auto 0;
  max-width: 680px;
  color: #333;
  font-size: clamp(22px, 2.4vw, 34px);
  line-height: 1.75;
}

.submitted-actions {
  display: grid;
  gap: 22px;
  margin-top: 72px;
}

.submitted-actions .btn {
  min-height: 72px;
  justify-content: center;
  font-size: 15px;
  letter-spacing: 0.22em;
}

.whatsapp-float {
  position: fixed;
  right: 26px;
  bottom: 26px;
  z-index: 30;
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: #25d366;
  box-shadow: 0 12px 28px rgba(37, 211, 102, 0.35);
}

.whatsapp-float svg {
  width: 30px;
  height: 30px;
  fill: #fff;
}

.cookie-banner {
  position: fixed;
  left: clamp(18px, 4vw, 48px);
  right: clamp(18px, 4vw, 48px);
  bottom: 22px;
  z-index: 1500;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  max-width: 920px;
  margin: 0 auto;
  padding: 16px 18px;
  color: #f8f4ef;
  background: rgba(29, 27, 25, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 18px 44px rgba(22, 18, 16, 0.2);
  opacity: 1;
  transform: translateY(0);
}

.cookie-banner.is-hiding {
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
}

.cookie-banner p {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
  color: inherit;
}

.cookie-banner-action {
  flex: 0 0 auto;
  min-width: 88px;
  height: 40px;
  padding: 0 20px;
  border: 1px solid #f8f4ef;
  background: #f8f4ef;
  color: #1d1b19;
  font: 700 12px/1 var(--font-sans);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
}

.cookie-banner-action:hover {
  background: #ffffff;
}

.footer {
  /* Footer compact pass */
  margin-top: 104px;
  padding: 42px 28px 42px;
  background: var(--china-red);
  color: #fff;
}

/* About footer attaches to CTA pass */
main:has(.visit-cta) + .home-footer {
  margin-top: 0;
}

.home-footer {
  padding: 44px clamp(34px, 6vw, 136px) 32px;
}

.footer-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-bottom: 40px;
  color: rgba(255, 255, 255, 0.76);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 15px;
  letter-spacing: 0.08em;
}

.footer-brand strong {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 999px;
  background: #fff;
  border: 2px solid rgba(222, 222, 222, 0.78);
}

.footer-brand img {
  width: 56px;
  height: 56px;
  object-fit: contain;
}

.footer-layout {
  display: grid;
  grid-template-columns: minmax(200px, 1.1fr) minmax(300px, 1.45fr) minmax(240px, 1fr);
  gap: clamp(44px, 6vw, 112px);
  align-items: start;
  max-width: 1600px;
  margin: 0 auto;
}

.footer-about {
  max-width: 330px;
}

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

.footer-about p + p {
  margin-top: 8px;
}

.footer-menu {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.footer-contact {
  margin-top: 0;
}

.footer-social {
  margin-top: 30px;
}

.footer-social div {
  display: flex;
  gap: 16px;
  margin-top: 14px;
}

.footer-social a {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(222, 222, 222, 0.62);
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
}

.footer-social svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.footer p,
.footer a {
  display: block;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  line-height: 1.45;
}

.footer h4 {
  margin: 0 0 18px;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
}

.footer-contact h4:not(:first-child) {
  margin-top: 24px;
}

.footer-menu a {
  margin-top: 15px;
}

.footer-menu h4 + a {
  margin-top: 0;
}

.footer-phone {
  color: #fff;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.18rem, 1.45vw, 1.55rem);
  line-height: 1.55;
}

.footer-phone span {
  display: grid;
  grid-template-columns: 5em max-content;
  column-gap: 0.25em;
  align-items: baseline;
}

.footer-phone b,
.footer-phone em {
  font: inherit;
  font-style: normal;
  font-weight: inherit;
}

.footer-phone b {
  white-space: nowrap;
}

.footer-contact p {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.52);
}

.footer-legal {
  max-width: 1600px;
  margin: 42px auto 0;
  padding-top: 20px;
  border-top: 1px solid rgba(222, 222, 222, 0.36);
  display: flex;
  justify-content: space-between;
  gap: 22px;
  text-align: left;
}

.footer-legal nav {
  display: flex;
  gap: 22px;
}

.footer-legal a,
.footer-legal p {
  display: inline-block;
  margin: 0;
  color: rgba(255, 255, 255, 0.5);
  font-size: 12px;
}

.footer-legal p {
  display: inline-block;
}

.page-hero {
  max-width: 1440px;
  margin: 0 auto;
  padding: 120px 48px 86px;
  border-bottom: 1px solid var(--line);
}

.page-hero.compact {
  padding-bottom: 64px;
}

.page-hero h1,
.contact-page h1 {
  max-width: 880px;
  color: var(--muted);
  font-size: clamp(3.2rem, 6vw, 5.3rem);
  line-height: 1.03;
}

.page-hero p,
.contact-copy p,
.contact-card p {
  max-width: 620px;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.9;
}

.page-hero .btn {
  margin-top: 26px;
}

.about-hero,
.yiwu-showroom-feature,
.certification-section {
  max-width: 1600px;
  margin: 0 auto;
  padding-left: 48px;
  padding-right: 48px;
}

.about-hero {
  padding-top: 96px;
  padding-bottom: 90px;
  display: block;
}

.about-hero-copy,
.yiwu-showroom-copy {
  max-width: 1180px;
  margin-bottom: 72px;
}

.about-kicker {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--red);
  font-family: "Montserrat", Inter, Arial, sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.28em;
}

.about-kicker span {
  width: 42px;
  height: 1px;
  background: var(--red);
}

.about-hero h1,
.yiwu-showroom-copy h2,
.certification-section h2 {
  max-width: 860px;
  margin: 46px 0 0;
  color: var(--ink);
  font-size: clamp(3.2rem, 4.2vw, 5.2rem);
  font-weight: 400;
  line-height: 1.08;
}

.about-subtitle,
.showroom-subtitle {
  margin: 26px 0 0;
  color: #7f7f7f;
  font-family: "Playfair Display", "Songti SC", serif;
  font-size: clamp(1.45rem, 1.65vw, 2.25rem);
  font-style: italic;
  line-height: 1.18;
  white-space: nowrap;
}

.about-side-image {
  display: none;
}

.about-hero-visual {
  min-height: auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  background: rgba(255, 255, 255, 0.42);
}

.about-hero-visual img {
  width: 100%;
  height: 520px;
  min-height: 0;
  display: block;
  object-fit: cover;
  border: 1px solid rgba(222, 222, 222, 0.85);
}

/* About hero stats adjacency pass */
.about-hero:has(+ .stats.wide) {
  padding-bottom: 0;
}

.about-hero + .stats.wide {
  margin-top: -20px;
}

.catalog-hero {
  max-width: 1440px;
  margin: 0 auto;
  padding: 64px 48px 72px;
  border-bottom: 1px solid var(--line);
}

.catalog-hero nav {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--muted);
  font-size: 13px;
  letter-spacing: 0.08em;
}

.catalog-hero nav a {
  color: inherit;
}

.catalog-hero nav strong {
  color: var(--ink);
  font-weight: 500;
}

.catalog-hero h1 {
  margin: 26px 0 8px;
  color: var(--ink);
  font-size: clamp(2rem, 3.1vw, 3.2rem);
  line-height: 1;
}

.catalog-hero p {
  color: var(--muted);
  font-family: "Playfair Display", serif;
  font-size: 22px;
  font-style: italic;
}

.catalog-layout {
  max-width: 1440px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 240px 1fr;
  align-items: start;
  gap: 54px;
  padding: 70px 48px 0;
}

.product-catalog {
  padding-bottom: 90px;
}

.catalog-sidebar {
  grid-column: 1;
  position: sticky;
  top: 126px;
  align-self: start;
  max-height: calc(100vh - 146px);
  padding-bottom: 10px;
  border-top: 1px solid var(--line);
  overflow-y: auto;
  overscroll-behavior: contain;
}

@media (min-width: 981px) {
  .product-catalog.is-sidebar-fixed .catalog-sidebar {
    position: fixed;
    top: 126px;
    left: max(48px, calc((100vw - 1440px) / 2 + 48px));
    width: 240px;
    z-index: 120;
    background: var(--cream);
  }
}

.catalog-sidebar > span {
  display: block;
  padding: 12px 0;
  color: var(--red);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.catalog-sidebar a {
  display: block;
  padding: 10px 0;
  border-top: 1px solid var(--line);
  color: var(--ink);
  font-size: 14px;
}

.catalog-category-group {
  border-top: 1px solid var(--line);
}

.catalog-sidebar .catalog-primary-link {
  border-top: 0;
  color: var(--ink);
  font-size: 17px;
  font-weight: 600;
}

.catalog-subcategory {
  border-top: 1px solid rgba(222, 222, 222, 0.85);
}

.catalog-sidebar .catalog-subcategory-link {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
  border-top: 0;
  padding: 8px 0 7px 18px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 500;
}

.catalog-leaf-list {
  display: grid;
  gap: 2px;
  padding: 0 0 8px 34px;
}

.catalog-sidebar .catalog-leaf-list a {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
  border-top: 0;
  padding: 3px 0;
  color: var(--ink);
  font-size: 12px;
}

html[lang="es"] .catalog-sidebar .catalog-subcategory-link {
  gap: 10px;
  padding-left: 14px;
  font-size: 12.5px;
  line-height: 1.2;
}

html[lang="es"] .catalog-leaf-list {
  padding-left: 26px;
}

html[lang="es"] .catalog-sidebar .catalog-leaf-list a {
  gap: 10px;
  font-size: 11.5px;
  line-height: 1.2;
}

.catalog-sidebar a small {
  margin-left: 8px;
  color: var(--muted);
  font-size: 12px;
}

.category-count {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  margin-left: auto;
  color: var(--muted);
  font-family: "Montserrat", sans-serif;
  font-size: 0.88em;
  font-weight: 400;
  letter-spacing: 0;
  white-space: nowrap;
}

.catalog-sidebar .category-count {
  color: var(--muted);
  font-weight: 400;
}

.catalog-sidebar a.is-active {
  color: var(--red);
  font-weight: 600;
}

.catalog-sidebar a:hover {
  color: var(--red);
}

.catalog-main {
  grid-column: 2;
  min-width: 0;
}

.product-card[hidden] {
  display: none !important;
}

.catalog-empty {
  padding: 92px 0;
  color: var(--muted);
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-align: center;
}

.catalog-toolbar {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: end;
  padding-bottom: 26px;
  border-bottom: 1px solid var(--line);
}

.selected-filter {
  color: var(--muted);
  font-size: 14px;
}

.selected-filter span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-left: 10px;
  padding: 5px 11px;
  border: 1px solid var(--ink-soft);
  border-radius: 999px;
  color: var(--ink);
  font-size: 13px;
}

.selected-filter button {
  border: 0;
  background: transparent;
  color: var(--muted);
  font: inherit;
  cursor: pointer;
}

.catalog-sort {
  display: flex;
  align-items: center;
  gap: 48px;
}

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

.catalog-sort label {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--muted);
  font-size: 14px;
}

.catalog-sort select {
  min-width: 150px;
  height: 42px;
  padding: 0 38px 0 16px;
  border: 1px solid var(--ink-soft);
  background: transparent;
  color: var(--ink);
  font: inherit;
}

.catalog-category-section {
  padding-top: 34px;
}

.catalog-category-section[hidden] {
  display: none;
}

.product-row-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin: 10px 0 28px;
}

.product-row-head:not(:first-child) {
  margin-top: 70px;
}

.product-row-head span {
  color: var(--red);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.product-row-head h2 {
  margin-top: 8px;
  font-size: clamp(2rem, 3.5vw, 3.4rem);
}

.catalog-page-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 34px;
  background: transparent;
  border: 0;
}

.catalog-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 56px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.catalog-pagination[hidden] {
  display: none;
}

.catalog-pagination div {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.catalog-pagination-ellipsis {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 28px;
  height: 42px;
  color: var(--muted);
  font-weight: 600;
}

.catalog-pagination button {
  min-width: 42px;
  height: 42px;
  padding: 0 14px;
  border: 1px solid var(--line);
  background: var(--paper);
  color: var(--ink);
  font: inherit;
  font-size: 13px;
  cursor: pointer;
}

.catalog-pagination button.is-active {
  border-color: var(--red);
  background: var(--red);
  color: #fff;
}

.catalog-pagination button:disabled {
  color: var(--muted);
  cursor: not-allowed;
  opacity: 0.45;
}

.catalog-page-status {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 86px;
  padding: 0 12px;
  color: var(--ink);
  font-weight: 600;
  text-align: center;
}

.catalog-page-status select {
  min-width: 54px;
  height: 38px;
  margin: 0 6px;
  padding: 0 22px 0 10px;
  border: 1px solid var(--line);
  background: var(--paper);
  color: var(--ink);
  font: inherit;
  font-weight: 600;
}

.catalog-page-status span {
  color: var(--muted);
  font-weight: 500;
}

.catalog-page-status em {
  color: var(--muted);
  font-style: normal;
  font-weight: 500;
}

.product-detail-hero {
  max-width: 1500px;
  margin: 0 auto;
  padding: 84px 48px 70px;
}

.detail-breadcrumb {
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
}

.detail-breadcrumb strong {
  color: var(--ink);
}

.product-detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(390px, 0.9fr);
  gap: clamp(56px, 7vw, 110px);
  align-items: start;
  margin-top: 52px;
}

.detail-gallery {
  min-width: 0;
}

.detail-main-image {
  margin: 0;
  background: #fff;
  border: 1px solid var(--line);
}

.detail-main-image img {
  width: 100%;
  aspect-ratio: 1 / 1;
  display: block;
  object-fit: contain;
  object-position: center;
  background: #fff;
}

.detail-thumbnails {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 22px;
}

.detail-thumbnails[hidden] {
  display: none;
}

.detail-thumb {
  width: 86px;
  aspect-ratio: 1 / 1;
  display: grid;
  place-items: center;
  border: 1px solid rgba(34, 27, 23, 0.08);
  padding: 0;
  background: #fff;
  cursor: pointer;
  opacity: 0.68;
  transition: opacity 0.18s ease, box-shadow 0.18s ease;
}

.detail-thumb img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}

.detail-thumb.is-active {
  opacity: 1;
  box-shadow: inset 0 0 0 1px rgba(34, 27, 23, 0.32);
}

.detail-summary {
  padding-top: 10px;
}

/* Product detail compact pass */
.detail-summary h1 {
  margin: 16px 0 0;
  color: var(--ink);
  font-size: clamp(1.85rem, 2.55vw, 3rem);
  font-weight: 400;
  line-height: 1.12;
}

.detail-en {
  display: none;
}

.detail-intro {
  margin: 34px 0 0;
  max-width: 620px;
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 1.9;
}

.detail-specs {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  margin: 30px 0 0;
  border-top: 1px solid var(--ink);
  background: transparent;
}

.detail-specs div {
  display: grid;
  grid-template-columns: 160px minmax(0, 1fr);
  align-items: center;
  min-height: 0;
  padding: 14px 0;
  border-bottom: 1px solid var(--line-soft);
}

.detail-specs div[hidden] {
  display: none;
}

.detail-specs div:last-child {
  border-bottom: 1px solid var(--line-soft);
}

.detail-specs dt {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.18em;
}

.detail-specs dd {
  margin: 0;
  color: var(--ink);
  font-size: 16px;
  line-height: 1.5;
  text-align: right;
}

.detail-quantity {
  margin-top: 26px;
}

.detail-quantity label {
  display: block;
  margin-bottom: 14px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 600;
}

.detail-quantity-control {
  display: grid;
  grid-template-columns: 64px minmax(180px, 1fr) 64px auto;
  align-items: center;
  gap: 12px;
  max-width: none;
}

.detail-quantity-control button,
.detail-quantity-control output {
  height: 52px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  font: inherit;
  font-size: 18px;
}

.detail-quantity-control button {
  cursor: pointer;
}

.detail-quantity-control button:disabled {
  cursor: not-allowed;
  opacity: 0.4;
}

.detail-quantity-control output {
  font-size: 18px;
}

.detail-quantity-control span {
  color: var(--ink-soft);
  font-size: 14px;
}

.detail-quantity-step {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 12px;
}

.detail-note {
  display: block;
  margin-top: 26px;
}

.detail-note span {
  display: block;
  margin-bottom: 12px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 600;
}

.detail-note textarea {
  width: 100%;
  min-height: 96px;
  border: 1px solid var(--line);
  padding: 16px 18px;
  color: var(--ink);
  font: inherit;
  font-size: 14px;
  line-height: 1.6;
  resize: vertical;
}

.detail-note textarea::placeholder {
  color: #a6acb5;
}

.detail-actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  margin-top: 26px;
}

.detail-actions .btn {
  width: 100%;
  min-height: 52px;
  font-size: 12px;
  letter-spacing: 0.16em;
}

.detail-add-btn {
  border-color: #1b1b1b;
  background: #1b1b1b;
  color: #fff;
}

.detail-color-section {
  max-width: 1720px;
  margin: 0 auto;
  padding: 36px 48px 112px;
}

.detail-color-section h2 {
  margin: 26px 0 0;
  font-size: clamp(2.3rem, 4vw, 4.2rem);
  font-weight: 400;
}

.detail-color-section p {
  max-width: 760px;
  margin: 18px 0 0;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.9;
}

.detail-color-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0;
  margin-top: 36px;
  border: 0;
  background: transparent;
}

/* Product detail centered color thumbnail pass */
.detail-color-card {
  flex: 0 0 20%;
  aspect-ratio: 1 / 1;
  min-height: 0;
  display: grid;
  place-items: center;
  border: 0;
  background: #fff;
  overflow: hidden;
}

.detail-color-image {
  width: 86%;
  height: 86%;
  object-fit: contain;
  display: block;
}

.detail-color-swatch {
  width: min(64px, 42%);
  aspect-ratio: 1 / 1;
  border-radius: 999px;
  border: 1px solid rgba(34, 27, 23, 0.12);
  background: var(--swatch);
  box-shadow: inset 0 0 0 8px rgba(255, 255, 255, 0.25);
}

.detail-not-found {
  max-width: 760px;
  margin: 0 auto;
  padding: 120px 48px;
  text-align: center;
}

.detail-not-found h1 {
  font-size: clamp(2.8rem, 5vw, 5rem);
}

.service-grid {
  max-width: 1440px;
  margin: 0 auto;
  padding: 80px 48px 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: linear-gradient(transparent 80px, var(--line) 80px);
}

.service-grid article {
  min-height: 290px;
  padding: 42px;
  background: var(--paper);
  border: 1px solid var(--line);
}

.service-grid span {
  color: var(--red);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.24em;
}

.service-grid h2 {
  margin-top: 18px;
  font-size: 34px;
}

.service-grid p {
  color: var(--ink-soft);
  line-height: 1.85;
}

.timeline-section,
.factory-story,
.yiwu-showroom-feature,
.contact-page {
  max-width: 1440px;
  margin: 0 auto;
  padding: 100px 48px 0;
}

.timeline-section {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 80px;
}

.timeline-section h2,
.factory-story h2 {
  font-size: clamp(2.3rem, 4vw, 4rem);
}

.timeline-section p,
.factory-story p {
  color: var(--ink-soft);
  line-height: 1.9;
}

.timeline-section ol {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.timeline-section li {
  display: grid;
  grid-template-columns: 0.6fr 1fr;
  gap: 30px;
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
}

.timeline-section strong {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 24px;
  font-weight: 400;
}

.timeline-section li span {
  color: var(--ink-soft);
  line-height: 1.75;
}

.stats.wide {
  max-width: none;
  width: 100%;
  margin: 0;
}

.factory-story {
  display: grid;
  grid-template-columns: 1fr 0.8fr 0.8fr;
  gap: 1px;
}

.story-card {
  padding: 42px;
  background: var(--paper);
  border: 1px solid var(--line);
}

.story-card h3 {
  font-size: 32px;
}

.yiwu-showroom-feature {
  max-width: 1600px;
  padding-top: 100px;
  padding-bottom: 0;
  display: block;
}

.showroom-kicker {
  color: var(--red);
}

.yiwu-showroom-copy h2,
.showroom-subtitle {
  white-space: nowrap;
}

.yiwu-showroom-visual {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  background: rgba(255, 255, 255, 0.42);
}

.yiwu-showroom-visual img {
  width: 100%;
  height: 360px;
  display: block;
  object-fit: cover;
  border: 1px solid rgba(222, 222, 222, 0.85);
}

.yiwu-showroom-visual .showroom-main {
  grid-column: 1 / -1;
  height: auto;
  aspect-ratio: 16 / 8;
  object-fit: cover;
  background: transparent;
}

.certification-section {
  margin: 96px auto 0;
  padding-top: 0;
  padding-bottom: 118px;
}

.certification-section p {
  max-width: 920px;
  margin: 34px 0 0;
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 1.9;
}

.certification-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 18px;
  margin-top: 82px;
}

.certification-grid span {
  min-height: 120px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.38);
  color: var(--ink);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-align: center;
}

.visit-cta {
  margin-top: 0;
  padding: 120px 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #181817;
  color: #fff;
  text-align: center;
}

.visit-cta .section-kicker {
  justify-content: center;
  color: var(--muted);
}

.visit-cta h2 {
  margin: 30px auto 0;
  width: min(100%, 1120px);
  font-size: clamp(3rem, 4.8vw, 5rem);
  font-weight: 400;
  line-height: 1.15;
  text-align: center;
  text-wrap: balance;
  transform: translateX(24px);
}

.visit-cta p {
  width: min(100%, 920px);
  margin: 24px auto 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 16px;
  line-height: 1.85;
  text-align: center;
}

.btn.light {
  margin-top: 50px;
  align-self: center;
  background: #fff;
  color: var(--ink);
}

.desktop-process {
  max-width: 1440px;
  margin: 90px auto 0;
}

.showroom-location {
  /* Legacy showroom map suppression pass */
  display: none;
  max-width: 1440px;
  margin: 90px auto 0;
  padding: 0 48px;
}

.location-map {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #e8eee2;
}

.location-map iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.location-card {
  position: absolute;
  top: 24px;
  left: 24px;
  z-index: 1;
  max-width: 430px;
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 16px;
  padding: 22px 24px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(222, 222, 222, 0.95);
  box-shadow: 0 14px 34px rgba(47, 39, 33, 0.12);
}

.location-card > span {
  color: var(--red);
  font-size: 28px;
  line-height: 1;
}

.location-card strong {
  color: var(--ink);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 22px;
  font-weight: 400;
}

.location-card p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.map-link {
  position: absolute;
  right: 18px;
  bottom: 18px;
  z-index: 1;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--ink);
  font-family: "Montserrat", Inter, Arial, sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
}

.contact-page {
  max-width: none;
  margin: 0;
  padding: 0;
}

.contact-hero {
  min-height: 330px;
  display: grid;
  place-items: center;
  align-content: center;
  padding: 88px 48px 116px;
  border-bottom: 1px solid var(--line);
  text-align: center;
}

.contact-hero h1 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(3.4rem, 5vw, 5.7rem);
  font-weight: 400;
  line-height: 1.08;
}

.contact-hero p {
  margin: 22px 0 0;
  color: var(--muted);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.8rem, 2.4vw, 2.7rem);
}

.contact-methods {
  max-width: 1440px;
  margin: 0 auto;
  padding: 108px 48px 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.contact-methods article {
  min-height: 168px;
  display: grid;
  place-items: center;
  align-content: center;
  padding: 24px 20px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.5);
  text-align: center;
  overflow: hidden;
  transition:
    background-color 0.22s ease,
    border-color 0.22s ease,
    box-shadow 0.22s ease;
}

.contact-method-link {
  width: 100%;
  min-height: 0;
  display: grid;
  place-items: center;
  align-content: center;
  color: inherit;
  text-decoration: none;
}

.contact-methods article:has(.contact-method-link) {
  cursor: pointer;
}

.contact-methods article:has(.contact-method-link):hover,
.contact-methods article:has(.contact-method-link):focus-within {
  background: rgba(255, 255, 255, 0.5);
  border-color: #b8b8b8;
  box-shadow: inset 0 0 0 1px #b8b8b8;
}

.contact-methods article:has(.contact-method-link):hover .contact-method-link,
.contact-methods article:has(.contact-method-link):hover span,
.contact-methods article:has(.contact-method-link):hover strong,
.contact-methods article:has(.contact-method-link):hover p,
.contact-methods article:has(.contact-method-link):focus-within .contact-method-link,
.contact-methods article:has(.contact-method-link):focus-within span,
.contact-methods article:has(.contact-method-link):focus-within strong,
.contact-methods article:has(.contact-method-link):focus-within p {
  color: var(--red);
}

.contact-methods span,
.contact-form label {
  color: var(--red);
  font-family: "Montserrat", Inter, Arial, sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
}

.contact-methods strong {
  max-width: 100%;
  margin-top: 22px;
  color: var(--ink);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.35rem, 1.75vw, 2rem);
  font-weight: 400;
  line-height: 1.55;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.contact-methods article:not(:has(.contact-method-link)) strong {
  margin-top: 16px;
  font-size: clamp(1.1rem, 1.3vw, 1.45rem);
  line-height: 1.16;
}

.contact-methods span,
.contact-methods strong,
.contact-methods p,
.contact-method-link {
  transition: color 0.22s ease;
}

.contact-email-link {
  color: inherit;
  text-decoration: none;
}

.contact-email-link:hover {
  color: var(--red);
}

.contact-whatsapp-lines {
  width: fit-content;
  margin: 28px auto 0;
  display: grid;
  gap: 0.32rem;
  text-align: left;
}

.contact-whatsapp-line {
  display: grid;
  grid-template-columns: 5.4em max-content;
  align-items: baseline;
  column-gap: 0.65rem;
  color: var(--ink);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.35rem, 1.75vw, 2rem);
  font-weight: 400;
  line-height: 1.35;
  text-decoration: none;
}

.contact-whatsapp-line em {
  color: var(--ink);
  font-style: normal;
  text-align: right;
}

.contact-whatsapp-line b {
  font-weight: 400;
  white-space: nowrap;
}

.contact-methods p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.contact-inquiry-section {
  max-width: 1440px;
  margin: 0 auto;
  padding: 86px 48px 0;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 56px;
}

.contact-info-panel {
  padding-top: 6px;
}

.contact-info-panel h2 {
  margin: 22px 0 0;
  color: var(--ink);
  font-size: clamp(2rem, 3vw, 3.2rem);
  font-weight: 400;
  line-height: 1.06;
  white-space: nowrap;
}

html[lang="es"] .contact-info-panel h2 {
  max-width: 720px;
  white-space: pre-line;
}

html[lang="pt-BR"] .contact-info-panel h2,
html[lang="id"] .contact-info-panel h2,
html[lang="fr"] .contact-info-panel h2 {
  max-width: 720px;
  font-size: clamp(1.8rem, 2.45vw, 2.7rem);
  white-space: normal;
}

.contact-info-panel > p {
  max-width: 620px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
}

.contact-info-panel dl {
  max-width: 620px;
  margin: 50px 0 0;
}

.contact-info-panel dl div {
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}

.contact-info-panel dt {
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 13px;
}

.contact-info-panel dd {
  margin: 0;
  color: var(--ink);
  font-size: 14px;
  line-height: 1.65;
}

.contact-form {
  padding: 64px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.48);
}

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

.contact-form label {
  display: grid;
  color: var(--ink);
  letter-spacing: 0.14em;
}

.form-field {
  grid-template-rows: 22px auto;
  align-items: start;
  gap: 14px;
}

.form-field span {
  display: flex;
  align-items: start;
  min-height: 22px;
  line-height: 1.2;
}

.contact-form > .form-field,
.contact-form > .form-row {
  margin-top: 28px;
}

.contact-form > .form-row:first-child {
  margin-top: 0;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 58px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.68);
  color: var(--ink);
  font: inherit;
  font-size: 16px;
  padding: 16px 18px;
}

.contact-form textarea {
  min-height: 210px;
  resize: vertical;
}

.contact-form textarea::placeholder {
  color: #9a9a9a;
}

.form-actions {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  text-align: center;
}

/* Contact form action centered pass */
.form-actions .btn {
  width: min(260px, 100%);
  justify-content: center;
  white-space: nowrap;
  font-size: 12px;
  letter-spacing: 0.18em;
}

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

.btn.dark span {
  margin-left: 12px;
}

.form-actions p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
  text-align: center;
}

/* Global compact pass */
.topbar {
  height: 58px;
  padding: 0 44px;
}

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

.main-nav {
  height: 46px;
  /* Desktop nav compact language pass */
  gap: clamp(18px, 2.2vw, 34px);
  font-size: 14px;
}

.main-nav .nav-link,
.nav-item {
  height: 46px;
}

.nav-dropdown {
  padding: 14px;
}

@media (min-width: 981px) {
  .products-page .site-header::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 58px;
    border-top: 1px solid var(--line);
    pointer-events: none;
  }

  .products-page .topbar {
    position: relative;
    z-index: 3;
    border-bottom: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(14px);
  }

  .products-page .language-switcher {
    z-index: 4;
  }

  .products-page .language-menu {
    top: calc(100% + 8px);
    z-index: 4000;
  }

  .products-page .main-nav {
    position: relative;
    z-index: 1;
    border-top: 0;
    border-bottom: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(14px);
  }

}

.nav-dropdown a {
  min-height: 50px;
  padding: 10px 12px;
}

.hero {
  min-height: 660px;
}

.hero-content {
  padding: 142px 44px 96px;
}

h1 {
  max-width: 660px;
  font-size: clamp(2.85rem, 4.7vw, 4.8rem);
}

.hero p {
  margin-top: 30px;
  font-size: clamp(0.88rem, 1.08vw, 1.18rem);
}

.btn {
  min-height: 40px;
  padding: 0 24px;
  font-size: 11px;
}

.stats div {
  padding: 26px 18px;
}

.stats strong {
  font-size: clamp(1.65rem, 2.5vw, 2.25rem);
}

.section,
.catalog,
.factory,
.contact-strip,
.oem-band {
  padding: 88px 44px 0;
}

.intro-image {
  margin-bottom: 44px;
}

.intro h2,
.section-head h2,
.factory h2,
.contact-strip h2,
.oem-band h2,
.showroom-section h2,
.gel-display-section h2,
.nail-machines-section h2,
.tools-accessories-section h2,
.digital-center-section h2,
.warehouse-section h2,
.global-delivery-section h2 {
  font-size: clamp(1.85rem, 3.3vw, 3.35rem);
}

.intro p,
.factory-copy p,
.contact-strip p,
.oem-band p,
.showroom-section p,
.digital-center-section p,
.gel-display-section p,
.nail-machines-section p,
.tools-accessories-section p,
.warehouse-section p,
.global-delivery-section p {
  font-size: 14px;
  line-height: 1.75;
}

.certifications {
  margin-top: 36px;
}

.certifications strong {
  padding: 9px 16px;
  border-color: var(--line);
  font-size: 12px;
}

.market-marquee {
  margin-top: 44px;
}

.market-track {
  padding: 12px 0;
}

.trust-card-list,
.testimonial-list {
  gap: 22px;
  margin-top: 44px;
}

.trust-card-list article,
.testimonial-list article,
.service-card,
.timeline-card,
.contact-card,
.contact-form,
.inquiry-checkout-form {
  border-color: var(--line);
}

.trust-card-list article,
.testimonial-list article {
  padding: 38px 44px 42px;
}

.product-card {
  border-color: var(--line);
}

.product-media {
  min-height: 400px;
}

.product-card h3 {
  font-size: 22px;
}

.product-card p {
  font-size: 12px;
}

.page-hero,
.about-hero,
.contact-hero {
  min-height: 300px;
}

.about-hero,
.contact-hero {
  padding-top: 78px;
  padding-bottom: 96px;
}

.about-hero h1,
.page-hero h1,
.contact-hero h1 {
  font-size: clamp(2.8rem, 4.5vw, 4.8rem);
}

.catalog-layout,
.factory-story,
.timeline-section,
.service-grid,
.contact-methods,
.contact-inquiry-section,
.inquiry-page {
  padding-left: 44px;
  padding-right: 44px;
}

.contact-methods {
  padding-top: 88px;
}

.contact-methods article {
  min-height: 142px;
  padding: 22px 18px;
  border-color: var(--line);
}

.contact-inquiry-section {
  padding-top: 64px;
}

.contact-form {
  padding: 44px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  min-height: 50px;
  font-size: 14px;
  padding: 13px 16px;
}

.contact-form textarea {
  min-height: 170px;
}

.form-actions {
  margin-top: 32px;
}

.inquiry-page {
  padding-top: 96px;
  padding-bottom: 118px;
}

.inquiry-checkout-form {
  padding: 48px 48px 40px;
  border-color: var(--line);
}

.inquiry-checkout-form h2 {
  font-size: 24px;
}

.checkout-inquiry-item {
  padding: 24px 0;
}

.checkout-thumb {
  width: 112px;
}

.inquiry-list-heading h1 {
  font-size: 27px;
}

.footer {
  border-top-color: var(--line);
}

@media (max-width: 1200px) {
  .inquiry-checkout-layout {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .inquiry-checkout-form {
    width: min(100%, 920px);
    margin: 0 auto;
  }
}

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

  .site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 2600;
    width: 100%;
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
  }

  .inquiry-panel {
    top: 64px;
  }

  .panel-card {
    max-height: calc(100vh - 64px);
  }

  .close-panel {
    top: 16px;
    right: 18px;
  }

  .panel-card h2 {
    padding: 42px 18px 14px;
    font-size: clamp(1.45rem, 8vw, 2rem);
  }

  .panel-card .section-kicker {
    top: 17px;
    left: 18px;
  }

  .panel-card li {
    grid-template-columns: 22px 72px minmax(0, 1fr) auto;
    gap: 10px;
    padding: 12px 16px;
  }

  .panel-card .inquiry-bulk-actions {
    grid-template-columns: minmax(0, 1fr) auto auto;
    gap: 10px;
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .topbar {
    /* Homepage mobile language nav placement pass */
    position: relative;
    grid-template-columns: auto auto 1fr auto;
    column-gap: 12px;
    padding: 0 22px;
  }

  /* Mobile Safari header icon sizing pass */
  .topbar > .header-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 14px;
    min-width: 104px;
  }

  .topbar .icon-button,
  .topbar .inquiry-icon {
    inline-size: 44px;
    block-size: 44px;
    min-width: 44px;
    min-height: 44px;
    padding: 0;
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
  }

  .topbar .icon-button svg,
  .topbar .inquiry-icon svg {
    width: 22px;
    height: 22px;
    min-width: 22px;
    min-height: 22px;
    flex: 0 0 22px;
  }

  .topbar .inquiry-icon span {
    top: 3px;
    right: 3px;
    min-width: 22px;
    height: 22px;
    font-size: 12px;
  }

  .mobile-menu {
    grid-column: 1;
    display: inline-flex;
  }

  .language {
    display: none;
  }

  /* Homepage mobile language trigger compact pass */
  .topbar > .language-switcher {
    grid-column: 2;
    display: inline-block;
    max-width: 36px;
  }

  .topbar > .language-switcher .language-current {
    min-width: 28px;
    height: 28px;
    font-size: 14px;
    color: var(--ink);
  }

  .topbar > .language-switcher .language-current span {
    font-size: 8px;
  }

  .topbar > .language-switcher .language-menu {
    /* Mobile language fixed overlay pass */
    position: fixed;
    top: 58px;
    left: 78px;
    z-index: 6000;
    width: min(190px, calc(100vw - 100px));
  }

  .topbar > .brand {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }

  .topbar > .header-actions {
    grid-column: 4;
  }

  .brand span {
    font-size: 14px;
    letter-spacing: 0.08em;
    white-space: nowrap;
  }

  .logo-brand {
    display: flex;
  }

  .brand small,
  .main-nav {
    display: none;
  }

  .drawer-brand small {
    display: none;
  }

  .hero {
    min-height: 540px;
  }

  .hero-content,
  .section,
  .catalog,
  .factory,
  .contact-strip,
  .oem-band {
    padding-left: 22px;
    padding-right: 22px;
  }

  .stats,
  .product-grid,
  .factory,
  .footer-grid,
  .oem-band,
  .about-hero,
  .catalog-layout,
  .service-grid,
  .timeline-section,
  .factory-story,
  .yiwu-showroom-feature,
  .contact-methods,
  .contact-inquiry-section,
  .form-row {
    grid-template-columns: 1fr;
  }

  .stats {
    /* Mobile stats no horizontal overflow pass */
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
    max-width: 100vw;
    margin-left: 0;
    margin-right: 0;
    box-sizing: border-box;
    overflow: hidden;
  }

  /* Homepage mobile stats intro adjacency pass */
  .stats + .intro {
    padding-top: 0;
  }

  .stats div {
    border-bottom: 1px solid var(--line);
    min-width: 0;
    overflow: hidden;
    padding-left: 12px;
    padding-right: 12px;
  }

  .stats strong,
  .stats span {
    max-width: 100%;
    overflow-wrap: anywhere;
    word-break: normal;
  }

  .stats strong {
    line-height: 1.05;
    white-space: normal;
  }

  html[lang="en"] .stats strong,
  html[lang="es"] .stats strong,
  html[lang="ar"] .stats strong,
  html[lang="pt-BR"] .stats strong,
  html[lang="id"] .stats strong,
  html[lang="fr"] .stats strong {
    font-size: clamp(1.5rem, 6.8vw, 2.05rem);
  }

  .stats span,
  html[lang="en"] .stats span,
  html[lang="es"] .stats span,
  html[lang="ar"] .stats span,
  html[lang="pt-BR"] .stats span,
  html[lang="id"] .stats span,
  html[lang="fr"] .stats span {
    display: flex;
    min-width: 0;
    justify-content: center;
    white-space: normal;
    font-size: clamp(7.5px, 2.15vw, 9.5px);
    line-height: 1.22;
    letter-spacing: 0.045em;
  }

  .stats div:nth-child(odd) {
    border-right: 1px solid var(--line);
  }

  .stats div:nth-child(even) {
    border-right: 0;
  }

  .stats div:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  .product-card {
    min-height: auto;
  }

  .factory-copy {
    position: static;
  }

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

  .footer {
    padding-left: 22px;
    padding-right: 22px;
  }

  .home-footer {
    padding-top: 38px;
    padding-bottom: 30px;
  }

  .footer-brand {
    gap: 14px;
    margin-bottom: 32px;
    font-size: 13px;
  }

  .footer-brand strong {
    width: 52px;
    height: 52px;
  }

  .footer-brand img {
    width: 50px;
    height: 50px;
  }

  .footer-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-menu {
    gap: 34px;
  }

  .footer-legal {
    display: block;
    margin-top: 36px;
    text-align: center;
  }

  .footer-legal nav {
    justify-content: center;
    flex-wrap: wrap;
  }

  .footer-legal p {
    display: block;
    margin-top: 18px;
  }

  .footer-about {
    max-width: 320px;
  }

  .footer-about p {
    font-size: 13px;
    line-height: 1.55;
  }

  .footer h4 {
    margin-bottom: 14px;
    font-size: 14px;
    line-height: 1.35;
  }

  .footer p,
  .footer a {
    font-size: 13px;
    line-height: 1.48;
  }

  .footer-menu a {
    margin-top: 16px;
  }

  .footer-phone {
    font-size: 16px;
    line-height: 1.5;
    letter-spacing: 0;
  }

  .footer-contact h4:not(:first-child) {
    margin-top: 20px;
  }

  .footer-contact p {
    margin-top: 10px;
    font-size: 12px;
  }

  .footer-social {
    margin-top: 24px;
  }

  .footer-social div {
    gap: 16px;
  }

  .footer-social a {
    width: 34px;
    height: 34px;
    font-size: 16px;
  }

  .footer-legal,
  .footer-legal a,
  .footer-legal p {
    font-size: 12px;
    line-height: 1.6;
  }

  .catalog-hero,
  .page-hero,
  .about-hero,
  .catalog-layout,
  .service-grid,
  .timeline-section,
  .factory-story,
  .yiwu-showroom-feature,
  .certification-section,
  .showroom-location,
  .inquiry-page,
  .contact-methods,
  .contact-inquiry-section {
    padding-left: 22px;
    padding-right: 22px;
  }

  .showroom-location {
    margin-top: 70px;
  }

  .location-map {
    min-height: 420px;
  }

  .location-card {
    left: 16px;
    right: 16px;
    top: 16px;
    max-width: none;
    padding: 18px;
  }

  .map-link {
    right: 14px;
    bottom: 14px;
  }

  .contact-hero {
    min-height: 270px;
    padding: 78px 22px 88px;
  }

  .contact-methods {
    padding-top: 64px;
    gap: 16px;
  }

  .contact-methods article {
    min-height: 148px;
  }

  .contact-whatsapp-line {
    grid-template-columns: 5.2em max-content;
    column-gap: 0.42rem;
    font-size: clamp(1.12rem, 5vw, 1.52rem);
  }

  .contact-inquiry-section {
    padding-top: 58px;
    gap: 34px;
  }

  .inquiry-page {
    min-height: 68vh;
    padding-top: 88px;
    padding-bottom: 96px;
  }

  .inquiry-checkout-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .checkout-inquiry-item {
    grid-template-columns: 92px minmax(0, 1fr);
    gap: 18px;
  }

  .checkout-thumb {
    width: 92px;
  }

  .checkout-controls {
    flex-wrap: wrap;
  }

  .inquiry-checkout-form {
    padding: 32px 20px;
  }

  .inquiry-checkout-form .form-row {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .inquiry-checkout-form input,
  .inquiry-checkout-form select {
    min-height: 46px;
  }

  .inquiry-checkout-form textarea {
    min-height: 150px;
  }

  .inquiry-empty-state h1 {
    font-size: clamp(2.25rem, 10vw, 3.2rem);
  }

  .inquiry-empty-copy {
    margin-top: 38px;
    font-size: 16px;
  }

  .contact-info-panel h2 {
    font-size: clamp(1.9rem, 8vw, 2.45rem);
    white-space: normal;
  }

  .contact-info-panel > p {
    margin-top: 18px;
    font-size: 14px;
    line-height: 1.7;
  }

  .contact-info-panel dl {
    margin-top: 34px;
  }

  .contact-info-panel dl div {
    padding: 16px 0;
  }

  .contact-form {
    padding: 30px 22px;
  }

  .form-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .form-actions .btn {
    width: 100%;
  }

  .catalog-hero {
    padding-top: 42px;
    padding-bottom: 44px;
  }

  .catalog-hero h1 {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .catalog-hero p {
    font-size: 19px;
  }

  .catalog-sidebar {
    position: static;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    max-height: none;
    overflow: visible;
  }

  .catalog-main {
    grid-column: 1;
  }

  .catalog-sidebar > span {
    grid-column: 1 / -1;
  }

  .catalog-sidebar a {
    font-size: 13px;
  }

  .catalog-sidebar .catalog-primary-link {
    font-size: 16px;
  }

  .catalog-sidebar .catalog-subcategory-link {
    padding-left: 16px;
  }

  .catalog-leaf-list {
    padding-left: 30px;
  }

  .catalog-sidebar a small {
    display: block;
    margin: 3px 0 0;
  }

  .catalog-toolbar {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .catalog-sort {
    justify-content: space-between;
    gap: 18px;
  }

  .catalog-sort select {
    min-width: 132px;
  }

  .about-hero {
    min-height: auto;
    padding-top: 82px;
    padding-bottom: 0;
  }

  .about-hero-copy {
    margin-bottom: 42px;
  }

  .about-kicker {
    gap: 14px;
    font-size: 11px;
    letter-spacing: 0.16em;
  }

  .about-kicker span {
    width: 32px;
  }

  .about-hero h1,
  .yiwu-showroom-copy h2,
  .certification-section h2 {
    margin-top: 34px;
    font-size: clamp(2.45rem, 10.5vw, 4rem);
  }

  .about-subtitle {
    margin-top: 20px;
    font-size: clamp(1.8rem, 7vw, 2.8rem);
    white-space: normal;
  }

  .showroom-subtitle {
    margin-top: 18px;
    font-size: clamp(1.55rem, 6.5vw, 2.3rem);
  }

  .yiwu-showroom-copy {
    margin-bottom: 42px;
  }

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

  .yiwu-showroom-visual img,
  .yiwu-showroom-visual .showroom-main {
    height: 240px;
  }

  .yiwu-showroom-visual .showroom-main {
    grid-column: 1 / -1;
    height: 260px;
  }

  .about-side-image {
    display: none;
  }

  .about-hero-visual {
    min-height: 360px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .about-hero-visual img {
    height: 240px;
    min-height: 0;
  }

  .about-hero-visual img:first-child {
    grid-column: 1 / -1;
    height: 260px;
    min-height: 0;
  }

  .certification-section {
    padding-bottom: 74px;
  }

  .certification-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-top: 42px;
  }

  .certification-grid span {
    min-height: 82px;
    padding: 0 12px;
    font-size: 13px;
  }

  .visit-cta {
    padding: 78px 22px;
  }

  .visit-cta h2 {
    width: 100%;
    font-size: clamp(1.55rem, 6vw, 2.1rem);
    line-height: 1.15;
    letter-spacing: 0;
    white-space: nowrap;
    transform: none;
  }

  .visit-cta p {
    font-size: 15px;
  }

  .catalog-main .catalog-page-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0;
    border: 0;
    background: transparent;
  }

  .catalog-main .catalog-page-grid .product-card {
    min-height: 332px;
    padding-bottom: 8px;
    background: #fff;
  }

  .catalog-main .catalog-page-grid .product-photo,
  .catalog-main .catalog-page-grid .product-art {
    width: calc(100% - 16px);
    aspect-ratio: 1 / 1;
    height: auto;
    min-height: 0;
    margin: 8px;
  }

  .catalog-main .catalog-page-grid .product-card p {
    margin: 4px 10px 8px;
    color: var(--red);
    font-size: 12px;
    letter-spacing: 0.08em;
    text-align: center;
  }

  .catalog-main .catalog-page-grid .product-card h3 {
    margin: 0 10px;
    font-size: 17px;
    line-height: 1.25;
    text-align: center;
  }

  .catalog-main .catalog-page-grid .product-card-info {
    gap: 5px;
    margin: 0 10px 12px;
    text-align: center;
  }

  .catalog-main .catalog-page-grid .product-card-info h3 {
    margin: 0;
    font-size: 17px;
    line-height: 1.25;
  }

  .catalog-main .catalog-page-grid .product-sku,
  .catalog-main .catalog-page-grid .product-moq {
    font-size: 10px;
    letter-spacing: 0.08em;
  }

  .catalog-main .catalog-page-grid .product-card span {
    margin: 8px 10px 12px;
    color: var(--muted);
    font-size: 12px;
    line-height: 1.45;
    text-align: center;
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }

  .catalog-main .catalog-page-grid .product-card button {
    min-height: 34px;
    margin: 8px 10px 10px;
    font-size: 10px;
    letter-spacing: 0.12em;
  }

  .catalog-pagination {
    flex-wrap: nowrap;
    gap: 5px;
    margin-top: 34px;
  }

  .catalog-pagination.is-compact button {
    min-width: 48px;
    height: 42px;
    padding: 0 7px;
    font-size: 12px;
  }

  .catalog-pagination.is-compact .catalog-page-status {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 112px;
    padding: 0 2px;
    font-size: 12px;
    white-space: nowrap;
  }

  .catalog-pagination.is-compact .catalog-page-status select {
    min-width: 46px;
    height: 42px;
    margin: 0 3px;
    padding-left: 8px;
    font-size: 13px;
  }

  .product-row-head,
  .timeline-section li {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 981px) {
  /* Homepage single-line title pass */
  .intro,
  .showroom-section,
  .gel-display-section,
  .nail-machines-section,
  .tools-accessories-section,
  .digital-center-section,
  .warehouse-section,
  .global-delivery-section {
    max-width: 1440px;
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(420px, 0.92fr);
    align-items: start;
    gap: 78px;
    text-align: left;
  }

  .intro {
    padding-top: 0;
    row-gap: 0;
  }

  .intro-image,
  .showroom-image,
  .gel-display-image,
  .nail-machines-image,
  .tools-accessories-image,
  .digital-center-image,
  .warehouse-image,
  .global-delivery-image {
    grid-column: 1;
    grid-row: 1;
    width: 100%;
    margin: 0;
  }

  .section-copy {
    grid-column: 2;
    grid-row: 1;
    align-self: center;
  }

  /* Homepage alternating story pass */
  .showroom-section .section-copy,
  .nail-machines-section .section-copy,
  .digital-center-section .section-copy,
  .global-delivery-section .section-copy {
    grid-column: 1;
  }

  .showroom-section .showroom-image,
  .nail-machines-section .nail-machines-image,
  .digital-center-section .digital-center-image,
  .global-delivery-section .global-delivery-image {
    grid-column: 2;
  }

  .intro h2,
  .intro p,
  .certifications,
  .intro-inquiry,
  .showroom-section h2,
  .showroom-section p,
  .gel-display-section h2,
  .gel-display-section p,
  .nail-machines-section h2,
  .nail-machines-section p,
  .tools-accessories-section h2,
  .tools-accessories-section p,
  .digital-center-section h2,
  .digital-center-section p,
  .warehouse-section h2,
  .warehouse-section p,
  .warehouse-section .btn,
  .global-delivery-section h2,
  .global-delivery-section p,
  .trust-card-list {
    grid-column: 2;
  }

  .intro h2,
  .showroom-section h2,
  .gel-display-section h2,
  .nail-machines-section h2,
  .tools-accessories-section h2,
  .digital-center-section h2,
  .warehouse-section h2,
  .global-delivery-section h2 {
    margin-top: 0;
    font-size: clamp(1.9rem, 2.25vw, 2.75rem);
    line-height: 1.12;
    white-space: nowrap;
    word-break: keep-all;
    overflow-wrap: normal;
  }

  .section-head h2,
  .testimonials-section h2,
  .global-reach-section h2 {
    font-size: clamp(1.9rem, 2.25vw, 2.75rem);
    line-height: 1.12;
    white-space: nowrap;
    word-break: keep-all;
    overflow-wrap: normal;
  }

  .intro p,
  .showroom-section p,
  .gel-display-section p,
  .nail-machines-section p,
  .tools-accessories-section p,
  .digital-center-section p,
  .warehouse-section p,
  .global-delivery-section p {
    margin-top: 18px;
    font-size: 16px;
  }

  .certifications div {
    gap: 8px;
  }

  .certifications strong {
    min-height: 48px;
    display: grid;
    place-items: center;
    padding: 10px 6px;
    font-size: 12px;
    letter-spacing: 0.04em;
    line-height: 1;
    text-align: center;
    white-space: nowrap;
  }

  .intro-image,
  .warehouse-image,
  .global-delivery-image {
    aspect-ratio: 4 / 3;
  }

  .showroom-image {
    aspect-ratio: 2176 / 1180;
    object-fit: cover;
    object-position: center;
  }

  .gel-display-image,
  .digital-center-image {
    aspect-ratio: 4 / 3;
  }

  .tools-accessories-image {
    aspect-ratio: 4 / 3;
    max-height: 620px;
  }

  /* Homepage desktop uniform story image pass */
  .showroom-section,
  .gel-display-section,
  .nail-machines-section,
  .tools-accessories-section,
  .digital-center-section,
  .warehouse-section,
  .global-delivery-section {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .showroom-image,
  .gel-display-image,
  .nail-machines-image,
  .tools-accessories-image,
  .digital-center-image,
  .warehouse-image,
  .global-delivery-image {
    width: 100%;
    aspect-ratio: 4 / 3;
    max-height: none;
    margin-left: 0;
    margin-right: 0;
    object-fit: cover;
  }

  .showroom-section {
    padding-top: 0;
  }

  .market-marquee {
    grid-column: 1 / -1;
    grid-row: auto;
    margin-top: 0;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
  }

  .market-track {
    gap: 58px;
    padding: 18px 0;
    animation-duration: 36s;
  }

  .trust-card-list {
    grid-column: 1 / -1;
    grid-row: auto;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin-top: 42px;
  }

  .trust-card-list article {
    padding: 28px 30px;
  }

  .trust-card-list span {
    margin-bottom: 14px;
    font-size: 24px;
  }

  .trust-card-list h3 {
    font-size: 2rem;
  }

  .trust-card-list p {
    margin-top: 14px;
    font-size: 15px;
    line-height: 1.75;
  }

  .testimonials-section {
    max-width: 1440px;
  }

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

  .testimonial-list article {
    padding: 30px 26px 28px;
  }

  .testimonial-list article > p {
    font-size: 14px;
    line-height: 1.8;
  }

  .testimonial-author {
    grid-template-columns: 58px 1fr;
    column-gap: 16px;
    margin-top: auto;
    padding-top: 22px;
  }

  .testimonial-author img {
    width: 58px;
    height: 58px;
  }

  .testimonial-author strong {
    font-size: 18px;
  }

  .testimonial-author span {
    font-size: 13px;
  }

  .global-reach-section {
    max-width: 1440px;
  }

  .global-reach-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
  }

  .global-reach-grid article {
    min-height: 240px;
  }

  .global-reach-grid strong {
    font-size: clamp(4.5rem, 7vw, 6.4rem);
  }
}

@media (max-width: 640px) {
  .topbar {
    height: 66px;
  }

  /* Homepage mobile hero image crop pass */
  /* Homepage mobile hero vertical position pass */
  .hero {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    min-height: 0;
    height: auto;
    aspect-ratio: 1 / 1;
    background: #1d1712;
  }

  .hero img {
    height: 100%;
    /* Homepage mobile hero fill pass */
    /* Homepage mobile hero storefront focus pass */
    object-fit: cover;
    object-position: 50% 0;
    transform: none;
    background: #1d1712;
  }

  /* Homepage mobile hero compact copy pass */
  /* Homepage mobile hero copy refined pass */
  /* Homepage mobile hero title two-line pass */
  .hero-wash {
    background:
      linear-gradient(90deg, rgba(26, 21, 18, 0.46), rgba(26, 21, 18, 0.28) 58%, rgba(26, 21, 18, 0.1)),
      linear-gradient(0deg, rgba(26, 21, 18, 0.34), rgba(26, 21, 18, 0.06) 52%, rgba(26, 21, 18, 0.16));
  }

  .hero-content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 0 24px 26px;
  }

  h1 {
    max-width: min(360px, calc(100vw - 56px));
    margin-top: 18px;
    font-size: clamp(1.62rem, 6.9vw, 1.95rem);
    line-height: 1.12;
  }

  .hero h1 {
    max-width: min(360px, calc(100vw - 56px));
    white-space: normal;
  }

  .hero h1 span {
    display: block;
    white-space: nowrap;
  }

  .hero p {
    max-width: 300px;
    margin-top: 9px;
    font-family: "Playfair Display", Georgia, "Songti SC", "SimSun", serif;
    font-size: 9px;
    font-weight: 400;
    line-height: 1.45;
    letter-spacing: 0.04em;
    text-wrap: balance;
  }

  html[lang="en"] .hero h1,
  html[lang="es"] .hero h1,
  html[lang="pt-BR"] .hero h1,
  html[lang="id"] .hero h1,
  html[lang="fr"] .hero h1 {
    max-width: min(340px, calc(100vw - 56px));
    font-size: clamp(1.34rem, 5.45vw, 1.62rem);
    line-height: 1.08;
  }

  html[lang="en"] .hero p,
  html[lang="es"] .hero p,
  html[lang="pt-BR"] .hero p,
  html[lang="id"] .hero p,
  html[lang="fr"] .hero p {
    max-width: min(330px, calc(100vw - 56px));
    font-size: 8.5px;
    line-height: 1.42;
    letter-spacing: 0.02em;
  }

  html[lang="ar"] .hero-content {
    text-align: left;
  }

  html[lang="ar"] .hero h1 {
    max-width: min(340px, calc(100vw - 56px));
    font-size: clamp(1.36rem, 5.45vw, 1.62rem);
    line-height: 1.2;
  }

  html[lang="ar"] .hero p {
    max-width: min(330px, calc(100vw - 56px));
    font-size: 8.5px;
    line-height: 1.55;
    letter-spacing: 0;
  }

  .about-hero {
    padding-top: 64px;
    padding-bottom: 0;
  }

  .about-hero h1,
  .yiwu-showroom-copy h2,
  .certification-section h2 {
    max-width: none;
    margin-top: 28px;
    font-size: clamp(2.1rem, 9.8vw, 2.55rem);
    line-height: 1.05;
    letter-spacing: 0;
    white-space: nowrap;
  }

  /* Factory mobile English heading fit pass */
  html[lang="en"] .about-hero h1,
  html[lang="en"] .yiwu-showroom-copy h2,
  html[lang="en"] .certification-section h2 {
    max-width: 100%;
    font-size: clamp(1.72rem, 7.4vw, 2.05rem);
    line-height: 1.12;
    white-space: normal;
    overflow-wrap: anywhere;
    word-break: normal;
  }

  html[lang="en"] .visit-cta h2 {
    max-width: 100%;
    font-size: clamp(1.45rem, 6.4vw, 1.85rem);
    line-height: 1.15;
    white-space: normal;
    overflow-wrap: anywhere;
    word-break: normal;
  }

  /* Factory mobile Spanish heading fit pass */
  html[lang="es"] .about-hero h1,
  html[lang="es"] .yiwu-showroom-copy h2,
  html[lang="es"] .certification-section h2 {
    max-width: 100%;
    font-size: clamp(1.52rem, 6.8vw, 1.95rem);
    line-height: 1.12;
    white-space: normal;
    overflow-wrap: anywhere;
    word-break: normal;
  }

  html[lang="es"] .visit-cta h2 {
    max-width: 100%;
    font-size: clamp(1.35rem, 5.9vw, 1.7rem);
    line-height: 1.16;
    white-space: normal;
    overflow-wrap: anywhere;
    word-break: normal;
  }

  html[lang="pt-BR"] .about-hero h1,
  html[lang="pt-BR"] .yiwu-showroom-copy h2,
  html[lang="pt-BR"] .certification-section h2,
  html[lang="id"] .about-hero h1,
  html[lang="id"] .yiwu-showroom-copy h2,
  html[lang="id"] .certification-section h2,
  html[lang="fr"] .about-hero h1,
  html[lang="fr"] .yiwu-showroom-copy h2,
  html[lang="fr"] .certification-section h2 {
    max-width: 100%;
    font-size: clamp(1.48rem, 6.4vw, 1.88rem);
    line-height: 1.14;
    white-space: normal;
    overflow-wrap: anywhere;
    word-break: normal;
  }

  html[lang="pt-BR"] .visit-cta h2,
  html[lang="id"] .visit-cta h2,
  html[lang="fr"] .visit-cta h2 {
    max-width: 100%;
    font-size: clamp(1.3rem, 5.6vw, 1.68rem);
    line-height: 1.16;
    white-space: normal;
    overflow-wrap: anywhere;
    word-break: normal;
  }

  .about-subtitle,
  .showroom-subtitle {
    max-width: 100%;
    margin-top: 16px;
    font-size: clamp(1.05rem, 4.6vw, 1.25rem);
    line-height: 1.35;
    white-space: normal;
  }

  .hero-cta {
    margin-top: 16px;
  }

  .hero-cta .outline {
    display: none;
  }

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

  html[lang="ar"] .hero-cta {
    align-items: flex-start;
  }

  .hero-cta .btn {
    width: min(220px, 100%);
    padding: 13px 20px;
  }

  .intro h2 {
    font-size: 1.72rem;
    line-height: 1.24;
    text-align: left;
  }

  .intro p {
    text-align: left;
  }

  .intro-image {
    width: calc(100% + 44px);
    aspect-ratio: 4 / 3;
    margin-left: -22px;
    margin-right: -22px;
    margin-bottom: 34px;
  }

  .certifications {
    margin-top: 34px;
  }

  .certifications div {
    gap: 6px;
  }

  .certifications strong {
    padding: 9px 2px;
    font-size: 9px;
    letter-spacing: 0.04em;
  }

  .intro-inquiry {
    margin-top: 42px;
    align-self: flex-start;
  }

  .market-marquee {
    width: calc(100% + 44px);
    margin-top: 56px;
    margin-left: -22px;
    margin-right: -22px;
  }

  .market-track {
    gap: 28px;
    padding: 14px 0;
  }

  .market-track span {
    font-size: 12px;
  }

  .showroom-section {
    padding-top: 80px;
  }

  .showroom-image {
    width: calc(100% + 44px);
    margin-left: -22px;
    margin-right: -22px;
  }

  .showroom-section p {
    margin-top: 30px;
    font-size: 14px;
    line-height: 1.8;
  }

  .showroom-section h2 {
    margin-top: 34px;
    font-size: 1.72rem;
    line-height: 1.24;
  }

  .showroom-section h2 + p {
    margin-top: 22px;
  }

  .gel-display-section {
    padding-top: 80px;
  }

  .gel-display-image {
    width: calc(100% + 44px);
    margin-left: -22px;
    margin-right: -22px;
  }

  .gel-display-section p {
    margin-top: 30px;
    font-size: 14px;
    line-height: 1.8;
  }

  .gel-display-section h2 {
    margin-top: 34px;
    font-size: 1.72rem;
    line-height: 1.24;
  }

  .gel-display-section h2 + p {
    margin-top: 22px;
  }

  .nail-machines-section {
    padding-top: 80px;
  }

  .nail-machines-image {
    width: calc(100% + 44px);
    margin-left: -22px;
    margin-right: -22px;
  }

  .nail-machines-section p {
    margin-top: 30px;
    font-size: 14px;
    line-height: 1.8;
  }

  .nail-machines-section h2 {
    margin-top: 34px;
    font-size: 1.72rem;
    line-height: 1.24;
  }

  .nail-machines-section h2 + p {
    margin-top: 22px;
  }

  .tools-accessories-section {
    padding-top: 80px;
  }

  .tools-accessories-image {
    width: calc(100% + 44px);
    margin-left: -22px;
    margin-right: -22px;
  }

  .tools-accessories-section p {
    margin-top: 30px;
    font-size: 14px;
    line-height: 1.8;
  }

  .tools-accessories-section h2 {
    margin-top: 34px;
    font-size: 1.72rem;
    line-height: 1.24;
  }

  .tools-accessories-section h2 + p {
    margin-top: 22px;
  }

  .digital-center-section {
    padding-top: 80px;
  }

  .digital-center-image {
    width: calc(100% + 44px);
    margin-left: -22px;
    margin-right: -22px;
  }

  .digital-center-section p {
    margin-top: 30px;
    font-size: 14px;
    line-height: 1.8;
  }

  .digital-center-section h2 {
    margin-top: 34px;
    font-size: 1.72rem;
    line-height: 1.24;
  }

  .digital-center-section h2 + p {
    margin-top: 22px;
  }

  .warehouse-section,
  .global-delivery-section {
    padding-top: 80px;
  }

  .warehouse-image,
  .global-delivery-image {
    width: calc(100% + 44px);
    margin-left: -22px;
    margin-right: -22px;
  }

  /* Homepage mobile story full bleed pass */
  .showroom-image,
  .gel-display-image,
  .nail-machines-image,
  .tools-accessories-image,
  .digital-center-image,
  .warehouse-image,
  .global-delivery-image {
    width: calc(100% + 44px);
    margin-left: -22px;
    margin-right: -22px;
  }

  .warehouse-section h2,
  .global-delivery-section h2 {
    margin-top: 34px;
    font-size: 1.72rem;
    line-height: 1.24;
  }

  .warehouse-section p,
  .global-delivery-section p {
    margin-top: 22px;
    font-size: 14px;
    line-height: 1.8;
  }

  /* Homepage uniform story image pass */
  /* Homepage story full bleed pass */
  .showroom-section,
  .gel-display-section,
  .nail-machines-section,
  .tools-accessories-section,
  .digital-center-section,
  .warehouse-section,
  .global-delivery-section {
    width: 100%;
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .showroom-section {
    padding-top: 0;
  }

  .showroom-image,
  .gel-display-image,
  .nail-machines-image,
  .tools-accessories-image,
  .digital-center-image,
  .warehouse-image,
  .global-delivery-image {
    width: 100%;
    aspect-ratio: 4 / 3;
    max-height: none;
    margin-left: 0;
    margin-right: 0;
    object-fit: cover;
  }

  .trust-card-list {
    gap: 24px;
    margin-top: 48px;
  }

  .trust-card-list article {
    padding: 34px 32px 38px;
  }

  .trust-card-list span {
    margin-bottom: 24px;
    font-size: 28px;
  }

  .trust-card-list h3 {
    font-size: 1.72rem;
    line-height: 1.24;
  }

  .trust-card-list p {
    margin-top: 20px;
    font-size: 14px;
    line-height: 1.8;
  }

  .testimonials-section {
    padding-top: 78px;
  }

  .testimonial-kicker {
    gap: 18px;
    font-size: 12px;
  }

  .testimonial-kicker span {
    width: 52px;
  }

  .testimonials-section h2 {
    margin-top: 30px;
    font-size: 2.2rem;
    line-height: 1.12;
  }

  .testimonial-list {
    gap: 24px;
    margin-top: 56px;
  }

  .testimonial-list article {
    padding: 34px 32px 38px;
  }

  .quote-mark {
    font-size: 42px;
  }

  .testimonial-list article > p {
    margin-top: 22px;
    font-size: 14px;
    line-height: 1.85;
  }

  .testimonial-author {
    grid-template-columns: 62px 1fr;
    column-gap: 18px;
    margin-top: auto;
    padding-top: 24px;
  }

  .testimonial-author img {
    width: 62px;
    height: 62px;
  }

  .testimonial-author strong {
    font-size: 18px;
  }

  .testimonial-author span {
    font-size: 13px;
  }

  .global-reach-section {
    padding-top: 76px;
  }

  .global-reach-section h2 {
    font-size: clamp(1.72rem, 7vw, 2.2rem);
    line-height: 1.08;
    white-space: nowrap;
    word-break: keep-all;
    overflow-wrap: normal;
  }

  .global-reach-section > p {
    margin-top: 28px;
    font-size: 14px;
    line-height: 1.9;
  }

  .global-reach-grid {
    gap: 24px;
    margin-top: 62px;
  }

  .global-reach-grid article {
    min-height: 174px;
  }

  .global-reach-grid strong {
    font-size: 3.25rem;
    line-height: 0.95;
  }

  .global-reach-grid span {
    margin-top: 22px;
    font-size: 13px;
  }

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

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

@media (max-width: 900px) {
  .global-reach-section h2 {
    font-size: clamp(1.72rem, 7vw, 2.2rem);
    line-height: 1.08;
    white-space: nowrap;
    word-break: keep-all;
    overflow-wrap: normal;
  }

  .global-reach-grid strong {
    font-size: clamp(2.85rem, 13vw, 3.25rem);
    line-height: 0.95;
  }
}

@media (max-width: 980px) {
  .product-detail-hero,
  .detail-color-section {
    padding-left: 22px;
    padding-right: 22px;
  }

  .product-detail-layout {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .detail-summary h1 {
    font-size: clamp(1.9rem, 7vw, 2.8rem);
  }

  .detail-specs {
    grid-template-columns: 1fr;
  }

  .detail-actions {
    flex-direction: column;
  }

  .detail-actions .btn {
    width: 100%;
  }

  .detail-color-grid {
    justify-content: center;
  }

  .detail-color-card {
    flex-basis: 112px;
  }

  .detail-summary > .detail-color-section {
    max-width: none;
    margin: 30px 0 0;
    padding: 0;
  }
}

@media (max-width: 640px) {
  .product-detail-hero {
    padding-top: 48px;
  }

  .detail-breadcrumb {
    gap: 10px;
    font-size: 12px;
    letter-spacing: 0.06em;
  }

  .detail-main-image img {
    aspect-ratio: 1 / 1;
  }

  .detail-thumbnails {
    flex-wrap: nowrap;
    justify-content: flex-start;
    gap: 10px;
    margin-top: 16px;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .detail-thumbnails::-webkit-scrollbar {
    display: none;
  }

  .detail-thumb {
    flex: 0 0 70px;
    width: 70px;
  }

  .detail-specs div {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 12px 14px;
  }

  .detail-specs dd {
    text-align: left;
    font-size: 15px;
  }

  .detail-quantity-control {
    grid-template-columns: 52px minmax(0, 1fr) 52px auto;
  }

  .detail-intro,
  .detail-color-section p {
    font-size: 15px;
  }

  .cookie-banner {
    left: 14px;
    right: 14px;
    bottom: 14px;
    display: grid;
    gap: 12px;
    padding: 14px;
  }

  .cookie-banner p {
    font-size: 13px;
  }

  .cookie-banner-action {
    width: 100%;
  }

}

@media (prefers-reduced-motion: no-preference) {
  .reveal-on-scroll {
    opacity: 0;
    transform: translateY(24px);
    transition:
      opacity 0.72s ease,
      transform 0.72s ease;
    transition-delay: var(--reveal-delay, 0ms);
  }

  .reveal-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
  }

  .product-card img,
  .detail-main-image img,
  .story-section img,
  .about-hero-visual img,
  .showroom-gallery img,
  .factory-gallery img {
    transition:
      transform 0.52s ease,
      filter 0.52s ease;
  }

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

  .detail-main-image:hover img,
  .story-section:hover img,
  .about-hero-visual img:hover,
  .showroom-gallery img:hover,
  .factory-gallery img:hover {
    transform: scale(1.015);
  }

  .btn,
  .product-card button,
  .icon-button,
  .inquiry-icon,
  .whatsapp-float,
  .footer-social a {
    transition:
      transform 0.22s ease,
      opacity 0.22s ease,
      background-color 0.22s ease,
      color 0.22s ease,
      border-color 0.22s ease,
      box-shadow 0.22s ease;
  }

  .btn:hover,
  .product-card button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(60, 39, 25, 0.12);
  }

  .icon-button:hover,
  .inquiry-icon:hover,
  .whatsapp-float:hover,
  .footer-social a:hover {
    transform: translateY(-2px);
  }

  .nav-link {
    transition:
      color 0.18s ease,
      opacity 0.18s ease;
  }

  .nav-link:hover {
    color: var(--red);
  }

  .nav-dropdown a {
    transition:
      background-color 0.18s ease,
      transform 0.18s ease;
  }

  .nav-dropdown a:hover {
    transform: translateX(3px);
  }

  /* Inquiry drawer smooth transform pass */
  .panel-card {
    transform: translate3d(100%, 0, 0);
    -webkit-transform: translate3d(100%, 0, 0);
  }

  .inquiry-panel.is-open .panel-card {
    transform: translate3d(0, 0, 0);
    -webkit-transform: translate3d(0, 0, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}
