/* Generated by scripts/build_css_bundles.mjs. Edit source files, then rebuild. */

/* ===== styles.css ===== */
/* ML THAILAND — Hero */

:root {
  --color-text: #333338;
  --color-text-muted: #6e6e76;
  --color-lavender: #eeeeef;
  --color-pink: #e9e9eb;
  --color-deep: #e4e4e7;
  --color-volume: #888890;
  --color-accent: #a8a8b0;
  --color-accent-soft: #e4e4e8;
  --color-accent-text: #5a5a62;
  --color-border: rgba(0, 0, 0, 0.08);
  --color-border-strong: rgba(0, 0, 0, 0.12);
  --color-surface: #f7f7f8;
  --color-surface-muted: #f0f0f2;
  --color-hover: rgba(0, 0, 0, 0.04);
  --color-hover-strong: rgba(0, 0, 0, 0.07);
  --font-serif: "Playfair Display", Georgia, serif;
  --font-sans: "Arimo", Arial, system-ui, sans-serif;
  --header-h: 6.5rem;
  --page-pad: clamp(1.25rem, 5vw, 4.5rem);
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-soft: cubic-bezier(0.25, 0.8, 0.25, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 10000;
  padding: 0.7rem 1rem;
  border-radius: 0.2rem;
  background: #263128;
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  transform: translateY(-160%);
  transition: transform 0.18s ease;
}

.skip-link:focus-visible {
  outline: 3px solid #d4b468;
  outline-offset: 3px;
  transform: translateY(0);
}

a:focus-visible,
button:focus-visible,
select:focus-visible,
input:focus-visible,
textarea:focus-visible,
[tabindex]:not([tabindex="-1"]):focus-visible {
  outline: 3px solid #667c65;
  outline-offset: 3px;
}

main:focus {
  outline: none;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .skip-link {
    transition: none;
  }
}

body {
  font-family: var(--font-sans);
  color: var(--color-text);
  background: #f5f2fa;
  min-height: 100dvh;
  overflow-x: hidden;
}

html[data-content-lang="th"] [data-i18n],
html[data-content-lang="th"] [data-i18n] * {
  font-family: "Sarabun", "TH Sarabun New", "Prompt", sans-serif !important;
}

html[data-content-lang="th"] h1[data-i18n],
html[data-content-lang="th"] h2[data-i18n],
html[data-content-lang="th"] h3[data-i18n],
html[data-content-lang="th"] strong[data-i18n] {
  font-family: "Sarabun", "TH Sarabun New", "Prompt", sans-serif !important;
  font-weight: 600 !important;
}

/* ภาษาไทย — ใช้ฟอนต์ Prompt ทั้งหมด */
html[lang="th"] [data-i18n],
html[lang="th"] [data-i18n-aria],
html[lang="th"] .hero__subtitle,
html[lang="th"] .features__text,
html[lang="th"] .subpage-hero__title,
html[lang="th"] .subpage-hero__lead,
html[lang="th"] .subpage-hero__eyebrow,
html[lang="th"] .contact-list__label,
html[lang="th"] .topbar-nav__link,
html[lang="th"] .nav__link,
html[lang="th"] .btn-hero,
html[lang="th"] .lang-switch__option,
html[lang="th"] .site-footer__label,
html[lang="th"] .site-footer__text,
html[lang="th"] .products-filter__btn,
html[lang="th"] .product-card__desc,
html[lang="th"] .product-card__tag,
html[lang="th"] .product-detail__desc,
html[lang="th"] .product-detail__back,
html[lang="th"] .product-detail__line,
html[lang="th"] .products-empty {
  font-family: var(--font-sans);
}

.page {
  position: relative;
  min-height: 100dvh;
  background: url("../assets/hero-bg.png") center center / cover no-repeat;
  background-attachment: scroll;
}

@media (min-width: 768px) {
  .page {
    background-attachment: fixed;
  }
}

.page::before {
  content: "";
  position: fixed;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(255, 255, 255, 0.55) 0%,
    rgba(245, 245, 246, 0.28) 45%,
    rgba(255, 255, 255, 0.1) 100%
  );
  pointer-events: none;
  z-index: 0;
}

.page::after {
  content: "";
  position: fixed;
  width: min(52vmax, 640px);
  height: min(52vmax, 640px);
  top: 8%;
  right: -12%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 0, 0, 0.04) 0%, transparent 68%);
  pointer-events: none;
  z-index: 0;
}

/* Header */

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 1.75rem var(--page-pad);
  height: var(--header-h);
}

.logo {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  text-decoration: none;
  line-height: 0;
}

.logo__img {
  display: block;
  height: clamp(2.25rem, 4.5vw, 3.25rem);
  width: auto;
  object-fit: contain;
  transition: opacity 0.35s ease, transform 0.35s var(--ease-out);
}

.logo:hover .logo__img {
  opacity: 0.82;
  transform: scale(1.02);
}

.header__tools {
  position: relative;
  z-index: 102;
  display: flex;
  align-items: center;
  gap: clamp(0.65rem, 1.5vw, 1.25rem);
}

.header__actions {
  display: flex;
  align-items: stretch;
  gap: 0.65rem;
}

.header__actions > .lang-switch {
  display: flex;
  align-items: stretch;
}

.lang-switch {
  position: relative;
}

.lang-switch__toggle.btn-hero {
  gap: 0.4rem;
  width: auto;
  min-width: 0;
  box-sizing: border-box;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
}

/* สูงเท่าปุ่มเข้าสู่เว็บไซต์ เมื่ออยู่คู่กัน (หน้าหลัก) */
.header__actions:has(> a.btn-hero) .lang-switch__toggle.btn-hero {
  height: 100%;
  padding: 0 0.7rem;
}

/* หน้าที่มีแค่ปุ่มภาษา — ขนาดเดียวกับปุ่ม header อื่น */
.header__actions:not(:has(> a.btn-hero)) .lang-switch__toggle.btn-hero {
  height: auto;
  padding: 0.55rem 0.7rem;
  align-self: center;
  min-height: 2.875rem;
}

.lang-switch__flag {
  display: block;
  width: clamp(1.25rem, 1.6vw, 1.5rem);
  height: auto;
  border-radius: 1px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.lang-switch__chevron {
  display: block;
  width: 0.5rem;
  height: 0.5rem;
  flex-shrink: 0;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  transition: transform 0.2s ease;
}

.lang-switch.is-open .lang-switch__chevron {
  transform: rotate(-135deg) translateY(1px);
}

.lang-switch__menu {
  position: absolute;
  top: calc(100% + 0.4rem);
  right: 0;
  z-index: 110;
  min-width: 100%;
  list-style: none;
  margin: 0;
  padding: 0.25rem 0;
  background: rgba(255, 255, 255, 0.98);
  border: 1.5px solid var(--color-accent-soft);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  transform-origin: top right;
}

.lang-switch.is-open .lang-switch__menu {
  animation: menuDrop 0.28s var(--ease-out) both;
}

.lang-switch__option {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  width: 100%;
  padding: 0.5rem 1rem;
  border: none;
  background: transparent;
  font-family: var(--font-sans);
  font-size: clamp(0.78rem, 1.1vw, 0.88rem);
  font-weight: 400;
  letter-spacing: 0.03em;
  color: var(--color-text-muted);
  cursor: pointer;
  text-align: left;
  white-space: nowrap;
  transition: background 0.15s ease, color 0.15s ease;
}

.lang-switch__option img {
  display: block;
  width: 1.35rem;
  height: auto;
  flex-shrink: 0;
  border-radius: 1px;
}

.lang-switch__option:hover,
.lang-switch__option.is-active {
  color: var(--color-accent-text);
  background: var(--color-hover-strong);
}

.lang-switch__option:focus-visible {
  outline: 2px solid var(--color-volume);
  outline-offset: -2px;
}

.menu-btn {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
  width: 3rem;
  height: 3rem;
  padding: 0.5rem;
  border: none;
  background: transparent;
  cursor: pointer;
}

.menu-btn span {
  display: block;
  width: 100%;
  height: 1.5px;
  background: var(--color-text);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.menu-btn[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(8.5px) rotate(45deg);
}

.menu-btn[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-btn[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-8.5px) rotate(-45deg);
}

/* Nav drawer */

.nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(45, 40, 55, 0.38);
  backdrop-filter: blur(2px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.45s ease, visibility 0.45s ease;
}

.nav-overlay.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.nav {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 101;
  width: min(19rem, 82vw);
  height: 100dvh;
  display: flex;
  flex-direction: column;
  padding: calc(var(--header-h) + 1rem) 2.5rem 2.75rem;
  background: #fefeff;
  box-shadow: -4px 0 32px rgba(0, 0, 0, 0.06);
  transform: translateX(100%);
  visibility: hidden;
  transition: transform 0.45s cubic-bezier(0.25, 0.8, 0.25, 1), visibility 0.45s;
}

.nav.is-open {
  transform: translateX(0);
  visibility: visible;
}

.nav.is-open .nav__links li {
  animation: fadeUp 0.55s var(--ease-out) both;
}

.nav.is-open .nav__links li:nth-child(1) {
  animation-delay: 0.12s;
}

.nav.is-open .nav__links li:nth-child(2) {
  animation-delay: 0.2s;
}

.nav.is-open .nav__links li:nth-child(3) {
  animation-delay: 0.28s;
}

.nav.is-open .nav__links li:nth-child(4) {
  animation-delay: 0.36s;
}

.nav__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 3rem;
}

.nav__brand {
  font-family: var(--font-serif);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  color: var(--color-text-muted);
  text-transform: none;
}

.nav__close {
  position: relative;
  width: 2rem;
  height: 2rem;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
}

.nav__close span {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 1.25rem;
  height: 1px;
  background: var(--color-text);
  transition: opacity 0.25s ease;
}

.nav__close span:first-child {
  transform: translate(-50%, -50%) rotate(45deg);
}

.nav__close span:last-child {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.nav__close:hover span {
  opacity: 0.45;
}

.nav__links {
  list-style: none;
  margin: 0;
  padding: 0;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.nav__link {
  display: inline-block;
  position: relative;
  padding: 0.65rem 0;
  font-family: var(--font-serif);
  font-size: 1.12rem;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.06em;
  color: var(--color-text);
  text-decoration: none;
  transition: color 0.3s ease, letter-spacing 0.3s ease;
}

.nav__link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0.45rem;
  width: 0;
  height: 1px;
  background: var(--color-accent);
  transition: width 0.35s ease;
}

.nav__link:hover {
  color: var(--color-accent-text);
  letter-spacing: 0.1em;
}

.nav__link:hover::after {
  width: 1.5rem;
}

.nav__link.is-active {
  color: var(--color-accent-text);
}

.nav__link.is-active::after {
  width: 100%;
}

.nav__footer {
  margin-top: auto;
  padding-top: 2.5rem;
}

.nav__footer-line {
  display: block;
  width: 1.5rem;
  height: 1px;
  background: var(--color-accent);
  margin-bottom: 1.25rem;
  opacity: 0.6;
}

.nav__footer p {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 300;
  letter-spacing: 0.04em;
  color: var(--color-text-muted);
}

body.menu-open {
  overflow: hidden;
}

/* Hero layout */

.hero__geldrop {
  position: absolute;
  left: 50%;
  top: 32%;
  transform: translate(-50%, -50%);
  width: min(1120px, 92vw);
  height: auto;
  opacity: 0.16;
  z-index: 0;
  pointer-events: none;
  user-select: none;
  -webkit-user-drag: none;
  filter: grayscale(15%);
}

.hero {
  position: relative;
  z-index: 1;
  height: 100dvh;
  min-height: 100dvh;
  max-height: 100dvh;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  overflow: hidden;
  padding: calc(var(--header-h) + 0.75rem) var(--page-pad) 2rem;
  box-sizing: border-box;
}

.hero__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: none;
  margin: 0 auto;
  flex: 1;
  min-height: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.08fr);
  gap: clamp(1.5rem, 3vw, 3rem);
  align-items: center;
}

/* Left content */

.hero__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding-left: clamp(0rem, 1.5vw, 1.5rem);
  min-height: 0;
}

.hero__title {
  font-family: var(--font-serif);
  font-size: clamp(3.5rem, 8.8vw, 7.25rem);
  font-weight: 400;
  letter-spacing: 0.06em;
  line-height: 1.15;
  color: var(--color-text);
  margin-bottom: 1rem;
}

.hero__title-line {
  display: block;
}

.hero__divider {
  display: block;
  width: clamp(5.5rem, 16vw, 9.5rem);
  height: 1.5px;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.12) 0%,
    rgba(0, 0, 0, 0.28) 50%,
    rgba(0, 0, 0, 0.1) 100%
  );
  margin-bottom: 1.5rem;
  transform-origin: left center;
}

.hero__subtitle {
  font-size: clamp(1.1rem, 2.2vw, 1.5rem);
  font-weight: 300;
  color: var(--color-text-muted);
  letter-spacing: 0.02em;
  margin-bottom: 2rem;
  line-height: 1.5;
}

.features {
  list-style: none;
  display: flex;
  gap: 0;
  width: 100%;
  max-width: min(680px, 100%);
}

.features__item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 clamp(0.75rem, 1.5vw, 1.5rem);
  position: relative;
}

.features__item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 10%;
  height: 80%;
  width: 1px;
  background: rgba(0, 0, 0, 0.1);
}

.features__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: clamp(3.25rem, 5vw, 4.25rem);
  height: clamp(3.25rem, 5vw, 4.25rem);
  margin-bottom: 1rem;
  color: var(--color-text-muted);
  transition: transform 0.45s var(--ease-out);
}

.features__item:hover .features__icon {
  transform: translateY(-5px) scale(1.04);
}

.features__icon svg,
.features__icon img {
  width: clamp(2.75rem, 4.2vw, 3.5rem);
  height: clamp(2.75rem, 4.2vw, 3.5rem);
  object-fit: contain;
}

.features__icon img {
  filter: brightness(0) saturate(100%) invert(49%) sepia(6%) saturate(320%) hue-rotate(201deg)
    brightness(94%) contrast(91%);
}

.features__icon svg {
  color: inherit;
}

.features__text {
  font-size: clamp(0.85rem, 1.5vw, 1.05rem);
  font-weight: 300;
  line-height: 1.55;
  color: var(--color-text-muted);
}

/* Product image */

.hero__visual {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  min-width: 0;
  max-height: 100%;
  overflow: hidden;
}

.hero__showcase {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-height: 100%;
  line-height: 0;
  will-change: transform;
  transition: transform 0.15s ease-out;
}

.hero__made {
  position: absolute;
  bottom: 8%;
  right: 4%;
  width: clamp(86px, 10.5vw, 148px);
  height: auto;
  z-index: 2;
  pointer-events: none;
  user-select: none;
  -webkit-user-drag: none;
}

.svg-filters {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero__product {
  display: block;
  width: 100%;
  max-width: min(700px, 100%);
  max-height: 100%;
  height: auto;
  margin: 0 auto;
  object-fit: contain;
  filter: url(#hero-sharpen) contrast(1.06) saturate(1.04);
  transform: translateZ(0);
  backface-visibility: hidden;
  user-select: none;
  -webkit-user-drag: none;
}

/* Header buttons */

.header__actions .btn-hero {
  box-sizing: border-box;
}

.btn-hero {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.55rem 1.35rem;
  font-family: var(--font-sans);
  font-size: clamp(0.78rem, 1.1vw, 0.88rem);
  font-weight: 400;
  letter-spacing: 0.05em;
  text-decoration: none;
  border-radius: 0;
  border: 1.5px solid transparent;
  box-shadow: none;
  transition: transform 0.2s ease, color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
  white-space: nowrap;
}

.btn-hero--ghost {
  color: var(--color-accent-text);
  background: transparent;
  border-color: var(--color-accent);
}

.btn-hero--ghost:hover {
  color: var(--color-volume);
  background: transparent;
  border-color: var(--color-volume);
  transform: translateY(-1px);
}

.btn-hero:active {
  transform: translateY(0);
}

/* Footer */

.site-footer {
  position: relative;
  z-index: 1;
  padding: clamp(2.5rem, 5vw, 3.5rem) var(--page-pad);
  border-top: 1px solid var(--color-border);
  background: rgba(255, 255, 255, 0.45);
}

.site-footer__inner {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(2rem, 4vw, 4rem);
  max-width: 720px;
  margin: 0 auto;
}

.site-footer__label {
  margin: 0 0 0.75rem;
  font-family: var(--font-serif);
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-accent-text);
}

.site-footer__text {
  margin: 0;
  font-size: clamp(0.82rem, 1.2vw, 0.92rem);
  font-weight: 300;
  line-height: 1.7;
  letter-spacing: 0.02em;
  color: var(--color-text-muted);
}

@media (max-width: 600px) {
  .site-footer__inner {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
}


/* Motion */

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(1.25rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeDown {
  from {
    opacity: 0;
    transform: translateY(-0.75rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeDownLogo {
  from {
    opacity: 0;
    transform: translate(-50%, calc(-50% - 0.75rem));
  }
  to {
    opacity: 1;
    transform: translate(-50%, -50%);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(2rem);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes lineGrow {
  from {
    opacity: 0;
    transform: scaleX(0);
  }
  to {
    opacity: 1;
    transform: scaleX(1);
  }
}

@keyframes floatSoft {
  0%,
  100% {
    transform: translateZ(0) translateY(0);
  }
  50% {
    transform: translateZ(0) translateY(-12px);
  }
}

@keyframes floatBadge {
  0%,
  100% {
    transform: translateY(0) scale(1);
    opacity: 1;
  }
  50% {
    transform: translateY(-6px) scale(1.03);
    opacity: 0.95;
  }
}

@keyframes gelDrift {
  0%,
  100% {
    transform: translate(-50%, -50%) scale(1) rotate(0deg);
    opacity: 0.16;
  }
  25% {
    transform: translate(calc(-50% + 24px), calc(-50% - 28px)) scale(1.05) rotate(1.5deg);
    opacity: 0.19;
  }
  50% {
    transform: translate(calc(-50% - 18px), calc(-50% - 40px)) scale(1.07) rotate(-1deg);
    opacity: 0.21;
  }
  75% {
    transform: translate(calc(-50% + 10px), calc(-50% - 16px)) scale(1.04) rotate(0.5deg);
    opacity: 0.18;
  }
}

@keyframes blobFloat {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(-3%, 4%) scale(1.06);
  }
}

@keyframes menuDrop {
  from {
    opacity: 0;
    transform: translateY(-6px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes shimmerDivider {
  0%,
  100% {
    filter: brightness(1);
  }
  50% {
    filter: brightness(1.15);
  }
}

@media (prefers-reduced-motion: no-preference) {
  .page::after {
    animation: blobFloat 20s ease-in-out infinite;
  }

  .hero__geldrop {
    animation: gelDrift 10s ease-in-out infinite;
  }

  body:not(.is-ready) .logo:not(.topbar__logo),
  body:not(.is-ready) .header__tools:not(.topbar__tools),
  body:not(.is-ready) .hero__title-line,
  body:not(.is-ready) .hero__divider,
  body:not(.is-ready) .hero__subtitle,
  body:not(.is-ready) .features__item,
  body:not(.is-ready) .hero__product,
  body:not(.is-ready) .hero__made {
    opacity: 0;
  }

  body.is-ready .logo:not(.topbar__logo) {
    animation: fadeDownLogo 0.85s var(--ease-out) 0.05s both;
  }

  body.is-ready .header__tools:not(.topbar__tools) {
    animation: fadeDown 0.85s var(--ease-out) 0.15s both;
  }

  body.is-ready .hero__title-line {
    animation: fadeUp 0.95s var(--ease-out) both;
    animation-delay: calc(0.14s * var(--i) + 0.2s);
  }

  body.is-ready .hero__subtitle {
    animation: fadeUp 0.9s var(--ease-out) 0.78s both;
  }

  body.is-ready .features__item {
    animation: fadeUp 0.85s var(--ease-out) both;
    animation-delay: calc(0.12s * var(--i) + 0.92s);
  }

  body.is-ready .hero__product {
    animation:
      fadeInRight 1.1s var(--ease-out) 0.35s both,
      floatSoft 7s ease-in-out 1.45s infinite;
  }

  body.is-ready .hero__made {
    animation:
      fadeUp 0.8s var(--ease-out) 1.15s both,
      floatBadge 5s ease-in-out 2s infinite;
  }

  body.is-ready .hero__divider {
    animation:
      lineGrow 0.9s var(--ease-out) 0.62s both,
      shimmerDivider 4s ease-in-out 1.6s infinite;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .hero__geldrop,
  .page::after,
  body.is-ready .hero__product,
  body.is-ready .hero__made,
  body.is-ready .hero__divider {
    animation: none !important;
  }

  .nav,
  .nav-overlay,
  .lang-switch__menu,
  .menu-btn span,
  .btn-hero,
  .features__icon,
  .logo__img {
    transition-duration: 0.01ms !important;
  }
}

/* Responsive */

@media (max-width: 1100px) {
  .hero__product {
    max-width: min(620px, 100%);
    max-height: calc(100dvh - var(--header-h) - 5rem);
  }

  .hero__made {
    width: clamp(78px, 9.5vw, 132px);
  }
}

@media (max-width: 960px) {
  .hero__geldrop {
    width: min(820px, 96vw);
    opacity: 0.14;
  }

  .hero {
    height: auto;
    min-height: 100dvh;
    max-height: none;
    overflow: visible;
  }

  .hero__inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .hero__content {
    align-items: center;
    padding-left: 0;
    text-align: center;
  }

  .hero__divider {
    margin-left: auto;
    margin-right: auto;
    transform-origin: center center;
  }

  .header__actions {
    display: flex;
  }

  .header__actions > .btn-hero:not(.lang-switch__toggle) {
    display: none;
  }

  .header__actions > .lang-switch {
    align-self: center;
    display: flex;
  }

  .header__actions:has(> a.btn-hero) .lang-switch__toggle.btn-hero,
  .lang-switch__toggle.btn-hero {
    height: auto;
    min-height: 2.65rem;
    padding: 0 0.65rem;
    border: 1.5px solid var(--color-accent-soft);
    align-self: center;
  }

  .hero__visual {
    max-height: none;
  }

  .hero__product {
    max-width: min(480px, 88vw);
    max-height: min(42vh, 460px);
  }

  .hero__made {
    width: clamp(68px, 13vw, 110px);
    bottom: 6%;
    right: 2%;
  }

  .features {
    margin: 0 auto;
    max-width: min(600px, 100%);
  }

  .hero__title {
    letter-spacing: 0.04em;
  }
}

@media (max-width: 520px) {
  :root {
    --header-h: 5.5rem;
  }

  .features {
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: flex-start;
    gap: 0;
    max-width: 100%;
    width: 100%;
  }

  .features__item {
    flex: 1;
    min-width: 0;
    padding: 0 clamp(0.25rem, 1.5vw, 0.5rem);
  }

  .features__item:not(:last-child)::after {
    display: block;
    top: 6%;
    height: 72%;
  }

  .features__icon {
    width: clamp(2.35rem, 11vw, 2.85rem);
    height: clamp(2.35rem, 11vw, 2.85rem);
    margin-bottom: 0.45rem;
  }

  .features__icon svg,
  .features__icon img {
    width: clamp(1.85rem, 8.5vw, 2.25rem);
    height: clamp(1.85rem, 8.5vw, 2.25rem);
  }

  .features__text {
    font-size: clamp(0.62rem, 2.8vw, 0.78rem);
    line-height: 1.35;
    letter-spacing: 0;
  }

  .hero__product {
    max-width: min(360px, 90vw);
    max-height: min(38vh, 400px);
  }

  .hero__made {
    width: clamp(58px, 15vw, 88px);
  }
}

@media (min-width: 961px) and (max-height: 820px) {
  .hero__subtitle {
    margin-bottom: 2rem;
  }

  .hero__title {
    font-size: clamp(2.75rem, 6.8vw, 4.75rem);
    margin-bottom: 1rem;
  }

  .hero__product {
    max-height: calc(100dvh - var(--header-h) - 4.5rem);
  }
}

@media (max-width: 768px) {
.menu-btn span {
    display: none;
}

.menu-btn {
    width: auto !important;
    padding: 0 14px !important;
    font-family: "Poppins", sans-serif;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.16em;
    color: #000 !important;
    text-transform: uppercase;
	}
}

/* Thai typography — consistent, legible web rendering across every page */
html[data-content-lang="th"] [data-i18n],
html[data-content-lang="th"] [data-i18n] * {
  font-family: "Sarabun", "TH Sarabun New", "Prompt", sans-serif !important;
  letter-spacing: 0 !important;
  text-rendering: optimizeLegibility;
}

html[data-content-lang="th"] h1[data-i18n],
html[data-content-lang="th"] h2[data-i18n],
html[data-content-lang="th"] h3[data-i18n] {
  font-weight: 600 !important;
  line-height: 1.18 !important;
  letter-spacing: 0 !important;
}

html[data-content-lang="th"] .page--home .home-hero h1[data-i18n] {
  font-weight: 500 !important;
  line-height: 1.3 !important;
  letter-spacing: 0.008em !important;
  font-kerning: normal;
  font-feature-settings: "mark" 1, "mkmk" 1;
}

@media (min-width: 769px) {
  html[data-content-lang="th"] .page--home .home-hero h1[data-i18n] {
    font-size: clamp(2.75rem, 3vw, 3.2rem) !important;
    line-height: 1.3 !important;
  }
}

html[data-content-lang="th"] .topbar-nav__link {
  font-size: clamp(0.88rem, 1vw, 1rem) !important;
  font-weight: 500 !important;
  line-height: 1.45 !important;
  text-transform: none !important;
}

html[data-content-lang="th"] .nav__link {
  font-size: clamp(1.2rem, 5vw, 1.45rem) !important;
  font-weight: 500 !important;
  line-height: 1.55 !important;
}

html[data-content-lang="th"] .home-hero__eyebrow,
html[data-content-lang="th"] .products-intro__eyebrow,
html[data-content-lang="th"] .about-hero__eyebrow,
html[data-content-lang="th"] .contact-eyebrow,
html[data-content-lang="th"] .product-detail__eyebrow {
  font-size: clamp(0.82rem, 0.95vw, 0.96rem) !important;
  font-weight: 500 !important;
  line-height: 1.5 !important;
  letter-spacing: 0.035em !important;
  text-transform: none !important;
}

html[data-content-lang="th"] .home-hero__lead,
html[data-content-lang="th"] .products-intro__lead,
html[data-content-lang="th"] .about-hero__lead,
html[data-content-lang="th"] .contact-lead,
html[data-content-lang="th"] .product-detail__desc {
  font-size: clamp(0.98rem, 1.15vw, 1.12rem) !important;
  font-weight: 400 !important;
  line-height: 1.72 !important;
}

html[data-content-lang="th"] .home-trust__item p,
html[data-content-lang="th"] .products-trust__item p,
html[data-content-lang="th"] .about-fact p {
  font-size: clamp(0.76rem, 0.86vw, 0.88rem) !important;
  font-weight: 500 !important;
  line-height: 1.45 !important;
  text-transform: none !important;
}

html[data-content-lang="th"] .products-filter__btn,
html[data-content-lang="th"] .product-detail__tag,
html[data-content-lang="th"] .product-detail__size > span,
html[data-content-lang="th"] .product-detail__spec > span,
html[data-content-lang="th"] .contact-action__label,
html[data-content-lang="th"] .contact-website__label,
html[data-content-lang="th"] .site-footer__label {
  font-size: clamp(0.76rem, 0.86vw, 0.88rem) !important;
  font-weight: 500 !important;
  line-height: 1.45 !important;
  letter-spacing: 0.02em !important;
  text-transform: none !important;
}

html[data-content-lang="th"] .product-card__desc,
html[data-content-lang="th"] .about-panel p,
html[data-content-lang="th"] .products-inquiry__copy p,
html[data-content-lang="th"] .site-footer__text {
  font-size: clamp(0.86rem, 0.94vw, 0.98rem) !important;
  font-weight: 400 !important;
  line-height: 1.62 !important;
}

html[data-content-lang="th"] .product-card__name,
html[data-content-lang="th"] .about-panel h2[data-i18n] {
  font-weight: 600 !important;
  line-height: 1.3 !important;
}

html[data-content-lang="th"] .products-intro h1[data-i18n] {
  max-width: 100% !important;
  font-size: clamp(2rem, 2.6vw, 2.7rem) !important;
  line-height: 1.18 !important;
  white-space: normal !important;
}

html[data-content-lang="th"] .products-intro__lead {
  font-size: clamp(0.92rem, 1vw, 1rem) !important;
  line-height: 1.48 !important;
}

@media (max-width: 768px) {
  html[data-content-lang="th"] .page--home .home-hero h1[data-i18n] {
    font-size: clamp(2.35rem, 10.5vw, 2.7rem) !important;
    line-height: 1.28 !important;
  }

  html[data-content-lang="th"] .home-hero__eyebrow,
  html[data-content-lang="th"] .products-intro__eyebrow,
  html[data-content-lang="th"] .about-hero__eyebrow,
  html[data-content-lang="th"] .contact-eyebrow,
  html[data-content-lang="th"] .product-detail__eyebrow {
    font-size: 0.86rem !important;
  }

  html[data-content-lang="th"] .home-hero__lead,
  html[data-content-lang="th"] .products-intro__lead,
  html[data-content-lang="th"] .about-hero__lead,
  html[data-content-lang="th"] .contact-lead,
  html[data-content-lang="th"] .product-detail__desc {
    font-size: 1rem !important;
    line-height: 1.68 !important;
  }

  html[data-content-lang="th"] .home-trust__item p,
  html[data-content-lang="th"] .products-trust__item p,
  html[data-content-lang="th"] .about-fact p {
    font-size: 0.78rem !important;
  }

  html[data-content-lang="th"] .products-intro h1[data-i18n],
  html[data-content-lang="th"] .product-collection__intro h1[data-i18n] {
    max-width: 100% !important;
    font-size: clamp(2.05rem, 9vw, 2.25rem) !important;
    line-height: 1.18 !important;
    white-space: normal !important;
  }
}

/* ===== subpage.css ===== */
/* Shared subpage layout (products, about, …) */

.page--sub {
  --subpage-header-h: 7.5rem;
  min-height: 100dvh;
  background: var(--color-surface);
  background-image: none;
}

.page--sub::before {
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.4) 0%,
    rgba(247, 247, 248, 0.88) 100%
  );
}

.page--sub .header--topbar {
  display: block;
  height: auto;
  min-height: var(--subpage-header-h);
  padding: 0;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-border);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.8);
}

@media (max-width: 960px) {
  html:has(body > .page--sub),
  body:has(> .page--sub) {
    height: auto;
    overscroll-behavior-y: none;
  }

  html:has(body > .page--sub) {
    min-height: 100%;
  }

  body:has(> .page--sub) {
    min-height: 100svh;
    overflow-x: clip;
    overflow-y: visible;
  }

  body:has(> .page--sub) .page--sub {
    height: auto;
    min-height: 100svh;
    overflow-x: clip;
    overflow-y: visible;
  }

  body:has(> .page--sub) .page--sub > main {
    height: auto;
    min-height: 0;
    overflow-x: clip;
    overflow-y: visible;
  }

  .page--sub .header--topbar {
    min-height: 0;
    height: auto;
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-bottom: none;
    box-shadow: none;
  }

  .page--sub .subpage-hero {
    margin-top: 0;
  }

  .page--sub .topbar {
    max-width: none;
    padding-top: max(0.65rem, env(safe-area-inset-top, 0px));
    padding-bottom: 0.4rem;
    padding-left: max(var(--page-pad), env(safe-area-inset-left, 0px));
    padding-right: max(var(--page-pad), env(safe-area-inset-right, 0px));
  }

  .page--sub .topbar__row {
    margin-bottom: 0;
    min-height: unset;
  }

  .page--sub .topbar__logo .logo__img {
    height: 2rem;
    max-width: min(170px, 46vw);
    width: auto;
  }

  .page--sub .topbar__logo:hover .logo__img {
    transform: none;
  }

  .page--sub .topbar__tools {
    gap: 0.4rem;
  }

  .page--sub .topbar__menu-btn {
    display: flex;
    width: 2.65rem;
    height: 2.65rem;
    padding: 0.55rem;
    gap: 6px;
    border: 1.5px solid var(--color-accent-soft);
    background: transparent;
  }

  .page--sub .topbar__menu-btn:hover {
    border-color: var(--color-accent);
    background: transparent;
  }

  .page--sub .topbar-nav {
    display: none;
  }

  .page--sub .lang-switch__toggle.btn-hero {
    min-height: 2.65rem;
    padding: 0 0.65rem;
    border-color: var(--color-accent-soft);
  }

  .page--sub .header__actions {
    gap: 0.4rem;
  }
}

.topbar {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 1.1rem var(--page-pad) 0;
}

.topbar__row {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.5rem;
  min-height: clamp(2.5rem, 5vw, 3.25rem);
  margin-bottom: 0.9rem;
}

.page--sub .topbar__logo {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  flex-shrink: 0;
  z-index: 1;
}

/* hamburger ซ่อนบน desktop */
.page--sub .topbar__menu-btn {
  display: none;
}

@media (max-width: 960px) {
  .page--sub .topbar__menu-btn {
    display: flex;
  }
}

.page--sub .topbar__logo .logo__img {
  height: clamp(2rem, 3.5vw, 2.85rem);
}

.page--sub .topbar__logo:hover .logo__img {
  transform: scale(1.02);
}

.page--sub .topbar__tools {
  position: relative;
  z-index: 2;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: clamp(0.5rem, 1.5vw, 0.85rem);
}

/* hamburger hidden on desktop, shown via @media (max-width: 960px) above */

.topbar-nav {
  border-top: 1px solid var(--color-border);
  padding: 0.75rem 0 0.85rem;
}

.topbar-nav__list {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.15rem clamp(0.5rem, 2vw, 0.25rem);
  list-style: none;
  margin: 0;
  padding: 0;
}

.topbar-nav__list li {
  display: flex;
  align-items: center;
}

.topbar-nav__list li:not(:last-child)::after {
  content: "";
  display: block;
  width: 1px;
  height: 0.7rem;
  margin-left: clamp(0.65rem, 1.6vw, 1.35rem);
  background: rgba(0, 0, 0, 0.12);
}

.topbar-nav__link {
  position: relative;
  display: inline-block;
  padding: 0.45rem clamp(0.65rem, 1.4vw, 1rem);
  font-family: var(--font-serif);
  font-size: clamp(0.72rem, 1.05vw, 0.84rem);
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  text-decoration: none;
  white-space: nowrap;
  background: transparent;
  transition: color 0.25s ease;
}

.topbar-nav__link::after {
  content: "";
  position: absolute;
  left: clamp(0.65rem, 1.4vw, 1rem);
  right: clamp(0.65rem, 1.4vw, 1rem);
  bottom: 0.15rem;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.25s ease;
}

.topbar-nav__link:hover {
  color: var(--color-accent-text);
  background: transparent;
}

.topbar-nav__link:hover::after,
.topbar-nav__link.is-active::after {
  transform: scaleX(1);
}

.topbar-nav__link.is-active {
  color: var(--color-text);
  background: transparent;
}

html[lang="th"] .topbar-nav__link {
  font-family: var(--font-sans);
  letter-spacing: 0.05em;
  text-transform: none;
  font-size: clamp(0.8rem, 1.1vw, 0.9rem);
}

.page--sub .site-footer {
  background: rgba(255, 255, 255, 0.6);
}

/* Shared hero banner */

.subpage-hero {
  margin-top: var(--subpage-header-h);
  padding: 0;
  width: 100%;
}

.subpage-hero__frame {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: clamp(240px, 30vh, 340px);
  border: none;
  border-bottom: 1px solid var(--color-border);
}

.subpage-hero--about .subpage-hero__frame {
  height: clamp(280px, 34vh, 380px);
}

.subpage-hero--contact .subpage-hero__frame {
  height: clamp(220px, 28vh, 300px);
}

.subpage-hero__frame::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.08) 0%,
    rgba(255, 255, 255, 0.42) 100%
  );
  z-index: 1;
  pointer-events: none;
}

.subpage-hero__img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
}

.subpage-hero__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: clamp(1rem, 2vw, 1.5rem) var(--page-pad);
  text-align: center;
}

.subpage-hero__eyebrow {
  margin: 0 0 0.65rem;
  font-family: var(--font-serif);
  font-size: clamp(0.68rem, 1.1vw, 0.78rem);
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--color-accent-text);
}

.subpage-hero__title {
  margin: 0 0 0.65rem;
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 400;
  letter-spacing: 0.12em;
  line-height: 1.15;
  color: var(--color-text);
}

.subpage-hero__divider {
  display: block;
  width: clamp(3rem, 8vw, 4.5rem);
  height: 1.5px;
  margin: 0 auto 0.6rem;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.08) 0%,
    rgba(0, 0, 0, 0.2) 50%,
    rgba(0, 0, 0, 0.08) 100%
  );
}

.subpage-hero__lead {
  max-width: 32rem;
  margin: 0;
  font-size: clamp(0.82rem, 1.35vw, 0.95rem);
  font-weight: 300;
  line-height: 1.6;
  letter-spacing: 0.04em;
  color: var(--color-text-muted);
}

.subpage-hero--contact .subpage-hero__title {
  margin-bottom: 0.75rem;
  letter-spacing: 0.16em;
}

.subpage-hero--contact .subpage-hero__divider {
  margin-bottom: 0;
}

html[lang="th"] .subpage-hero__title,
html[lang="th"] .subpage-hero__lead,
html[lang="th"] .subpage-hero__eyebrow {
  font-family: var(--font-sans);
}

html[lang="th"] .subpage-hero__title {
  letter-spacing: 0.05em;
}

html[lang="th"] .subpage-hero__eyebrow {
  letter-spacing: 0.12em;
  text-transform: none;
}

@media (max-width: 720px) {
  .subpage-hero__frame {
    height: clamp(200px, 36vw, 260px);
  }

  .subpage-hero--about .subpage-hero__frame {
    height: clamp(230px, 40vw, 290px);
  }

  .subpage-hero--contact .subpage-hero__frame {
    height: clamp(185px, 34vw, 240px);
  }

  .subpage-hero__title {
    font-size: clamp(1.5rem, 6.5vw, 2rem);
  }

  .subpage-hero__eyebrow {
    margin-bottom: 0.45rem;
  }
}

@media (max-width: 960px) {
  .page--sub {
    --subpage-header-h: 4.25rem;
  }
}

@media (max-width: 480px) {
  .page--sub {
    --subpage-header-h: 4rem;
  }

  .page--sub .topbar {
    padding-top: max(0.55rem, env(safe-area-inset-top, 0px));
    padding-bottom: 0.35rem;
  }

  .page--sub .topbar__logo .logo__img {
    height: 1.75rem;
    max-width: min(150px, 44vw);
    width: auto;
  }

  .page--sub .lang-switch__toggle.btn-hero,
  .page--sub .topbar__menu-btn {
    min-height: 2.5rem;
    height: 2.5rem;
    width: 2.5rem;
  }

  .page--sub .lang-switch__toggle.btn-hero {
    width: auto;
    padding: 0 0.55rem;
  }
}

/* Inline topbar — home & products (logo ซ้าย, เมนูกลาง, ภาษาขวา) */

.page--home .header--topbar,
.page--products .header--topbar,
.page--contact .header--topbar,
.page--about .header--topbar {
  position: relative;
  top: auto;
  left: auto;
  right: auto;
  display: block;
  height: auto;
  min-height: 0;
  padding: 0;
  background: #fff;
  border-bottom: 1px solid var(--color-border);
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.topbar--inline {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: clamp(0.85rem, 2vw, 1.15rem) var(--page-pad);
  box-sizing: border-box;
}

.topbar--inline .topbar__row {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(0.75rem, 2vw, 1.5rem);
  margin-bottom: 0;
  min-height: clamp(2.25rem, 4vw, 3rem);
  width: 100%;
}

.topbar--inline .topbar__logo.logo,
.topbar--inline .topbar__logo {
  position: relative;
  left: auto;
  top: auto;
  transform: none;
  margin: 0;
  margin-right: auto;
  flex: 0 0 auto;
  max-width: min(200px, 38vw);
  z-index: 2;
}

/* กัน animation ทั่วไปของ .logo / .header__tools ไปทับ layout */
body.is-ready .topbar--inline .logo,
body.is-ready .topbar--inline .header__tools {
  transform: none;
}

@media (min-width: 961px) {
  body.is-ready .topbar--inline .topbar-nav--inline {
    transform: translate(-50%, -50%);
  }
}

.topbar--inline .topbar__logo .logo__img {
  display: block;
  height: clamp(1.75rem, 3vw, 2.5rem);
  width: auto;
  max-width: 100%;
  object-fit: contain;
  object-position: left center;
}

.topbar--inline .topbar__logo:hover .logo__img {
  transform: scale(1.02);
}

.topbar-nav--inline {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border-top: none;
  padding: 0;
  display: flex;
  justify-content: center;
  width: max-content;
  max-width: calc(100% - 12rem);
  pointer-events: none;
  z-index: 1;
}

.topbar-nav--inline .topbar-nav__list {
  justify-content: center;
  flex-wrap: nowrap;
  pointer-events: auto;
}

.topbar--inline .topbar__tools {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(0.4rem, 1vw, 0.65rem);
  margin-left: auto;
  flex: 0 0 auto;
  z-index: 2;
}

.topbar--inline .topbar__menu-btn {
  display: none;
}

.topbar--inline .header__actions:not(:has(> a.btn-hero)) .lang-switch__toggle.btn-hero {
  min-height: 2.5rem;
  padding: 0 0.55rem;
  border-color: transparent;
  background: transparent;
}

.topbar--inline .header__actions:not(:has(> a.btn-hero)) .lang-switch__toggle.btn-hero:hover {
  background: var(--color-hover);
}

@media (max-width: 960px) {
  .topbar--inline {
    padding-top: max(0.75rem, env(safe-area-inset-top, 0px));
    padding-bottom: max(0.75rem, env(safe-area-inset-bottom, 0px));
    padding-left: max(var(--page-pad), env(safe-area-inset-left, 0px));
    padding-right: max(var(--page-pad), env(safe-area-inset-right, 0px));
  }

  .topbar--inline .topbar__row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.65rem;
    position: relative;
    min-height: 2.75rem;
  }

  .topbar--inline .topbar__logo.logo,
  .topbar--inline .topbar__logo {
    position: relative;
    left: auto;
    top: auto;
    transform: none;
    margin: 0;
    margin-right: auto;
    flex: 0 1 auto;
    max-width: min(148px, 44vw);
    z-index: 3;
  }

  body.is-ready .topbar--inline .topbar__logo.logo,
  body.is-ready .topbar--inline .topbar__logo,
  body.is-ready .topbar--inline .logo {
    transform: none;
  }

  .topbar--inline .topbar__logo .logo__img {
    height: 1.95rem;
  }

  .topbar--inline .topbar-nav--inline {
    display: none;
    visibility: hidden;
    pointer-events: none;
    position: absolute;
    overflow: hidden;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    width: 1px;
    height: 1px;
    white-space: nowrap;
  }

  body.is-ready .topbar--inline .topbar-nav--inline {
    animation: none;
    transform: none;
    opacity: 0;
  }

  .topbar--inline .topbar__tools {
    flex-shrink: 0;
    margin-left: auto;
    z-index: 3;
  }

 .topbar--inline .topbar__menu-btn {
    display: flex;
    width: auto;
    min-width: auto;
    height: 40px;
    padding: 0 14px;
    gap: 0;

    font-family: "Poppins", "Prompt", sans-serif;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.16em;
    line-height: 1;
    text-transform: uppercase;
    color: #000;

    border: 1px solid rgba(0,0,0,.12);
    background: #fff;
}

  .topbar--inline .lang-switch__toggle.btn-hero {
    min-height: 2.65rem;
    padding: 0 0.65rem;
    border-color: var(--color-accent-soft);
  }
}

