:root {
  --brand: #1b3654;
  --brand-deep: #14283f;
  --brand-mid: #2d5a80;
  --brand-light: #4a7ba8;
  --bg: #fff;
  --ink: #1c2430;
  --muted: #6b7380;
  --line: #e2e6eb;
  --paper: #fff;
  --accent: #2d5a80;
  --accent-dark: #1b3654;
  --char: #2c2c2c;
  --chrome: #0b2c4a;
  --soft: #f4f6f8;
  --soft-2: #e8edf2;
  --header-h: 4.25rem;
  --promo-h: 2.35rem;
  --nav-h: 0px;
  --max: 100%;
  --page-pad: 2rem;
  --sans: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  --serif: Georgia, "Times New Roman", serif;
}

* { box-sizing: border-box; }
html, body { margin: 0; }
html {
  scroll-behavior: smooth;
  background: var(--bg);
}
html.is-scroll-lock,
html.is-scroll-lock body {
  overflow: hidden;
}
html.is-scroll-lock body,
html.is-scroll-lock .site-top {
  padding-right: var(--scroll-lock, 0px);
}
body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.5;
  min-height: 100vh;
}

@-moz-document url-prefix() {
  html {
    scrollbar-width: thin;
    scrollbar-color: #8c8c8c #f2f2f2;
  }
}

::-webkit-scrollbar {
  width: 4px;
  height: 4px;
}
::-webkit-scrollbar-track {
  background: #f2f2f2;
}
::-webkit-scrollbar-thumb {
  background: #8c8c8c;
  border-radius: 99px;
}
::-webkit-scrollbar-thumb:hover {
  background: #6e6e6e;
}
::-webkit-scrollbar-button,
::-webkit-scrollbar-button:start:decrement,
::-webkit-scrollbar-button:end:increment,
::-webkit-scrollbar-button:vertical:start:decrement,
::-webkit-scrollbar-button:vertical:end:increment {
  display: none !important;
  width: 0 !important;
  height: 0 !important;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea {
  font: inherit;
  color: inherit;
}
button { cursor: pointer; }

.promo {
  height: var(--promo-h);
  background: var(--chrome);
  color: #fff;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 0.75rem;
  padding: 0 1rem;
  text-transform: none;
  overflow: visible;
  min-height: 0;
  transition: height 0.28s ease, max-height 0.28s ease, opacity 0.28s ease, padding 0.28s ease;
}
.promo-msg {
  margin: 0;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.promo-right {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 0.9rem;
}
.locale {
  position: relative;
}
.locale-btn,
.util-account {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  border: 0;
  background: none;
  color: #fff;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0;
  cursor: pointer;
}
.header-tools .locale-btn {
  color: var(--ink);
  text-transform: none;
  letter-spacing: 0.02em;
  font-size: 0.78rem;
  font-weight: 650;
}
.header-tools .locale-menu {
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 10px 24px rgba(27, 54, 84, 0.1);
}
.header-tools .locale-menu a {
  color: var(--ink);
}
.header-tools .locale-menu a:hover,
.header-tools .locale-menu a[aria-current="true"] {
  background: var(--soft);
}
.flag {
  width: 16px;
  height: 12px;
  display: block;
  flex: none;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.2);
}
.locale-caret { font-size: 0.6rem; opacity: 0.8; }
.locale-menu {
  position: absolute;
  right: 0;
  top: calc(100% + 0.45rem);
  min-width: 6.5rem;
  background: var(--brand-deep);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 0.25rem 0;
  z-index: 60;
}
.locale-menu a {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.7rem;
  color: #eaf0f6;
  text-transform: uppercase;
  font-size: 0.72rem;
}
.locale-menu a:hover,
.locale-menu a[aria-current="true"] { background: rgba(255,255,255,0.08); }
.person {
  width: 1rem;
  height: 1rem;
  display: block;
}

.site-top {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: #fff;
  overflow: visible;
}

.site-header {
  position: relative;
  background: #fff;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  overflow: visible;
  transition: background 0.28s ease, box-shadow 0.28s ease;
}

.header-row {
  position: relative;
  max-width: none;
  margin: 0;
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0 var(--page-pad);
}

.icon-btn {
  border: 0;
  background: none;
  padding: 0.4rem;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: inherit;
}

.header-tools {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex: none;
  min-width: 0;
  z-index: 1;
}
.header-tools.end { justify-content: flex-end; margin-left: 0; }

.site-header .logo {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  color: var(--ink);
  text-transform: none;
  letter-spacing: 0;
  font-weight: inherit;
  font-size: inherit;
}
.brand-stack {
  display: flex;
  flex-direction: column;
  justify-content: center;
  line-height: 1;
  text-align: center;
}
.brand-name {
  font-size: 1.6875rem;
  font-weight: 750;
  letter-spacing: -0.04em;
  color: var(--ink);
}
.brand-slogan {
  margin-top: 0.28rem;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--muted);
  white-space: nowrap;
}
.site-top.is-pinned .site-header .logo {
  position: static;
  transform: none;
  margin-right: 0;
}
.site-top.is-pinned .brand-stack { text-align: left; }
.site-top.is-pinned .brand-name { font-size: 1.35rem; }
.site-top.is-pinned .brand-slogan {
  margin-top: 0.32rem;
  font-size: 0.62rem;
}

.search-wrap {
  position: relative;
  display: flex;
  align-items: center;
  min-width: 0;
}
.search-wrap form {
  display: flex;
  align-items: center;
  margin: 0;
  position: relative;
}
.search-ico {
  position: absolute;
  left: 0.7rem;
  top: 50%;
  transform: translateY(-50%);
  border: 0;
  background: none;
  color: var(--muted);
  padding: 0;
  font-size: 0.95rem;
  line-height: 1;
}
.search-wrap input {
  width: min(18rem, 32vw);
  max-width: 100%;
  height: 2.35rem;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  padding: 0 0.85rem 0 2.1rem;
  border-radius: 999px;
}
.search-wrap input:focus {
  outline: none;
  border-color: var(--brand-light);
  box-shadow: 0 0 0 3px rgba(45, 90, 128, 0.12);
}
.search-wrap input::placeholder {
  color: var(--muted);
}

.lang-switch {
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.72);
  white-space: nowrap;
  line-height: 1;
  flex: none;
}
.lang-switch a[aria-current="true"] {
  color: #fff;
  font-weight: 650;
}

.site-top.is-pinned {
  background: #fff;
}
.site-top.is-pinned .promo {
  height: 0;
  min-height: 0;
  max-height: 0;
  opacity: 0;
  padding: 0;
  margin: 0;
  border: 0;
  overflow: hidden;
  line-height: 0;
  pointer-events: none;
}
.site-top.is-pinned .promo > * {
  min-height: 0;
  overflow: hidden;
}
.site-top.is-pinned.is-inner .promo {
  height: var(--promo-h);
  max-height: none;
  opacity: 1;
  padding: 0 1rem;
  overflow: visible;
  line-height: normal;
  pointer-events: auto;
}
.site-top.is-pinned.is-inner .promo > * {
  overflow: visible;
}
.site-top.is-pinned .site-header {
  background: #fff;
  box-shadow: 0 8px 20px rgba(27, 54, 84, 0.06);
}

body:not([data-page="home"]),
body.has-fixed-pad {
  padding-top: calc(var(--promo-h) + var(--header-h) + var(--nav-h));
}

.cart-btn {
  position: relative;
  padding: 0.35rem;
  width: 2.35rem;
  height: 2.35rem;
  justify-content: center;
}
.cart-ico {
  width: 1.35rem;
  height: 1.35rem;
  display: block;
}
.cart-count {
  position: absolute;
  top: -0.05rem;
  right: -0.08rem;
  min-width: 1.15rem;
  height: 1.15rem;
  padding: 0 0.22rem;
  border-radius: 99px;
  background: #e11d2e;
  color: #fff;
  font-size: 0.68rem;
  font-weight: 650;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.nav-row {
  display: none;
  position: relative;
  z-index: 42;
  border-top: 1px solid var(--line);
  min-width: 0;
  align-items: stretch;
}
.nav-inner {
  max-width: none;
  margin: 0;
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
  gap: 0.15rem;
  padding: 0;
  overflow: visible;
  height: 100%;
  min-width: 0;
}
.nav-aux {
  display: none;
  align-items: center;
  flex: none;
  gap: 0.1rem;
}
.nav-aux-link {
  text-transform: none;
  letter-spacing: 0.01em;
  font-size: 0.86rem;
  font-weight: 550;
  color: var(--ink);
  opacity: 1;
  padding: 0.45rem 0.55rem;
  white-space: nowrap;
}
.nav-aux-link:hover { color: var(--brand-mid); }
.nav-biz-btn {
  display: inline-flex;
  align-items: center;
  height: 2rem;
  padding: 0 1.05rem;
  margin-right: 0.2rem;
  border-radius: 999px;
  background: var(--brand);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 650;
  letter-spacing: 0.01em;
  white-space: nowrap;
}
.nav-biz-btn:hover {
  background: var(--brand-mid);
  color: #fff;
}
.nav-item {
  position: static;
  display: flex;
  align-items: stretch;
}
.nav-link {
  display: flex;
  align-items: center;
  padding: 0.85rem 0.95rem;
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
  white-space: nowrap;
  position: relative;
  color: var(--ink);
}
.nav-caret {
  display: inline-flex;
  margin-left: 0.32rem;
  width: 0.7rem;
  height: 0.7rem;
  color: #9aa3ad;
}
.nav-caret svg {
  width: 100%;
  height: 100%;
  display: block;
}
.nav-item:hover .nav-link,
.nav-item.is-open .nav-link,
.nav-link:focus {
  color: var(--brand);
}
.nav-item:hover .nav-caret,
.nav-item.is-open .nav-caret {
  color: var(--brand-mid);
}
.nav-item:hover .nav-link::after,
.nav-item.is-open .nav-link::after,
.nav-link:focus::after {
  content: "";
  position: absolute;
  left: 0.95rem;
  right: 0.95rem;
  bottom: 0.42rem;
  height: 2px;
  background: var(--brand);
}

.mega {
  display: block;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% - 2px);
  height: auto;
  background: #fff;
  color: var(--ink);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 18px 40px rgba(28, 36, 48, 0.1);
  padding: 1.35rem 0 1.6rem;
  z-index: 44;
  transition: opacity 0.16s ease, visibility 0s linear 0.16s;
}
.mega::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 100%;
  height: 14px;
}
.mega a { color: var(--ink); }
.nav-item:hover .mega,
.nav-item.is-open .mega,
.nav-item:focus-within .mega {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  transition-delay: 0s;
}
.mega-grid {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--page-pad);
}
.mega-kicker {
  margin: 0 0 0.85rem;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}
.mega-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(8.6rem, 1fr));
  gap: 1rem 0.85rem;
}
.mega-card {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  min-width: 0;
  color: var(--ink);
}
.mega-card:hover .mega-card-name,
.mega-card:focus .mega-card-name {
  color: var(--brand-mid);
}
.mega-card:focus-visible {
  outline: 2px solid var(--brand-mid);
  outline-offset: 3px;
}
.mega-card-img {
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #e8edf2;
}
.mega-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.mega-card:hover img { transform: scale(1.05); }
.mega-card-name {
  font-size: 0.82rem;
  font-weight: 650;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.menu-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  z-index: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.82rem;
}
.site-top.is-pinned .menu-toggle { display: none; }
.menu-ico {
  width: 1.2rem;
  height: 1.2rem;
  display: block;
  flex: none;
}
.menu-ico-x { display: none; }
.menu-toggle.is-open .menu-ico-bars { display: none; }
.menu-toggle.is-open .menu-ico-x { display: block; }

.menu-flyout {
  position: fixed;
  inset: 0;
  z-index: 88;
  visibility: hidden;
  pointer-events: none;
}
.menu-flyout.on {
  visibility: visible;
  pointer-events: auto;
}
.menu-fly-scrim {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  opacity: 0;
  transition: opacity 0.28s ease;
}
.menu-flyout.on .menu-fly-scrim { opacity: 1; }
.menu-flyout-panel {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: min(22.5rem, 88vw);
  background: #f3f3f3;
  color: var(--ink);
  display: flex;
  flex-direction: column;
  min-height: 0;
  transform: translateX(-104%);
  transition: transform 0.32s ease;
  box-shadow: 8px 0 32px rgba(0, 0, 0, 0.18);
}
.menu-flyout.on .menu-flyout-panel {
  transform: none;
}
.menu-drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 4.1rem;
  padding: 0 1.15rem 0 1.35rem;
  border-bottom: 1px solid #e4e4e4;
  background: #f3f3f3;
  flex: none;
}
.menu-drawer-logo {
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--ink);
}
.menu-drawer-close {
  border: 0;
  background: none;
  width: 2.4rem;
  height: 2.4rem;
  font-size: 1.7rem;
  line-height: 1;
  color: var(--ink);
  cursor: pointer;
}
.menu-drawer-body {
  position: relative;
  flex: 1;
  min-height: 0;
  overflow: hidden;
}
.menu-drawer-root,
.menu-drawer-sub {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  overflow: auto;
  background: #f3f3f3;
  transition: transform 0.3s ease;
}
.menu-drawer-root { transform: translateX(0); }
.menu-drawer-sub { transform: translateX(100%); }
.menu-flyout.show-pane .menu-drawer-root { transform: translateX(-100%); }
.menu-flyout.show-pane .menu-drawer-sub { transform: translateX(0); }
.menu-drawer-account {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
  margin: 0;
  padding: 1.15rem 1.35rem;
  border: 0;
  border-bottom: 1px solid #e4e4e4;
  background: #f3f3f3;
  text-align: left;
  cursor: pointer;
  color: var(--ink);
}
.menu-drawer-account strong {
  display: block;
  font-size: 1.02rem;
  font-weight: 750;
}
.menu-drawer-account em {
  display: block;
  margin-top: 0.28rem;
  font-style: normal;
  font-size: 0.82rem;
  color: #4d4d4d;
}
.menu-drawer-account .person {
  width: 1.35rem;
  height: 1.35rem;
  flex: none;
  color: var(--ink);
}
.menu-drawer-nav {
  display: flex;
  flex-direction: column;
  padding: 0.35rem 0 0.6rem;
}
.menu-drawer-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  width: 100%;
  margin: 0;
  padding: 0.95rem 1.35rem;
  border: 0;
  background: none;
  text-align: left;
  font-size: 1.05rem;
  font-weight: 650;
  color: var(--ink);
  cursor: pointer;
}
.menu-drawer-link:hover { background: rgba(0, 0, 0, 0.04); }
.menu-chevron {
  width: 1.05rem;
  height: 1.05rem;
  flex: none;
  color: #222;
}
.menu-drawer-foot {
  margin-top: auto;
  padding: 1.1rem 1.35rem 1.4rem;
  background: #e8e8e8;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.menu-drawer-locale {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--ink);
}
.menu-drawer-foot > a:not(.menu-drawer-locale) {
  font-size: 0.92rem;
  color: #222;
}
.menu-drawer-back {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  width: 100%;
  margin: 0;
  padding: 1rem 1.15rem;
  border: 0;
  border-bottom: 1px solid #e4e4e4;
  background: #f3f3f3;
  text-align: left;
  font-size: 1.05rem;
  font-weight: 750;
  color: var(--ink);
  cursor: pointer;
}
.menu-drawer-all {
  display: block;
  padding: 0.95rem 1.35rem 0.45rem;
  font-size: 0.92rem;
  font-weight: 700;
}
.menu-drawer-pane { display: none; }
.menu-drawer-pane.is-on { display: block; }
.menu-drawer-pane .menu-drawer-link { font-weight: 560; }

.drawer-nav {
  display: none;
}

.hero-stage {
  position: relative;
  height: auto;
  min-height: 0;
  overflow: hidden;
  background: #fff;
  padding: 1.35rem var(--page-pad) 0;
}
.hero-frame {
  position: relative;
  display: grid;
  max-width: var(--max);
  margin: 0 auto;
}
.hero-slide {
  grid-area: 1 / 1;
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(16.5rem, 22rem);
  align-items: stretch;
  min-height: min(32rem, calc(100svh - 9.5rem));
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  z-index: 0;
  transition: opacity 0.55s ease;
}
.hero-slide.on {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  z-index: 1;
}
.hero-media {
  position: relative;
  min-height: 22rem;
  overflow: hidden;
  background: #d5dde6;
}
.hero-media img,
.hero-media video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-card {
  background: #fff;
  color: var(--ink);
  padding: 2.1rem 1.8rem 1.8rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-shadow: -18px 0 40px rgba(27, 54, 84, 0.06);
  z-index: 2;
}
.hero-card h1 {
  font-size: clamp(1.55rem, 2.6vw, 2.35rem);
  font-weight: 650;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin: 0 0 0.55rem;
  color: var(--brand);
}
.hero-card .lead {
  margin: 0 0 1.2rem;
  color: var(--muted);
  font-size: 0.98rem;
  max-width: 28rem;
}
.btn.hero-cta {
  align-self: flex-start;
  min-width: 11rem;
}
.hero-arrow {
  position: absolute;
  top: 42%;
  transform: translateY(-50%);
  z-index: 4;
  width: 3rem;
  height: 3rem;
  border: 0;
  border-radius: 50%;
  background: #fff;
  color: var(--brand);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(27, 54, 84, 0.18);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, box-shadow 0.2s ease;
}
.hero-arrow svg {
  width: 1.05rem;
  height: 1.05rem;
  display: block;
}
.hero-stage:hover .hero-arrow,
.hero-stage:focus-within .hero-arrow {
  opacity: 1;
  pointer-events: auto;
}
.hero-arrow:hover {
  box-shadow: 0 6px 18px rgba(27, 54, 84, 0.26);
}
.hero-arrow.prev { left: 0.65rem; }
.hero-arrow.next { right: calc(22rem + 0.65rem); }
.hero-progress {
  position: absolute;
  left: 1.1rem;
  bottom: 1.15rem;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 0.55rem;
  color: #fff;
  font-size: 0.78rem;
  font-weight: 650;
  letter-spacing: 0.04em;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.45);
  pointer-events: none;
}
.hero-progress-bar {
  display: block;
  width: 4.6rem;
  height: 2px;
  background: rgba(255, 255, 255, 0.35);
}
.hero-progress-bar i {
  display: block;
  height: 100%;
  width: 20%;
  background: #fff;
  transition: width 0.35s ease;
}
@media (hover: none) {
  .hero-arrow {
    opacity: 1;
    pointer-events: auto;
  }
}
@media (max-width: 900px) {
  .hero-slide {
    grid-template-columns: 1fr;
    min-height: 0;
  }
  .hero-media {
    aspect-ratio: 16 / 10;
    min-height: 0;
  }
  .hero-card {
    box-shadow: none;
    padding: 1.25rem 0.15rem 1.5rem;
  }
  .hero-arrow.next { right: 0.65rem; }
  .hero-progress { left: 1.1rem; }
}

.hero {
  position: relative;
  min-height: clamp(28rem, 86svh, 54rem);
  display: flex;
  align-items: flex-end;
  color: #f6f3ee;
  padding: 4rem 1.5rem 3.5rem;
  overflow: hidden;
}
.hero-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20, 40, 63, 0.08) 20%, rgba(20, 40, 63, 0.62) 100%);
}
.hero-inner { max-width: var(--max); margin: 0 auto; width: 100%; position: relative; z-index: 1; }
.kicker {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin: 0 0 0.8rem;
}
.hero h1 {
  font-size: clamp(2.4rem, 6vw, 4.4rem);
  font-weight: 560;
  letter-spacing: -0.03em;
  line-height: 1.02;
  margin: 0 0 0.8rem;
  max-width: 12ch;
}
.hero .lead {
  max-width: 34rem;
  font-size: 1.05rem;
  color: #ece6dd;
  margin: 0 0 1.5rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.72rem 1.15rem;
  background: var(--brand);
  color: #fff;
  border: 1px solid var(--brand);
  border-radius: 1px;
  font-size: 0.84rem;
  letter-spacing: 0.04em;
}
.btn:hover { background: var(--brand-mid); border-color: var(--brand-mid); }
.btn.ghost {
  background: transparent;
  color: inherit;
  border-color: currentColor;
}
.btn.accent {
  background: var(--accent);
  border-color: var(--accent);
}
.btn.accent:hover { background: var(--accent-dark); border-color: var(--accent-dark); }

.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 3rem var(--page-pad);
}
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  margin-bottom: 1.25rem;
}
.section-head h2 {
  margin: 0;
  font-size: 1.35rem;
  font-weight: 560;
  letter-spacing: -0.02em;
}
.link-quiet {
  font-size: 0.82rem;
  color: var(--muted);
  border-bottom: 1px solid var(--line);
}

.band-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.15rem;
}
.cat-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-bottom: 0;
}
.link-more {
  font-size: 0.86rem;
  letter-spacing: 0.04em;
  color: var(--ink);
  border-bottom: 1px solid var(--ink);
  padding-bottom: 0.05rem;
  flex: none;
}
.cat-tab {
  border: 1px solid var(--line);
  background: #fff;
  padding: 0.5rem 0.95rem;
  border-radius: 3px;
  font-size: 0.86rem;
}
.cat-tab.on {
  background: var(--brand);
  border-color: var(--brand);
  color: #fff;
}
.cat-tab:hover {
  border-color: var(--brand-mid);
  color: var(--brand);
}
.cat-tab.on:hover {
  color: #fff;
}

.product-band .card .btn { display: none; }

.carousel {
  position: relative;
}
.rail {
  display: flex;
  gap: 1.1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding: 0.2rem 0 0.6rem;
}
.rail::-webkit-scrollbar { display: none; }
.rail > .card {
  flex: 0 0 calc(25% - 0.85rem);
  min-width: 13.5rem;
  scroll-snap-align: start;
}
@media (max-width: 1100px) {
  .rail > .card { flex-basis: calc(33.33% - 0.8rem); }
}
@media (max-width: 767px) {
  .rail > .card { flex-basis: calc(70% - 0.5rem); min-width: 12rem; }
}
.carousel-btn {
  position: absolute;
  top: 32%;
  z-index: 2;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 99px;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: 0 4px 14px rgba(0,0,0,0.08);
  display: none;
}
.carousel:hover .carousel-btn { display: flex; align-items: center; justify-content: center; }
.carousel-btn.prev { left: -0.6rem; }
.carousel-btn.next { right: -0.6rem; }

.badge {
  position: absolute;
  top: 0.7rem;
  left: 0.7rem;
  z-index: 1;
  background: #fff;
  color: var(--ink);
  font-size: 0.72rem;
  padding: 0.22rem 0.5rem;
  border-radius: 99px;
}

.card-name { font-weight: 650; }
.card-price,
.stars {
  display: none;
}
.card-media { background: var(--soft); }

.portrait-strip {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2px;
  background: var(--bg);
  margin: 0.4rem 0;
}
@media (min-width: 768px) {
  .portrait-strip { grid-template-columns: 1fr 1fr 1fr; }
}
.portrait-cell {
  display: block;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--soft-2);
}
.portrait-cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.portrait-cell:hover img { transform: scale(1.04); }

.ugc-band {
  padding: 3rem 0 3.4rem;
  text-align: center;
  background: #fff;
}
.ugc-band h2 {
  margin: 0 0 0.35rem;
  font-family: var(--serif);
  font-size: clamp(1.55rem, 2.6vw, 2.1rem);
  font-weight: 700;
  letter-spacing: 0.01em;
  color: var(--brand);
}
.ugc-lead {
  margin: 0 auto 1.65rem;
  max-width: 40rem;
  font-family: var(--serif);
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  font-weight: 400;
  color: var(--ink);
}
.ugc-carousel {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--page-pad);
}
.ugc-rail {
  gap: 12px;
  padding: 0;
}
.ugc-item {
  flex: 0 0 calc((100% - 36px) / 4.22);
  min-width: 0;
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  text-align: left;
}
.ugc-tile {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 4;
  min-width: 0;
  border: 0;
  padding: 0;
  border-radius: 12px;
  overflow: hidden;
  background: #d0d0d0;
  cursor: pointer;
}
.ugc-tile-title {
  margin: 0;
  font-size: 0.82rem;
  font-weight: 650;
  line-height: 1.35;
  color: var(--ink);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.ugc-tile img,
.ugc-tile video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ugc-tile video {
  opacity: 0;
  pointer-events: none;
}
.ugc-tile.playing video { opacity: 1; }
.ugc-tile.playing img { transform: scale(1.06); transition: transform 8s linear; }
.ugc-play {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 3.1rem;
  height: 3.1rem;
  transform: translate(-50%, -50%);
  z-index: 1;
  pointer-events: none;
  transition: opacity 0.2s;
}
.ugc-play svg {
  width: 100%;
  height: 100%;
  display: block;
}
.ugc-tile.playing .ugc-play { opacity: 0; }
.ugc-carousel .carousel-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  top: 50%;
  width: 2.15rem;
  height: 2.15rem;
  transform: translateY(-50%);
  background: #fff;
  border: 0;
  color: var(--brand);
  box-shadow: 0 2px 10px rgba(0,0,0,0.16);
}
.ugc-carousel .carousel-btn.prev { left: calc(var(--page-pad) + 0.45rem); opacity: 0; pointer-events: none; }
.ugc-carousel:hover .carousel-btn.prev,
.ugc-carousel:focus-within .carousel-btn.prev {
  opacity: 1;
  pointer-events: auto;
}
.ugc-carousel .carousel-btn.next { right: calc(var(--page-pad) + 0.45rem); }
@media (hover: none) {
  .ugc-carousel .carousel-btn.prev {
    opacity: 1;
    pointer-events: auto;
  }
}
@media (min-width: 1400px) {
  .ugc-item { flex-basis: calc((100% - 48px) / 5.22); }
}
@media (max-width: 1024px) {
  .ugc-item { flex-basis: calc((100% - 24px) / 2.35); }
}
@media (max-width: 767px) {
  .ugc-item { flex-basis: calc((100% - 12px) / 1.35); }
  .ugc-play { width: 2.75rem; height: 2.75rem; }
  .ugc-band { padding: 2.2rem 0 2.6rem; }
  .ugc-carousel { padding: 0 0.9rem; }
  .ugc-carousel .carousel-btn.prev { left: 1.1rem; }
  .ugc-carousel .carousel-btn.next { right: 1.1rem; }
}
@media (prefers-reduced-motion: reduce) {
  .mega { transition: none; }
}

.ugc-modal {
  position: fixed;
  inset: 0;
  z-index: 120;
  background: var(--brand-deep);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2.75rem 4rem 2.4rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.38s ease, visibility 0.38s ease;
}
.ugc-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.ugc-modal[hidden] { display: none; }
.ugc-modal-close {
  position: absolute;
  top: 1.15rem;
  right: 1.35rem;
  z-index: 4;
  width: 2.55rem;
  height: 2.55rem;
  border: 1.5px solid rgba(255,255,255,0.88);
  border-radius: 50%;
  background: none;
  color: #fff;
  font-size: 1.45rem;
  line-height: 1;
  padding: 0;
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.3s ease 0.18s;
}
.ugc-modal.is-open .ugc-modal-close { opacity: 1; }
.ugc-modal-inner {
  width: min(74rem, 100%);
  display: grid;
  grid-template-columns: auto minmax(18rem, 1fr);
  gap: 3.2rem;
  align-items: center;
}
.ugc-modal-player {
  position: relative;
  width: min(22.75rem, calc(78vh * 9 / 16));
  aspect-ratio: 9 / 16;
  max-height: 78vh;
  margin: 0 0 2.35rem;
  border-radius: 1.15rem;
  overflow: visible;
  background: transparent;
  opacity: 0;
  transform: translateY(28px) scale(0.92);
  transition: opacity 0.48s cubic-bezier(0.22, 1, 0.36, 1) 0.04s,
    transform 0.52s cubic-bezier(0.22, 1, 0.36, 1) 0.04s;
}
.ugc-modal.is-open .ugc-modal-player {
  opacity: 1;
  transform: none;
}
.ugc-modal-stage {
  position: absolute;
  inset: 0;
  border-radius: 1.15rem;
  overflow: hidden;
  background: var(--brand);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.16);
}
.ugc-slot {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: translateY(100%);
  transition: transform 0.52s cubic-bezier(0.22, 1, 0.36, 1);
}
.ugc-slot.is-show {
  transform: translateY(0);
  z-index: 1;
}
.ugc-slot.is-front { z-index: 2; }
.ugc-slot.is-leave-up { transform: translateY(-100%); }
.ugc-slot.is-leave-down { transform: translateY(100%); }
.ugc-slot.is-from-up { transform: translateY(-100%); }
.ugc-slot.is-from-down { transform: translateY(100%); }
.ugc-modal-chevron {
  position: absolute;
  left: 50%;
  bottom: -2.15rem;
  z-index: 3;
  width: 2.4rem;
  height: 2.4rem;
  margin: 0;
  padding: 0;
  border: 0;
  background: none;
  color: #fff;
  cursor: pointer;
  transform: translateX(-50%);
  filter: drop-shadow(0 1px 6px rgba(0,0,0,0.45));
}
.ugc-modal-chevron svg {
  width: 1.45rem;
  height: 1.45rem;
  display: block;
  margin: 0 auto;
  opacity: 0.78;
}
.ugc-modal.is-open .ugc-modal-chevron svg {
  animation: ugc-chevron 1.65s ease-in-out infinite;
}
@keyframes ugc-chevron {
  0%, 100% { transform: translateY(0); opacity: 0.55; }
  50% { transform: translateY(-7px); opacity: 1; }
}
.ugc-modal-handle {
  margin: 0 0 0.65rem;
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.95rem;
  font-weight: 600;
}
.ugc-modal-avatar {
  width: 1.7rem;
  height: 1.7rem;
  border-radius: 50%;
  background: var(--brand-light);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.ugc-modal-side {
  max-width: 26rem;
  opacity: 0;
  transform: translateX(36px);
  transition: opacity 0.42s ease 0.14s,
    transform 0.48s cubic-bezier(0.22, 1, 0.36, 1) 0.14s;
}
.ugc-modal.is-open .ugc-modal-side {
  opacity: 1;
  transform: none;
}
.ugc-modal-caption {
  margin: 0 0 1.55rem;
  font-family: var(--serif);
  font-size: 1.02rem;
  line-height: 1.45;
  color: rgba(255,255,255,0.92);
  max-width: 24rem;
}
.ugc-modal-side h3 {
  margin: 0 0 0.95rem;
  font-family: var(--serif);
  font-size: 1.7rem;
  font-weight: 700;
}
.ugc-look {
  display: grid;
  grid-template-columns: 4.6rem 1fr auto;
  gap: 0.9rem;
  align-items: center;
  background: #fff;
  color: var(--ink);
  border-radius: 1rem;
  padding: 0.55rem 0.7rem 0.55rem 0.55rem;
  margin-bottom: 0.65rem;
  animation: ugc-look-in 0.42s ease both;
}
.ugc-look:nth-child(1) { animation-delay: 0.18s; }
.ugc-look:nth-child(2) { animation-delay: 0.26s; }
.ugc-look:nth-child(3) { animation-delay: 0.34s; }
@keyframes ugc-look-in {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: none; }
}
.ugc-look img {
  width: 4.6rem;
  height: 4.6rem;
  object-fit: cover;
  border-radius: 0.55rem;
  background: #ddd;
}
.ugc-look-copy strong {
  display: block;
  font-family: var(--serif);
  font-size: 0.98rem;
  font-weight: 650;
  line-height: 1.25;
}
.ugc-look-copy em {
  display: none;
}
.ugc-look-shop {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 4.8rem;
  padding: 0.52rem 1.05rem;
  background: var(--brand);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 650;
  border-radius: 999px;
}
@media (max-width: 860px) {
  .ugc-modal { padding: 3.4rem 1rem 1.2rem; align-items: stretch; overflow: auto; }
  .ugc-modal-inner {
    grid-template-columns: 1fr;
    gap: 2.4rem;
    align-items: start;
  }
  .ugc-modal-player {
    width: min(18rem, calc(52vh * 9 / 16));
    max-height: 52vh;
    aspect-ratio: 9 / 16;
    margin: 0 auto 2.2rem;
  }
  .ugc-modal-side {
    max-width: none;
    transform: translateY(18px);
  }
  .ugc-modal.is-open .ugc-modal-side { transform: none; }
}
@media (prefers-reduced-motion: reduce) {
  .ugc-modal,
  .ugc-modal-close,
  .ugc-modal-player,
  .ugc-modal-side,
  .ugc-slot {
    transition: none !important;
  }
  .ugc-modal.is-open .ugc-modal-chevron svg,
  .ugc-look {
    animation: none !important;
  }
}

.grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.1rem;
}

.card {
  background: transparent;
}
.card-media {
  aspect-ratio: 1 / 1;
  background: var(--soft);
  position: relative;
  overflow: hidden;
}
.card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}
.card:hover .card-media img { transform: scale(1.04); }
.card-body { padding: 0.75rem 0 0.2rem; }
.card-name { margin: 0 0 0.2rem; font-size: 0.95rem; font-weight: 650; }
.card-price { display: none; }
.card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  margin-top: 0.55rem;
}
.dots { display: flex; gap: 0.28rem; }
.dot {
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 99px;
  border: 1px solid rgba(26,26,26,0.15);
}
.tiny {
  font-size: 0.72rem;
  color: var(--muted);
}
.card .btn { width: 100%; margin-top: 0.65rem; padding: 0.55rem; }

.product-shape {
  position: absolute;
  inset: 18% 12%;
  background: var(--tone, #2c2c2c);
  clip-path: polygon(6% 42%, 94% 42%, 94% 58%, 6% 58%);
  box-shadow: 0 12px 24px rgba(26,26,26,0.12);
}
.product-shape.tray { clip-path: inset(28% 16% 28% 16% round 4px); }
.product-shape.hook {
  clip-path: polygon(18% 22%, 82% 22%, 82% 40%, 62% 40%, 62% 78%, 48% 78%, 48% 40%, 18% 40%);
  inset: 16% 18%;
}
.product-shape.board { clip-path: inset(22% 18% 22% 18%); }
.product-shape.caddy { clip-path: polygon(18% 28%, 82% 28%, 88% 78%, 12% 78%); }

.scenes {
  display: grid;
  gap: 0.75rem;
}
@media (min-width: 768px) {
  .scenes { grid-template-columns: 1fr 1fr; }
}
.scene-tile,
.window-row .light-window.tall {
  position: relative;
  min-height: clamp(16rem, 42vw, 28rem);
  color: #fff;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.scene-tile img,
.window-row .light-window.tall img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
}
.scene-tile:hover img,
.window-row .light-window.tall:hover img { transform: scale(1.05); }
.scene-copy {
  position: relative;
  z-index: 1;
  padding: 1.35rem;
  background: linear-gradient(180deg, transparent, rgba(12,12,12,0.58));
}
.scene-tile h3 { margin: 0 0 0.35rem; font-size: 1.5rem; font-weight: 560; }

.window-row {
  display: grid;
  gap: 0.75rem;
  padding: 0.85rem 1.5rem;
  max-width: none;
}
@media (min-width: 768px) {
  .window-row { grid-template-columns: 1fr 1fr; }
}

.collection-hero {
  position: relative;
  min-height: clamp(14rem, 38vw, 22rem);
  display: flex;
  align-items: flex-end;
  color: #fff;
  overflow: hidden;
}
.collection-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.collection-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent, rgba(20, 40, 63, 0.58));
}
.collection-hero .page-title {
  position: relative;
  z-index: 1;
  margin: 0;
  padding: 2rem 1.5rem;
  color: #fff;
}

.trust {
  display: grid;
  gap: 1.5rem;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 2.5rem 0;
}
@media (min-width: 768px) {
  .trust { grid-template-columns: 1fr 1fr 1fr; }
}
.trust h3 { margin: 0 0 0.4rem; font-size: 1rem; }
.trust p { margin: 0; color: var(--muted); }

.about-band {
  display: grid;
  gap: 1.5rem;
  align-items: center;
}
@media (min-width: 768px) {
  .about-band { grid-template-columns: 1.2fr 1fr; }
}
.about-band h2 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  letter-spacing: -0.03em;
  margin: 0 0 0.8rem;
}
.about-visual {
  min-height: 16rem;
  overflow: hidden;
}
.about-visual img {
  width: 100%;
  height: 100%;
  min-height: 16rem;
  object-fit: cover;
}

.page-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  letter-spacing: -0.03em;
  margin: 0 0 0.4rem;
}
.toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: space-between;
  align-items: center;
  margin: 1rem 0 1.5rem;
}
select.sort {
  border: 1px solid var(--line);
  background: var(--paper);
  padding: 0.45rem 0.6rem;
}

.pdp {
  display: grid;
  gap: 2rem;
}
@media (min-width: 900px) {
  .pdp { grid-template-columns: 1.05fr 0.95fr; align-items: start; }
}
.pdp-stage {
  aspect-ratio: 1 / 1;
  background: var(--soft);
  position: relative;
  overflow: hidden;
}
.pdp-stage img,
.pdp-stage .card-media,
.pdp-stage .card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.video-slot {
  margin-top: 0.75rem;
  aspect-ratio: 16 / 9;
  border: 1px dashed var(--line);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  background: var(--paper);
}
.stars { display: none; }
.color-row { display: flex; gap: 0.45rem; margin: 0.5rem 0 1rem; }
.color-btn {
  width: 1.35rem;
  height: 1.35rem;
  border-radius: 99px;
  border: 1px solid rgba(26,26,26,0.2);
  padding: 0;
}
.color-btn[aria-checked="true"] { outline: 2px solid var(--ink); outline-offset: 2px; }
.qty-row { display: flex; align-items: center; gap: 0.6rem; margin: 1rem 0; }
.qty-row input {
  width: 3.5rem;
  border: 1px solid var(--line);
  padding: 0.4rem;
  background: var(--paper);
}
.contact-row { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-top: 0.8rem; }
.specs { margin-top: 1.5rem; padding-top: 1rem; border-top: 1px solid var(--line); }
.specs dl { display: grid; grid-template-columns: 8rem 1fr; gap: 0.4rem 1rem; margin: 0.6rem 0 0; }
.specs dt { color: var(--muted); }

.form {
  display: grid;
  gap: 0.75rem;
  max-width: 36rem;
}
.form label { font-size: 0.82rem; color: var(--muted); display: grid; gap: 0.3rem; }
.form input, .form textarea, .form select {
  border: 1px solid var(--line);
  background: var(--paper);
  padding: 0.55rem 0.65rem;
  width: 100%;
}
.cart-summary { margin: 0 0 1.5rem; padding: 0; list-style: none; }
.cart-summary li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.55rem 0;
  border-bottom: 1px solid var(--line);
}

.site-footer {
  background: var(--chrome);
  color: #fff;
  padding: 3.4rem var(--page-pad) 1.5rem;
  margin-top: 2rem;
}
.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr repeat(5, 1fr);
  gap: 2.2rem;
}
.footer-brand .logo {
  display: block;
  margin-bottom: 0.9rem;
  color: #fff;
  font-size: 1.55rem;
  font-weight: 800;
  letter-spacing: -0.04em;
}
.footer-brand p {
  margin: 0 0 1.1rem;
  max-width: 19rem;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.82rem;
  line-height: 1.6;
}
.footer-socials {
  display: flex;
  gap: 0.5rem;
}
.footer-social {
  width: 2.15rem;
  height: 2.15rem;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: rgba(180, 205, 225, 0.9);
}
.footer-social svg {
  width: 0.95rem;
  height: 0.95rem;
  display: block;
}
.site-footer h3 {
  margin: 0.25rem 0 0.95rem;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
  color: #fff;
}
.footer-links {
  display: grid;
  gap: 0.62rem;
}
.footer-links a {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.88);
}
.footer-links a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  margin-top: 2.6rem;
  padding-top: 1.25rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.7rem;
}
.footer-langs a {
  color: rgba(255, 255, 255, 0.48);
}
.footer-langs a[aria-current="true"] {
  color: rgba(255, 255, 255, 0.88);
}
@media (max-width: 1100px) {
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr; }
}
@media (max-width: 700px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 1.6rem 1.2rem; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom {
    flex-direction: column;
  }
}

.overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.45);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s;
  z-index: 85;
}
.overlay.on { opacity: 1; pointer-events: auto; }

.chat-fab {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 70;
  width: 3rem;
  height: 3rem;
  border: 0;
  border-radius: 50%;
  background: #22c769;
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  transition: transform 0.18s ease;
}
.chat-fab:hover { transform: translateY(-2px) scale(1.03); }
.chat-wa {
  width: 1.55rem;
  height: 1.55rem;
  display: block;
}
.chat-fab-tip {
  position: absolute;
  right: 3.55rem;
  background: var(--brand);
  color: #fff;
  border-radius: 0.45rem;
  padding: 0.4rem 0.55rem;
  font-size: 0.7rem;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transform: translateX(4px);
  transition: 0.18s;
}
.chat-fab:hover .chat-fab-tip {
  opacity: 1;
  transform: none;
}
.chat-scrim {
  position: fixed;
  inset: 0;
  z-index: 86;
  background: rgba(0, 0, 0, 0.42);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.28s ease;
}
.chat-scrim.on {
  opacity: 1;
  pointer-events: auto;
}
.chat-panel {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 87;
  width: min(42vw, 34rem);
  min-width: min(22rem, 100vw);
  height: 100%;
  background: #fff;
  color: var(--ink);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: -12px 0 40px rgba(0, 0, 0, 0.18);
  transform: translateX(100%);
  visibility: hidden;
  pointer-events: none;
  transition: transform 0.32s ease, visibility 0.32s;
}
.chat-panel.on {
  transform: none;
  visibility: visible;
  pointer-events: auto;
}
.chat-head {
  flex: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  min-height: 3.5rem;
  padding: 0 0.65rem 0 1.25rem;
  background: #fff;
  color: var(--ink);
  border-bottom: 1px solid #eee;
}
.chat-head strong {
  font-size: 0.95rem;
  font-weight: 650;
}
.chat-head-tools {
  display: flex;
  align-items: center;
}
.chat-icon-btn {
  border: 0;
  background: none;
  color: var(--ink);
  width: 2.4rem;
  height: 2.4rem;
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
}
.chat-more { position: relative; }
.chat-more-menu {
  position: absolute;
  right: 0;
  top: calc(100% + 0.2rem);
  min-width: 9.5rem;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  padding: 0.35rem 0;
  z-index: 2;
}
.chat-more-menu a,
.chat-more-menu button {
  display: block;
  width: 100%;
  border: 0;
  background: none;
  text-align: left;
  padding: 0.5rem 0.85rem;
  font-size: 0.88rem;
  color: var(--ink);
  cursor: pointer;
}
.chat-more-menu a:hover,
.chat-more-menu button:hover { background: #f5f5f5; }
.chat-log {
  flex: 1;
  min-height: 0;
  overflow: auto;
  padding: 1.1rem 1.35rem 0.6rem;
  background: #fff;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 0.75rem;
}
.chat-bubble {
  margin: 0;
  max-width: 92%;
  padding: 0;
  font-size: 0.95rem;
  line-height: 1.45;
  background: none;
}
.chat-bubble.bot { color: #111; }
.chat-bubble.user {
  margin-left: auto;
  padding: 0.65rem 0.8rem;
  background: #f3f3f3;
  border-radius: 0.7rem;
  color: var(--ink);
}
.chat-form {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  margin: 0.85rem 1.1rem 1.15rem;
  padding: 0 0.85rem;
  height: 3.1rem;
  background: #fff;
  border: 1px solid #cfcfcf;
  border-radius: 0.35rem;
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}
.chat-form:focus-within {
  border-color: #c4c4c4;
  box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.04);
}
.chat-search-btn {
  flex: none;
  border: 0;
  background: none;
  color: #555;
  font-size: 1.05rem;
  padding: 0;
  cursor: pointer;
  line-height: 1;
}
.chat-form input {
  flex: 1;
  min-width: 0;
  height: 100%;
  border: 0;
  padding: 0;
  background: transparent;
  font-size: 0.92rem;
  outline: none;
  box-shadow: none;
  appearance: none;
}
.chat-form input:focus,
.chat-form input:focus-visible {
  outline: none;
  box-shadow: none;
}
.chat-form input::placeholder { color: #9a9a9a; }
@media (max-width: 700px) {
  .chat-panel {
    width: 100%;
    min-width: 0;
  }
}
body.drawer-open .chat-fab,
body.is-menu-open .chat-fab,
body.ugc-open .chat-fab {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: min(26rem, 100%);
  height: 100%;
  background: var(--paper);
  z-index: 90;
  transform: translateX(100%);
  transition: transform 0.22s ease;
  display: flex;
  flex-direction: column;
  border-left: 1px solid var(--line);
}
.cart-drawer.on { transform: none; }

.auth-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: min(28rem, 30vw);
  min-width: min(22rem, 92vw);
  height: 100%;
  background: #fff;
  z-index: 90;
  transform: translateX(100%);
  transition: transform 0.28s ease;
  box-shadow: -8px 0 28px rgba(0,0,0,0.12);
}
.auth-drawer.on { transform: none; }
.auth-close {
  position: absolute;
  top: 0.85rem;
  right: 1rem;
  width: 2.2rem;
  height: 2.2rem;
  border: 0;
  background: none;
  font-size: 1.65rem;
  line-height: 1;
  color: var(--brand);
  padding: 0;
}
.auth-body {
  padding: 4.6rem 2.1rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.auth-logo {
  margin: 0 0 1.35rem;
  font-size: 1.25rem;
  letter-spacing: -0.03em;
  text-transform: none;
  font-weight: 800;
  color: var(--brand);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.55rem;
}
.auth-mark {
  width: 2.6rem;
  height: 2.6rem;
}
.auth-body h2 {
  margin: 0 0 1.6rem;
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--brand);
}
.auth-form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.auth-form input {
  width: 100%;
  height: 3rem;
  border: 1px solid var(--line);
  background: #fff;
  padding: 0 0.85rem;
  text-align: left;
}
.auth-form input::placeholder { color: var(--muted); }
.btn.auth-continue {
  width: 100%;
  height: 3rem;
  font-weight: 650;
  letter-spacing: 0.04em;
}
.auth-note {
  margin: 1.1rem 0 0;
  font-size: 0.78rem;
  color: var(--muted);
  max-width: 22rem;
}
.cart-head, .cart-foot {
  padding: 1rem 1.1rem;
  border-bottom: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.cart-foot { border-bottom: 0; border-top: 1px solid var(--line); display: block; }
.cart-list {
  flex: 1;
  overflow: auto;
  padding: 0.5rem 1.1rem 1rem;
}
.cart-line {
  display: grid;
  grid-template-columns: 3.6rem 1fr auto;
  gap: 0.7rem;
  padding: 0.8rem 0;
  border-bottom: 1px solid var(--line);
}
.cart-thumb {
  width: 3.6rem;
  height: 3.6rem;
  background: var(--soft);
  position: relative;
  overflow: hidden;
}
.cart-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cart-line .mini-shape {
  position: absolute;
  inset: 28% 12%;
  background: var(--tone);
}
.qty-mini { width: 3rem; padding: 0.2rem; border: 1px solid var(--line); }
.empty-note { color: var(--muted); padding: 1rem 0; }

@media (max-width: 1100px) {
  .mega-cards {
    grid-template-columns: repeat(auto-fill, minmax(7.4rem, 1fr));
  }
  .mega { height: auto; }
}

@media (min-width: 900px) {
  .grid { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 1200px) {
  .grid { grid-template-columns: repeat(4, 1fr); }
}

@media (min-width: 1024px) {
  :root { --nav-h: 2.85rem; }
  .site-top.is-pinned .header-row {
    position: static;
    display: flex;
    align-items: center;
    gap: 0.75rem;
  }
  .site-top.is-pinned .site-header {
    position: static;
  }
  .site-top.is-pinned .logo,
  .site-top.is-pinned .header-tools {
    display: flex;
    align-items: center;
    flex: none;
  }
  .nav-row,
  .site-top.is-pinned .nav-row {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    border-top: 1px solid var(--line);
    min-width: 0;
    padding: 0 var(--page-pad);
    order: unset;
    flex: none;
  }
  .site-top.is-pinned .header-tools { order: unset; }
  .nav-inner,
  .site-top.is-pinned .nav-inner {
    width: auto;
    flex: 1;
    justify-content: flex-start;
    min-width: 0;
  }
  .nav-aux,
  .site-top.is-pinned .header-tools .nav-aux,
  .site-top.is-pinned .nav-aux {
    display: flex;
  }
  .site-top.is-pinned .nav-link { padding: 0.85rem 0.9rem; }
  .site-top.is-pinned .nav-item:hover .nav-link::after,
  .site-top.is-pinned .nav-link:focus::after {
    bottom: 0.42rem;
    left: 0.55rem;
    right: 0.55rem;
  }
  .site-top.is-pinned .search-wrap input {
    width: min(18rem, 26vw);
  }
  .site-top.is-pinned .menu-toggle { display: none; }
}

@media (min-width: 1024px) and (max-width: 1279px) {
  .site-top.is-pinned .nav-link {
    font-size: 0.84rem;
    letter-spacing: 0;
    padding: 0.85rem 0.62rem;
  }
}

@media (max-width: 1023px) {
  .nav-row { display: none !important; }
  .menu-toggle,
  .site-top.is-pinned .menu-toggle { display: inline-flex; }
  .site-header .logo,
  .site-top.is-pinned .site-header .logo {
    position: static;
    transform: none;
    margin-right: auto;
  }
  .brand-stack,
  .site-top.is-pinned .brand-stack { text-align: left; }
  .carousel-btn {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

.site-footer .logo {
  position: static;
  transform: none;
  color: inherit;
  letter-spacing: -0.04em;
  text-transform: none;
  font-weight: 800;
}

@media (max-width: 767px) {
  .promo-msg { display: none; }
  .promo { grid-template-columns: 1fr auto; }
  .promo-left { display: none; }
  .header-row { padding: 0 0.85rem; gap: 0.5rem; }
  .brand-name { font-size: 1.4rem; }
  .brand-slogan { font-size: 0.65rem; }
  .site-top.is-pinned .brand-name { font-size: 1.12rem; }
  .site-top.is-pinned .brand-slogan { font-size: 0.52rem; }
  .hero-stage {
    height: auto;
    min-height: 0;
    padding: 0.85rem 0.85rem 0;
  }
  .search-wrap input { width: 8.5rem; }
  .hero-arrow {
    width: 2.55rem;
    height: 2.55rem;
  }
  .hero-arrow.prev { left: 0.55rem; }
  .hero-arrow.next { right: 0.55rem; }
  .hero-copy { bottom: 6%; }
  .wrap { padding: 2rem 0.9rem; }
  .cart-drawer,
  .auth-drawer { width: 100%; min-width: 0; }
  .pdp { grid-template-columns: 1fr; }
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.why-head { max-width: 40rem; margin: 0 0 1.6rem; }
.why-head h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1.55rem, 2.8vw, 2.15rem);
  font-weight: 650;
  letter-spacing: -0.02em;
}
.why-head p {
  margin: 0.45rem 0 0;
  color: var(--muted);
  font-size: 0.95rem;
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  overflow: hidden;
}
.why-item {
  background: #fff;
  padding: 1.5rem 1.2rem;
  min-height: 10.5rem;
}
.why-n {
  font-size: 0.75rem;
  color: #8b9094;
  margin-bottom: 1.2rem;
}
.why-item strong {
  display: block;
  font-size: 1.05rem;
  font-weight: 650;
  margin-bottom: 0.45rem;
  line-height: 1.3;
}
.why-item p {
  margin: 0;
  font-size: 0.84rem;
  line-height: 1.5;
  color: var(--muted);
}
.biz-band {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 0;
  padding: 0;
  overflow: hidden;
  background: var(--soft);
}
.biz-copy { padding: 3.2rem 2.4rem; }
.biz-copy h2 {
  margin: 0 0 1rem;
  font-family: var(--serif);
  font-size: clamp(1.7rem, 3.2vw, 2.5rem);
  font-weight: 650;
  letter-spacing: -0.03em;
  line-height: 1.12;
}
.biz-copy p {
  margin: 0;
  max-width: 38rem;
  font-size: 0.98rem;
  line-height: 1.65;
  color: var(--muted);
}
.biz-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.5rem;
}
.biz-visual {
  position: relative;
  min-height: 18rem;
  background: var(--brand-deep);
}
.biz-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 18rem;
}
.biz-visual span {
  position: absolute;
  left: 1.2rem;
  bottom: 1.1rem;
  color: #fff;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-shadow: 0 1px 8px rgba(0,0,0,0.45);
}
.home-lead {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 2.8rem;
  align-items: start;
}
.home-lead-copy h2 {
  margin: 0 0 0.85rem;
  font-family: var(--serif);
  font-size: clamp(1.7rem, 3.2vw, 2.5rem);
  font-weight: 650;
  letter-spacing: -0.03em;
  line-height: 1.12;
}
.home-lead-copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
  font-size: 0.98rem;
}
.home-lead-points {
  margin: 1.5rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.7rem;
}
.home-lead-points li {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
  font-size: 0.9rem;
}
.home-lead-points li:before {
  content: "✓";
  flex: none;
  width: 1.2rem;
  height: 1.2rem;
  border-radius: 50%;
  background: var(--brand);
  color: #fff;
  font-size: 0.68rem;
  display: grid;
  place-items: center;
  margin-top: 0.1rem;
}
.home-lead-form {
  max-width: none;
  background: #fff;
  border: 1px solid var(--line);
  padding: 1.5rem;
}
.home-lead-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
}
.home-lead-grid .full { grid-column: 1 / -1; }
.home-lead-form button { justify-self: start; margin-top: 0.35rem; }
.home-lead-hint {
  font-size: 0.78rem;
  color: var(--muted);
  align-self: center;
}
@media (max-width: 1100px) {
  .why-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 767px) {
  .why-grid { grid-template-columns: 1fr; }
  .biz-band,
  .home-lead { grid-template-columns: 1fr; }
  .biz-copy { padding: 2rem 1.4rem; }
  .home-lead-grid { grid-template-columns: 1fr; }
  .home-lead-grid .full { grid-column: auto; }
}

/* Product detail template */
body[data-page="product"] { --pdp-accent: var(--accent); --pdp-accent-dark: var(--accent-dark); }
.pdp-wrap {
  padding-top: 0;
  padding-bottom: 0;
}
.pdp-crumb {
  padding-top: 3.4rem;
  padding-bottom: 1.25rem;
  color: var(--muted);
  font-size: 0.75rem;
}
.pdp-crumb a { text-decoration: none; }
.pdp-crumb span { margin: 0 0.5rem; color: #b0b0b0; }
.product-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(18rem, 0.72fr);
  gap: 2.6rem;
  align-items: start;
  padding-top: 0;
  padding-bottom: 3.4rem;
}
.pdp-gallery {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.65rem;
  min-width: 0;
}
.pdp-thumbs {
  display: flex;
  gap: 0.5rem;
}
.pdp-thumb {
  flex: 1;
  min-width: 0;
  aspect-ratio: 1;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 1px;
  background: #fff;
  cursor: pointer;
  overflow: hidden;
}
.pdp-thumb.active { border: 2px solid var(--ink); }
.pdp-thumb img { width: 100%; height: 100%; object-fit: cover; }
.pdp-main {
  min-height: 28rem;
  aspect-ratio: 1;
  background: #f7f7f7;
  display: grid;
  place-items: center;
  overflow: hidden;
  position: relative;
  cursor: zoom-in;
  border: 0;
  padding: 0;
}
.pdp-main img { width: 100%; height: 100%; object-fit: contain; }
.pdp-main-fade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0;
  transform: scale(1.015);
  transition: opacity 0.35s ease, transform 0.4s ease;
  z-index: 1;
  pointer-events: none;
}
.pdp-main-fade.on {
  opacity: 1;
  transform: scale(1);
}
@media (prefers-reduced-motion: reduce) {
  .pdp-main-fade,
  .pdp-main-fade.on {
    transition: none;
    transform: none;
  }
}
.pdp-zoom {
  position: absolute;
  right: 0.75rem;
  bottom: 0.75rem;
  z-index: 2;
  width: 2.1rem;
  height: 2.1rem;
  border: 1px solid rgba(0,0,0,.15);
  background: rgba(255,255,255,.88);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 1.1rem;
  color: #444;
}
.pdp-info { padding-top: 0.1rem; }
.pdp-sku {
  margin: 0 0 0.45rem;
  color: var(--accent);
  font-weight: 750;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.pdp-info h1 {
  margin: 0 0 0.65rem;
  font-size: clamp(1.2rem, 1.6vw, 1.45rem);
  font-weight: 650;
  line-height: 1.25;
  letter-spacing: -0.02em;
}
.pdp-feature-title {
  font-size: 0.75rem;
  font-weight: 800;
  margin: 0 0 0.5rem;
}
.pdp-features {
  margin: 0 0 1rem;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.45rem;
}
.pdp-features li {
  position: relative;
  padding-left: 1.05rem;
  font-size: 0.82rem;
  color: #373737;
}
.pdp-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--pdp-accent);
  font-weight: 850;
}
.pdp-accordions { margin-top: 0.5rem; border-top: 1px solid var(--line); }
.pdp-accordion { border-bottom: 1px solid var(--line); }
.pdp-acc-btn,
.pdp-faq-btn {
  width: 100%;
  min-height: 2.75rem;
  padding: 0;
  border: 0;
  background: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  cursor: pointer;
  font-size: 0.82rem;
  font-weight: 700;
}
.pdp-plus { font-size: 1.25rem; font-weight: 400; transition: transform 0.18s ease; }
.pdp-accordion.open .pdp-plus,
.pdp-faq.open .pdp-plus { transform: rotate(45deg); }
.pdp-acc-panel,
.pdp-faq-panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.2s ease;
}
.pdp-accordion.open .pdp-acc-panel,
.pdp-faq.open .pdp-faq-panel { grid-template-rows: 1fr; }
.pdp-acc-panel > div,
.pdp-faq-panel > div { overflow: hidden; }
.pdp-acc-body { padding: 0 0 0.75rem; color: #575757; font-size: 0.75rem; }
.pdp-acc-body dl { display: grid; grid-template-columns: 9rem 1fr; gap: 0.4rem 0.85rem; margin: 0; }
.pdp-acc-body dt { color: var(--muted); }
.pdp-acc-body dd { margin: 0; }
.pdp-cta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem;
  margin-top: 0.95rem;
}
.pdp-cta .btn,
.pdp-sticky .btn,
.pdp-contact-actions .btn {
  width: 100%;
}
body[data-page="product"] .pdp-cta .btn.ghost:hover,
body[data-page="product"] .pdp-sticky .btn.ghost:hover {
  background: var(--ink);
  color: var(--bg);
}
.pdp-same,
.pdp-related { padding: 2.1rem 0 2.4rem; border-top: 1px solid #ededed; }
.pdp-same-head,
.pdp-related-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  margin-bottom: 0.95rem;
}
.pdp-same-head h2,
.pdp-related-head h2 { margin: 0; font-size: 1.15rem; }
.pdp-related-head { position: relative; text-align: center; justify-content: center; }
.pdp-related-head .pdp-same-controls { position: absolute; right: 0; }
.pdp-same-controls { display: flex; gap: 0.4rem; }
.pdp-slider-btn {
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 99px;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: 0 4px 14px rgba(0,0,0,0.08);
  cursor: pointer;
  color: var(--brand);
  font-size: 1.35rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pdp-same-track {
  display: flex;
  gap: 0.75rem;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  padding-bottom: 0.2rem;
}
.pdp-same-track::-webkit-scrollbar { display: none; }
.pdp-mini {
  flex: 0 0 calc((100% - 3rem) / 5);
  min-width: 10.5rem;
  text-decoration: none;
}
.pdp-mini-image {
  aspect-ratio: 1;
  background: #fafafa;
  overflow: hidden;
}
.pdp-mini-image img { width: 100%; height: 100%; object-fit: cover; }
.pdp-mini h3 { margin: 0.5rem 0 0.15rem; font-size: 0.75rem; line-height: 1.35; font-weight: 650; }
.pdp-mini p { margin: 0; color: #8a8a8a; font-size: 0.62rem; }
.pdp-media-section,
.pdp-scenes-section,
.pdp-b2b-section { padding: 3.4rem 0; border-top: 1px solid #ededed; }
.pdp-heading {
  margin: 0 0 1.25rem;
  font-family: var(--serif);
  font-size: clamp(1.45rem, 2.6vw, 2.05rem);
  font-weight: 650;
  letter-spacing: -0.02em;
}
.pdp-media {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(20rem, 0.85fr);
  gap: 2.4rem;
  align-items: center;
}
.pdp-media-frame { aspect-ratio: 16/9; background: #f2f2f2; overflow: hidden; }
.pdp-media-frame img { width: 100%; height: 100%; object-fit: cover; }
.pdp-media-copy h2 {
  margin: 0 0 0.85rem;
  font-family: var(--serif);
  font-size: clamp(1.5rem, 2.8vw, 2.15rem);
  font-weight: 650;
  line-height: 1.12;
  letter-spacing: -0.03em;
}
.pdp-media-copy p { margin: 0 0 0.6rem; color: var(--muted); font-size: 0.82rem; }
.pdp-media-copy ul { margin: 0.85rem 0 0; padding-left: 1.1rem; color: #4a4a4a; font-size: 0.82rem; }
.pdp-media-copy li { margin: 0.4rem 0; }
.pdp-scenes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.pdp-shorts-section {
  border-top: 1px solid #ededed;
  text-align: left;
}
.pdp-shorts-section h2 {
  max-width: var(--max);
  margin: 0 auto 1.25rem;
  padding: 0 var(--page-pad);
  text-align: left;
  font-size: clamp(1.45rem, 2.6vw, 2.05rem);
  font-weight: 650;
  letter-spacing: -0.02em;
}
.pdp-shorts-section .ugc-tile video {
  opacity: 0;
  pointer-events: none;
}
.pdp-shorts-section .ugc-tile.playing video { opacity: 1; }
.pdp-scene-image { aspect-ratio: 4/3; background: #f3f3f3; overflow: hidden; }
.pdp-scene-image img { width: 100%; height: 100%; object-fit: cover; }
.pdp-scene h3 { margin: 0.7rem 0 0.25rem; font-size: 0.95rem; }
.pdp-scene p { margin: 0; color: var(--muted); font-size: 0.75rem; line-height: 1.55; }
.pdp-b2b { background: #fff; padding: 1.75rem 1.9rem; border: 1px solid var(--line); }
.pdp-b2b > h2 {
  text-align: center;
  margin: 0 0 0.3rem;
  font-family: var(--serif);
  font-size: clamp(1.4rem, 2.4vw, 1.9rem);
  font-weight: 650;
}
.pdp-b2b > p { text-align: center; margin: 0 0 1.25rem; color: var(--muted); font-size: 0.75rem; }
.pdp-caps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.75rem; }
.pdp-caps article { background: #fff; padding: 1rem; min-height: 7rem; border: 1px solid var(--line); }
.pdp-caps h3 { margin: 0 0 0.45rem; font-size: 0.82rem; }
.pdp-caps p { margin: 0; color: var(--muted); font-size: 0.7rem; line-height: 1.55; }
.pdp-faq-section { padding: 0 0 3.4rem; border-top: 1px solid #ededed; }
.pdp-faq-section .pdp-wrap { padding-top: 3.2rem; }
.pdp-faq-list { border-top: 1px solid var(--line); }
.pdp-faq { border-bottom: 1px solid var(--line); }
.pdp-faq-btn { min-height: 3.6rem; font-size: 0.88rem; gap: 1.5rem; }
.pdp-faq-panel p {
  max-width: 58rem;
  margin: 0;
  padding: 0 2.5rem 1.1rem 0;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.65;
}
.pdp-final { padding: 0 0 4rem; }
.pdp-inquiry-shell {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  min-height: 14.4rem;
  background: var(--soft);
  border: 0;
}
.pdp-solution { padding: 1.9rem; }
.pdp-solution h2 {
  margin: 0 0 0.4rem;
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2.4vw, 1.85rem);
  font-weight: 650;
}
.pdp-solution > p { margin: 0 0 1.5rem; color: var(--muted); font-size: 0.75rem; }
.pdp-services { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0.85rem; }
.pdp-service { display: flex; align-items: flex-start; gap: 0.5rem; min-width: 0; }
.pdp-service-ico {
  width: 1.75rem;
  height: 1.75rem;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 1px;
  color: var(--accent);
  flex: none;
}
.pdp-service-ico svg { width: 0.95rem; height: 0.95rem; }
.pdp-service strong { display: block; font-size: 0.7rem; }
.pdp-service span span { display: block; margin-top: 0.12rem; color: #8a8a8a; font-size: 0.56rem; }
.pdp-contact-side {
  background: var(--brand);
  color: #fff;
  padding: 1.9rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.pdp-contact-side h3 {
  margin: 0 0 0.45rem;
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 650;
}
.pdp-contact-side p { margin: 0 0 1.1rem; color: rgba(255,255,255,.78); font-size: 0.75rem; }
.pdp-contact-actions { display: grid; gap: 0.6rem; }
.pdp-contact-side .btn {
  background: #fff;
  color: var(--ink);
  border-color: #fff;
}
.pdp-contact-side .btn:hover {
  background: var(--bg);
  color: var(--brand);
}
.pdp-contact-side .btn.ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,.7);
}
.pdp-contact-side .btn.ghost:hover {
  background: #fff;
  color: var(--ink);
}
.pdp-sticky {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 45;
  background: #fff;
  border-top: 1px solid #dcdcdc;
  box-shadow: 0 -10px 28px rgba(0,0,0,.08);
  transform: translateY(110%);
  transition: transform 0.22s ease;
}
.pdp-sticky.show { transform: translateY(0); }
.pdp-sticky-inner {
  min-height: 4rem;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 0.65rem;
  align-items: center;
  padding-top: 0.55rem;
  padding-bottom: 0.55rem;
}
.pdp-sticky-product { min-width: 0; }
.pdp-sticky-product strong {
  display: block;
  font-size: 0.75rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.pdp-sticky-product span { display: block; color: var(--muted); font-size: 0.62rem; margin-top: 0.12rem; }
.pdp-sticky .btn { min-width: 9.2rem; min-height: 2.5rem; }
body.pdp-sticky-on .chat-fab { bottom: 5.5rem; }
.pdp-lightbox {
  position: fixed;
  inset: 0;
  z-index: 130;
  background: rgba(0,0,0,.88);
  display: grid;
  place-items: center;
  padding: 2.6rem;
  opacity: 0;
  visibility: hidden;
  transition: 0.2s;
}
.pdp-lightbox.open { opacity: 1; visibility: visible; }
.pdp-lightbox img { max-width: min(92vw, 1400px); max-height: 88vh; object-fit: contain; background: #fff; }
.pdp-lightbox-close {
  position: absolute;
  right: 1.5rem;
  top: 1.25rem;
  width: 2.6rem;
  height: 2.6rem;
  border: 1px solid rgba(255,255,255,.35);
  border-radius: 50%;
  background: rgba(0,0,0,.2);
  color: #fff;
  font-size: 1.55rem;
  cursor: pointer;
}
@media (max-width: 1100px) {
  .product-hero { grid-template-columns: minmax(0, 1fr) 22rem; gap: 1.75rem; }
  .pdp-main { min-height: 22rem; }
  .pdp-mini { flex-basis: calc((100% - 2.25rem) / 4); }
}
@media (max-width: 820px) {
  .product-hero { grid-template-columns: 1fr; gap: 1.6rem; padding-bottom: 2.6rem; }
  .pdp-crumb { padding-top: 2rem; }
  .pdp-thumbs { overflow-x: auto; scrollbar-width: none; }
  .pdp-thumbs::-webkit-scrollbar { display: none; }
  .pdp-thumb { flex: 0 0 4.25rem; }
  .pdp-main { min-height: 0; }
  .pdp-media { grid-template-columns: 1fr; gap: 1.4rem; padding-top: 2.4rem; padding-bottom: 2.4rem; }
  .pdp-scenes { grid-template-columns: 1fr 1fr; }
  .pdp-caps { grid-template-columns: 1fr; }
  .pdp-mini { flex-basis: calc((100% - 1.5rem) / 3); }
  .pdp-inquiry-shell { grid-template-columns: 1fr; }
  .pdp-services { grid-template-columns: 1fr 1fr; }
  .pdp-sticky-product { display: none; }
  .pdp-sticky-inner { grid-template-columns: 1fr 1fr; }
  .pdp-sticky .btn { min-width: 0; width: 100%; }
}
@media (max-width: 520px) {
  .pdp-cta { grid-template-columns: 1fr; }
  .pdp-scenes { grid-template-columns: 1fr; }
  .pdp-mini { flex-basis: 72%; min-width: 13.5rem; }
  .pdp-same-controls { display: none; }
}
