:root {
  --primary: #c9231b;
  --primary-dark: #bd241b;
  --ink: #17110f;
  --muted: #6d625c;
  --soft: #fff8f0;
  --cream: #fbefe5;
  --line: #eadbd1;
  --brown: #8b634f;
  --page-width: 80%;
  --container: 80%;
  --shadow: 0 16px 34px rgba(99, 59, 35, .12);
  --font-serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --font-body: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.article-related-panel {
  margin-top: 42px;
  padding: 28px;
  border: 1px solid rgba(11, 78, 162, .16);
  background: #f6f8fc;
}

.product-source-list-page {
  background: #f5f6fb;
}

.product-source-list {
  padding: 42px 0 66px;
  background: #f5f6fb;
}

.product-source-list .source-wide-container {
  width: var(--container);
  max-width: none;
  margin: 0 auto;
}

.product-source-list .source-heading {
  margin-bottom: 60px;
  text-align: center;
}

.product-source-list .source-heading h1 {
  margin: 0;
  color: #20242a;
  font-family: Lato, Arial, sans-serif;
  font-size: 36px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: .02em;
  text-transform: uppercase;
}

.product-source-list .source-heading::after {
  content: "";
  display: block;
  width: 95px;
  height: 4px;
  margin: 17px auto 0;
  background: #fa5e07;
}

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

.product-source-card {
  min-height: 270px;
  display: grid;
  grid-template-columns: 47% 53%;
  align-items: center;
  padding: 38px 46px 36px 48px;
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
}

.product-source-copy {
  min-width: 0;
}

.product-source-copy h2 {
  width: 100%;
  max-width: 430px;
  margin: 0 0 23px;
  color: #22242a;
  font-family: Lato, Arial, sans-serif;
  font-size: 28px;
  font-weight: 900;
  line-height: 1.22;
}

.product-source-copy h2 a:hover {
  color: #fa5e07;
}

.product-source-line {
  position: relative;
  height: 2px;
  margin-bottom: 20px;
  background: #c9c9c9;
}

.product-source-line::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 50%;
  height: 2px;
  background: #fa5e07;
}

.product-source-copy ul {
  min-height: 74px;
  margin: 0 0 28px;
  padding: 0;
  color: #696d73;
  font-size: 16px;
  line-height: 1.4;
  list-style: none;
}

.product-source-more {
  color: #565b63;
  font-size: 15px;
  line-height: 1;
}

.product-source-more:hover {
  color: #fa5e07;
}

.product-source-media {
  display: grid;
  min-width: 0;
  place-items: center;
}

.product-source-media img {
  width: 112%;
  max-width: none;
  max-height: 196px;
  object-fit: contain;
  transition: transform .22s ease;
}

.product-source-card:hover .product-source-media img {
  transform: translateX(4px) scale(1.02);
}

@media (max-width: 1199.98px) {
  .product-source-list .source-wide-container {
    width: min(100% - 60px, 980px);
  }

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

@media (max-width: 575.98px) {
  .product-source-list {
    padding: 46px 0 58px;
  }

  .product-source-list .source-wide-container {
    width: min(100% - 28px, 430px);
  }

  .product-source-list .source-heading {
    margin-bottom: 34px;
  }

  .product-source-list .source-heading h1 {
    font-size: 30px;
  }

  .product-source-card {
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 30px 26px;
    border-radius: 10px;
  }

  .product-source-copy h2 {
    font-size: 24px;
  }

  .product-source-copy ul {
    min-height: 0;
    margin-bottom: 24px;
  }
}

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

.article-related-head span {
  display: inline-block;
  margin-bottom: 5px;
  color: #fa5e07;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.article-related-head h2 {
  margin: 0;
  color: #111827;
  font-size: 26px;
  line-height: 1.2;
}

.article-related-refresh {
  border: 0;
  background: transparent;
  color: #fa5e07;
  font-weight: 800;
}

.article-related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.article-related-item {
  display: none;
  min-height: 142px;
  padding: 18px;
  background: #fff;
  border-left: 3px solid #fa5e07;
  color: #1f2937;
}

.article-related-item.is-active {
  display: flex;
  flex-direction: column;
}

.article-related-item small {
  margin-bottom: 10px;
  color: #667085;
  font-size: 12px;
}

.article-related-item strong {
  color: #111827;
  font-size: 17px;
  line-height: 1.38;
}

.article-related-item em {
  margin-top: auto;
  color: #fa5e07;
  font-style: normal;
  font-weight: 800;
}

@media (max-width: 767.98px) {
  .article-related-panel {
    padding: 22px;
  }

  .article-related-head {
    display: block;
  }

  .article-related-refresh {
    margin-top: 12px;
  }

  .article-related-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  html,
  body,
  .site,
  #page {
    max-width: 100%;
    overflow-x: hidden;
  }

  .hero-copy,
  .hero p,
  .section-head,
  .section-title,
  .section-subtitle {
    max-width: calc(100vw - 48px);
  }

  .hero .hero-copy,
  .hero h1,
  .hero p {
    max-width: 100%;
  }

  .section-title,
  .news-title,
  .page-title,
  .copy-title,
  .about-title {
    overflow-wrap: anywhere;
    text-wrap: balance;
  }

  .section-title {
    font-size: clamp(34px, 10vw, 42px);
    line-height: 1.08;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }

  .collections .container {
    padding-left: 4px;
    padding-right: 4px;
  }

  .collections .section-link {
    margin-top: 12px;
  }
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background: #fffdf9;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Small copy and UI text: Plus Jakarta Sans */
p,
li,
label,
small,
.nav,
.header-actions,
.btn,
.section-subtitle,
.page-subtitle,
.page-kicker,
.copy-kicker,
.copy-text,
.hero p,
.hero-feature-text strong,
.hero-feature-text > span,
.about-global-lead,
.about-global-feature p,
.oem-section-head p,
.oem-service-card h3,
.oem-service-card p,
.oem-process-row b,
.oem-process-row h3,
.oem-process-row p,
.oem-cert-list article h3,
.oem-cert-list article p,
.oem-quality-card strong,
.oem-quality-card p,
.site-footer,
.footer-title,
.footer-list,
.footer-links,
.footer-bottom {
  font-family: var(--font-body);
}

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

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

.site {
  min-width: 320px;
  width: 100%;
  margin: 0;
  overflow: hidden;
  background: #fffdf9;
}

.container,
.hero-inner,
.trends-head,
.news-grid,
.innovation-inner {
  width: min(var(--container), 100%);
  margin: 0 auto;
}

.header {
  height: 112px;
  width: 100%;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  display: block;
  background: rgba(255, 255, 255, .98);
  border-bottom: 1px solid #f0e5db;
  position: sticky;
  top: 0;
  z-index: 20;
}

.header-inner {
  width: min(var(--container), 100%);
  height: 100%;
  margin: 0 auto;
  padding: 0;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  gap: 0;
}

.logo {
  width: 120px;
  flex: 0 0 auto;
  margin-right: clamp(56px, 5.5vw, 88px);
  display: grid;
  justify-items: center;
  gap: 7px;
}

.logo-mark {
  width: 110px;
  height: 56px;
  border-radius: 0;
  display: grid;
  place-items: center;
  color: transparent;
  overflow: hidden;
  background: url("site-logo.webp") center / contain no-repeat;
  box-shadow: none;
  border: 0;
  font-family: var(--font-serif);
  font-size: 0;
  font-style: italic;
  line-height: 1;
}

.logo-tagline {
  color: #1f1a17;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .02em;
  text-align: center;
}

.footer-small {
  margin: 8px 0 0;
  color: #1f1a17;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .02em;
  text-align: center;
  line-height: 1.45;
}

.nav {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 32px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  white-space: nowrap;
}

.nav-caret {
  font-size: 11px;
  line-height: 1;
  color: #6d625c;
  transform: translateY(1px);
}

.nav a.active .nav-caret {
  color: var(--primary);
}

.nav a.active {
  color: var(--primary);
}

.nav a.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -17px;
  height: 2px;
  background: var(--primary);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: 44px;
  flex: 0 0 auto;
}

.btn {
  height: 43px;
  padding: 0 30px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 1px solid transparent;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
  white-space: nowrap;
  cursor: pointer;
  transition: background .2s ease, box-shadow .2s ease, transform .15s ease, opacity .2s ease;
}

.header .btn.primary {
  color: #fff;
  background: linear-gradient(180deg, #ee4437, #d83127);
  box-shadow: none;
}

.header .btn.ghost {
  color: #9d614d;
  border-color: #d7ad9c;
  background: #fffaf5;
  box-shadow: none;
}

.header .btn,
.detail-header .btn {
  font-size: 12px;
}

.btn.primary {
  color: #fff;
  background: linear-gradient(180deg, #ee4437, #d83127);
  box-shadow: 0 12px 20px rgba(216, 49, 39, .2);
}

.btn.primary:hover {
  background: linear-gradient(180deg, #f04f42, #e03a30);
  box-shadow: 0 14px 24px rgba(216, 49, 39, .28);
}

.btn.primary:active {
  transform: translateY(1px);
  box-shadow: 0 8px 14px rgba(216, 49, 39, .18);
}

.btn.primary:disabled,
.btn.primary.is-submitting {
  opacity: .82;
  cursor: wait;
  pointer-events: none;
  transform: none;
}

.btn.primary.is-submitting .gbt-inquiry-submit__text::before {
  content: "";
  display: inline-block;
  width: 14px;
  height: 14px;
  margin-right: 8px;
  border: 2px solid rgba(255, 255, 255, .35);
  border-top-color: #fff;
  border-radius: 50%;
  vertical-align: -2px;
  animation: gbt-submit-spin .7s linear infinite;
}

.btn.primary.is-submitting .gbt-inquiry-submit__icon,
.btn.primary.is-submitting svg {
  display: none;
}

.gbt-inquiry-submit {
  width: 100%;
  min-height: 46px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .05em;
}

.gbt-inquiry-submit .gbt-inquiry-submit__text {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
}

.gbt-inquiry-submit__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .14);
  transition: transform .2s ease, background .2s ease;
}

.gbt-inquiry-submit:hover .gbt-inquiry-submit__icon {
  background: rgba(255, 255, 255, .24);
  transform: translateX(2px);
}

.gbt-inquiry-submit svg {
  width: 15px;
  height: 15px;
}

@keyframes gbt-submit-spin {
  to {
    transform: rotate(360deg);
  }
}

.btn.ghost {
  color: #9d614d;
  border-color: #d7ad9c;
  background: #fffaf5;
}

.btn.ghost:hover {
  background: #fff3ea;
  border-color: #c99582;
}

.btn.ghost:active {
  transform: translateY(1px);
}

.lang {
  margin-left: 10px;
  padding: 0;
  border: 0;
  background: none;
  color: #31241f;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .04em;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}

.lang-globe {
  width: 16px;
  height: 16px;
  stroke: #9d614d;
  fill: none;
  stroke-width: 1.4;
}

/* Custom TranslatePress language switcher */
.gbt-lang-switcher {
  position: relative;
  z-index: 40;
  margin-left: 8px;
  flex: 0 0 auto;
}

.gbt-lang-switcher__trigger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid #e4c8ba;
  border-radius: 999px;
  background: #fffaf5;
  color: #9d614d;
  cursor: pointer;
  transition: border-color .2s ease, background .2s ease, color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.gbt-lang-switcher__trigger:hover,
.gbt-lang-switcher__trigger:focus-visible {
  border-color: #d7ad9c;
  background: #fff3ea;
  color: #7f4f3d;
  outline: none;
  box-shadow: 0 0 0 3px rgba(216, 49, 39, .12);
}

.gbt-lang-switcher.is-open .gbt-lang-switcher__trigger {
  border-color: #c88974;
  background: #fff3ea;
  color: #7f4f3d;
  box-shadow: 0 8px 18px rgba(111, 66, 42, .12);
}

.gbt-lang-switcher__icon {
  display: inline-flex;
  width: 18px;
  height: 18px;
}

.gbt-lang-switcher__icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

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

.gbt-lang-switcher__menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  min-width: 228px;
  padding: 8px;
  border: 1px solid #ead7c9;
  border-radius: 12px;
  background: #fffdf9;
  box-shadow: 0 18px 42px rgba(65, 39, 24, .16);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px) scale(.98);
  transform-origin: top right;
  transition: opacity .22s ease, transform .22s ease, visibility .22s ease;
  pointer-events: none;
}

.gbt-lang-switcher.is-open .gbt-lang-switcher__menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.gbt-lang-switcher__menu[hidden] {
  display: block;
}

.gbt-lang-switcher__option {
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr) auto 18px;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  padding: 8px 10px;
  border-radius: 8px;
  color: #3b2a23;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: background .18s ease, color .18s ease;
}

.gbt-lang-switcher__option:hover,
.gbt-lang-switcher__option:focus-visible {
  background: #fff3ea;
  color: #9d614d;
  outline: none;
}

.gbt-lang-switcher__option.is-active {
  background: rgba(216, 49, 39, .08);
  color: #9d614d;
  cursor: default;
}

.gbt-lang-switcher__flag {
  width: 20px;
  height: 14px;
  object-fit: cover;
  border-radius: 2px;
  box-shadow: inset 0 0 0 1px rgba(65, 39, 24, .12);
}

.gbt-lang-switcher__flag--empty {
  display: block;
  background: linear-gradient(180deg, #f5ebe3, #ead7c9);
}

.gbt-lang-switcher__label {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.gbt-lang-switcher__code {
  color: #8a7468;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .06em;
}

.gbt-lang-switcher__option.is-active .gbt-lang-switcher__code {
  color: #9d614d;
}

.gbt-lang-switcher__check {
  display: inline-flex;
  opacity: 0;
  transform: scale(.7);
  transition: opacity .18s ease, transform .18s ease;
}

.gbt-lang-switcher__check svg {
  width: 16px;
  height: 16px;
  color: #d83127;
}

.gbt-lang-switcher__option.is-active .gbt-lang-switcher__check {
  opacity: 1;
  transform: scale(1);
}

.gbt-lang-switcher-mount--mobile {
  display: none;
}

.mobile-menu-toggle,
.mobile-drawer,
.mobile-drawer-overlay {
  display: none;
}

.mobile-drawer[hidden],
.mobile-drawer-overlay[hidden] {
  display: none !important;
}

.section {
  position: relative;
}

.home-hero {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: var(--cream);
  --home-hero-inset: clamp(16px, 4vw, 48px);
  --home-hero-z-slide: 1;
  --home-hero-z-scrim: 2;
  --home-hero-z-ui: 3;
}

.home-hero__carousel {
  position: relative;
  display: grid;
  width: 100%;
  isolation: isolate;
}

.home-hero__carousel:focus {
  outline: none;
}

.home-hero__carousel:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: -2px;
}

.home-hero__inner,
.home-hero__scrim,
.home-hero__ui {
  grid-area: 1 / 1;
}

.home-hero__inner {
  position: relative;
  display: grid;
  width: 100%;
  min-height: 0;
}

.home-hero__item {
  grid-area: 1 / 1;
  opacity: 0;
  visibility: hidden;
  transition: opacity .75s cubic-bezier(.22, 1, .36, 1), visibility .75s;
  pointer-events: none;
}

.home-hero__item.is-active {
  opacity: 1;
  visibility: visible;
  z-index: var(--home-hero-z-slide);
  pointer-events: auto;
}

.home-hero__slide,
.home-hero__link,
.home-hero__picture,
.home-hero__picture picture {
  display: block;
  width: 100%;
}

.home-hero__slide {
  position: relative;
}

.home-hero__link {
  color: inherit;
  text-decoration: none;
}

.home-hero__picture picture {
  width: 100%;
}

.home-hero__img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
}

.home-hero__scrim {
  position: relative;
  z-index: var(--home-hero-z-scrim);
  align-self: end;
  width: 100%;
  height: 46%;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    rgba(251, 239, 229, 0) 0%,
    rgba(251, 239, 229, .42) 100%
  );
}

.home-hero__ui {
  position: relative;
  z-index: var(--home-hero-z-ui);
  min-height: 0;
  pointer-events: none;
}

.home-hero__ui > * {
  pointer-events: auto;
}

.home-hero__indicators {
  position: absolute;
  left: 50%;
  bottom: var(--home-hero-inset);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  padding: 10px 14px;
  list-style: none;
  border-radius: 999px;
  background: rgba(23, 17, 15, .28);
  transform: translateX(-50%);
}

.home-hero__indicator {
  position: relative;
  width: 28px;
  height: 4px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, .42);
  cursor: pointer;
  transition: width .28s cubic-bezier(.22, 1, .36, 1), background-color .28s ease;
}

.home-hero__indicator::before {
  content: "";
  position: absolute;
  inset: -12px -4px;
}

.home-hero__indicator.is-active {
  width: 44px;
  background: #fff;
}

.home-hero__indicator:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 3px;
}

.home-hero__control {
  position: absolute;
  top: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: 999px;
  background: rgba(23, 17, 15, .34);
  color: #fff;
  transform: translateY(-50%);
  cursor: pointer;
  transition: background-color .22s ease, border-color .22s ease, transform .22s cubic-bezier(.22, 1, .36, 1);
}

.home-hero__control:hover {
  background: rgba(23, 17, 15, .52);
  border-color: rgba(255, 255, 255, .42);
}

.home-hero__control:active {
  transform: translateY(-50%) scale(.96);
}

.home-hero__control:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 3px;
}

.home-hero__control--prev {
  left: var(--home-hero-inset);
}

.home-hero__control--next {
  right: var(--home-hero-inset);
}

.home-hero__control-icon {
  display: inline-flex;
  width: 18px;
  height: 18px;
}

.home-hero__control-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

@media (prefers-reduced-motion: reduce) {
  .home-hero__item {
    transition: opacity .01ms linear;
  }

  .home-hero__indicator,
  .home-hero__control {
    transition: none;
  }
}

@media (max-width: 768px) {
  .home-hero {
    --home-hero-inset: 12px;
  }

  .home-hero__control {
    width: 40px;
    height: 40px;
  }

  .home-hero__indicators {
    gap: 6px;
    padding: 8px 12px;
  }

  .home-hero__indicator {
    width: 22px;
  }

  .home-hero__indicator.is-active {
    width: 36px;
  }
}

.hero {
  --hero-inset-x: clamp(24px, 4vw, 64px);
  --hero-inset-y: clamp(40px, 5vw, 68px);
  position: relative;
  display: block;
  padding: 0;
  overflow: hidden;
  background: transparent;
}

.hero-bg-picture,
.hero-bg {
  display: block;
  width: 100%;
}

.hero-bg {
  height: auto;
  max-width: 100%;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(252, 240, 229, .98) 0%, rgba(252, 240, 229, .9) 30%, rgba(252, 240, 229, .42) 52%, rgba(252, 240, 229, .08) 68%, rgba(252, 240, 229, 0) 78%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: .24;
  pointer-events: none;
  background:
    radial-gradient(circle at 22% 12%, rgba(172, 118, 83, .18) 0 1px, transparent 2px),
    radial-gradient(circle at 42% 28%, rgba(225, 94, 75, .24) 0 5px, transparent 6px),
    radial-gradient(circle at 48% 56%, rgba(225, 94, 75, .18) 0 4px, transparent 5px),
    linear-gradient(90deg, transparent, rgba(255,255,255,.28));
}

.hero-inner {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  gap: clamp(32px, 3.2vw, 40px);
  padding: var(--hero-inset-y) var(--hero-inset-x);
}

.hero-left {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 100%;
}

.hero-copy {
  width: 100%;
  max-width: 520px;
}

.hero .eyebrow {
  margin: 0 0 10px;
  color: var(--primary);
  font-size: clamp(13px, 1.1vw, 15px);
  font-weight: 800;
  letter-spacing: .05em;
}

.hero h1,
.section-title,
.about-title,
.news-title,
.innovation h2 {
  font-family: var(--font-serif);
  font-weight: 500;
  letter-spacing: -.025em;
}

.hero h1 {
  margin: 0 0 clamp(12px, 1.4vw, 18px);
  max-width: 520px;
  font-size: clamp(42px, 4.8vw, 68px);
  line-height: 1.06;
  letter-spacing: -.03em;
  text-wrap: balance;
}

.hero p {
  margin: 0 0 clamp(18px, 2vw, 24px);
  max-width: 440px;
  color: #201d1a;
  font-family: var(--font-body);
  font-size: clamp(15px, 1.25vw, 17px);
  line-height: 1.5;
}

.hero .btn {
  height: 44px;
  padding: 0 28px;
}

.hero-visual { display: none; }

.hero-features {
  width: 60%;
  max-width: 60%;
  align-self: flex-start;
  margin: 0;
  padding: clamp(18px, 2vw, 24px) 0 0;
  border-top: 1px solid rgba(139, 99, 79, .16);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: start;
  gap: clamp(12px, 1.6vw, 24px);
}

.hero-feature {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  min-width: 0;
  color: #6f5749;
}

.hero-feature-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 0 1 auto;
}

.hero-feature-text strong {
  display: block;
  color: #4e3a31;
  font-family: var(--font-body);
  font-size: clamp(12px, 1vw, 13px);
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: .01em;
}

.hero-feature-text > span {
  display: block;
  color: #8a7468;
  font-size: clamp(11px, .95vw, 12px);
  line-height: 1.4;
  font-weight: 400;
}

.feature-icon {
  flex: 0 0 auto;
  width: 40px;
  height: 40px;
  border: 1px solid #b48b74;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #8d624f;
}

.feature-icon svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.section-head {
  text-align: center;
}

.section-title {
  margin: 0;
  font-size: 44px;
  line-height: 1.12;
}

.section-subtitle {
  margin: 10px 0 0;
  color: var(--muted);
  font-family: var(--font-body);
  font-size: 16px;
}

.section-link,
.tiny-link {
  color: var(--primary-dark);
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.collections {
  min-height: 405px;
  padding: 36px 0 48px;
  background: #fffefa;
}

.collections-top {
  position: relative;
  margin-bottom: 28px;
}

.collections-top .section-head {
  margin-bottom: 0;
}

.collections-top__actions {
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 14px;
}

.collections-top__link.section-link {
  position: static;
  top: auto;
  right: auto;
}

.collections-carousel-nav {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.collections-carousel-nav[hidden] {
  display: none !important;
}

.collections-carousel-nav__btn {
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid #e4c8ba;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #7f4f3d;
  background: #fffaf5;
  box-shadow: 0 8px 18px rgba(111, 66, 42, .08);
  cursor: pointer;
  transition: border-color .2s ease, background .2s ease, color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.collections-carousel-nav__btn:hover:not(:disabled) {
  border-color: #c88974;
  background: #fff3ea;
  color: #5c382c;
}

.collections-carousel-nav__btn:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(216, 49, 39, .18);
}

.collections-carousel-nav__btn:disabled {
  opacity: .38;
  cursor: not-allowed;
  box-shadow: none;
}

.collections-carousel-nav__icon {
  width: 18px;
  height: 18px;
  display: block;
}

.collections-carousel-nav__icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.category-carousel {
  --collections-gap: 22px;
  --collections-per-view: 6;
}

.category-carousel:focus {
  outline: none;
}

.category-carousel:focus-visible {
  outline: 2px solid rgba(216, 49, 39, .35);
  outline-offset: 4px;
  border-radius: 8px;
}

.category-carousel__viewport {
  position: relative;
  overflow: hidden;
  touch-action: pan-y;
  cursor: grab;
}

.category-carousel__fade {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: clamp(36px, 12vw, 56px);
  pointer-events: none;
  opacity: 0;
  transition: opacity .28s ease;
  background: linear-gradient(90deg, rgba(255, 254, 250, 0) 0%, rgba(255, 254, 250, .88) 72%, #fffefa 100%);
  z-index: 2;
}

.category-carousel.has-swipe-nav:not(.is-at-end) .category-carousel__fade {
  opacity: 1;
}

.category-carousel__hint {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 12px 0 0;
  color: #5f514a;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.category-carousel__hint-icon {
  display: inline-flex;
  width: 22px;
  height: 22px;
  color: #a67b67;
  animation: collections-swipe-hint 1.8s ease-in-out infinite;
}

.category-carousel__hint-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.category-carousel.has-swipe-nav:not(.hint-dismissed) .category-carousel__hint {
  display: flex;
}

@keyframes collections-swipe-hint {
  0%,
  100% {
    transform: translateX(0);
    opacity: .72;
  }

  50% {
    transform: translateX(6px);
    opacity: 1;
  }
}

@media (max-width: 1100px) {
  .category-carousel__hint {
    margin-top: 10px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .category-carousel__hint-icon {
    animation: none;
  }
}

.category-carousel__viewport.is-dragging {
  cursor: grabbing;
}

.category-carousel__viewport.is-dragging .category-card__media {
  pointer-events: none;
}

.category-carousel__track {
  display: flex;
  gap: var(--collections-gap);
  will-change: transform;
}

.category-carousel__track .category-card {
  flex: 0 0 var(--collections-card-width, 220px);
  width: var(--collections-card-width, 220px);
  min-width: 0;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 22px;
}

.category-card {
  height: 258px;
  overflow: hidden;
  border-radius: 7px;
  background: #fff8ef;
  box-shadow: 0 10px 22px rgba(99, 59, 35, .08);
  text-align: center;
}

.category-card img {
  width: 100%;
  height: 166px;
  object-fit: cover;
}

.category-card__media {
  display: block;
  width: 100%;
  height: 166px;
  overflow: hidden;
}

.category-card__media--empty {
  background:
    linear-gradient(180deg, #fff3ea 0%, #f6e4d8 100%);
}

.category-card--no-image {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.category-card--no-image h3 {
  margin-top: 0;
}

.category-card h3 {
  margin: 19px 8px 12px;
  font-size: 17px;
  line-height: 1.15;
}

.category-card .tiny-link {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .06em;
  padding-bottom: 18px;
}

.tiny-link {
  display: inline-block;
}

.about {
  height: 540px;
  padding-top: 58px;
  background: #fffefa;
}

.about-layout {
  display: grid;
  grid-template-columns: 520px 1fr 220px;
  gap: 20px;
  align-items: stretch;
}

.about-kicker {
  margin: 0 0 13px;
  color: var(--primary);
  font-size: 15px;
  font-weight: 900;
  letter-spacing: .12em;
}

.about-title {
  margin: 0 0 21px;
  font-size: 45px;
  line-height: 1.12;
}

.about-copy p {
  margin: 0 0 14px;
  color: #3c312c;
  font-size: 17px;
  line-height: 1.65;
}

.about-copy .btn {
  height: 50px;
  margin-top: 14px;
  padding: 0 34px;
  font-size: 11px;
}

.logistics {
  width: 100%;
  height: 382px;
  object-fit: cover;
  border-radius: 9px;
  box-shadow: var(--shadow);
}

.stats-panel {
  height: 382px;
  padding: 28px 24px;
  border-radius: 9px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  background:
    radial-gradient(circle at 80% 36%, rgba(255,255,255,.72), transparent 26%),
    linear-gradient(180deg, #f8ede2, #f4e5d7);
}

.stat {
  margin-bottom: 0;
}

.stat strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 500;
  line-height: 1.05;
}

.stat span {
  display: block;
  margin-top: 5px;
  color: #6b574d;
  font-size: 12px;
  line-height: 1.4;
}

.trends {
  height: auto;
  padding: 48px 64px 56px;
  background: #fffefa;
}

.trends-head {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 28px 32px;
  align-items: center;
  margin-bottom: 28px;
}

.trends-title-group {
  display: flex;
  align-items: center;
  gap: 14px;
}

.trends-icon {
  flex: 0 0 auto;
  width: 36px;
  height: 36px;
  line-height: 0;
}

.trends-icon svg {
  display: block;
  width: 36px;
  height: 36px;
}

.news-title {
  margin: 0;
  font-size: 42px;
  white-space: nowrap;
}

.trends-subtitle {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.5;
  max-width: 520px;
}

.trends-link {
  white-space: nowrap;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.news-card {
  min-height: 210px;
  display: grid;
  grid-template-columns: 1fr 172px;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid #e8dfd8;
  background: linear-gradient(180deg, #fffdf9 0%, #fff8ef 100%);
  box-shadow: none;
}

.news-card.wide-img {
  grid-template-columns: 1fr 184px;
}

.news-card-body {
  display: flex;
  flex-direction: column;
  padding: 22px 20px 20px;
}

.date {
  color: #a88777;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.news-card h3 {
  margin: 10px 0 8px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.35;
}

.news-hot {
  color: var(--primary);
  font-weight: 700;
}

.news-excerpt {
  margin: 0 0 14px;
  color: #6d625c;
  font-size: 13px;
  line-height: 1.5;
}

.news-card-body .tiny-link {
  margin-top: auto;
  font-weight: 700;
}

.news-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.trusted {
  position: relative;
  z-index: 1;
  min-height: 270px;
  height: auto;
  padding: 10px 0 42px;
  text-align: center;
  background: #fffefa;
}

.trusted--has-bg {
  background-color: #fffefa;
  background-image: var(--home-trusted-bg-image);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

.trusted--has-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255, 254, 250, .52), rgba(255, 254, 250, .62));
}

.trusted--has-bg > * {
  position: relative;
  z-index: 1;
}

.trusted p {
  margin: 6px 0 34px;
  color: var(--muted);
  font-size: 13px;
}

.brand-strip {
  width: min(var(--container), 100%);
  margin: 0 auto;
  min-height: 126px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 18px 36px;
}

.brand-strip__logo {
  flex: 0 1 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 72px;
}

.brand-strip__logo img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}

.brand-strip--fallback {
  display: block;
  overflow: hidden;
}

.brand-strip--fallback img {
  width: 100%;
  height: 126px;
  object-fit: contain;
  display: block;
}

.innovation {
  min-height: 176px;
  height: auto;
  padding: 44px 0;
  background: #f9f5f1;
}

.innovation-inner {
  display: grid;
  grid-template-columns: minmax(280px, 380px) minmax(0, 1fr);
  gap: 32px 48px;
  align-items: center;
}

.innovation-heading {
  position: relative;
  padding-left: 72px;
  max-width: 380px;
}

.innovation-globe {
  position: absolute;
  left: -8px;
  top: 50%;
  width: 72px;
  height: 72px;
  transform: translateY(-50%);
  color: rgba(181, 120, 90, .32);
  pointer-events: none;
}

.innovation-globe svg {
  width: 100%;
  height: 100%;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.2;
}

.innovation h2 {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-size: 22px;
  line-height: 1.24;
  color: #2a211d;
}

.innovation h2 span {
  display: block;
}

.mini-features {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px 20px;
  width: 100%;
  min-width: 0;
}

.mini-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1 1 0;
  min-width: 0;
}

.mini-feature-icon {
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  color: #9a6f58;
}

.mini-feature-icon svg {
  width: 26px;
  height: 26px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.35;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.mini-feature-icon--hex svg {
  width: 28px;
  height: 28px;
}

.mini-feature-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.mini-feature-text span {
  display: block;
  color: #6f5749;
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.42;
  font-weight: 400;
  letter-spacing: .01em;
  overflow-wrap: break-word;
}

.site-footer {
  --footer-body: 15px;
  --footer-body-lh: 1.55;
  --footer-heading: 13px;
  --footer-link: 13px;
  display: block;
  min-height: 0;
  background-color: #fff7ef;
  background-image:
    linear-gradient(180deg, rgba(255, 249, 243, .16), rgba(255, 246, 240, .26)),
    var(--footer-bg);
  background-position: center top, center top;
  background-size: cover, cover;
  background-repeat: no-repeat, no-repeat;
  border-top: 1px solid rgba(228, 198, 181, .7);
  padding: clamp(72px, 8vw, 96px) 0 clamp(36px, 4vw, 46px);
  color: #5a534e;
  font-family: var(--font-body);
  font-size: var(--footer-body);
  line-height: var(--footer-body-lh);
}

.footer-inner,
.footer-bottom {
  width: var(--container);
  margin: 0 auto;
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) repeat(var(--footer-columns, 4), minmax(0, 1fr));
  column-gap: clamp(28px, 3.2vw, 44px);
  row-gap: 24px;
  align-items: start;
}

.footer-brand {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  min-width: 0;
  padding: 0;
  overflow: visible;
}

.footer-column {
  min-width: 0;
  padding: 0 0 0 clamp(22px, 2.6vw, 34px);
  border-left: 1px solid rgba(222, 178, 153, .62);
  overflow: visible;
}

.footer-brand-logo.logo {
  width: auto;
  margin-right: 0;
  align-items: center;
}

.footer-title {
  margin: 0 0 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: var(--footer-heading);
  line-height: 1.25;
  font-weight: 700;
  letter-spacing: .01em;
  color: #383532;
}

.footer-title span,
.footer-contact-list a span,
.footer-address-line > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  color: #dc9c83;
  flex: 0 0 18px;
  overflow: visible;
}

.footer-title svg {
  width: 17px;
  height: 17px;
  fill: currentColor;
  display: block;
  flex: 0 0 auto;
}

.footer-list,
.footer-links {
  color: #5a534e;
  font-size: var(--footer-body);
  line-height: var(--footer-body-lh);
}

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

.footer-contact-list a,
.footer-address-line {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  min-width: 0;
  color: #5a534e;
  font-size: var(--footer-body);
  line-height: var(--footer-body-lh);
  text-decoration: none;
  overflow: visible;
}

.footer-contact-list a {
  align-items: center;
}

.footer-contact-mail {
  white-space: nowrap;
}

.footer-contact-list svg,
.footer-address-line svg {
  display: block;
  width: 18px;
  height: 18px;
  fill: currentColor;
  flex: 0 0 18px;
  overflow: visible;
}

.footer-address-line svg {
  margin-top: 2px;
}

.footer-address-line p {
  margin: 0;
  max-width: 240px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 4px;
}

.footer-links a {
  display: inline-block;
  transition: color .2s ease;
  color: #544e49;
  font-size: var(--footer-link);
  font-weight: 600;
  line-height: 1.45;
  letter-spacing: normal;
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--primary);
}

.socials {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 2px;
  overflow: visible;
}

.social-link {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  background: linear-gradient(180deg, #c89378, #aa765e);
  text-decoration: none;
  font-size: 0;
  line-height: 0;
  transition: transform .22s cubic-bezier(.22, 1, .36, 1), filter .22s ease;
}

.social-link:hover {
  color: #fff;
  transform: translateY(-2px);
  filter: brightness(1.06);
}

.social-link:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 3px;
}

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

.social-link i {
  font-size: 17px;
  line-height: 1;
}

.footer-bottom {
  max-width: 900px;
  margin-top: clamp(40px, 5vw, 56px);
  padding-top: 22px;
  border-top: 1px solid rgba(222, 178, 153, .62);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px 32px;
  color: #68615c;
  font-size: 14px;
  line-height: 1.5;
}

.footer-bottom .copyright {
  text-align: center;
}

.footer-bottom .copyright a {
  position: relative;
  display: inline-block;
  margin-left: 32px;
  color: #68615c;
  text-decoration: none;
}

.footer-bottom .copyright a::before {
  content: "";
  position: absolute;
  left: -19px;
  top: 50%;
  width: 1px;
  height: 16px;
  transform: translateY(-50%);
  background: rgba(180, 139, 116, .65);
}

.footer-bottom a {
  position: relative;
  color: #68615c;
  text-decoration: none;
}

.footer-bottom a::before {
  content: "";
  position: absolute;
  left: -19px;
  top: 50%;
  width: 1px;
  height: 16px;
  transform: translateY(-50%);
  background: rgba(180, 139, 116, .65);
}

.site-footer > .copyright {
  display: none;
}

@media (max-width: 1200px) {
  .footer-inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: clamp(24px, 4vw, 36px);
    row-gap: 28px;
  }

  .footer-brand {
    grid-column: 1 / -1;
    justify-content: flex-start;
  }

  .footer-column:nth-child(2),
  .footer-column:nth-child(4) {
    padding-left: 0;
    border-left: 0;
  }

  .innovation-inner {
    gap: 28px 36px;
  }

  .mini-features {
    gap: 14px 16px;
  }

  .nav {
    gap: 22px;
    font-size: 13px;
  }

  .header-actions {
    margin-left: 20px;
    gap: 8px;
  }

  .header .btn {
    height: 40px;
    padding: 0 22px;
    font-size: 11px;
  }
}

@media (max-width: 1100px) {
  .container,
  .hero-inner,
  .trends-head,
  .news-grid,
  .innovation-inner {
    width: calc(100vw - 48px);
  }

  .header {
    height: auto;
    padding: 18px 24px;
    flex-wrap: wrap;
    gap: 18px 20px;
  }

  .logo {
    margin-right: 0;
  }

  .header-actions {
    margin-left: auto;
    gap: 10px;
  }

  .gbt-lang-switcher--header {
    margin-left: 4px;
  }

  .nav {
    order: 3;
    width: 100%;
    overflow-x: auto;
    gap: 24px;
  }

  .hero,
  .collections,
  .about,
  .trends,
  .trusted,
  .innovation {
    height: auto;
  }

  .hero {
    --hero-inset-x: 24px;
    --hero-inset-y: 44px;
    background-position: 72% center;
  }

  .hero-inner {
    padding: var(--hero-inset-y) var(--hero-inset-x);
    align-items: stretch;
    gap: 24px;
  }

  .hero-copy {
    width: min(520px, 100%);
  }

  .hero h1 {
    font-size: clamp(34px, 7vw, 48px);
  }

  .hero-left {
    width: 100%;
  }

  .hero-features {
    width: 100%;
    max-width: 100%;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding-top: 20px;
    gap: 20px 32px;
  }

  .feature-icon {
    width: 38px;
    height: 38px;
  }

  .feature-icon svg {
    width: 18px;
    height: 18px;
  }

  .collections,
  .about,
  .trends,
  .trusted,
  .innovation {
    padding: 42px 0;
  }

  .collections-top__actions {
    position: static;
    align-items: center;
    margin: 12px 0 24px;
  }

  .collections-top__link.section-link {
    display: block;
    text-align: center;
    margin: 0;
  }

  .category-carousel {
    --collections-per-view: 2;
    --collections-gap: 12px;
  }

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

  .about-layout {
    grid-template-columns: 1fr;
  }

  .logistics,
  .stats-panel {
    height: auto;
  }

  .stats-panel {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
  }

  .trends {
    padding: 40px 24px 48px;
  }

  .trends-head {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .news-title {
    white-space: normal;
    font-size: 36px;
  }

  .innovation {
    padding: 36px 24px;
  }

  .innovation-inner {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 0;
    width: 100%;
  }

  .innovation-heading {
    padding-left: 68px;
  }

  .innovation-globe {
    width: 64px;
    height: 64px;
  }

  .innovation h2 {
    font-size: 21px;
  }

  .mini-features {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px 16px;
  }

  .mini-feature {
    flex: none;
  }

  .brand-strip {
    width: calc(100vw - 48px);
    gap: 16px 24px;
  }

  .brand-strip__logo {
    flex: 0 1 120px;
    height: 64px;
  }
}

@media (max-width: 820px) {
  .hero {
    display: flex;
    flex-direction: column;
    min-height: 0;
    overflow: hidden;
    background: var(--cream);
  }

  .hero::before,
  .hero::after {
    display: none;
  }

  .hero-inner {
    position: relative;
    inset: auto;
    order: 1;
    flex: 0 0 auto;
    align-items: stretch;
    justify-content: flex-start;
    background: var(--cream);
  }

  .hero-bg {
    order: 2;
    flex: 0 0 auto;
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto;
    margin: 0;
    object-fit: cover;
    object-position: center top;
  }

  .hero-copy,
  .hero h1,
  .hero p {
    max-width: none;
    width: 100%;
  }

  .hero-features {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px 24px;
  }

  .mini-features {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px 16px;
  }

  .collections .container {
    padding-left: 6px;
    padding-right: 6px;
  }

  .category-carousel {
    --collections-gap: 8px;
  }
}

@media (max-width: 480px) {
  .hero-features {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .hero-feature {
    max-width: none;
  }
}

@media (max-width: 620px) {
  .hero {
    --hero-inset-x: 20px;
    --hero-inset-y: 32px;
  }

  .hero h1 {
    font-size: clamp(32px, 9vw, 38px);
    line-height: 1.08;
  }

  .hero p {
    font-size: 15px;
    margin-bottom: 16px;
  }

  .hero .btn {
    width: 100%;
    max-width: 320px;
    justify-content: center;
  }

  .hero-inner {
    gap: 20px;
  }

  .hero-features {
    gap: 16px;
    padding-top: 16px;
  }

  .hero-feature {
    gap: 10px;
  }

  .feature-icon {
    width: 36px;
    height: 36px;
  }

  .feature-icon svg {
    width: 17px;
    height: 17px;
  }

  .header-actions { flex-wrap: wrap; }

  .innovation {
    padding: 32px 20px;
  }

  .innovation-heading {
    padding-left: 60px;
  }

  .innovation-globe {
    width: 56px;
    height: 56px;
    left: -4px;
  }

  .innovation h2 {
    font-size: 19px;
  }

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

  .mini-feature {
    flex: none;
    max-width: none;
    align-items: flex-start;
    gap: 10px;
  }

  .mini-feature-icon {
    width: 40px;
    height: 40px;
  }

  .mini-feature-icon svg {
    width: 24px;
    height: 24px;
  }

  .mini-feature-icon--hex svg {
    width: 26px;
    height: 26px;
  }

  .mini-feature-text span {
    font-size: 12px;
    line-height: 1.38;
  }

  .category-carousel {
    --collections-per-view: 2;
    --collections-gap: 6px;
  }

  .category-grid,
  .news-grid {
    grid-template-columns: 1fr;
  }
  .stats-panel {
    grid-template-columns: repeat(2, 1fr);
  }
  .news-card,
  .news-card.wide-img {
    grid-template-columns: 1fr;
    height: auto;
  }
  .news-card img {
    height: 210px;
  }
  .brand-strip {
    gap: 14px 18px;
  }

  .brand-strip__logo {
    flex: 0 1 calc(33.333% - 12px);
    max-width: calc(33.333% - 12px);
    height: 58px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
}

@media (max-width: 900px) {
  body.mobile-menu-open {
    overflow: hidden;
  }

  .header,
  .detail-header {
    width: 100%;
    height: 82px;
    padding: 0;
    gap: 0;
    overflow: visible;
    position: sticky;
    top: 0;
    z-index: 60;
    background: rgba(255, 255, 255, .98);
  }

  .header-inner {
    width: 100%;
    padding: 0 20px;
    justify-content: space-between;
  }

  .header .logo,
  .detail-header .logo {
    width: 120px;
    flex: 0 0 auto;
    margin: 0;
    position: static;
  }

  .header .logo-mark,
  .detail-header .logo-mark {
    width: 88px;
    height: 42px;
    font-size: 22px;
  }

  .header .logo-tagline,
  .detail-header .logo-tagline {
    font-size: 10px;
  }

  .header-inner > .nav,
  .header-inner > .header-actions,
  .detail-header .header-inner > .nav,
  .detail-header .header-inner > .header-actions {
    display: none;
  }

  .mobile-menu-toggle {
    width: 46px;
    height: 46px;
    border: 1px solid #e4c8ba;
    border-radius: 50%;
    display: grid;
    place-items: center;
    gap: 4px;
    padding: 12px;
    margin-left: auto;
    flex: 0 0 46px;
    position: relative;
    top: auto;
    right: auto;
    left: auto;
    background: #fffaf5;
    box-shadow: 0 8px 20px rgba(111, 66, 42, .09);
    cursor: pointer;
  }

  .mobile-menu-toggle span {
    width: 18px;
    height: 2px;
    border-radius: 999px;
    background: #2d211c;
  }

  .mobile-drawer-overlay {
    position: fixed;
    inset: 0;
    z-index: 80;
    border: 0;
    display: block;
    opacity: 0;
    visibility: hidden;
    background: rgba(35, 22, 15, .34);
    transition: opacity .24s ease, visibility .24s ease;
  }

  .mobile-drawer {
    position: fixed;
    left: 0;
    top: 0;
    bottom: 0;
    z-index: 90;
    width: min(84vw, 360px);
    display: flex;
    flex-direction: column;
    padding: 26px 24px;
    background: linear-gradient(180deg, #fffdf9 0%, #fff5ed 100%);
    border-right: 1px solid #ead7c9;
    box-shadow: 24px 0 42px rgba(65, 39, 24, .18);
    transform: translateX(-104%);
    transition: transform .28s cubic-bezier(.22, 1, .36, 1);
    overflow-y: auto;
  }

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

  .mobile-menu-open .mobile-drawer-overlay {
    opacity: 1;
    visibility: visible;
  }

  .mobile-drawer-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
  }

  .mobile-drawer-close {
    width: 42px;
    height: 42px;
    border: 1px solid #e3c6b8;
    border-radius: 50%;
    color: #9b5946;
    background: #fffaf5;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
  }

  .mobile-drawer-tagline {
    margin: 8px 0 26px;
    color: #3a2f29;
    font-size: 13px;
    font-weight: 600;
  }

  .mobile-drawer-nav {
    display: grid;
    border-top: 1px solid #ead8cc;
  }

  .mobile-drawer-nav a {
    padding: 16px 0;
    border-bottom: 1px solid #ead8cc;
    color: #201813;
    font-size: 15px;
    font-weight: 800;
    letter-spacing: .04em;
    text-transform: uppercase;
  }

  .mobile-drawer-nav a.active {
    color: var(--primary);
  }

  .mobile-drawer-nav a::after {
    display: none;
  }

  .mobile-drawer-actions {
    display: grid;
    gap: 10px;
    margin: 24px 0;
  }

  .mobile-drawer-actions .btn {
    width: 100%;
    height: 46px;
    font-size: 12px;
  }

  .mobile-drawer-actions .gbt-lang-switcher,
  .gbt-lang-switcher--mobile {
    width: 100%;
    max-width: none;
    margin: 0;
    flex: none;
  }

  .gbt-lang-switcher--mobile {
    width: 100%;
  }

  .gbt-lang-switcher--mobile .gbt-lang-switcher__trigger {
    width: 100%;
    max-width: none;
    height: 46px;
    border-radius: 999px;
    justify-content: center;
    gap: 10px;
    padding: 0 16px;
    box-sizing: border-box;
  }

  .gbt-lang-switcher--mobile .gbt-lang-switcher__current {
    position: static;
    width: auto;
    height: auto;
    margin: 0;
    overflow: visible;
    clip: auto;
    white-space: normal;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .06em;
    color: #7f4f3d;
  }

  .gbt-lang-switcher--mobile .gbt-lang-switcher__menu {
    position: static;
    width: 100%;
    min-width: 0;
    margin-top: 10px;
    opacity: 1;
    visibility: visible;
    transform: none;
    pointer-events: auto;
    box-shadow: none;
  }

  .gbt-lang-switcher--mobile:not(.is-open) .gbt-lang-switcher__menu {
    display: none;
  }

  .gbt-lang-switcher--mobile.is-open .gbt-lang-switcher__menu {
    display: block;
  }

  .gbt-lang-switcher--header {
    display: none;
  }

  .mobile-drawer-contact,
  .mobile-drawer-share {
    padding-top: 22px;
    border-top: 1px solid #ead8cc;
  }

  .mobile-drawer-contact h3,
  .mobile-drawer-share h3 {
    margin: 0 0 12px;
    font-family: var(--font-serif);
    font-size: 22px;
    font-weight: 500;
  }

  .mobile-drawer-contact {
    display: grid;
    gap: 8px;
    color: #5f4d43;
    font-size: 14px;
  }

  .mobile-drawer-share {
    margin-top: 22px;
  }

  .mobile-drawer-share div,
  .mobile-drawer-share .socials {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
  }

  .mobile-drawer-share .social-link {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: #fff;
    background: linear-gradient(180deg, #c89378, #aa765e);
    text-decoration: none;
  }

  .mobile-drawer-share .social-link svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
  }
}

/* ============================================================
   Inner Pages
   ============================================================ */
.inner-page .header {
  background: #fff;
}

.page-container {
  width: min(var(--container), 100%);
  margin: 0 auto;
}

.page-hero {
  min-height: 430px;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 84% 34%, rgba(240, 180, 158, .28), transparent 16%),
    linear-gradient(180deg, #fff6ee 0%, #fffaf6 100%);
}

.page-hero .page-container {
  min-height: inherit;
  display: grid;
  place-items: center;
  text-align: center;
  position: relative;
  z-index: 2;
}

.page-hero-banner {
  position: relative;
  border-bottom: 1px solid rgba(236, 208, 190, .75);
  overflow: hidden;
}

.page-hero-banner > img {
  width: 100%;
  height: auto;
  display: block;
}

.page-hero-banner__content {
  position: absolute;
  inset: 0;
  z-index: 2;
  width: 100%;
  max-width: min(760px, calc(100% - 48px));
  margin: 0 auto;
  left: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 32px 24px;
  text-align: center;
  box-sizing: border-box;
}

.page-hero-banner__content--left {
  align-items: flex-start;
  text-align: left;
}

.page-hero-banner__content--left .page-subtitle {
  margin-left: 0;
  margin-right: 0;
}

.page-hero-banner .page-title span {
  display: block;
}

.page-hero-banner .page-subtitle {
  max-width: 36em;
}

@media (min-width: 1200px) {
  .page-hero-banner > img {
    position: relative;
    z-index: 1;
    width: 100%;
    height: auto;
    display: block;
  }
}

@media (max-width: 1199px) {
  .page-hero-banner {
    display: flex;
    flex-direction: column;
    background: linear-gradient(180deg, #fffaf6 0%, #fff4eb 100%);
  }

  .page-hero-banner > img {
    width: 100%;
    height: auto;
    flex: 0 0 auto;
  }

  .page-hero-banner__content {
    position: static;
    inset: auto;
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 40px 24px 48px;
  }

  .page-hero-banner .page-title {
    font-size: clamp(34px, 8.5vw, 48px);
    line-height: 1.14;
  }

  .page-hero-banner .page-kicker {
    margin-bottom: 20px;
    font-size: 16px;
  }

  .page-hero-banner .page-subtitle {
    font-size: clamp(15px, 3.8vw, 18px);
    line-height: 1.55;
    max-width: 28em;
  }
}

@media (max-width: 900px) {
  .page-hero-banner__content {
    padding: 36px 20px 44px;
  }

  .page-hero-banner .page-title {
    font-size: clamp(30px, 8vw, 40px);
    line-height: 1.16;
  }
}

@media (max-width: 640px) {
  .page-hero-banner__content {
    padding: 32px 16px 40px;
  }

  .page-hero-banner .page-title {
    font-size: clamp(28px, 9vw, 36px);
  }

  .page-hero-banner .page-kicker {
    margin-bottom: 16px;
    font-size: 15px;
  }

  .page-hero-banner .page-subtitle {
    font-size: 15px;
    line-height: 1.6;
  }
}

.page-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--primary);
  font-size: 18px;
  font-weight: 900;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.page-title {
  margin: 0;
  font-family: var(--font-serif);
  font-size: 68px;
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -.025em;
}

.page-subtitle {
  max-width: 720px;
  margin: 22px auto 0;
  color: #4d4039;
  font-family: var(--font-body);
  font-size: 20px;
  line-height: 1.55;
}

.page-section {
  padding: 72px 0;
  background: #fffefa;
}

.page-section--peach {
  background: #fff6ee;
}

.split-grid {
  display: grid;
  grid-template-columns: 520px 1fr;
  gap: 72px;
  align-items: center;
}

.copy-kicker {
  margin: 0 0 14px;
  color: var(--primary);
  font-size: 15px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.copy-title {
  margin: 0 0 22px;
  font-family: var(--font-serif);
  font-size: 48px;
  font-weight: 500;
  line-height: 1.13;
}

.copy-text {
  color: #3d332e;
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.75;
}

/* Default page template */
.default-page {
  background: #fffefa;
}

.default-page-main {
  position: relative;
}

.default-page .page-hero {
  min-height: 220px;
}

.default-page .page-hero .page-container {
  min-height: 220px;
  padding: 36px 24px;
}

.default-page .page-hero-banner {
  min-height: 220px;
  max-height: 280px;
  display: flex;
  align-items: stretch;
  background: linear-gradient(180deg, #fffaf6 0%, #fff4eb 100%);
}

.default-page .page-hero-banner > img {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.default-page .page-hero-banner__content {
  position: relative;
  z-index: 2;
  inset: auto;
  flex: 1 1 auto;
  min-height: 220px;
  max-height: 280px;
  padding: 28px 24px;
  background:
    linear-gradient(90deg, rgba(255, 250, 246, .88) 0%, rgba(255, 244, 235, .72) 42%, rgba(255, 244, 235, .52) 100%);
}

.default-page .page-hero-banner .page-title {
  font-size: clamp(32px, 4vw, 44px);
  line-height: 1.15;
}

.default-page .page-hero-banner .page-kicker {
  margin-bottom: 12px;
  font-size: 14px;
}

.default-page .page-hero-banner .page-subtitle {
  margin-top: 12px;
  font-size: 16px;
  line-height: 1.55;
}

.default-page .page-hero .page-title {
  font-size: clamp(32px, 4vw, 44px);
  line-height: 1.15;
}

.default-page .page-hero .page-subtitle {
  margin-top: 12px;
  font-size: 16px;
}

@media (min-width: 861px) {
  .default-page .page-hero-banner {
    display: block;
    position: relative;
    overflow: hidden;
  }
}

.default-page-section {
  position: relative;
  z-index: 2;
  margin-top: -32px;
  padding: 0 0 80px;
  background: transparent;
}

.page-content-card {
  width: min(1160px, calc(100% - 48px));
  margin: 0 auto;
  padding: 56px 72px 64px;
  border: 1px solid rgba(223, 211, 182, .78);
  border-radius: 32px;
  background: rgba(255, 254, 251, .96);
  box-shadow: 0 22px 44px rgba(95, 62, 36, .09);
}

.page-content-body {
  max-width: 820px;
  margin: 0 auto;
  color: #3d332e;
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.75;
}

.page-content-body > *:first-child {
  margin-top: 0;
}

.page-content-body > *:last-child {
  margin-bottom: 0;
}

.page-content-body h1,
.page-content-body h2,
.page-content-body h3,
.page-content-body h4,
.page-content-body h5,
.page-content-body h6 {
  margin: 2.2em 0 .75em;
  color: #171412;
  font-family: var(--font-serif);
  font-weight: 600;
  line-height: 1.25;
}

.page-content-body h1:first-child,
.page-content-body h2:first-child,
.page-content-body h3:first-child {
  margin-top: 0;
}

.page-content-body h2 {
  font-size: clamp(28px, 3vw, 38px);
}

.page-content-body h3 {
  font-size: clamp(22px, 2.4vw, 28px);
}

.page-content-body h4 {
  font-size: 20px;
}

.page-content-body p {
  margin: 0 0 1.15em;
}

.page-content-body p:last-child {
  margin-bottom: 0;
}

.page-content-body a {
  color: var(--primary);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: .14em;
}

.page-content-body a:hover {
  color: #b52a1d;
}

.page-content-body ul,
.page-content-body ol {
  margin: 0 0 1.25em;
  padding-left: 1.35em;
}

.page-content-body li + li {
  margin-top: .45em;
}

.page-content-body li > ul,
.page-content-body li > ol {
  margin-top: .45em;
  margin-bottom: 0;
}

.page-content-body img,
.page-content-body figure,
.page-content-body .wp-block-image img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: 12px;
}

.page-content-body figure,
.page-content-body .wp-block-image {
  margin: 1.75em 0;
}

.page-content-body figcaption {
  margin-top: .65em;
  color: #7a6a61;
  font-size: 14px;
  line-height: 1.5;
  text-align: center;
}

.page-content-body blockquote,
.page-content-body .wp-block-quote {
  margin: 1.75em 0;
  padding: 22px 26px;
  border-left: 4px solid rgba(222, 54, 38, .72);
  border-radius: 0 12px 12px 0;
  background: #fff6ee;
  color: #4f433d;
}

.page-content-body blockquote p:last-child,
.page-content-body .wp-block-quote p:last-child {
  margin-bottom: 0;
}

.page-content-body hr,
.page-content-body .wp-block-separator {
  margin: 2.2em 0;
  border: 0;
  border-top: 1px solid rgba(205, 193, 161, .72);
}

.page-content-body table {
  width: 100%;
  margin: 1.75em 0;
  border-collapse: collapse;
  background: #fff8ef;
  font-size: 16px;
}

.page-content-body th,
.page-content-body td {
  padding: 14px 16px;
  border: 1px solid #eadbd1;
  text-align: left;
  vertical-align: top;
}

.page-content-body th {
  color: #171412;
  font-weight: 800;
  background: #fff2e6;
}

.page-content-body .wp-block-button__link,
.page-content-body .button,
.page-content-body .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 24px;
  border-radius: 999px;
  background: var(--primary);
  color: #fff !important;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: .08em;
  text-decoration: none;
  text-transform: uppercase;
}

.page-content-body .alignwide,
.page-content-body .alignfull {
  max-width: none;
}

.page-content-body .alignwide {
  width: min(960px, calc(100vw - 48px));
  margin-left: 50%;
  transform: translateX(-50%);
}

.page-content-pagination {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-top: 2.5em;
  padding-top: 1.75em;
  border-top: 1px solid rgba(205, 193, 161, .72);
}

.page-content-pagination__label {
  color: #7a6a61;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.page-content-pagination a,
.page-content-pagination > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  padding: 8px 12px;
  border: 1px solid rgba(222, 54, 38, .18);
  border-radius: 999px;
  color: var(--primary);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}

.page-content-pagination .current {
  background: var(--primary);
  color: #fff;
}

@media (max-width: 860px) {
  .page-content-card {
    width: calc(100% - 32px);
    padding: 40px 28px 44px;
    border-radius: 24px;
  }

  .page-content-body {
    font-size: 17px;
  }

  .default-page .page-hero-banner {
    max-height: none;
    min-height: 0;
    flex-direction: column;
  }

  .default-page .page-hero-banner > img {
    position: relative;
    inset: auto;
    width: 100%;
    height: auto;
    max-height: 160px;
    object-fit: cover;
  }

  .default-page .page-hero-banner__content {
    min-height: 0;
    max-height: none;
    padding: 24px 20px 28px;
    background: linear-gradient(180deg, #fffaf6 0%, #fff4eb 100%);
  }

  .default-page .page-hero {
    min-height: 180px;
  }

  .default-page .page-hero .page-container {
    min-height: 180px;
    padding: 28px 20px;
  }
}

@media (max-width: 640px) {
  .default-page-section {
    margin-top: -12px;
    padding-bottom: 48px;
  }

  .default-page .page-hero-banner > img {
    max-height: 120px;
  }

  .default-page .page-hero-banner__content {
    padding: 20px 16px 24px;
  }

  .default-page .page-hero-banner .page-title,
  .default-page .page-hero .page-title {
    font-size: clamp(26px, 7vw, 32px);
  }

  .page-content-card {
    width: calc(100% - 24px);
    padding: 28px 20px 32px;
    border-radius: 20px;
  }

  .page-content-body {
    font-size: 16px;
    line-height: 1.7;
  }

  .page-content-body h2 {
    font-size: 26px;
  }

  .page-content-body h3 {
    font-size: 22px;
  }

  .page-content-body .alignwide {
    width: 100%;
    margin-left: 0;
    transform: none;
  }
}

.stat-grid,
.service-grid,
.catalog-page-grid,
.blog-grid-page {
  display: grid;
  gap: 24px;
}

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

.service-card,
.catalog-download-card,
.blog-tile,
.contact-card,
.product-card-page {
  border-radius: 10px;
  background: #fff8ef;
  box-shadow: 0 14px 32px rgba(99, 59, 35, .09);
}

.stat-box {
  min-height: 210px;
  padding: 34px;
  border-radius: 10px;
  border: 1px solid #e8dfd8;
  background: linear-gradient(180deg, #fffdf9 0%, #fff8ef 100%);
  box-shadow: none;
  text-align: center;
}

.stat-box strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 52px;
  font-weight: 500;
}

.stat-box span {
  color: #59483f;
  font-size: 18px;
}

.about-overview .split-grid {
  grid-template-columns: 560px minmax(0, 1fr);
  gap: 76px;
}

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

.about-stat-grid .stat-box {
  min-height: 190px;
  padding: 32px 24px;
  display: grid;
  align-content: center;
  justify-items: center;
}

.about-stat-grid .stat-box strong,
.about-stat-grid .stat-box span {
  max-width: 100%;
  word-break: keep-all;
  overflow-wrap: normal;
  text-align: center;
}

.about-stat-grid .stat-box strong {
  font-size: clamp(38px, 3vw, 52px);
  line-height: 1.18;
}

.about-stat-grid .stat-box span {
  margin-top: 12px;
  font-size: 17px;
  line-height: 1.42;
}

.image-card {
  overflow: hidden;
  border-radius: 12px;
  box-shadow: var(--shadow);
}

.image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-global-section {
  position: relative;
  overflow: hidden;
  padding: 72px 0 102px;
  background:
    radial-gradient(circle at 6% 30%, rgba(238, 80, 65, .08), transparent 16%),
    radial-gradient(circle at 86% 20%, rgba(222, 166, 117, .13), transparent 18%),
    linear-gradient(180deg, #fff9f1 0%, #fffdf8 46%, #fff8ef 100%);
}

.about-global-section::before,
.about-global-section::after {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: 0;
  opacity: .72;
}

.about-global-section::before {
  display: none;
}

.about-global-section::after {
  right: 58px;
  top: 52px;
  width: 300px;
  height: 210px;
  background:
    radial-gradient(circle at 18% 34%, rgba(239, 99, 84, .2) 0 7px, transparent 8px),
    repeating-radial-gradient(ellipse at 78% 42%, rgba(226, 168, 128, .2) 0 3px, transparent 4px 17px);
  border-radius: 40%;
  opacity: .55;
}

.about-global-container {
  position: relative;
  z-index: 1;
}

.about-global-head {
  max-width: 1160px;
  margin: 0 0 30px 128px;
}

.about-global-head .copy-kicker {
  margin-bottom: 18px;
  font-size: 16px;
  letter-spacing: .34em;
}

.about-global-head .copy-title {
  margin-bottom: 20px;
  color: #3b1d14;
  font-size: clamp(48px, 4vw, 68px);
  line-height: 1.04;
  white-space: nowrap;
}

.about-global-divider {
  width: 320px;
  height: 24px;
  margin: 0 0 20px;
  display: flex;
  align-items: center;
  color: #d9a85f;
}

.about-global-divider::before,
.about-global-divider::after {
  content: "";
  height: 1px;
  flex: 1;
  background: currentColor;
  opacity: .75;
}

.about-global-divider span {
  width: 28px;
  height: 28px;
  margin: 0 12px;
  border: 1px solid currentColor;
  border-radius: 50%;
  position: relative;
}

.about-global-divider span::before,
.about-global-divider span::after {
  content: "";
  position: absolute;
  inset: 6px;
  border: 1px solid currentColor;
  border-radius: 50%;
  transform: rotate(45deg);
}

.about-global-divider span::after {
  inset: 10px;
  background: currentColor;
}

.about-global-lead {
  max-width: 520px;
  margin: 0;
  color: #6c554a;
  font-size: 20px;
  line-height: 1.65;
}

.about-global-visual {
  position: relative;
  width: min(1760px, calc(100vw - 96px));
  margin: 0 auto;
}

.about-global-image {
  height: clamp(430px, 34vw, 610px);
  overflow: hidden;
  border: 1px solid rgba(206, 144, 79, .72);
  border-radius: 34px;
  background: #f8dcc0;
  box-shadow: 0 24px 56px rgba(113, 70, 38, .13);
}

.about-global-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

.about-global-features {
  position: absolute;
  left: 50%;
  bottom: -50px;
  width: min(1360px, calc(100% - 420px));
  min-height: 104px;
  transform: translateX(-50%);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: center;
  border-radius: 18px;
  border: 1px solid rgba(223, 186, 139, .72);
  background: rgba(255, 250, 241, .94);
  box-shadow: 0 16px 44px rgba(119, 70, 35, .12);
  backdrop-filter: blur(10px);
}

.about-global-feature {
  min-height: 70px;
  padding: 0 34px;
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 18px;
  align-items: center;
  border-right: 1px solid rgba(207, 148, 83, .55);
}

.about-global-feature:last-child {
  border-right: 0;
}

.about-global-feature:not(:has(.about-global-feature-icon)) {
  grid-template-columns: 1fr;
  justify-items: center;
  text-align: center;
}

.about-global-feature-icon {
  width: 48px;
  height: 48px;
  border: 1px solid rgba(210, 151, 73, .65);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #d59a4c;
  font-size: 24px;
  line-height: 1;
}

.about-global-feature-icon i,
.about-global-feature-icon svg,
.about-global-feature-icon img {
  width: 22px;
  height: 22px;
  display: block;
  object-fit: contain;
}

.about-global-feature-icon i {
  font-size: 20px;
  line-height: 1;
}

.about-global-feature-icon svg {
  fill: currentColor;
}

.about-global-feature strong {
  display: block;
  margin-bottom: 6px;
  color: #5a321e;
  font-family: var(--font-serif);
  font-size: 19px;
  font-weight: 500;
  line-height: 1.2;
}

.about-global-feature p {
  margin: 0;
  color: #8a7164;
  font-size: 14px;
  line-height: 1.45;
}

.service-grid {
  grid-template-columns: repeat(6, 1fr);
}

.service-card {
  min-height: 220px;
  padding: 28px 20px;
  text-align: center;
}

.service-icon {
  width: 58px;
  height: 58px;
  margin: 0 auto 20px;
  border: 2px solid var(--primary);
  color: var(--primary);
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-weight: 900;
  font-size: 22px;
}

.service-card h3,
.catalog-download-card h3,
.product-card-page h3 {
  margin: 0 0 12px;
  font-size: 18px;
}

.service-card p,
.catalog-download-card p,
.product-card-page p {
  margin: 0;
  color: #584940;
  font-size: 14px;
  line-height: 1.65;
}

.process-row {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 22px;
  text-align: center;
}

.process-dot {
  width: 88px;
  height: 88px;
  margin: 0 auto 16px;
  display: grid;
  place-items: center;
  color: var(--primary);
  border: 1px solid #efc5b5;
  border-radius: 50%;
  background: #fffaf5;
  font-size: 24px;
  font-weight: 900;
}

.process-step strong {
  display: block;
  color: var(--primary);
  font-size: 20px;
  margin-bottom: 10px;
}

.process-step h3 {
  margin: 0 0 8px;
  font-size: 17px;
}

.process-step p {
  margin: 0;
  color: #584940;
  font-size: 13px;
  line-height: 1.55;
}

.product-layout {
  display: grid;
  grid-template-columns: 270px 1fr;
  gap: 34px;
  align-items: start;
}

.sidebar-panel {
  padding: 26px;
  border-radius: 10px;
  border: 1px solid #e8dfd8;
  background: linear-gradient(180deg, #fffdf9 0%, #fff8ef 100%);
  box-shadow: none;
}

.sidebar-panel h3 {
  margin: 0 0 20px;
  font-size: 18px;
  letter-spacing: .08em;
}

.sidebar-panel li {
  display: flex;
  justify-content: space-between;
  padding: 11px 0;
  border-bottom: 1px solid #eadbd1;
  color: #4e4039;
  font-size: 15px;
}

.product-tabs {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 26px;
}

.product-tab {
  padding: 13px 24px;
  border-radius: 999px;
  border: 1px solid #ead2c6;
  background: #fffaf5;
  color: #57463e;
  font-weight: 800;
  font-size: 14px;
}

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

.product-grid-page {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  align-items: start;
}

.product-card-page {
  overflow: hidden;
  position: relative;
  min-height: 0;
  background: #fff8ef;
  border-radius: 10px;
  box-shadow: 0 12px 26px rgba(99, 59, 35, .08);
}

.product-card-link {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.product-image-stage {
  width: 100%;
  padding: 14px 16px 0;
  display: block;
  overflow: visible;
  background: #fff;
}

.product-card-page .product-image-stage img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
  margin: 0 auto;
  object-fit: contain;
  object-position: center center;
}

.product-card-page .tag {
  position: absolute;
  top: 14px;
  left: 14px;
  border-radius: 999px;
  padding: 7px 12px;
  color: #fff;
  background: var(--primary);
  font-size: 12px;
  font-weight: 900;
}

.product-card-body {
  flex: 1 1 auto;
  min-height: 148px;
  padding: 22px 24px 26px;
  display: flex;
  flex-direction: column;
  background: #fff8ef;
}

.product-card-body h3 {
  min-height: 62px;
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  text-wrap: pretty;
}

.stock {
  display: block;
  margin-top: auto;
  color: #168748;
  font-size: 13px;
  font-weight: 900;
}

/* Product archive reference layout */
.product-catalog-page {
  background: #fffdf9;
}

.product-archive-shell {
  padding: 24px 0 64px;
  background: #fffdf9;
}

.product-archive-container {
  width: min(var(--container), 100%);
  margin: 0 auto;
}

.gbt-product-list-hero__top {
  display: grid;
  grid-template-columns: minmax(0, 1fr) min(360px, 38vw);
  align-items: center;
  gap: 24px 40px;
  margin-bottom: 10px;
  width: 100%;
}

.gbt-product-list-hero__top .gbt-product-list-header h1 {
  margin: 0;
}

.gbt-product-list-hero__search {
  justify-self: end;
  width: min(360px, 38vw);
}

.product-catalog-page .product-mobile-category,
.product-catalog-page .product-mobile-controls__btn,
.product-catalog-page .product-sort-form__sort-label--mobile {
  display: none;
}

.product-sort-form__sort-label--desktop {
  display: inline;
}

.product-card-subtitle,
.product-card-view {
  display: none;
}

.product-mobile-category__summary {
  list-style: none;
  cursor: pointer;
}

.product-mobile-category__summary::-webkit-details-marker {
  display: none;
}

.product-mobile-category__summary {
  min-height: 46px;
  padding: 0 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #3b322e;
  font-size: 14px;
  font-weight: 600;
}

.product-mobile-category__icon {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  color: #df2f24;
}

.product-mobile-category__icon svg {
  width: 18px;
  height: 18px;
}

.product-mobile-category__chevron {
  flex: 0 0 auto;
  width: 8px;
  height: 8px;
  margin-left: auto;
  border-right: 1.5px solid #8b817b;
  border-bottom: 1.5px solid #8b817b;
  transform: rotate(45deg) translateY(-2px);
  transition: transform .2s ease;
}

.product-mobile-category[open] .product-mobile-category__chevron {
  transform: rotate(-135deg) translateY(1px);
}

.product-mobile-category__list {
  margin: 0;
  padding: 0 14px 12px;
  list-style: none;
  border-top: 1px solid #eadbd1;
}

.product-mobile-category__list > .product-category-tree__item {
  border-bottom: 1px solid #f0e4dc;
}

.product-mobile-category__list > .product-category-tree__item:last-child {
  border-bottom: 0;
}

.product-mobile-controls__btn {
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 8px;
  border: 0;
  color: #3b322e;
  background: transparent;
  font: inherit;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
}

.product-mobile-controls__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  color: #5f554f;
}

.product-mobile-controls__icon svg {
  width: 16px;
  height: 16px;
}

.product-results-meta {
  margin: 0 0 14px;
}

.product-catalog-page .product-results-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: 0 0 18px;
}

.product-results-count {
  margin: 0;
  color: #8b817b;
  font-size: 13px;
  font-weight: 600;
}

.product-view-toggle {
  display: none;
  align-items: center;
  gap: 4px;
}

.product-catalog-page .product-view-toggle {
  display: inline-flex;
  flex: 0 0 auto;
}

.product-view-toggle__btn {
  width: 34px;
  height: 34px;
  padding: 0;
  border: 0;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #8b817b;
  background: transparent;
  cursor: pointer;
}

.product-view-toggle__btn svg {
  width: 18px;
  height: 18px;
}

.product-view-toggle__btn.is-active {
  color: #e83228;
}

.product-sort-form__sort-head {
  display: none;
  align-items: center;
  gap: 4px;
}

.product-sort-form__sort-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  color: #5f554f;
}

.product-sort-form__sort-icon svg {
  width: 14px;
  height: 14px;
}

.product-card-subtitle {
  margin: 0 0 8px;
  color: #8b817b;
  font-size: 12px;
  line-height: 1.45;
}

.product-card-view {
  color: #e83228;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.3;
}

.product-toolbar {
  min-height: 40px;
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.product-breadcrumb {
  display: flex;
  align-items: center;
  gap: 14px;
  color: #8b817b;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.product-breadcrumb a {
  color: #8b817b;
}

.product-breadcrumb strong {
  color: #17110f;
}

.product-sort-form {
  display: flex;
  align-items: center;
  gap: 28px;
}

.product-sort-form label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #5f554f;
  font-size: 13px;
  font-weight: 700;
}

.product-sort-form select {
  height: 40px;
  min-width: 138px;
  padding: 0 34px 0 16px;
  border: 1px solid #ead6cb;
  border-radius: 7px;
  color: #554941;
  background: #fffaf5;
  font: inherit;
}

.product-sort-form label:last-child select {
  min-width: 74px;
}

.product-layout--reference {
  grid-template-columns: 318px minmax(0, 1fr);
  gap: 36px;
  align-items: stretch;
}

.product-sidebar-sticky {
  min-width: 0;
  align-self: start;
}

.product-filter-panel {
  padding: 0;
  overflow: hidden;
  border-radius: 12px;
  border: 1px solid #e8dfd8;
  background: linear-gradient(180deg, #fffdf9 0%, #fff8ef 100%);
  box-shadow: none;
}

@media (min-width: 1101px) {
  #page.product-catalog-page {
    overflow: visible;
  }

  .product-sidebar-sticky {
    position: relative;
  }

  .product-sidebar-sticky.is-pinned .product-filter-panel,
  .product-sidebar-sticky.is-bottom .product-filter-panel {
    z-index: 6;
    overflow: visible;
  }

  .product-sidebar-sticky.is-pinned .product-filter-panel {
    position: fixed;
  }

  .product-sidebar-sticky.is-bottom .product-filter-panel {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
  }

  .product-sidebar-sticky.is-pinned .product-category-list--scrollable,
  .product-sidebar-sticky.is-bottom .product-category-list--scrollable {
    max-height: none;
    overflow: visible;
    padding-right: 0;
  }

  .product-sidebar-sticky .product-category-list {
    max-height: none;
    overflow: visible;
  }

  body.admin-bar {
    --product-sidebar-sticky-top: 168px;
  }
}

.product-filter-block {
  padding: 32px 30px 28px;
}

.product-filter-block + .product-filter-block {
  border-top: 1px solid #eadbd1;
}

.product-filter-block h3 {
  margin: 0 0 18px;
  color: #2a211d;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.product-category-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.product-category-list--scrollable {
  max-height: 560px;
  overflow-y: auto;
  overscroll-behavior: contain;
  padding-right: 4px;
}

.product-category-list li {
  min-height: 44px;
  padding: 9px 0;
  border-bottom: 1px solid #eadbd1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 16px;
  color: #3b322e;
  font-size: 16px;
  font-weight: 500;
}

.product-category-list li:last-child {
  border-bottom: 0;
}

.product-category-list a {
  min-width: 0;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: inherit;
}

.product-category-list a.is-active {
  color: #c62828;
  font-weight: 600;
}

.product-category-list a > span:last-child {
  line-height: 1.35;
}

.product-category-list li > span:last-child {
  color: #5f554f;
  font-size: 16px;
  font-weight: 500;
  font-variant-numeric: tabular-nums;
}

.product-category-tree {
  margin: 0;
  padding: 0;
  list-style: none;
}

.product-category-tree__item {
  border-bottom: 1px solid #eadbd1;
}

.product-category-tree__item:last-child {
  border-bottom: 0;
}

.product-category-branch {
  margin: 0;
}

.product-category-branch__row {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr) auto;
  align-items: center;
  gap: 8px 12px;
  min-height: 44px;
  padding: 10px 0;
  list-style: none;
}

.product-category-branch__summary.product-category-branch__row,
summary.product-category-branch__row {
  cursor: pointer;
}

.product-category-branch__row::-webkit-details-marker {
  display: none;
}

.product-category-branch__caret {
  width: 22px;
  height: 22px;
  position: relative;
  flex-shrink: 0;
}

.product-category-branch__caret::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 6px;
  height: 6px;
  border-right: 1.5px solid #8b817b;
  border-bottom: 1.5px solid #8b817b;
  transform: translate(-65%, -55%) rotate(-45deg);
  transition: transform .18s ease;
}

.product-category-branch[open] > .product-category-branch__row .product-category-branch__caret::before {
  transform: translate(-50%, -40%) rotate(45deg);
}

.product-category-branch__caret--spacer::before {
  content: none;
}

.product-category-branch__name,
.product-category-tree__child-name {
  min-width: 0;
  color: #3b322e;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.35;
  text-decoration: none;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.product-category-branch__name.is-active,
.product-category-tree__child-name.is-active {
  color: #c62828;
  font-weight: 600;
}

.product-category-branch__count,
.product-category-tree__child-count {
  color: #8b817b;
  font-size: 14px;
  font-weight: 500;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

.product-category-tree__children {
  margin: 0 0 6px 11px;
  padding: 2px 0 8px 14px;
  list-style: none;
  border-left: 1px solid #eadbd1;
}

.product-category-tree__child {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  min-height: 36px;
  padding: 5px 0 5px calc(var(--category-depth, 0) * 12px);
}

.product-category-tree__child-name {
  font-size: 14px;
}

.product-category-tree__child-count {
  font-size: 13px;
}

.product-category-tree--mobile .product-category-tree__item {
  border-bottom-color: #f0e4dc;
}

.product-category-tree--mobile .product-category-branch__row {
  min-height: 40px;
  padding: 8px 0;
}

.product-category-tree--mobile .product-category-branch__name,
.product-category-tree--mobile .product-category-tree__child-name {
  font-size: 14px;
}

.product-category-tree--mobile .product-category-branch__count,
.product-category-tree--mobile .product-category-tree__child-count {
  font-size: 13px;
}

.category-mini-icon {
  flex: 0 0 auto;
  width: 16px;
  height: 16px;
  border: 1.5px solid #6f5d54;
  border-radius: 3px;
  color: transparent;
  font-size: 0;
  position: relative;
  transform: rotate(45deg);
}

.category-mini-icon::after {
  content: "";
  position: absolute;
  left: -3px;
  bottom: -3px;
  width: 5px;
  height: 5px;
  border: 1.5px solid #6f5d54;
  border-radius: 50%;
  background: #fff5ec;
  transform: rotate(-45deg);
}

.product-category-view-all-wrap {
  position: relative;
  margin-top: 4px;
  padding-top: 12px;
}

.product-category-view-all__fade {
  position: absolute;
  top: -28px;
  left: 0;
  right: 0;
  height: 28px;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255, 253, 249, 0) 0%, rgba(255, 253, 249, .92) 55%, #fffdf9 100%);
}

.product-category-view-all {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.product-category-view-all__ring {
  position: absolute;
  inset: 0;
  border-radius: 999px;
  border: 1px solid rgba(200, 40, 40, .28);
  animation: product-category-view-all-pulse 2.4s ease-in-out infinite;
  pointer-events: none;
}

.product-category-view-all__content {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 52px;
  padding: 10px 14px 10px 12px;
  border: 1px solid #e8dfd8;
  border-radius: 999px;
  color: #3b322e;
  background: linear-gradient(180deg, #fff 0%, #fff8f2 100%);
  box-shadow: 0 8px 18px rgba(58, 42, 35, .06);
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease, color .22s ease;
}

.product-category-view-all:hover .product-category-view-all__content,
.product-category-view-all:focus-visible .product-category-view-all__content {
  transform: translateY(-1px);
  border-color: #c62828;
  color: #c62828;
  box-shadow: 0 12px 24px rgba(200, 40, 40, .14);
}

.product-category-view-all:focus-visible {
  outline: none;
}

.product-category-view-all:focus-visible .product-category-view-all__content {
  box-shadow: 0 0 0 3px rgba(200, 40, 40, .18), 0 12px 24px rgba(200, 40, 40, .14);
}

.product-category-view-all__icon {
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #c62828;
  background: rgba(200, 40, 40, .08);
  animation: product-category-view-all-icon 2.4s ease-in-out infinite;
}

.product-category-view-all__icon svg {
  width: 15px;
  height: 15px;
}

.product-category-view-all__text {
  flex: 1 1 auto;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  text-align: left;
}

.product-category-view-all__label {
  font-size: 14px;
  font-weight: 800;
  line-height: 1.25;
}

.product-category-view-all__meta {
  color: #8b817b;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.2;
  animation: product-category-view-all-meta 2.4s ease-in-out infinite;
}

.product-category-view-all:hover .product-category-view-all__meta,
.product-category-view-all:focus-visible .product-category-view-all__meta {
  color: #c62828;
}

.product-category-view-all__arrow {
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #8b817b;
  animation: product-category-view-all-arrow 1.4s ease-in-out infinite;
}

.product-category-view-all__arrow svg {
  width: 16px;
  height: 16px;
}

.product-category-view-all:hover .product-category-view-all__arrow,
.product-category-view-all:focus-visible .product-category-view-all__arrow {
  color: #c62828;
}

@keyframes product-category-view-all-pulse {
  0%, 100% {
    transform: scale(1);
    opacity: .55;
  }
  50% {
    transform: scale(1.03);
    opacity: 1;
  }
}

@keyframes product-category-view-all-icon {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.08);
  }
}

@keyframes product-category-view-all-meta {
  0%, 100% {
    opacity: .78;
  }
  50% {
    opacity: 1;
  }
}

@keyframes product-category-view-all-arrow {
  0%, 100% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(3px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .product-category-view-all__ring,
  .product-category-view-all__icon,
  .product-category-view-all__meta,
  .product-category-view-all__arrow {
    animation: none;
  }
}

.product-mobile-category__panel {
  padding: 0 14px 12px;
  border-top: 1px solid #eadbd1;
}

.product-category-list--mobile-preview {
  margin: 0;
  padding: 0;
  list-style: none;
}

.gbt-category-modal {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 16px;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s ease, visibility .2s ease;
}

.gbt-category-modal.is-open {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}

body.gbt-category-modal-open {
  overflow: hidden;
}

.gbt-category-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(26, 20, 18, .48);
}

.gbt-category-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(640px, 100%);
  max-height: min(80vh, 760px);
  display: flex;
  flex-direction: column;
  border-radius: 16px;
  background: #fffdf9;
  box-shadow: 0 24px 60px rgba(26, 20, 18, .22);
  overflow: hidden;
}

.gbt-category-modal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 22px;
  border-bottom: 1px solid #eadbd1;
}

.gbt-category-modal__header h2 {
  margin: 0;
  color: #2a211d;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.gbt-category-modal__close {
  width: 36px;
  height: 36px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  color: #5f554f;
  background: #f6eee7;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}

.gbt-category-modal__close:hover {
  color: #c62828;
  background: #fdecea;
}

.gbt-category-modal__body {
  padding: 8px 22px 22px;
  overflow: auto;
}

.product-category-tree--modal {
  max-height: none;
  overflow: visible;
}

.product-filter-block--folds {
  padding-top: 30px;
}

.product-filter-block--folds details {
  border-bottom: 1px solid #eadbd1;
}

.product-filter-block--folds summary {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #3b322e;
  cursor: pointer;
  font-size: 15px;
  font-weight: 600;
  list-style: none;
}

.product-filter-block--folds summary::-webkit-details-marker {
  display: none;
}

.product-filter-block--folds summary::after {
  content: "";
  width: 7px;
  height: 7px;
  border-right: 1.5px solid #5e5049;
  border-bottom: 1.5px solid #5e5049;
  transform: rotate(45deg) translateY(-2px);
}

.product-filter-block--folds details[open] summary::after {
  transform: rotate(-135deg) translateY(-2px);
}

.product-filter-block--folds p {
  margin: 0 0 14px;
  color: #8c7e75;
  font-size: 13px;
  line-height: 1.45;
}

.clear-product-filters {
  height: 44px;
  margin-top: 24px;
  border: 1px solid #c9a99a;
  border-radius: 8px;
  display: grid;
  place-items: center;
  color: #4a3f3a;
  background: #fffaf5;
  font-size: 14px;
  font-weight: 800;
  transition: border-color .2s ease, background .2s ease, color .2s ease;
}

.clear-product-filters:hover {
  border-color: #b88979;
  background: #fff3ea;
  color: #3b322e;
}

.product-sidebar-contact {
  padding-top: 30px;
}

.product-filter-panel .product-sidebar-contact__person {
  display: grid;
  grid-template-columns: 80px minmax(0, 1fr);
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.product-filter-panel .product-sidebar-contact__avatar-wrap {
  width: 80px;
  height: 80px;
  min-width: 80px;
  max-width: 80px;
  overflow: hidden;
  border-radius: 50%;
  background: #f36b1c;
}

.product-filter-panel .product-sidebar-contact__avatar {
  display: block;
  width: 80px;
  height: 80px;
  max-width: 80px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center 12%;
}

.product-sidebar-contact__identity {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

.product-sidebar-contact__name {
  display: block;
  color: #17110f;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.25;
}

.product-sidebar-contact__role {
  display: block;
  color: #5f554f;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.3;
}

.product-sidebar-contact__note {
  margin: 0 0 18px;
  color: #5f554f;
  font-size: 14px;
  line-height: 1.6;
}

.product-sidebar-contact__list {
  margin: 0 0 20px;
  padding: 0;
  list-style: none;
}

.product-filter-panel .product-sidebar-contact__list > .product-sidebar-contact__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid #eadbd1;
  color: inherit;
  font-size: inherit;
}

.product-sidebar-contact__list > .product-sidebar-contact__item:last-child {
  border-bottom: 0;
}

.product-sidebar-contact__lead {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.product-sidebar-contact__icon {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  color: #df2f24;
  background: #fff0e8;
}

.product-sidebar-contact__icon svg {
  width: 16px;
  height: 16px;
}

.product-sidebar-contact__icon--whatsapp {
  color: #1fa855;
  background: #e8f7ee;
}

.product-sidebar-contact__label {
  flex: 0 0 auto;
  color: #8b817b;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  line-height: 1.45;
  text-transform: uppercase;
}

.product-filter-panel .product-sidebar-contact__value {
  flex: 1 1 auto;
  min-width: 0;
  color: #2a211d;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.45;
  text-align: right;
  text-decoration: none;
  word-break: break-word;
}

.product-filter-panel .product-sidebar-contact__value:hover {
  color: #df2f24;
}

.product-sidebar-contact__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 44px;
  padding: 0 18px;
  border: 1.5px solid #6f5d54;
  border-radius: 999px;
  color: #2a211d;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .06em;
  text-decoration: none;
  text-transform: uppercase;
  transition: border-color .2s ease, color .2s ease, background .2s ease;
}

.product-sidebar-contact__cta:hover {
  border-color: #df2f24;
  background: #fff5f0;
  color: #df2f24;
}

@media (max-width: 640px) {
  .product-filter-panel .product-sidebar-contact__person {
    grid-template-columns: 72px minmax(0, 1fr);
  }

  .product-filter-panel .product-sidebar-contact__avatar-wrap,
  .product-filter-panel .product-sidebar-contact__avatar {
    width: 72px;
    height: 72px;
    min-width: 72px;
    max-width: 72px;
  }
}

.product-results {
  min-width: 0;
}

.product-tabs--reference {
  margin: 0 0 34px;
  display: grid;
  grid-template-columns: 160px 180px 180px 206px 230px;
  gap: 20px;
  align-items: center;
  padding-top: 8px;
}

.product-tabs--reference .product-tab {
  height: 54px;
  padding: 0 24px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid #ead2c6;
  color: #5a4b44;
  background: #fffaf5;
  font-size: 16px;
  font-weight: 900;
  line-height: 1;
  box-shadow: none;
  white-space: nowrap;
  position: relative;
  overflow: visible;
}

.product-tabs--reference .product-tab.active {
  color: #fff;
  background: #e83228;
  border-color: #e83228;
}

.product-tab-icon {
  width: 16px;
  height: 16px;
  border: 1.5px solid currentColor;
  display: inline-block;
  position: relative;
  flex: 0 0 auto;
}

.product-tab-icon--bag {
  border-radius: 4px;
}

.product-tab-icon--bag::before {
  content: "";
  position: absolute;
  left: 4px;
  top: -5px;
  width: 6px;
  height: 6px;
  border: 1.5px solid currentColor;
  border-bottom: 0;
  border-radius: 5px 5px 0 0;
}

.product-tab-icon--medal,
.product-tab-icon--japan {
  border-radius: 50%;
}

.product-tab-icon--medal::after {
  content: "";
  position: absolute;
  inset: 4px;
  border-radius: 50%;
  background: currentColor;
}

.product-tab-icon--nodes {
  border: 0;
}

.product-tab-icon--nodes::before,
.product-tab-icon--nodes::after {
  content: "";
  position: absolute;
  border: 1.5px solid currentColor;
  border-radius: 50%;
}

.product-tab-icon--nodes::before {
  left: 0;
  top: 1px;
  width: 6px;
  height: 6px;
  box-shadow: 10px 0 0 -1.5px #fffaf5, 10px 0 0 0 currentColor, 5px 9px 0 -1.5px #fffaf5, 5px 9px 0 0 currentColor;
}

.product-tab.active .product-tab-icon--nodes::before {
  box-shadow: 10px 0 0 -1.5px #e83228, 10px 0 0 0 currentColor, 5px 9px 0 -1.5px #e83228, 5px 9px 0 0 currentColor;
}

.product-tab-icon--japan {
  background: #fff;
}

.product-tab-icon--japan::after {
  content: "";
  position: absolute;
  inset: 4px;
  border-radius: 50%;
  background: #e83228;
}

.product-tabs--reference small {
  position: absolute;
  top: -7px;
  right: 10px;
  margin: 0;
  padding: 3px 6px;
  border-radius: 999px;
  color: #fff;
  background: #e83228;
  font-size: 8px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: .04em;
  z-index: 2;
  pointer-events: none;
}

.product-grid-page--reference {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 34px 24px;
}

.product-catalog-page .product-grid-page--reference.is-list-view {
  grid-template-columns: 1fr;
  gap: 12px;
}

.product-catalog-page .product-grid-page--reference.is-list-view .product-card-page--reference {
  border-radius: 10px;
}

.product-catalog-page .product-grid-page--reference.is-list-view .product-card-link {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
}

.product-catalog-page .product-grid-page--reference.is-list-view .product-image-stage {
  flex: 0 0 120px;
  width: 120px;
  padding: 12px;
}

.product-catalog-page .product-grid-page--reference.is-list-view .product-image-stage img {
  max-height: 96px;
}

.product-catalog-page .product-grid-page--reference.is-list-view .product-card-body {
  flex: 1 1 auto;
  min-width: 0;
  padding: 16px 56px 16px 0;
}

.product-catalog-page .product-grid-page--reference.is-list-view .product-card-body h3 {
  margin-bottom: 8px;
  font-size: 16px;
}

.product-catalog-page .product-grid-page--reference.is-list-view .product-card-subtitle {
  margin-bottom: 8px;
  font-size: 13px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-catalog-page .product-grid-page--reference.is-list-view .product-card-view {
  display: inline-block;
}

.product-card-page--reference {
  border: 1px solid #eadbd1;
  border-radius: 9px;
  background: #fff;
  box-shadow: none;
}

.product-card-page--reference .product-card-link {
  height: auto;
}

.product-card-page--reference .product-image-stage {
  height: auto;
  min-height: 0;
  aspect-ratio: auto;
  padding: 12px 12px 0;
  display: block;
  overflow: visible;
  background: #fff;
}

.product-card-page--reference .product-image-stage img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
  max-height: none;
  object-fit: contain;
  object-position: center center;
}

.product-card-page--reference .product-card-body {
  min-height: 0;
  padding: 17px 56px 20px 20px;
  background: #fff;
}

.product-card-page--reference .product-card-body h3 {
  min-height: 0;
  margin: 0 0 14px;
  color: #17110f;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.34;
}

.product-card-page--reference .stock {
  margin-top: auto;
  color: #138a42;
  font-size: 12px;
  letter-spacing: .02em;
}

.product-card-page--reference .product-badge {
  top: 14px;
  left: 14px;
  z-index: 2;
  min-width: 46px;
  height: 25px;
  padding: 0 11px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  line-height: 1;
}

.product-badge--hot,
.product-badge--oem {
  background: #ff2d1f;
}

.product-badge--new,
.product-badge--japan {
  background: #28a654;
}

.product-inquiry-heart {
  position: absolute;
  right: 19px;
  bottom: 20px;
  z-index: 2;
  width: 24px;
  height: 24px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #8d6757;
  display: grid;
  place-items: center;
  cursor: pointer;
}

.product-inquiry-heart svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linejoin: round;
}

.product-inquiry-heart:hover {
  color: var(--primary);
}

.product-inquiry-heart.is-added,
.product-inquiry-heart.is-added:hover {
  color: var(--primary);
}

.product-inquiry-heart.is-added svg {
  fill: currentColor;
  stroke: currentColor;
}

.product-inquiry-heart.is-added:not(:disabled) {
  animation: gbt-inquiry-heart-pop .35s ease;
}

@keyframes gbt-inquiry-heart-pop {
  0% { transform: scale(1); }
  45% { transform: scale(1.22); }
  100% { transform: scale(1); }
}

@media (max-width: 1100px) {
  .product-archive-container {
    width: calc(100vw - 48px);
  }

  .gbt-product-list-hero__top {
    grid-template-columns: 1fr;
  }

  .gbt-product-list-hero__search {
    justify-self: stretch;
    width: 100%;
  }

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

  .product-sort-form {
    width: 100%;
    justify-content: space-between;
    gap: 14px;
  }

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

  .product-tabs--reference {
    width: 100%;
    margin-bottom: 24px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    overflow: visible;
    padding-top: 10px;
    padding-bottom: 0;
  }

  .product-tabs--reference .product-tab {
    flex: unset;
    width: 100%;
    min-width: 0;
    overflow: visible;
  }

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

@media (max-width: 900px) {
  .product-catalog-page .gbt-product-list-hero {
    margin-bottom: 12px;
  }

  .product-catalog-page .gbt-product-list-hero__top .gbt-product-list-header,
  .product-catalog-page .gbt-product-list-intro,
  .product-catalog-page .product-breadcrumb,
  .product-catalog-page .product-sidebar-sticky {
    display: none;
  }

  .product-catalog-page .gbt-product-list-hero__top {
    display: block;
    margin-bottom: 0;
  }

  .product-catalog-page .gbt-product-list-hero__search {
    width: 100%;
  }

  .product-catalog-page .product-mobile-category {
    display: block;
    margin-bottom: 12px;
    overflow: hidden;
    border: 1px solid #ead6cb;
    border-radius: 12px;
    background: #fffaf5;
  }

  .product-catalog-page .product-mobile-category__summary {
    min-height: 48px;
    border-radius: 12px;
    background: #fffaf5;
  }

  .product-catalog-page .product-toolbar {
    margin-bottom: 14px;
    min-height: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .product-catalog-page .product-sort-form {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0;
    width: 100%;
    overflow: hidden;
    border: 1px solid #eadbd1;
    border-radius: 12px;
    background: #fff;
  }

  .product-catalog-page .product-mobile-controls__btn,
  .product-catalog-page .product-sort-form__sort,
  .product-catalog-page .product-sort-form__show {
    min-height: 56px;
    padding: 8px 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    border-right: 1px solid #eadbd1;
    text-align: center;
  }

  .product-catalog-page .product-sort-form__show {
    border-right: 0;
  }

  .product-catalog-page .product-mobile-controls__btn {
    display: flex;
  }

  .product-catalog-page .product-sort-form__sort-head {
    display: inline-flex;
  }

  .product-catalog-page .product-sort-form__sort-label--mobile {
    display: inline;
  }

  .product-catalog-page .product-sort-form__sort-label--desktop {
    display: none;
  }

  .product-catalog-page .product-sort-form__sort,
  .product-catalog-page .product-sort-form__show {
    color: #3b322e;
    font-size: 12px;
    font-weight: 700;
  }

  .product-catalog-page .product-sort-form select {
    width: 100%;
    min-width: 0;
    height: 28px;
    padding: 0 22px 0 6px;
    border: 0;
    border-radius: 0;
    color: #554941;
    background: transparent;
    font-size: 12px;
    font-weight: 600;
    text-align: center;
    text-align-last: center;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath fill='%238b817b' d='M1 1l4 4 4-4'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 4px center;
  }

  .product-catalog-page .product-layout--reference {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .product-catalog-page .product-results {
    order: 0;
  }

  .product-catalog-page .product-tabs--reference {
    width: 100%;
    margin-bottom: 10px;
    display: flex;
    flex-wrap: nowrap;
    gap: 10px;
    overflow-x: auto;
    overflow-y: visible;
    padding-top: 12px;
    padding-bottom: 4px;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .product-catalog-page .product-tabs--reference::-webkit-scrollbar {
    display: none;
  }

  .product-catalog-page .product-tabs--reference .product-tab {
    flex: 0 0 auto;
    width: auto;
    min-width: max-content;
    height: 44px;
    padding: 0 18px;
    font-size: 14px;
    overflow: visible;
  }

  .product-catalog-page .product-tabs--reference small {
    top: -6px;
    right: 8px;
  }

  .product-catalog-page .product-results-meta {
    margin-bottom: 12px;
  }

  .product-catalog-page .product-grid-page--reference {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px 10px;
  }

  .product-catalog-page .product-grid-page--reference.is-list-view .product-image-stage {
    flex-basis: 92px;
    width: 92px;
    padding: 8px;
  }

  .product-catalog-page .product-grid-page--reference.is-list-view .product-image-stage img {
    max-height: 72px;
  }

  .product-catalog-page .product-grid-page--reference.is-list-view .product-card-body {
    padding: 10px 12px 10px 0;
  }

  .product-catalog-page .product-grid-page--reference.is-list-view .product-card-body h3 {
    margin-bottom: 4px;
    font-size: 14px;
  }

  .product-catalog-page .product-grid-page--reference.is-list-view .product-card-subtitle {
    margin-bottom: 6px;
    font-size: 12px;
  }

  .product-catalog-page .product-card-page--reference .product-badge,
  .product-catalog-page .product-card-page--reference .stock,
  .product-catalog-page .product-card-page--reference .product-inquiry-heart {
    display: none;
  }

  .product-catalog-page .product-card-subtitle,
  .product-catalog-page .product-card-view {
    display: block;
  }

  .product-catalog-page .product-card-page--reference .product-image-stage {
    padding: 10px 10px 0;
  }

  .product-catalog-page .product-card-page--reference .product-card-body {
    min-height: 0;
    padding: 12px 12px 14px;
  }

  .product-catalog-page .product-card-page--reference .product-card-body h3 {
    margin-bottom: 6px;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.32;
  }
}

@media (max-width: 640px) {
  .product-archive-shell {
    padding-top: 20px;
  }

  .product-archive-container {
    width: calc(100vw - 32px);
  }

  .product-breadcrumb {
    gap: 10px;
    font-size: 11px;
  }

  .product-filter-block {
    padding: 28px 24px;
  }

  .product-category-list li {
    min-height: 42px;
    padding: 8px 0;
    font-size: 15px;
  }

  .product-category-list li > span:last-child {
    font-size: 15px;
  }

  .product-filter-block--folds summary {
    min-height: 40px;
    font-size: 14px;
  }

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

  .product-card-page:not(.product-card-page--reference) .product-card-body {
    min-height: 0;
    padding: 12px 12px 14px;
  }

  .product-card-page:not(.product-card-page--reference) .product-card-body h3 {
    font-size: 13px;
    line-height: 1.32;
  }

  .product-card-page:not(.product-card-page--reference) .stock {
    font-size: 10px;
  }
}

.catalog-page-grid {
  grid-template-columns: repeat(3, 1fr);
}

.catalog-download-card {
  min-height: 520px;
  padding: 46px;
  display: grid;
  grid-template-columns: 1fr 210px;
  gap: 30px;
  align-items: center;
}

.catalog-download-card h3 {
  font-family: var(--font-serif);
  font-size: 32px;
}

.catalog-cover {
  height: 300px;
  border-radius: 8px;
  background: url("cat-desserts.png.webp") center / cover no-repeat;
  box-shadow: 0 16px 28px rgba(72, 45, 29, .2);
}

.catalog-download-card:nth-child(2) .catalog-cover {
  background: url("cat-gifts.png.webp") center / cover no-repeat;
}

.catalog-download-card:nth-child(3) .catalog-cover {
  background: url("prod-ramen.png.webp") center / cover no-repeat;
}

.news-list {
  display: grid;
  gap: 34px;
}

.news-list-card {
  display: grid;
  grid-template-columns: 480px minmax(0, 1fr);
  gap: 36px;
  align-items: center;
  padding: 18px;
  border-radius: 12px;
  border: 1px solid #e8dfd8;
  background: linear-gradient(180deg, #fffdf9 0%, #fff8ef 100%);
  box-shadow: none;
}

.news-list-thumb {
  display: block;
  overflow: hidden;
  border-radius: 8px;
  background: #fff1e9;
  min-width: 0;
  width: 480px;
  max-width: 480px;
}

.news-list-card .post-list-thumb,
.news-list-card img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: 280px;
  object-fit: cover;
  object-position: center;
  border-radius: 8px;
}

.news-list-body {
  align-self: center;
  min-width: 0;
  padding-right: 42px;
}

.news-list-body h2 {
  margin: 12px 0 22px;
  font-family: var(--font-serif);
  font-size: 34px;
  font-weight: 500;
  line-height: 1.2;
}

@media (max-width: 860px) {
  .news-page .page-hero {
    min-height: 0;
  }

  .news-page .page-hero-banner__content {
    padding: 30px 20px 36px;
  }

  .news-page-section {
    padding: 44px 0 56px;
  }

  .news-page-section .news-list {
    gap: 24px;
  }

  .news-page-section .news-list-card {
    grid-template-columns: minmax(220px, 38%) minmax(0, 1fr);
    gap: 20px;
    padding: 14px;
  }

  .news-page-section .news-list-thumb {
    width: 100%;
    max-width: none;
    aspect-ratio: 4 / 3;
  }

  .news-page-section .news-list-card .post-list-thumb,
  .news-page-section .news-list-card img {
    width: 100%;
    max-width: 100%;
    height: auto;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    object-position: center;
  }
}

@media (max-width: 640px) {
  .news-page .page-hero-banner__content {
    padding: 24px 16px 28px;
  }

  .news-page .page-hero-banner .page-kicker {
    margin-bottom: 12px;
    font-size: 14px;
  }

  .news-page .page-hero-banner .page-title {
    font-size: clamp(26px, 8vw, 32px);
    line-height: 1.15;
  }

  .news-page .page-hero-banner .page-subtitle {
    margin-top: 12px;
    font-size: 14px;
    line-height: 1.55;
  }

  .news-page-section {
    padding: 28px 0 40px;
  }

  .news-page-section .page-container {
    width: calc(100% - 32px);
  }

  .news-page-section .news-list {
    gap: 16px;
  }

  .news-page-section .news-list-card {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 0;
    overflow: hidden;
  }

  .news-page-section .news-list-thumb {
    width: 100%;
    max-width: none;
    border-radius: 0;
    aspect-ratio: 16 / 10;
    background: #fff1e9;
  }

  .news-page-section .news-list-card .post-list-thumb,
  .news-page-section .news-list-card img {
    width: 100%;
    max-width: 100%;
    height: auto;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    object-position: center;
    border-radius: 0;
  }

  .news-page-section .news-list-body {
    align-self: stretch;
    padding: 18px 16px 20px;
  }

  .news-page-section .news-list-body .date {
    font-size: 12px;
  }

  .news-page-section .news-list-body h2 {
    margin: 8px 0 12px;
    font-size: 24px;
    line-height: 1.22;
  }

  .news-page-section .news-list-body .copy-text {
    margin: 0 0 14px;
    font-size: 15px;
    line-height: 1.6;
  }

  .news-page-section .news-list-body .tiny-link {
    font-size: 12px;
  }

  .news-page-section > .gbt-pagination,
  .news-page-section > .gbt-list-scroll-loader {
    margin-top: 8px;
  }
}

.blog-page-section {
  position: relative;
  overflow-x: clip;
  overflow-y: visible;
  padding: 58px 0 92px;
  background:
    radial-gradient(circle at 6% 4%, rgba(240, 46, 37, .08), transparent 18%),
    radial-gradient(circle at 95% 68%, rgba(240, 179, 151, .18), transparent 18%),
    #fffdf9;
}

.blog-page-section::before,
.blog-page-section::after {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: 0;
}

.blog-page-section::before {
  left: -70px;
  top: -20px;
  width: 380px;
  height: 240px;
  background: url("blog-hero-left-decor.png") left top / contain no-repeat;
  opacity: .36;
}

.blog-page-section::after {
  right: -42px;
  bottom: 0;
  width: 310px;
  height: 230px;
  background: url("blog-hero-right-decor.png") right bottom / contain no-repeat;
  opacity: .34;
}

.blog-page-section .page-container {
  position: relative;
  z-index: 1;
  overflow-x: visible;
}

.blog-category-strip {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 22px;
  margin: 0 0 52px;
}

.blog-category-card {
  min-height: 116px;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 14px;
  padding: 22px 10px;
  border: 1px solid #f0d8cc;
  border-radius: 6px;
  color: #1f1a17;
  background: rgba(255, 248, 242, .72);
  text-align: center;
  font-size: 15px;
  font-weight: 700;
  transition: border-color .18s ease, color .18s ease, background-color .18s ease;
  text-decoration: none;
}

.blog-category-card > span:last-child {
  display: block;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.blog-category-card:hover,
.blog-category-card.active {
  border-color: var(--primary);
  color: var(--primary);
  background: rgba(255, 250, 246, .94);
}

.blog-category-card .dashicons {
  width: 34px;
  height: 34px;
  font-size: 34px;
  line-height: 1;
  color: #c87560;
}

.blog-category-card.active .dashicons,
.blog-category-card:hover .dashicons {
  color: var(--primary);
}

.blog-feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 42px 34px;
  align-items: stretch;
}

.blog-list-stack > .gbt-pagination,
.blog-list-stack > .gbt-list-scroll-loader {
  margin-top: 0;
}

.blog-layout--feature .blog-feature-card {
  grid-template-columns: minmax(220px, 42%) minmax(0, 58%);
  min-height: 280px;
}

.blog-layout--feature .blog-feature-copy {
  min-height: 100%;
}

.blog-layout--feature .blog-feature-copy h2 {
  max-width: none;
}

.blog-layout--feature .blog-feature-copy p {
  max-width: none;
}

.blog-layout--feature .blog-feature-media {
  min-height: 100%;
}

.blog-layout--feature .blog-feature-media .post-list-thumb,
.blog-layout--feature .blog-feature-media img {
  min-height: 100%;
}

.blog-feature-grid > .gbt-pagination,
.blog-feature-grid > .gbt-list-scroll-loader {
  grid-column: 1 / -1;
}

.blog-feature-card {
  min-height: 0;
  display: grid;
  grid-template-columns: 200px 1fr;
  overflow: hidden;
  border: 1px solid #e8dfd8;
  border-radius: 8px;
  background: linear-gradient(180deg, #fffdf9 0%, #fff8ef 100%);
  box-shadow: none;
}

.blog-feature-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 28px 32px 26px;
}

.blog-feature-kicker {
  margin-bottom: 28px;
  color: var(--primary);
  font-size: 15px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.blog-feature-copy h2 {
  max-width: 300px;
  margin: 0 0 26px;
  font-family: var(--font-serif);
  font-size: 34px;
  font-weight: 500;
  line-height: 1.18;
  letter-spacing: -.015em;
}

.blog-feature-copy h2 a {
  color: inherit;
}

.blog-feature-copy p {
  max-width: 255px;
  margin: 0 0 34px;
  color: #211b17;
  font-size: 16px;
  line-height: 1.72;
}

.blog-feature-copy time {
  margin-top: auto;
  color: #75645b;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
}

.blog-feature-copy .tiny-link {
  margin-top: 26px;
}

.blog-feature-media {
  min-width: 0;
  align-self: stretch;
  background: #fff1e9;
}

.blog-feature-media .post-list-thumb,
.blog-feature-media img {
  width: 100%;
  height: 100%;
  min-height: 160px;
  display: block;
  object-fit: cover;
}

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

.blog-layout--grid .blog-feature-card {
  min-height: 0;
  grid-template-columns: 1fr;
}

.blog-layout--grid .blog-feature-media {
  min-height: 265px;
  order: -1;
}

.blog-layout--grid .blog-feature-copy {
  min-height: 265px;
  padding: 30px 30px 32px;
}

.blog-layout--grid .blog-feature-copy h2 {
  max-width: none;
  font-size: 26px;
}

.blog-layout--grid .blog-feature-copy p {
  max-width: none;
  font-size: 15px;
  line-height: 1.65;
}

.blog-layout--list {
  grid-template-columns: 1fr;
  gap: 26px;
}

.blog-layout--list .blog-feature-card {
  min-height: 295px;
  grid-template-columns: 360px 1fr;
}

.blog-layout--list .blog-feature-media {
  order: -1;
}

.blog-layout--list .blog-feature-copy {
  padding: 36px 44px;
}

.blog-layout--list .blog-feature-copy h2,
.blog-layout--list .blog-feature-copy p {
  max-width: 720px;
}

.blog-layout--list .blog-feature-copy h2 {
  font-size: 32px;
}

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

.blog-layout--magazine .blog-feature-card {
  min-height: 430px;
  grid-template-columns: 1fr;
}

.blog-layout--magazine .blog-feature-card:first-child {
  grid-column: span 2;
  grid-row: span 2;
  grid-template-columns: 42% 58%;
  min-height: 540px;
}

.blog-layout--magazine .blog-feature-media {
  min-height: 225px;
  order: -1;
}

.blog-layout--magazine .blog-feature-card:first-child .blog-feature-media {
  min-height: 0;
  order: initial;
}

.blog-layout--magazine .blog-feature-copy {
  padding: 28px;
}

.blog-layout--magazine .blog-feature-card:first-child .blog-feature-copy {
  padding: 46px 38px 42px;
}

.blog-layout--magazine .blog-feature-copy h2 {
  max-width: none;
  font-size: 24px;
}

.blog-layout--magazine .blog-feature-card:first-child .blog-feature-copy h2 {
  max-width: 300px;
  font-size: 34px;
}

.blog-layout--magazine .blog-feature-copy p {
  max-width: none;
  font-size: 15px;
}

.blog-empty {
  grid-column: 1 / -1;
  margin: 0;
  padding: 42px;
  border: 1px solid #efd9cd;
  color: #5d4a40;
  background: #fffaf6;
}

.contact-layout {
  display: grid;
  grid-template-columns: 460px 1fr;
  gap: 50px;
}

.contact-card {
  padding: 48px;
  box-shadow: none;
  border: 1px solid #e8dfd8;
  background: linear-gradient(180deg, #fffdf9 0%, #fff8ef 100%);
}

.contact-item {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 18px;
  margin: 28px 0;
}

.contact-item-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--primary);
  background: #fff0e8;
  font-weight: 900;
}

.contact-card h2 {
  margin: 0 0 26px;
  font-family: var(--font-serif);
  font-size: 36px;
  font-weight: 500;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

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

.form-field.full {
  grid-column: 1 / -1;
}

.form-field-hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-field label {
  font-weight: 800;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  border: 1px solid #ead4c8;
  border-radius: 8px;
  background: #fffdfa;
  padding: 17px 18px;
  color: #3d332e;
  font: inherit;
}

.form-field textarea {
  min-height: 150px;
  resize: vertical;
}

.form-field.full .btn.primary,
.form-field.full .gbt-inquiry-submit {
  width: 100%;
}

.captcha-row {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 12px;
}

.captcha-row span {
  display: inline-flex;
  align-items: center;
  min-height: 52px;
  padding: 0 18px;
  border: 1px solid #ead4c8;
  border-radius: 8px;
  background: #fff5ef;
  color: #c23629;
  font-size: 14px;
  font-weight: 900;
  white-space: nowrap;
}

.gbt-captcha-missing {
	color: #b45309;
	font-size: 14px;
}

.g-recaptcha,
.cf-turnstile {
	margin-top: 8px;
	max-width: 100%;
}

.form-field input[readonly] {
  background: #fff5ef;
  color: #6f5649;
}

.form-notice {
  margin: 0 0 22px;
  padding: 14px 18px;
  border-radius: 10px;
  font-weight: 700;
  line-height: 1.5;
}

.form-notice.success {
  border: 1px solid #bfe8cd;
  background: #f0fff5;
  color: #14783d;
}

.form-notice.error {
  border: 1px solid #ffc9c4;
  background: #fff2f0;
  color: #c22b22;
}

@media (max-width: 1100px) {
  .contact-page-section {
    padding: 52px 0;
  }

  .contact-layout {
    gap: 28px;
  }

  .contact-card {
    padding: 32px 28px;
  }

  .contact-card h2 {
    margin-bottom: 18px;
    font-size: 30px;
  }

  .contact-item {
    gap: 14px;
    margin: 20px 0;
  }
}

@media (max-width: 860px) {
  .contact-page .page-hero {
    min-height: 0;
  }

  .contact-page .page-hero-banner__content {
    padding: 30px 20px 36px;
  }

  .contact-page-section {
    padding: 32px 0 44px;
  }

  .contact-layout {
    gap: 20px;
  }

  .contact-card {
    padding: 24px 20px;
  }

  .contact-card h2 {
    margin-bottom: 16px;
    font-size: 26px;
  }

  .contact-item {
    grid-template-columns: 44px 1fr;
    gap: 12px;
    margin: 16px 0;
  }

  .contact-item-icon {
    width: 44px;
    height: 44px;
    font-size: 14px;
  }

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

  .contact-page-section .form-field input,
  .contact-page-section .form-field select,
  .contact-page-section .form-field textarea {
    padding: 13px 14px;
  }

  .contact-page-section .form-field textarea {
    min-height: 120px;
  }
}

@media (max-width: 640px) {
  .contact-page .page-hero-banner__content {
    padding: 24px 16px 28px;
  }

  .contact-page .page-hero-banner .page-kicker {
    margin-bottom: 12px;
    font-size: 14px;
  }

  .contact-page .page-hero-banner .page-title {
    font-size: clamp(26px, 8vw, 32px);
    line-height: 1.15;
  }

  .contact-page .page-hero-banner .page-subtitle {
    margin-top: 12px;
    font-size: 14px;
    line-height: 1.55;
  }

  .contact-page-section {
    padding: 24px 0 36px;
  }

  .contact-page-section .page-container {
    width: calc(100% - 32px);
  }

  .contact-layout {
    gap: 16px;
  }

  .contact-card {
    padding: 20px 16px;
    border-radius: 8px;
  }

  .contact-card h2 {
    margin-bottom: 12px;
    font-size: 22px;
  }

  .contact-item {
    grid-template-columns: 38px 1fr;
    gap: 10px;
    margin: 12px 0;
  }

  .contact-item:first-of-type {
    margin-top: 0;
  }

  .contact-item-icon {
    width: 38px;
    height: 38px;
    font-size: 12px;
  }

  .contact-item strong {
    display: block;
    font-size: 12px;
    letter-spacing: 0.02em;
  }

  .contact-item p {
    margin: 2px 0 0;
    font-size: 13px;
    line-height: 1.45;
    overflow-wrap: anywhere;
  }

  .contact-page-section .form-grid {
    gap: 12px;
  }

  .contact-page-section .form-field {
    gap: 6px;
  }

  .contact-page-section .form-field label {
    font-size: 12px;
  }

  .contact-page-section .form-field input,
  .contact-page-section .form-field select,
  .contact-page-section .form-field textarea {
    padding: 10px 12px;
    border-radius: 6px;
    font-size: 15px;
  }

  .contact-page-section .form-field textarea {
    min-height: 96px;
  }

  .contact-page-section .form-notice {
    margin-bottom: 10px;
    padding: 10px 12px;
    border-radius: 8px;
    font-size: 13px;
    line-height: 1.45;
  }

  .contact-page-section .captcha-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .contact-page-section .captcha-row span {
    min-height: 44px;
    padding: 0 12px;
    font-size: 13px;
  }

  .contact-page-section .g-recaptcha,
  .contact-page-section .cf-turnstile {
    margin-top: 4px;
    transform: scale(0.92);
    transform-origin: left top;
  }

  .contact-page-section .form-field.full .btn.primary,
  .contact-page-section .form-field.full .gbt-inquiry-submit {
    width: 100%;
    min-height: 46px;
    padding: 0 18px;
    font-size: 13px;
  }
}

.article-wrap {
  width: min(1060px, 100%);
  margin: 0 auto;
}

.article-hero-img {
  width: 100%;
  border-radius: 14px;
  margin: 42px 0;
  box-shadow: var(--shadow);
}

.article-card {
  padding: 70px 90px;
  border-radius: 28px;
  background: #fffdfa;
  box-shadow: 0 16px 34px rgba(99, 59, 35, .1);
}

.article-card p {
  margin: 0 0 28px;
  color: #2f2926;
  font-size: 20px;
  line-height: 1.85;
}

/* News detail reference layout */
.news-detail-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at 11% 24%, rgba(217, 189, 137, .18), transparent 14%),
    radial-gradient(circle at 88% 19%, rgba(217, 189, 137, .16), transparent 13%),
    linear-gradient(180deg, #fffdfa 0%, #fff8f4 100%);
}

.news-detail-page .site-footer {
  display: block;
}

.detail-header {
  height: 104px;
  border-bottom: 0;
  background: rgba(255, 253, 250, .98);
}

.detail-header .logo-mark {
  width: 110px;
  height: 56px;
  font-size: 27px;
}

.detail-header .logo-tagline {
  font-size: 13px;
}

.detail-header .nav {
  gap: 42px;
}

.detail-header .nav a {
  font-size: 14px;
}

.detail-main {
  position: relative;
  overflow: hidden;
  padding-bottom: 62px;
}

.detail-main::before,
.detail-main::after {
  content: "";
  position: absolute;
  pointer-events: none;
  opacity: .45;
  z-index: 0;
}

.detail-main::before {
  left: -72px;
  top: 260px;
  width: 280px;
  height: 560px;
  background:
    linear-gradient(68deg, transparent 47%, rgba(190, 167, 112, .35) 48%, rgba(190, 167, 112, .35) 50%, transparent 51%),
    linear-gradient(30deg, transparent 48%, rgba(190, 167, 112, .2) 49%, rgba(190, 167, 112, .2) 50%, transparent 51%);
}

.detail-main::after {
  right: -86px;
  bottom: 52px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background:
    repeating-radial-gradient(circle at 100% 100%, transparent 0 18px, rgba(204, 178, 123, .35) 19px 21px, transparent 22px 40px);
}

.detail-container {
  width: min(var(--container), 100%);
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.detail-hero {
  min-height: clamp(720px, 42vw, 860px);
  padding: 76px 0 0;
  position: relative;
  background-color: #fff8f4;
  background-image: var(--detail-hero-bg-image);
  background-position: center top;
  background-size: cover;
  background-repeat: no-repeat;
}

.detail-hero::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 220px;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255, 248, 244, 0) 0%, rgba(255, 248, 244, .72) 58%, #fff8f4 100%);
}

.detail-hero::after {
  content: "";
  position: absolute;
  right: 18%;
  top: 128px;
  width: 190px;
  height: 160px;
  opacity: .55;
  z-index: 0;
  background:
    radial-gradient(circle at 22% 72%, rgba(204, 178, 123, .55) 0 8px, transparent 9px),
    radial-gradient(circle at 54% 45%, rgba(204, 178, 123, .45) 0 6px, transparent 7px),
    radial-gradient(circle at 82% 20%, rgba(204, 178, 123, .4) 0 14px, transparent 15px);
}

.detail-kicker {
  margin: 0 0 34px;
  margin-left: max(108px, calc((100% - 1160px) / 2));
  color: var(--primary);
  font-size: 16px;
  font-weight: 900;
  letter-spacing: .02em;
}

.detail-hero h1 {
  margin: 0;
  margin-left: max(108px, calc((100% - 1160px) / 2));
  max-width: 1360px;
  color: #11100f;
  font-family: var(--font-serif);
  font-size: clamp(52px, 4.1vw, 68px);
  font-weight: 500;
  line-height: 1.1;
}

.detail-date {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  margin: 38px 0 20px max(108px, calc((100% - 1160px) / 2));
  color: #b01f1b;
  font-size: 15px;
  font-weight: 900;
  letter-spacing: .02em;
}

.detail-date span {
  width: 18px;
  height: 18px;
  border: 2px solid #b01f1b;
  border-radius: 3px;
  position: relative;
}

.detail-date span::before,
.detail-date span::after {
  content: "";
  position: absolute;
  top: -5px;
  width: 3px;
  height: 7px;
  border-radius: 2px;
  background: #b01f1b;
}

.detail-date span::before {
  left: 3px;
}

.detail-date span::after {
  right: 3px;
}

.detail-product-scene {
  display: block;
  width: min(1260px, calc(100% - 96px));
  height: auto;
  margin: 0 auto -6px;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 22px 34px rgba(89, 55, 30, .08));
}

.detail-copy-section {
  position: relative;
  z-index: 2;
  margin-top: -38px;
}

.detail-article-card {
  width: min(1160px, calc(100% - 48px));
  margin: 0 auto;
  padding: 64px 84px 62px;
  border: 1px solid rgba(223, 211, 182, .78);
  border-radius: 46px;
  background: rgba(255, 254, 251, .96);
  box-shadow: 0 22px 44px rgba(95, 62, 36, .09);
}

.detail-card-ornament {
  width: 100%;
  height: 54px;
  margin: 0 0 30px;
  position: relative;
  display: grid;
  place-items: center;
}

.detail-card-ornament::before,
.detail-card-ornament::after {
  content: "";
  position: absolute;
  top: 26px;
  width: calc(50% - 58px);
  height: 1px;
  background: #cbbf95;
}

.detail-card-ornament::before {
  left: 0;
}

.detail-card-ornament::after {
  right: 0;
}

.detail-card-ornament {
  color: #8e8a4d;
}

.detail-card-ornament span {
  width: 56px;
  height: 56px;
  border: 2px solid #cbbf95;
  border-radius: 50%;
  position: relative;
  background: #fffefa;
}

.detail-card-ornament span::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #8e8a4d;
  transform: translate(-50%, -50%);
  box-shadow:
    0 -12px 0 2px #8e8a4d,
    0 12px 0 2px #8e8a4d,
    -12px 0 0 2px #8e8a4d,
    12px 0 0 2px #8e8a4d;
}

.detail-card-ornament + p {
  border-top: 0;
}

.detail-article-card p {
  width: min(760px, 100%);
  margin: 0 auto;
  padding: 30px 0;
  border-top: 1px solid rgba(205, 193, 161, .72);
  color: #171412;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.75;
}

.detail-article-card p:first-of-type {
  padding-top: 0;
}

.detail-back-link {
  display: inline-flex;
  margin-top: 34px;
  color: var(--primary);
  font-size: 18px;
  font-weight: 900;
  text-decoration: none;
}

@media (max-width: 1000px) {
  .detail-header {
    width: 100%;
    height: 94px;
    padding: 0;
    gap: 20px;
    overflow: hidden;
    position: relative;
  }

  .detail-header .header-inner {
    position: relative;
    width: min(var(--container), 100%);
    height: 100%;
    padding: 0;
  }

  .detail-header .logo {
    width: 120px;
    flex: 0 0 120px;
    position: absolute;
    left: 0;
    top: 16px;
  }

  .detail-header .logo-mark {
    width: 90px;
    height: 46px;
    font-size: 23px;
  }

  .detail-header .logo-tagline {
    font-size: 11px;
  }

  .detail-header .nav {
    position: absolute;
    left: 166px;
    right: 232px;
    top: 42px;
    min-width: 0;
    gap: 22px;
    overflow: visible;
    justify-content: flex-start;
  }

  .detail-header .nav a {
    font-size: 9px;
    white-space: nowrap;
  }

  .detail-header .header-actions {
    position: absolute;
    right: 0;
    top: 15px;
    flex: 0 0 auto;
    gap: 10px;
  }

  .detail-header .btn {
    padding: 12px 18px;
    font-size: 9px;
  }

  .gbt-lang-switcher--header .gbt-lang-switcher__trigger {
    width: 38px;
    height: 38px;
  }

  .detail-hero {
    min-height: clamp(560px, 52vw, 720px);
    padding-top: 64px;
  }

  .detail-container {
    width: 100%;
  }

  .detail-kicker,
  .detail-hero h1,
  .detail-date {
    margin-left: 108px;
  }

  .detail-kicker {
    margin-bottom: 30px;
    font-size: 12px;
  }

  .detail-hero h1 {
    max-width: 760px;
    font-size: 42px;
    line-height: 1.32;
  }

  .detail-date {
    margin-top: 28px;
    margin-bottom: 14px;
    font-size: 12px;
  }

  .detail-date span {
    width: 15px;
    height: 15px;
    border-width: 2px;
  }

  .detail-product-scene {
    width: 100%;
    max-width: none;
    margin-bottom: -2px;
  }

  .detail-copy-section {
    margin-top: -34px;
  }

  .detail-article-card {
    width: min(774px, calc(100% - 48px));
    padding: 46px 52px 52px;
    border-radius: 28px;
  }

  .detail-card-ornament {
    height: 46px;
    margin-bottom: 20px;
  }

  .detail-card-ornament::before,
  .detail-card-ornament::after {
    top: 22px;
  }

  .detail-card-ornament span {
    width: 46px;
    height: 46px;
  }

  .detail-card-ornament span::before {
    width: 8px;
    height: 8px;
    box-shadow:
      0 -10px 0 2px #8e8a4d,
      0 10px 0 2px #8e8a4d,
      -10px 0 0 2px #8e8a4d,
      10px 0 0 2px #8e8a4d;
  }

  .detail-article-card p {
    width: min(592px, 100%);
    padding: 22px 0;
    font-size: 14px;
    line-height: 1.68;
  }

  .detail-back-link {
    margin-top: 22px;
    font-size: 14px;
  }

  .news-detail-page .site-footer {
    padding-top: 34px;
  }
}

@media (max-width: 1100px) {
  .page-container,
  .footer-inner,
  .copyright,
  .container,
  .hero-inner,
  .trends-head,
  .news-grid,
  .innovation-inner {
    width: calc(100vw - 48px);
  }

  .split-grid,
  .product-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .service-grid,
  .process-row,
  .product-grid-page,
  .stat-grid,
  .catalog-page-grid,
  .blog-grid-page {
    grid-template-columns: repeat(2, 1fr);
  }

  .page-title { font-size: 52px; }

  .about-global-head {
    margin-left: 0;
  }

  .about-global-visual {
    width: calc(100vw - 48px);
  }

  .about-global-features {
    position: relative;
    bottom: auto;
    left: auto;
    width: 100%;
    transform: none;
    margin: 18px auto 0;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-global-feature:nth-child(2) {
    border-right: 0;
  }
}

@media (max-width: 640px) {
  .site-footer {
    padding-top: 56px;
  }

  .footer-inner,
  .footer-bottom {
    width: calc(100vw - 40px);
  }

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

  .footer-brand {
    padding-bottom: 20px;
  }

  .footer-column {
    padding: 22px 0 0;
    border-left: 0;
    border-top: 1px solid rgba(222, 178, 153, .55);
    overflow: visible;
  }

  .footer-contact-mail {
    white-space: normal;
    overflow-wrap: anywhere;
  }

  .footer-bottom {
    gap: 12px 20px;
    text-align: center;
  }

  .service-grid,
  .process-row,
  .stat-grid,
  .catalog-page-grid,
  .blog-grid-page,
  .form-grid,
  .footer-inner {
    grid-template-columns: 1fr;
  }
  .page-title { font-size: 40px; }

  .product-card-body {
    min-height: 0;
  }

  .about-global-section {
    padding: 58px 0 72px;
  }

  .about-global-head .copy-title {
    font-size: 40px;
  }

  .about-global-lead {
    font-size: 16px;
  }

  .about-global-image {
    height: 300px;
    border-radius: 20px;
  }

  .about-global-features {
    grid-template-columns: 1fr;
  }

  .about-global-feature {
    border-right: 0;
    border-bottom: 1px solid rgba(207, 148, 83, .42);
    padding: 18px 22px;
  }

  .about-global-feature:last-child {
    border-bottom: 0;
  }
}

@media (max-width: 900px) {
  .detail-header.header {
    width: 100%;
    height: 82px;
    padding: 0;
    display: block;
    overflow: visible;
    position: sticky;
    top: 0;
    z-index: 60;
    background: rgba(255, 253, 250, .98);
  }

  .detail-header.header .header-inner {
    width: 100%;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .detail-header.header .logo,
  .detail-header.header .nav,
  .detail-header.header .header-actions {
    position: static;
  }

  .detail-header.header .header-inner > .nav,
  .detail-header.header .header-inner > .header-actions {
    display: none;
  }

  .detail-header.header .logo {
    width: 120px;
    flex: 0 0 auto;
  }

  .detail-header.header .mobile-menu-toggle {
    display: grid;
  }
}

@media (max-width: 520px) {
  .header,
  .detail-header.header {
    height: 80px;
    padding: 0;
  }

  .header-inner {
    padding: 0 18px;
  }

  .header .mobile-menu-toggle,
  .detail-header.header .mobile-menu-toggle {
    display: grid !important;
    margin-left: auto;
    flex: 0 0 46px;
  }

  .detail-hero {
    min-height: clamp(420px, 68vw, 560px);
    padding-top: 24px;
  }

  .detail-kicker,
  .detail-hero h1,
  .detail-date {
    margin-left: 24px;
    margin-right: 24px;
  }

  .detail-kicker {
    margin-bottom: 26px;
  }

  .detail-hero h1 {
    max-width: calc(100vw - 48px);
    font-size: 34px;
    line-height: 1.22;
  }

  .detail-date {
    margin-top: 28px;
  }

  .detail-article-card {
    width: calc(100% - 28px);
    padding: 38px 24px 42px;
    border-radius: 24px;
  }

  .detail-card-ornament::before,
  .detail-card-ornament::after {
    width: calc(50% - 44px);
  }

  .detail-article-card p {
    font-size: 14px;
    line-height: 1.72;
  }
}
/* OEM page */
.oem-ref-page {
  background: #fffaf6;
  --oem-body: #3d332e;
  --oem-muted: #5c534e;
  --oem-ink: #17110f;
}

.oem-ref-page .page-hero-banner .page-title {
  font-size: clamp(42px, 4.8vw, 64px);
  text-wrap: balance;
}

.oem-ref-page .page-hero-banner .page-subtitle {
  font-size: clamp(17px, 1.6vw, 21px);
  line-height: 1.6;
  color: var(--oem-body);
}

.oem-solutions,
.oem-process,
.oem-quality {
  position: relative;
  overflow: hidden;
  background: #fffaf6;
}

.oem-solutions {
  padding: 88px 0 64px;
  background:
    radial-gradient(circle at 0 5%, rgba(255, 214, 207, .55), transparent 12%),
    radial-gradient(circle at 100% 2%, rgba(255, 214, 207, .5), transparent 12%),
    linear-gradient(180deg, #fffaf6 0%, #fffdf9 100%);
}

.oem-solutions--has-bg {
  background: transparent;
}

.oem-section-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.oem-solutions--has-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255, 250, 246, .35), rgba(255, 253, 249, .45));
}

.oem-solutions--has-bg::after {
  display: none;
}

.oem-section-head {
  position: relative;
  z-index: 2;
  width: min(var(--container), 100%);
  margin: 0 auto;
  padding: 0;
  text-align: center;
}

.oem-section-head h2 {
  margin: 0;
  font-family: var(--font-serif);
  font-size: clamp(32px, 3.2vw, 42px);
  font-weight: 600;
  line-height: 1.18;
  letter-spacing: -0.02em;
  text-wrap: balance;
  color: var(--oem-ink);
}

.oem-section-head p {
  margin: 16px auto 0;
  max-width: 42em;
  color: var(--oem-body);
  font-size: clamp(16px, 1.35vw, 18px);
  font-weight: 500;
  line-height: 1.6;
  text-wrap: pretty;
}

.oem-service-grid {
  position: relative;
  z-index: 2;
  width: min(var(--container), 100%);
  margin: 48px auto 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 18px;
}

.oem-service-card {
  min-height: 228px;
  padding: 32px 20px 26px;
  border: 1px solid #e8dfd8;
  border-radius: 10px;
  background: linear-gradient(180deg, #fffdf9 0%, #fff8ef 100%);
  box-shadow: none;
  text-align: center;
}

.oem-service-card h3 {
  margin: 22px 0 12px;
  font-size: clamp(15px, 1.1vw, 17px);
  font-weight: 800;
  line-height: 1.35;
  color: var(--oem-ink);
}

.oem-service-card p {
  margin: 0;
  font-size: clamp(14px, 1vw, 15px);
  font-weight: 500;
  line-height: 1.65;
  color: var(--oem-muted);
}

.oem-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto;
  display: block;
  color: #f33227;
  position: relative;
}

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

.oem-icon:not(:has(img))::before,
.oem-icon:not(:has(img))::after {
  content: "";
  position: absolute;
  border-color: currentColor;
  border-style: solid;
}

.oem-icon--factory::before { left: 5px; bottom: 4px; width: 44px; height: 26px; border-width: 3px; }
.oem-icon--factory::after { right: 8px; top: 4px; width: 11px; height: 44px; border-width: 3px 3px 0; }
.oem-icon--tag::before { inset: 10px 7px 8px 13px; border-width: 3px; transform: rotate(-38deg); border-radius: 4px; }
.oem-icon--tag::after { right: 15px; top: 16px; width: 7px; height: 7px; border-width: 3px; border-radius: 50%; }
.oem-icon--flask::before { left: 18px; top: 3px; width: 20px; height: 40px; border-width: 3px 3px 0; border-radius: 2px 2px 10px 10px; }
.oem-icon--flask::after { left: 9px; bottom: 4px; width: 40px; height: 28px; border-width: 3px; border-radius: 50% 50% 8px 8px; }
.oem-icon--box::before { inset: 10px; border-width: 3px; transform: rotate(30deg) skewY(-18deg); }
.oem-icon--box::after { left: 26px; top: 10px; height: 38px; border-left-width: 3px; }
.oem-icon--shield::before { left: 10px; top: 4px; width: 38px; height: 46px; border-width: 3px; border-radius: 22px 22px 18px 18px; }
.oem-icon--shield::after { left: 25px; top: 21px; width: 10px; height: 20px; border-width: 0 3px 3px 0; transform: rotate(38deg); }
.oem-icon--globe::before { inset: 5px; border-width: 3px; border-radius: 50%; }
.oem-icon--globe::after { left: 12px; right: 12px; top: 26px; border-top-width: 3px; box-shadow: 0 -12px 0 -1px currentColor, 0 12px 0 -1px currentColor; }

.oem-process {
  padding: 84px 0 80px;
  background: linear-gradient(180deg, #fffdf9 0%, #fffaf6 100%);
}

.oem-process-row {
  width: min(var(--container), 100%);
  margin: 48px auto 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 28px 32px;
  text-align: center;
}

.oem-process-row article {
  position: relative;
}

.oem-process-row article:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 42px;
  right: -39px;
  width: 64px;
  height: 2px;
  background: #f33227;
}

.oem-process-row article:not(:last-child)::before {
  content: "";
  position: absolute;
  top: 37px;
  right: -41px;
  width: 11px;
  height: 11px;
  border-top: 2px solid #f33227;
  border-right: 2px solid #f33227;
  transform: rotate(45deg);
}

.oem-process-icon {
  width: 92px;
  height: 92px;
  margin: 0 auto 22px;
  border: 1px solid #f1d7cb;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #f33227;
  font-size: 36px;
  line-height: 1;
  overflow: hidden;
}

.oem-process-icon img {
  width: 50px;
  height: 50px;
  display: block;
  object-fit: contain;
}

.oem-process-row b {
  display: block;
  margin-bottom: 12px;
  color: #f33227;
  font-size: 20px;
  font-weight: 800;
  line-height: 1;
}

.oem-process-row h3 {
  margin: 0 0 10px;
  font-size: clamp(15px, 1.1vw, 17px);
  font-weight: 800;
  line-height: 1.35;
  color: var(--oem-ink);
}

.oem-process-row p {
  margin: 0 auto;
  max-width: 168px;
  font-size: clamp(14px, 1vw, 15px);
  font-weight: 500;
  line-height: 1.6;
  color: var(--oem-muted);
}

.oem-quality {
  position: relative;
  padding: 84px 0 64px;
  background: #fcf9f5;
  overflow: visible;
}

.oem-quality::before,
.oem-quality::after {
  display: none;
}

.oem-quality .oem-section-head h2 {
  font-size: clamp(32px, 3.2vw, 42px);
  font-weight: 600;
  letter-spacing: -0.02em;
}

.oem-quality .oem-section-head p {
  margin-top: 16px;
  color: var(--oem-body);
  font-size: clamp(16px, 1.35vw, 18px);
  font-weight: 500;
  line-height: 1.6;
}

.oem-quality-inner {
  position: relative;
  z-index: 1;
  width: min(var(--container), 100%);
  margin: 52px auto 0;
  padding: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) min(320px, 28%);
  gap: 40px;
  align-items: center;
}

.oem-cert-column {
  min-width: 0;
}

.oem-cert-list {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px 16px;
  margin-top: 0;
  text-align: center;
}

.oem-cert-list article {
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.oem-cert-logo,
.oem-cert-list article img {
  width: 88px;
  height: 88px;
  margin: 0 auto 14px;
  object-fit: contain;
}

.cert-wordmark {
  width: 88px;
  height: 88px;
  margin: 0 auto 14px;
  display: grid;
  place-items: center;
  position: relative;
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1;
  letter-spacing: -0.04em;
}

.cert-wordmark--brcgs {
  color: #8f49bd;
  font-size: 26px;
  font-weight: 900;
  text-shadow:
    0 1px 0 rgba(255, 255, 255, .95),
    0 2px 0 rgba(73, 33, 95, .16);
}

.cert-wordmark--sgs {
  color: #767676;
  font-size: 34px;
  font-weight: 900;
  letter-spacing: -0.06em;
}

.cert-wordmark--sgs::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 24px;
  width: 72px;
  height: 3px;
  transform: translateX(-50%);
  border-radius: 2px;
  background: #f0a045;
}

.oem-cert-list article h3 {
  margin: 0 0 6px;
  font-size: clamp(14px, 1vw, 16px);
  font-weight: 700;
  line-height: 1.3;
  color: var(--oem-ink);
}

.oem-cert-list article p {
  margin: 0 auto;
  font-size: clamp(13px, 0.95vw, 15px);
  font-weight: 400;
  color: var(--oem-muted);
  line-height: 1.5;
}

.oem-quality-card {
  display: grid;
  gap: 26px;
  padding: 34px 28px;
  border-radius: 12px;
  background: #fff0e6;
  box-shadow: none;
}

.oem-quality-card div {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 4px 16px;
  align-items: start;
}

.quality-mini-img {
  grid-row: span 2;
  width: 36px;
  height: 36px;
  margin-top: 2px;
  object-fit: contain;
}

.quality-mini {
  grid-row: span 2;
  color: #f33227;
  width: 28px;
  height: 28px;
  position: relative;
  display: block;
}

.quality-mini::before,
.quality-mini::after {
  content: "";
  position: absolute;
  border-color: currentColor;
  border-style: solid;
}

.quality-mini--shield::before {
  left: 6px;
  top: 1px;
  width: 16px;
  height: 21px;
  border-width: 2px;
  border-radius: 12px 12px 10px 10px;
}

.quality-mini--shield::after {
  left: 12px;
  top: 9px;
  width: 5px;
  height: 10px;
  border-width: 0 2px 2px 0;
  transform: rotate(40deg);
}

.quality-mini--team::before {
  left: 10px;
  top: 1px;
  width: 8px;
  height: 8px;
  border-width: 2px;
  border-radius: 50%;
}

.quality-mini--team::after {
  left: 4px;
  bottom: 2px;
  width: 20px;
  height: 14px;
  border-width: 2px 2px 0;
  border-radius: 16px 16px 0 0;
}

.quality-mini--globe::before {
  inset: 3px;
  border-width: 2px;
  border-radius: 50%;
}

.quality-mini--globe::after {
  left: 7px;
  right: 7px;
  top: 14px;
  border-top-width: 2px;
  box-shadow: 0 -7px 0 -1px currentColor, 0 7px 0 -1px currentColor;
}

.oem-quality-card strong {
  font-size: clamp(16px, 1.2vw, 18px);
  font-weight: 700;
  color: var(--oem-ink);
  line-height: 1.35;
}

.oem-quality-card p {
  margin: 0;
  font-size: clamp(14px, 1vw, 15px);
  font-weight: 400;
  color: var(--oem-muted);
  line-height: 1.55;
}

@media (min-width: 901px) and (max-width: 1180px) {
  .oem-service-grid,
  .oem-process-row,
  .oem-quality-inner,
  .oem-certificate-strip {
    padding-left: 0;
    padding-right: 0;
  }
}

@media (max-width: 900px) {
  .oem-service-grid,
  .oem-process-row,
  .oem-cert-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px 20px;
    padding-left: 24px;
    padding-right: 24px;
  }

  .oem-process-row p {
    max-width: none;
  }

  .oem-quality-inner {
    grid-template-columns: 1fr;
    gap: 32px;
    padding-left: 24px;
    padding-right: 24px;
  }

  .oem-quality-card {
    max-width: none;
  }

  .oem-certificate-strip {
    padding-left: 24px;
    padding-right: 24px;
  }

  .oem-service-card p,
  .oem-process-row p,
  .oem-quality-card p {
    overflow-wrap: anywhere;
  }

  .oem-process-row article::before,
  .oem-process-row article::after {
    display: none;
  }

  .oem-quality-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

@media (max-width: 640px) {
  .oem-solutions,
  .oem-process,
  .oem-quality {
    padding-top: 64px;
    padding-bottom: 56px;
  }

  .oem-section-head {
    padding-left: 20px;
    padding-right: 20px;
  }

  .oem-section-head h2 {
    max-width: none;
    margin-left: auto;
    margin-right: auto;
    font-size: clamp(28px, 7.5vw, 34px);
    line-height: 1.2;
  }

  .oem-section-head p {
    font-size: 16px;
  }

  .oem-service-grid,
  .oem-process-row {
    grid-template-columns: 1fr;
    gap: 20px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .oem-cert-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px 16px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .oem-service-card {
    min-height: auto;
    padding: 28px 22px 24px;
  }

  .oem-service-card h3,
  .oem-process-row h3 {
    font-size: 17px;
  }

  .oem-service-card p,
  .oem-process-row p {
    max-width: none;
    font-size: 15px;
  }

  .oem-process-row p {
    max-width: 28em;
  }

  .oem-cert-list article p {
    font-size: 14px;
  }

  .oem-quality-card {
    margin-left: 20px;
    margin-right: 20px;
  }
}

/* Catalog download reference page */
.catalog-ref-page {
  background: #fffaf6;
}

.catalog-container {
  width: min(var(--container), 100%);
  margin: 0 auto;
}

.catalog-hero {
  min-height: 430px;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 10% 26%, rgba(242, 190, 176, .28), transparent 16%),
    radial-gradient(circle at 90% 22%, rgba(242, 190, 176, .24), transparent 18%),
    linear-gradient(180deg, #fff6ee 0%, #fffaf6 100%),
    var(--catalog-hero-bg, none) center / cover no-repeat;
}

.catalog-hero::before,
.catalog-hero::after,
.catalog-downloads::before,
.catalog-downloads::after,
.catalog-cta-section::after {
  content: "";
  position: absolute;
  pointer-events: none;
  background-repeat: no-repeat;
  background-size: contain;
  opacity: .82;
}

.catalog-hero::before {
  left: -62px;
  top: 42px;
  width: 310px;
  height: 250px;
  background:
    radial-gradient(circle at 20% 52%, rgba(246, 172, 164, .58) 0 14px, transparent 15px),
    radial-gradient(circle at 36% 38%, rgba(246, 172, 164, .5) 0 12px, transparent 13px),
    radial-gradient(circle at 54% 27%, rgba(246, 172, 164, .45) 0 16px, transparent 17px),
    linear-gradient(125deg, transparent 0 48%, rgba(142, 84, 60, .34) 49% 50%, transparent 51%);
  transform: rotate(-12deg);
}

.catalog-hero::after {
  right: -44px;
  bottom: -54px;
  width: 320px;
  height: 220px;
  background:
    repeating-radial-gradient(ellipse at 100% 100%, transparent 0 18px, rgba(237, 194, 174, .42) 19px 20px, transparent 21px 38px);
}

.catalog-hero__inner {
  position: relative;
  z-index: 1;
  text-align: center;
}

.catalog-kicker {
  margin: 0 0 22px;
  color: var(--primary);
  font-size: 18px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.catalog-hero h1 {
  margin: 0;
  font-family: var(--font-serif);
  font-size: 70px;
  font-weight: 500;
  line-height: 1.05;
}

.catalog-hero p:not(.catalog-kicker) {
  margin: 24px 0 0;
  color: #655850;
  font-size: 20px;
}

.catalog-downloads {
  position: relative;
  padding: 76px 0 72px;
  background: #fffefa;
  overflow: hidden;
}

.catalog-downloads::before {
  left: -36px;
  top: 26px;
  width: 260px;
  height: 170px;
  background-image: radial-gradient(circle, rgba(255, 180, 170, .55) 0 8px, transparent 9px);
  background-size: 42px 34px;
}

.catalog-downloads::after {
  right: -12px;
  top: 14px;
  width: 260px;
  height: 160px;
  background-image: radial-gradient(circle, rgba(255, 180, 170, .48) 0 8px, transparent 9px);
  background-size: 42px 34px;
}

.catalog-card-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.catalog-market-card {
  min-height: 520px;
  padding: 72px 44px 58px;
  border-radius: 7px;
  background: #fff8ef;
  box-shadow: 0 18px 38px rgba(92, 58, 36, .08);
  display: grid;
  grid-template-columns: 155px 210px;
  gap: 30px;
  align-items: center;
}

.catalog-market-card__copy {
  min-width: 0;
}

.catalog-badge {
  width: 58px;
  height: 58px;
  margin-bottom: 26px;
  border: 2px solid #ef3327;
  border-radius: 12px;
  display: grid;
  place-items: center;
  color: #ef3327;
  font-size: 23px;
  font-weight: 900;
}

.catalog-market-card h2 {
  margin: 0 0 22px;
  font-family: var(--font-serif);
  font-size: 34px;
  font-weight: 700;
  line-height: 1.18;
}

.catalog-market-card p {
  min-height: 92px;
  margin: 0 0 28px;
  color: #655850;
  font-size: 14px;
  line-height: 1.7;
}

.catalog-download-btn {
  width: max-content;
  min-width: 138px;
  height: 44px;
  padding: 0 24px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: #ef3327;
  box-shadow: 0 14px 24px rgba(239, 51, 39, .22);
  font-size: 12px;
  font-weight: 900;
}

.catalog-market-card small {
  display: block;
  margin-top: 11px;
  color: #776a62;
  font-size: 13px;
}

.catalog-market-card img {
  width: 210px;
  height: 300px;
  border-radius: 6px;
  object-fit: cover;
  box-shadow: 0 14px 28px rgba(78, 49, 31, .15);
}

.catalog-cta-section {
  position: relative;
  padding: 72px 0 70px;
  overflow: hidden;
  background:
    radial-gradient(circle at 0 100%, rgba(255, 214, 205, .35), transparent 17%),
    radial-gradient(circle at 100% 0, rgba(255, 222, 211, .28), transparent 15%),
    linear-gradient(180deg, #fff6ee 0%, #fff4ec 100%);
}

.catalog-cta-section::after {
  right: -24px;
  bottom: -4px;
  width: 280px;
  height: 180px;
  background: url("oem-quality-right-decor.png.webp") right bottom / contain no-repeat;
  opacity: .42;
}

.catalog-cta-card {
  min-height: 176px;
  padding: 48px 64px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  background: rgba(255, 253, 248, .86);
  box-shadow: 0 18px 38px rgba(92, 58, 36, .08);
  position: relative;
  z-index: 1;
}

.catalog-cta-card h2 {
  margin: 0 0 22px;
  font-family: var(--font-serif);
  font-size: 34px;
  font-weight: 500;
  line-height: 1.2;
}

.catalog-cta-card p {
  margin: 0;
  color: #6a5b52;
  font-size: 16px;
}

.catalog-ref-page {
  background:
    radial-gradient(circle at 12% 8%, rgba(244, 181, 167, .18), transparent 18%),
    radial-gradient(circle at 88% 12%, rgba(244, 181, 167, .16), transparent 16%),
    linear-gradient(180deg, #fff7ef 0%, #fffaf6 52%, #fff4ec 100%);
}

.catalog-ref-page .site-main {
  position: relative;
  overflow: hidden;
  background:
    url("catalog-decor-left-alpha.png") left 0 top 0 / 360px auto no-repeat,
    url("catalog-decor-right-alpha.png") right 0 top 8px / 430px auto no-repeat,
    url("catalog-decor-right-alpha.png") right -42px bottom 4px / 290px auto no-repeat,
    linear-gradient(180deg, rgba(255, 247, 239, .9) 0%, rgba(255, 252, 247, .94) 52%, rgba(255, 245, 236, .96) 100%);
}

.catalog-ref-page .site-main::before,
.catalog-ref-page .site-main::after {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: 0;
}

.catalog-ref-page .site-main::before {
  left: 44px;
  top: 262px;
  width: 120px;
  height: 130px;
  background:
    radial-gradient(circle at 18px 18px, rgba(248, 166, 156, .45) 0 8px, transparent 9px),
    radial-gradient(circle at 82px 72px, rgba(248, 166, 156, .36) 0 7px, transparent 8px),
    radial-gradient(circle at 46px 112px, rgba(248, 166, 156, .32) 0 8px, transparent 9px);
}

.catalog-ref-page .site-main::after {
  right: 72px;
  top: 374px;
  width: 145px;
  height: 120px;
  background:
    radial-gradient(circle at 28px 36px, rgba(248, 166, 156, .38) 0 7px, transparent 8px),
    radial-gradient(circle at 104px 10px, rgba(248, 166, 156, .32) 0 6px, transparent 7px),
    radial-gradient(circle at 118px 88px, rgba(248, 166, 156, .34) 0 8px, transparent 9px);
}

.catalog-hero,
.catalog-downloads,
.catalog-cta-section {
  background: transparent;
}

.catalog-hero {
  min-height: 332px;
}

.catalog-hero::before {
  left: 220px;
  top: 186px;
  width: 86px;
  height: 70px;
  background: radial-gradient(circle, rgba(247, 150, 140, .38) 0 8px, transparent 9px);
  opacity: .5;
  transform: none;
}

.catalog-hero::after {
  right: 350px;
  top: 124px;
  bottom: auto;
  width: 90px;
  height: 80px;
  background: radial-gradient(circle, rgba(247, 150, 140, .38) 0 7px, transparent 8px);
  opacity: .42;
}

.catalog-kicker {
  margin-bottom: 18px;
}

.catalog-kicker::before {
  content: "鉁?;
  margin-right: 12px;
  color: #ef7a68;
}

.catalog-hero h1 {
  font-size: 66px;
}

.catalog-hero h1::after {
  content: "";
  display: block;
  width: 48px;
  height: 2px;
  margin: 30px auto 0;
  background: #ef3327;
}

.catalog-hero p:not(.catalog-kicker) {
  margin-top: 26px;
}

.catalog-downloads {
  padding: 10px 0 42px;
}

.catalog-downloads::before {
  left: 86px;
  top: 418px;
  width: 62px;
  height: 52px;
  background-image: radial-gradient(circle, rgba(248, 166, 156, .42) 0 7px, transparent 8px);
  background-size: auto;
  opacity: .5;
}

.catalog-downloads::after {
  right: 58px;
  top: auto;
  bottom: -18px;
  width: 116px;
  height: 86px;
  background-image: radial-gradient(circle, rgba(248, 166, 156, .38) 0 7px, transparent 8px);
  background-size: auto;
  opacity: .48;
}

.catalog-card-grid {
  gap: 18px;
}

.catalog-market-card {
  min-height: 455px;
  padding: 38px 30px 30px;
  grid-template-columns: minmax(0, 1fr) 184px;
  gap: 24px;
  border: 1px solid rgba(228, 207, 194, .86);
  border-radius: 14px;
  background: rgba(255, 251, 246, .88);
  box-shadow: 0 16px 26px rgba(92, 58, 36, .08);
}

.catalog-badge {
  width: 76px;
  height: 76px;
  margin-bottom: 24px;
  border: 0;
  border-radius: 50%;
  background: #fde9e1;
  font-size: 22px;
}

.catalog-market-card h2 {
  margin-bottom: 12px;
  font-size: 30px;
  font-weight: 500;
}

.catalog-market-subtitle {
  min-height: 0 !important;
  margin: 0 0 18px !important;
  color: #ef3327 !important;
  font-size: 17px !important;
  font-weight: 800;
  line-height: 1.35 !important;
}

.catalog-market-subtitle::after {
  content: "";
  display: block;
  width: 28px;
  height: 2px;
  margin-top: 20px;
  background: #ef3327;
}

.catalog-market-card p:not(.catalog-market-subtitle) {
  min-height: 92px;
  margin-bottom: 26px;
  font-size: 15px;
  line-height: 1.76;
}

.catalog-download-btn {
  width: min(220px, 100%);
  min-width: 0;
  height: 48px;
  font-size: 13px;
}

.catalog-market-card .catalog-download-btn::before {
  content: "鈫?;
  margin-right: 10px;
  font-size: 17px;
  line-height: 1;
}

.catalog-market-card small {
  width: min(220px, 100%);
  margin-top: 14px;
  color: #b4a39a;
  font-size: 14px;
  text-align: center;
}

.catalog-market-card img {
  width: 184px;
  height: 270px;
  object-fit: cover;
}

.catalog-cta-section {
  padding: 0 0 54px;
}

.catalog-cta-card {
  width: min(1080px, 100%);
  min-height: 112px;
  margin: 0 auto;
  padding: 26px 52px;
  border-radius: 12px;
  gap: 26px;
  background: rgba(255, 239, 229, .64);
  box-shadow: none;
}

.catalog-cta-card::before {
  content: "鈽?;
  width: 70px;
  height: 70px;
  flex: 0 0 70px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #ef3327;
  background: #fff;
  font-size: 30px;
  font-weight: 700;
}

.catalog-cta-card h2 {
  margin-bottom: 10px;
  font-size: 27px;
}

.catalog-cta-card .catalog-download-btn {
  width: 240px;
}

.catalog-ref-page .site-footer {
  position: relative;
  overflow: hidden;
  background:
    url("catalog-decor-right-alpha.png") right -60px bottom -56px / 260px auto no-repeat,
    linear-gradient(180deg, #fff1e8 0%, #fff4ec 100%);
  border-top-color: rgba(225, 202, 188, .8);
}

/* OEM quality carousel and 1440-safe certificate section */
.oem-quality-inner {
  grid-template-columns: minmax(0, 1fr) min(320px, 28%);
  gap: 40px;
}

.oem-quality-card {
  min-height: 0;
  padding: 34px 28px;
  gap: 26px;
}

.oem-quality-card div {
  grid-template-columns: 40px 1fr;
  gap: 4px 16px;
}

.oem-certificate-band {
  width: 100%;
  margin-top: 70px;
}

.oem-certificate-band--has-bg {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  position: relative;
  background-color: #fcf9f5;
  background-image: var(--oem-certificate-bg-image);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.oem-certificate-band--has-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(252, 249, 245, .78), rgba(252, 249, 245, .88));
}

.oem-certificate-band--has-bg .oem-certificate-strip {
  position: relative;
  z-index: 1;
}

.oem-certificate-band--has-bg .oem-certificate-strip::before {
  background: linear-gradient(90deg, rgba(252, 249, 245, .95), rgba(252, 249, 245, 0));
}

.oem-certificate-band--has-bg .oem-certificate-strip::after {
  background: linear-gradient(270deg, rgba(252, 249, 245, .95), rgba(252, 249, 245, 0));
}

.oem-certificate-strip {
  position: relative;
  z-index: 1;
  width: min(var(--container), 100%);
  margin: 0 auto;
  padding: 0;
  overflow: hidden;
  display: block;
  border: 0;
}

.oem-certificate-strip::before,
.oem-certificate-strip::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 90px;
  z-index: 2;
  pointer-events: none;
}

.oem-certificate-strip::before {
  left: 0;
  background: linear-gradient(90deg, #fcf9f5, rgba(252, 249, 245, 0));
}

.oem-certificate-strip::after {
  right: 0;
  background: linear-gradient(270deg, #fcf9f5, rgba(252, 249, 245, 0));
}

.oem-certificate-track {
  width: max-content;
  min-height: 320px;
  padding: 58px 144px 56px;
  display: flex;
  align-items: flex-end;
  gap: 48px;
  animation: certificate-marquee 55s linear infinite;
  will-change: transform;
}

.oem-certificate-track img {
  flex: 0 0 220px;
  width: 220px;
  height: 280px;
  max-width: 220px;
  max-height: 280px;
  object-fit: contain;
  object-position: center bottom;
  filter: drop-shadow(0 12px 8px rgba(67, 44, 29, .18));
}

.oem-certificate-strip:hover .oem-certificate-track {
  animation-play-state: paused;
}

@keyframes certificate-marquee {
  from { transform: translateX(0); }
  to { transform: translateX(calc(-50% - 24px)); }
}

@media (max-width: 1500px) {
  .catalog-market-card {
    grid-template-columns: minmax(0, 1fr) 190px;
    padding-left: 34px;
    padding-right: 34px;
  }

  .catalog-market-card img {
    width: 190px;
  }
}

@media (max-width: 1100px) {
  .blog-category-strip {
    display: flex;
    flex-wrap: nowrap;
    gap: 12px;
    margin: 0 -18px 32px;
    padding: 0 18px 8px;
    overflow-x: auto;
    overflow-y: hidden;
    overscroll-behavior-x: contain;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: 18px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .blog-category-strip::-webkit-scrollbar {
    display: none;
  }

  .blog-category-card {
    flex: 0 0 150px;
    min-height: 96px;
    scroll-snap-align: start;
  }

  .blog-feature-grid {
    grid-template-columns: 1fr;
  }

  .blog-layout--feature .blog-feature-card {
    grid-template-columns: minmax(240px, 38%) minmax(0, 62%);
    min-height: 260px;
  }

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

  .blog-layout--list .blog-feature-card {
    grid-template-columns: 180px 1fr;
  }

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

  .blog-layout--magazine .blog-feature-card:first-child {
    grid-column: 1 / -1;
  }

  .catalog-card-grid {
    grid-template-columns: 1fr;
  }

  .catalog-market-card {
    grid-template-columns: 1fr 240px;
  }

  .catalog-market-card img {
    width: 240px;
  }

  .oem-quality-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .oem-quality-card {
    max-width: 420px;
    margin: 0 auto;
  }
}

@media (max-width: 860px) {
  .blog-layout--feature .blog-feature-card {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .blog-layout--feature .blog-feature-media {
    order: -1;
    min-height: 220px;
  }

  .blog-layout--feature .blog-feature-media .post-list-thumb,
  .blog-layout--feature .blog-feature-media img {
    min-height: 220px;
    height: 220px;
  }

  .blog-layout--feature .blog-feature-copy h2 {
    font-size: 28px;
  }
}

@media (max-width: 700px) {
  .blog-page-section {
    padding-top: 34px;
    padding-bottom: 58px;
  }

  .blog-category-strip {
    margin-bottom: 28px;
  }

  .blog-category-card {
    flex-basis: 132px;
    min-height: 92px;
    padding: 18px 8px;
    font-size: 14px;
  }

  .blog-category-card .dashicons {
    width: 28px;
    height: 28px;
    font-size: 28px;
  }

  .blog-feature-card,
  .blog-layout--feature .blog-feature-card,
  .blog-layout--list .blog-feature-card,
  .blog-layout--magazine .blog-feature-card:first-child {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .blog-layout--grid,
  .blog-layout--magazine {
    grid-template-columns: 1fr;
  }

  .blog-layout--magazine .blog-feature-card:first-child {
    min-height: 0;
  }

  .blog-layout--feature .blog-feature-media,
  .blog-feature-media {
    order: -1;
    min-height: 220px;
  }

  .blog-layout--feature .blog-feature-media .post-list-thumb,
  .blog-layout--feature .blog-feature-media img,
  .blog-feature-media .post-list-thumb,
  .blog-feature-media img {
    min-height: 220px;
    height: 220px;
  }

  .blog-feature-copy {
    padding: 28px 22px 26px;
  }

  .blog-feature-kicker {
    margin-bottom: 18px;
    font-size: 13px;
  }

  .blog-feature-copy h2 {
    max-width: none;
    margin-bottom: 16px;
    font-size: 26px;
    line-height: 1.22;
  }

  .blog-feature-copy p {
    max-width: none;
    margin-bottom: 20px;
    font-size: 15px;
    line-height: 1.6;
  }

  .blog-feature-copy .tiny-link {
    margin-top: 18px;
  }

  .catalog-hero {
    min-height: 330px;
  }

  .catalog-hero h1 {
    font-size: 44px;
  }

  .catalog-hero p:not(.catalog-kicker) {
    font-size: 16px;
  }

  .catalog-market-card {
    min-height: 0;
    grid-template-columns: 1fr;
    padding: 34px 28px;
  }

  .catalog-market-card p {
    min-height: 0;
  }

  .catalog-market-card img {
    width: 100%;
    height: 230px;
  }

  .catalog-cta-card {
    padding: 34px 28px;
    align-items: flex-start;
    flex-direction: column;
  }

  .catalog-cta-card h2 {
    font-size: 28px;
  }

  .oem-quality-card {
    grid-template-columns: 1fr;
  }

  .oem-certificate-track {
    gap: 24px;
    min-height: 260px;
    padding: 38px 0;
    animation-duration: 65s;
  }

  .oem-certificate-track img {
    flex: 0 0 170px;
    width: 170px;
    height: 220px;
    max-width: 170px;
    max-height: 220px;
  }
}

@media (max-width: 640px) {
  html,
  body,
  .site,
  #page {
    max-width: 100% !important;
    overflow-x: hidden !important;
  }

  .hero-copy,
  .hero p,
  .section-head,
  .section-title,
  .section-subtitle {
    max-width: calc(100vw - 48px) !important;
  }

  .hero .hero-copy,
  .hero h1,
  .hero p {
    max-width: 100% !important;
  }

  .hero p {
    overflow-wrap: anywhere;
  }

  .section-title,
  .news-title,
  .page-title,
  .copy-title,
  .about-title {
    overflow-wrap: anywhere !important;
    text-wrap: balance;
  }

  .section-title {
    font-size: clamp(34px, 10vw, 42px) !important;
    line-height: 1.08 !important;
    margin-left: auto !important;
    margin-right: auto !important;
    text-align: center !important;
  }

  .collections .container {
    box-sizing: border-box;
    padding-left: 2px !important;
    padding-right: 2px !important;
  }

  .collections-top__actions {
    position: static;
    align-items: center;
    margin-top: 12px;
  }

  .collections .section-link,
  .collections-top__link.section-link {
    margin-top: 0 !important;
  }

  .category-carousel__track .category-card {
    height: auto;
    min-height: 210px;
  }

  .category-carousel__track .category-card img,
  .category-carousel__track .category-card__media {
    height: 118px;
  }

  .category-carousel__track .category-card h3 {
    margin: 12px 6px 8px;
    font-size: 14px;
    line-height: 1.2;
  }

  .category-carousel__track .category-card .tiny-link {
    font-size: 11px;
    padding-bottom: 12px;
  }
}

/* List scroll pagination */
.gbt-list-scroll-loader {
  color: #de3626;
  margin-top: 36px;
  min-height: 56px;
  position: relative;
}

.gbt-list-scroll-loader__sentinel {
  height: 1px;
  pointer-events: none;
  width: 100%;
}

.gbt-list-scroll-loader__panel {
  position: relative;
  width: 40px;
  height: 56px;
  margin: 0 auto;
  padding: 8px 0 16px;
}

.gbt-list-scroll-loader__panel[hidden] {
  display: none !important;
}

.gbt-list-scroll-loader__state {
  position: absolute;
  left: 50%;
  top: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transform: translateX(-50%);
}

.gbt-list-scroll-loader__state[hidden] {
  display: none !important;
}

.gbt-list-scroll-loader.is-loading .gbt-list-scroll-loader__state--done {
  display: none !important;
}

.gbt-list-scroll-loader.is-complete .gbt-list-scroll-loader__state--loading {
  display: none !important;
}

.gbt-list-scroll-loader__svg {
  display: block;
  height: 40px;
  width: 40px;
}

.gbt-list-scroll-loader__svg--loading {
  animation: gbt-list-scroll-spin 0.85s linear infinite;
}

.gbt-list-scroll-loader__svg--done {
  animation: gbt-list-scroll-pop 0.45s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.gbt-list-scroll-loader.is-complete .gbt-list-scroll-loader__svg--done circle {
  animation: gbt-list-scroll-ring 0.5s ease-out both;
}

.gbt-list-scroll-loader.is-complete .gbt-list-scroll-loader__svg--done path {
  animation: gbt-list-scroll-check 0.35s ease-out 0.12s both;
  stroke-dasharray: 24;
  stroke-dashoffset: 24;
}

@keyframes gbt-list-scroll-spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes gbt-list-scroll-pop {
  from {
    opacity: 0;
    transform: scale(0.72);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes gbt-list-scroll-ring {
  from {
    opacity: 0.4;
    transform: scale(0.88);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes gbt-list-scroll-check {
  to {
    stroke-dashoffset: 0;
  }
}

.gbt-mobile-footer-nav {
  display: none;
}

@media (max-width: 900px) {
  body.has-mobile-footer-nav {
    padding-bottom: calc(58px + env(safe-area-inset-bottom, 0px));
  }

  body.has-mobile-footer-nav .gbt-inquiry-fab {
    display: none;
  }

  .gbt-mobile-footer-nav {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 55;
    display: block;
    border-top: 1px solid #ece3dc;
    background: rgba(255, 255, 255, .98);
    box-shadow: 0 -4px 18px rgba(23, 17, 15, .06);
    padding-bottom: env(safe-area-inset-bottom, 0px);
    backdrop-filter: blur(10px);
  }

  .gbt-mobile-footer-nav__list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    grid-template-columns: repeat(var(--gbt-mobile-footer-nav-count, 4), minmax(0, 1fr));
    min-height: 58px;
  }

  .gbt-mobile-footer-nav__item {
    min-width: 0;
  }

  .gbt-mobile-footer-nav__link {
    position: relative;
    min-height: 58px;
    padding: 8px 6px 6px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    color: #8b817b;
    text-decoration: none;
  }

  .gbt-mobile-footer-nav__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    color: inherit;
  }

  .gbt-mobile-footer-nav__icon svg {
    width: 22px;
    height: 22px;
  }

  .gbt-mobile-footer-nav__label {
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 11px;
    font-weight: 600;
    line-height: 1.2;
  }

  .gbt-mobile-footer-nav__link.is-active {
    color: #e83228;
  }

  .gbt-mobile-footer-nav__badge {
    position: absolute;
    top: 4px;
    right: calc(50% - 22px);
    min-width: 16px;
    height: 16px;
    padding: 0 4px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: #e83228;
    font-size: 10px;
    font-weight: 800;
    line-height: 1;
  }

  .gbt-mobile-footer-nav__badge[hidden] {
    display: none !important;
  }
}

@media (max-width: 860px) {
  .page-hero-banner {
    position: relative !important;
    display: block !important;
    min-height: clamp(270px, 50vw, 340px) !important;
    max-height: none !important;
    overflow: hidden;
    background: #fff4eb;
  }

  .page-hero-banner > img,
  .default-page .page-hero-banner > img {
    position: absolute !important;
    inset: 0 !important;
    z-index: 0;
    display: block;
    width: 100% !important;
    height: 100% !important;
    max-height: none !important;
    object-fit: cover !important;
    object-position: center top;
  }

  .page-hero-banner::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background:
      linear-gradient(180deg, rgba(255, 250, 246, .22) 0%, rgba(255, 244, 235, .56) 100%),
      radial-gradient(circle at 50% 58%, rgba(255, 250, 246, .72), rgba(255, 250, 246, .22) 46%, transparent 74%);
  }

  .page-hero-banner__content,
  .default-page .page-hero-banner__content,
  .news-page .page-hero-banner__content,
  .contact-page .page-hero-banner__content {
    position: absolute !important;
    inset: 0 !important;
    z-index: 2;
    min-height: 0;
    max-height: none;
    width: 100vw !important;
    max-width: 100vw !important;
    height: 100%;
    margin: 0 auto;
    padding: 26px 22px 30px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
  }

  .page-hero-banner__content > * {
    max-width: calc(100vw - 32px) !important;
    box-sizing: border-box;
  }

  body.page-id-3593 .page-hero-banner > img,
  .oem-ref-page .page-hero-banner > img {
    object-position: 78% top;
  }

  body.page-id-1685 .page-hero-banner > img,
  .contact-page .page-hero-banner > img {
    object-position: 70% top;
  }

  body.page-id-17478 .page-hero-banner > img,
  body.blog .page-hero-banner > img,
  .news-page .page-hero-banner > img,
  .blog-page .page-hero-banner > img {
    object-position: 42% top;
  }

  .page-hero-banner .page-kicker,
  .default-page .page-hero-banner .page-kicker,
  .news-page .page-hero-banner .page-kicker,
  .contact-page .page-hero-banner .page-kicker {
    margin-bottom: 10px;
    font-size: clamp(12px, 2.5vw, 14px);
    line-height: 1.2;
  }

  .page-hero-banner .page-title,
  .default-page .page-hero-banner .page-title,
  .news-page .page-hero-banner .page-title,
  .contact-page .page-hero-banner .page-title,
  .oem-ref-page .page-hero-banner .page-title {
    max-width: min(10.5em, calc(100vw - 40px)) !important;
    font-size: clamp(30px, 6.4vw, 42px);
    line-height: 1.12;
    overflow-wrap: anywhere;
    text-wrap: balance;
  }

  .page-hero-banner .page-subtitle,
  .default-page .page-hero-banner .page-subtitle,
  .news-page .page-hero-banner .page-subtitle,
  .contact-page .page-hero-banner .page-subtitle,
  .oem-ref-page .page-hero-banner .page-subtitle {
    display: block;
    max-width: min(430px, calc(100vw - 140px)) !important;
    width: min(430px, calc(100vw - 140px)) !important;
    margin-top: 12px;
    font-size: clamp(14px, 2.9vw, 17px);
    line-height: 1.48;
    white-space: normal !important;
    overflow: visible !important;
    overflow-wrap: anywhere !important;
    word-break: break-word !important;
    text-align: center;
  }

  .detail-hero {
    min-height: clamp(340px, 58vw, 420px);
    padding-top: 38px;
    background-size: cover;
    background-position: center top;
  }

  .detail-hero::before {
    height: 120px;
  }

  .detail-kicker,
  .detail-hero h1,
  .detail-date {
    margin-left: 24px;
    margin-right: 24px;
  }

  .detail-kicker {
    margin-bottom: 16px;
    font-size: 12px;
  }

  .detail-hero h1 {
    max-width: min(760px, calc(100vw - 48px));
    font-size: clamp(30px, 6.8vw, 42px);
    line-height: 1.18;
    overflow-wrap: anywhere;
    text-wrap: balance;
  }

  .detail-date {
    margin-top: 20px;
    margin-bottom: 12px;
    font-size: 12px;
  }

  .detail-article-card {
    box-sizing: border-box;
    overflow: hidden;
  }

  .detail-article-card p {
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .contact-item {
    min-width: 0;
  }

  .contact-card {
    box-sizing: border-box;
    overflow: hidden;
  }

  .contact-layout,
  .contact-card,
  .contact-item > * {
    min-width: 0;
  }

  .contact-item p {
    min-width: 0;
    overflow-wrap: anywhere;
    word-break: break-word;
  }
}

@media (max-width: 640px) {
  .page-hero-banner {
    min-height: clamp(245px, 68vw, 310px) !important;
  }

  .page-hero-banner__content,
  .default-page .page-hero-banner__content,
  .news-page .page-hero-banner__content,
  .contact-page .page-hero-banner__content {
    padding: 22px 16px 26px;
  }

  .page-hero-banner .page-title,
  .default-page .page-hero-banner .page-title,
  .news-page .page-hero-banner .page-title,
  .contact-page .page-hero-banner .page-title,
  .oem-ref-page .page-hero-banner .page-title {
    max-width: 9.5em;
    font-size: clamp(28px, 8.2vw, 36px);
  }

  .page-hero-banner .page-subtitle,
  .default-page .page-hero-banner .page-subtitle,
  .news-page .page-hero-banner .page-subtitle,
  .contact-page .page-hero-banner .page-subtitle,
  .oem-ref-page .page-hero-banner .page-subtitle {
    font-size: 14px;
    line-height: 1.45;
  }

  .detail-hero {
    min-height: clamp(320px, 86vw, 380px);
    padding-top: 28px;
  }

  .detail-hero h1 {
    font-size: clamp(28px, 8vw, 34px);
    line-height: 1.18;
  }
}

@media (max-width: 860px) {
  body.page-id-17476 .about-overview {
    padding-top: 36px;
    padding-bottom: 44px;
  }

  body.page-id-17476 .about-overview .split-grid,
  body.page-id-17476 .split-grid {
    grid-template-columns: 1fr !important;
    gap: 28px;
    align-items: stretch;
  }

  body.page-id-17476 .about-overview .split-grid > *,
  body.page-id-17476 .split-grid > * {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0;
  }

  body.page-id-17476 .copy-title {
    max-width: 100%;
    font-size: clamp(30px, 8vw, 40px);
    line-height: 1.12;
    overflow-wrap: normal;
    word-break: normal;
    text-wrap: balance;
  }

  body.page-id-17476 .copy-text {
    max-width: 100%;
    font-size: 16px;
    line-height: 1.72;
    overflow-wrap: anywhere;
    word-break: normal;
  }

  body.page-id-17476 .copy-text p {
    max-width: 100%;
    overflow-wrap: anywhere;
    word-break: normal;
  }

  body.page-id-17476 .about-stat-grid,
  body.page-id-17476 .stat-grid {
    position: static !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 14px;
    width: 100% !important;
    max-width: 100% !important;
  }

  body.page-id-17476 .about-stat-grid .stat-box,
  body.page-id-17476 .stat-box {
    min-height: 124px;
    padding: 20px 14px;
    overflow: hidden;
  }

  body.page-id-17476 .about-stat-grid .stat-box strong,
  body.page-id-17476 .stat-box strong {
    max-width: 100%;
    font-size: clamp(28px, 7.4vw, 38px);
    line-height: 1.08;
    white-space: normal;
    word-break: break-all;
    overflow-wrap: anywhere;
  }

  body.page-id-17476 .about-stat-grid .stat-box span,
  body.page-id-17476 .stat-box span {
    display: block;
    max-width: 100%;
    margin-top: 8px;
    font-size: 13px;
    line-height: 1.35;
    white-space: normal;
    word-break: break-all;
    overflow-wrap: anywhere;
  }
}

@media (max-width: 640px) {
  body.page-id-17476 .about-overview {
    padding-top: 28px;
    padding-bottom: 36px;
  }

  body.page-id-17476 .page-container {
    width: calc(100% - 64px);
  }

  body.page-id-17476 .copy-kicker {
    margin-bottom: 10px;
    font-size: 13px;
  }

  body.page-id-17476 .copy-title {
    margin-bottom: 16px;
    font-size: clamp(28px, 9vw, 34px);
  }

  body.page-id-17476 .copy-text p {
    margin: 12px 0;
  }
}

/* Dazheng-style iKonMac footer */
.ikonmac-dazheng-footer.site-footer {
  position: relative !important;
  overflow: hidden !important;
  min-height: 560px !important;
  padding: 96px 0 34px !important;
  color: rgba(255, 255, 255, .78) !important;
  border-top: 1px solid rgba(126, 178, 255, .14) !important;
  background:
    radial-gradient(900px 420px at 12% -10%, rgba(126, 178, 255, .16), rgba(0, 0, 0, 0) 60%),
    radial-gradient(760px 360px at 84% 22%, rgba(10, 92, 255, .12), rgba(0, 0, 0, 0) 58%),
    linear-gradient(90deg, rgba(0, 22, 54, .98) 0%, rgba(0, 32, 76, .92) 48%, rgba(0, 18, 42, .98) 100%),
    linear-gradient(180deg, rgba(0, 43, 92, .72) 0%, rgba(0, 29, 63, .98) 100%),
    url("../../ikonmac/images/common/dazheng-footer-bg-lite.jpg") center / cover no-repeat !important;
  font-family: Lato, Arial, sans-serif !important;
  font-size: 13px !important;
  line-height: 1.7 !important;
}

.ikonmac-dazheng-footer.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, .03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(126, 178, 255, .38), rgba(10, 92, 255, .18), rgba(0, 0, 0, 0));
  background-size: 46px 46px, 46px 46px, 100% 1px;
  background-repeat: repeat, repeat, no-repeat;
  mask-image: linear-gradient(90deg, rgba(0, 0, 0, .55), transparent 76%);
  pointer-events: none;
}

.ikonmac-dazheng-footer.site-footer::after {
  content: "";
  position: absolute;
  right: 4%;
  bottom: 28%;
  width: min(88vw, 980px);
  height: min(34vw, 240px);
  border: 0;
  border-radius: 0;
  box-shadow: none;
  background:
    radial-gradient(ellipse 68% 82% at 78% 72%, rgba(126, 178, 255, .1), rgba(0, 0, 0, 0) 68%),
    var(--footer-watermark-logo, url("../../ikonmac/images/logo/iKonMac-Logo-White.svg")) right center / 92% auto no-repeat;
  opacity: .075;
  filter: drop-shadow(0 0 96px rgba(10, 92, 255, .1));
  transform: rotate(-11deg);
  transform-origin: 92% 72%;
  pointer-events: none;
  z-index: 0;
}

.ikonmac-dazheng-footer.site-footer.footer-watermark-mono::after {
  filter: brightness(0) invert(1) drop-shadow(0 0 96px rgba(10, 92, 255, .1));
  opacity: .065;
}

.ikonmac-dazheng-footer .footer-dz-container {
  position: relative;
  z-index: 1;
  width: min(100% - 80px, 1370px);
  margin: 0 auto;
}

.ikonmac-dazheng-footer .footer-grid {
  display: grid;
  grid-template-columns: 248px repeat(3, minmax(0, 1.22fr)) 280px;
  column-gap: 56px;
  row-gap: 32px;
  align-items: start;
  padding-bottom: 48px;
}

.ikonmac-dazheng-footer .footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 0;
  min-width: 0;
}

.ikonmac-dazheng-footer .footer-brand .brand {
  display: block;
  min-height: 0;
  margin: 0 0 16px;
}

.ikonmac-dazheng-footer .footer-brand .brand-logo {
  display: block;
  width: 156px;
  max-height: 40px;
  object-fit: contain;
}

.ikonmac-dazheng-footer .footer-brand p,
.ikonmac-dazheng-footer .footer-brand-tagline {
  width: 100%;
  max-width: 248px;
  margin: 0 0 20px;
  color: rgba(255, 255, 255, .82);
  font-size: 13px;
  line-height: 1.75;
  letter-spacing: .01em;
}

.ikonmac-dazheng-footer .footer-brand .footer-social,
.ikonmac-dazheng-footer .footer-brand .footer-dz-social {
  margin-top: 4px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, .08);
  width: 100%;
  max-width: 248px;
}

.ikonmac-dazheng-footer .footer-dz-social .top-social {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
}

.ikonmac-dazheng-footer .footer-dz-social .top-social a {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 50%;
  color: rgba(255, 255, 255, .92);
  background: rgba(255, 255, 255, .04);
  backdrop-filter: blur(10px);
  transition: background .22s ease, border-color .22s ease, transform .22s ease, box-shadow .22s ease, color .22s ease;
}

.ikonmac-dazheng-footer .footer-dz-social .top-social a:hover {
  border-color: rgba(126, 178, 255, .42);
  background: rgba(10, 92, 255, .18);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, .22);
}

.ikonmac-dazheng-footer .footer-dz-social .top-social a svg {
  width: 15px;
  height: 15px;
  fill: currentColor;
}

.ikonmac-dazheng-footer .footer-col {
  display: grid;
  align-content: start;
  gap: 10px;
  min-width: 0;
  padding: 0 !important;
  border: 0 !important;
}

.ikonmac-dazheng-footer .footer-col h3 {
  margin: 0 0 10px !important;
  color: #fff !important;
  font-family: Lato, Arial, sans-serif !important;
  font-size: 13px !important;
  line-height: 1.2 !important;
  font-weight: 750 !important;
  text-transform: uppercase;
  letter-spacing: .11em;
}

.ikonmac-dazheng-footer .footer-col h3::after {
  content: "";
  display: block;
  width: 26px;
  height: 2px;
  margin-top: 10px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(126, 178, 255, .9), rgba(10, 92, 255, .15));
}

.ikonmac-dazheng-footer .footer-col a,
.ikonmac-dazheng-footer .footer-col span {
  color: rgba(255, 255, 255, .74) !important;
  font-size: 13px !important;
  line-height: 1.7 !important;
}

.ikonmac-dazheng-footer .footer-col a {
  width: fit-content;
  padding: 1px 0;
  background-image: linear-gradient(90deg, rgba(126, 178, 255, .9), rgba(10, 92, 255, .35), rgba(0, 0, 0, 0));
  background-repeat: no-repeat;
  background-position: 0 100%;
  background-size: 0 1px;
  transition: color .2s ease, background-size .2s ease, transform .2s ease;
}

.ikonmac-dazheng-footer .footer-col a:hover {
  color: #fff !important;
  background-size: 100% 1px;
  transform: translateX(2px);
}

.ikonmac-dazheng-footer .contact-col {
  width: 280px;
  max-width: 280px;
  justify-self: end;
  padding: 16px 18px !important;
  border: 1px solid rgba(255, 255, 255, .14) !important;
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(255, 255, 255, .08), rgba(255, 255, 255, .04)), rgba(255, 255, 255, .06);
  backdrop-filter: blur(10px);
  box-shadow: 0 14px 40px rgba(0, 0, 0, .2);
}

.ikonmac-dazheng-footer .contact-col .contact-cta {
  width: fit-content;
  margin: 0 0 2px;
  padding: 8px 13px;
  border-radius: 999px;
  background: #0a5cff;
  color: #fff !important;
  font-size: 13px !important;
  font-weight: 700;
  box-shadow: 0 16px 38px rgba(0, 0, 0, .22);
  transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
}

.ikonmac-dazheng-footer .contact-col .contact-cta:hover {
  transform: translateY(-2px);
  filter: saturate(1.05);
  box-shadow: 0 22px 52px rgba(0, 0, 0, .28);
}

.ikonmac-dazheng-footer .footer-contact-list {
  margin: 8px 0 0;
  padding: 0;
  list-style: none;
}

.ikonmac-dazheng-footer .footer-contact-list__item {
  display: block;
  margin: 0;
  padding: 7px 0 0;
}

.ikonmac-dazheng-footer .footer-contact-list__label {
  display: block;
  margin: 0 0 3px;
  color: rgba(255, 255, 255, .62) !important;
  font-size: 10px !important;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.ikonmac-dazheng-footer .footer-contact-list__value {
  display: block;
  color: rgba(255, 255, 255, .96) !important;
  font-size: 12px !important;
  line-height: 1.45 !important;
  overflow-wrap: anywhere;
}

.ikonmac-dazheng-footer .footer-contact-list__value a {
  color: #fff !important;
  font-weight: 700;
}

.ikonmac-dazheng-footer .footer-bottom {
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  padding-top: 28px !important;
  border-top: 1px solid rgba(255, 255, 255, .14) !important;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px 28px;
  color: rgba(255, 255, 255, .68) !important;
  font-size: 12px !important;
  line-height: 1.5 !important;
}

.ikonmac-dazheng-footer .footer-bottom span,
.ikonmac-dazheng-footer .footer-bottom a {
  color: rgba(255, 255, 255, .68) !important;
  font-size: 12px !important;
  text-decoration: none;
}

.ikonmac-dazheng-footer .footer-bottom div {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 26px;
}

.ikonmac-dazheng-footer .footer-bottom a:hover {
  color: #fff !important;
}

.ikonmac-dazheng-footer .footer-bottom a::before,
.ikonmac-dazheng-footer .footer-bottom .copyright a::before {
  display: none !important;
}

@media (min-width: 1281px) {
  .ikonmac-dazheng-footer .footer-grid > .contact-col {
    grid-column: 5;
    width: 280px;
    max-width: 280px;
    justify-self: end;
  }
}

@media (max-width: 1360px) {
  .ikonmac-dazheng-footer .footer-grid {
    grid-template-columns: 230px repeat(3, minmax(0, 1fr));
    gap: 44px;
    padding-bottom: 48px;
  }

  .ikonmac-dazheng-footer .contact-col {
    grid-column: 1 / -1;
    justify-self: end;
  }
}

@media (max-width: 980px) {
  .ikonmac-dazheng-footer.site-footer {
    min-height: 0 !important;
    padding: 72px 0 32px !important;
  }

  .ikonmac-dazheng-footer .footer-dz-container {
    width: min(100% - 48px, 760px);
  }

  .ikonmac-dazheng-footer .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding-bottom: 48px;
  }

  .ikonmac-dazheng-footer .contact-col {
    width: min(100%, 320px);
    max-width: 320px;
    justify-self: start;
  }
}

@media (max-width: 640px) {
  .ikonmac-dazheng-footer .footer-dz-container {
    width: calc(100vw - 40px);
  }

  .ikonmac-dazheng-footer .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .ikonmac-dazheng-footer .footer-brand p,
  .ikonmac-dazheng-footer .footer-brand-tagline {
    max-width: min(100%, 280px);
  }

  .ikonmac-dazheng-footer .contact-col {
    width: 100%;
    max-width: none;
  }

  .ikonmac-dazheng-footer .footer-bottom {
    display: grid;
    justify-content: start;
    text-align: left;
  }

  .ikonmac-dazheng-footer.site-footer::after {
    right: 2%;
    bottom: 34%;
    width: min(96vw, 520px);
    height: min(38vw, 128px);
    transform: rotate(-10deg);
    transform-origin: 92% 72%;
    opacity: .06;
  }
}
