@font-face {
  font-family: "LINE Seed Sans TH";
  src: url("../fonts/LINESeedSansTH_W_Th.woff2") format("woff2"),
       url("../fonts/LINESeedSansTH_W_Th.woff") format("woff");
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "LINE Seed Sans TH";
  src: url("../fonts/LINESeedSansTH_W_Rg.woff2") format("woff2"),
       url("../fonts/LINESeedSansTH_W_Rg.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "LINE Seed Sans TH";
  src: url("../fonts/LINESeedSansTH_W_Bd.woff2") format("woff2"),
       url("../fonts/LINESeedSansTH_W_Bd.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "LINE Seed Sans TH";
  src: url("../fonts/LINESeedSansTH_W_XBd.woff2") format("woff2"),
       url("../fonts/LINESeedSansTH_W_XBd.woff") format("woff");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "LINE Seed Sans TH";
  src: url("../fonts/LINESeedSansTH_W_He.woff2") format("woff2"),
       url("../fonts/LINESeedSansTH_W_He.woff") format("woff");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --color-ink: #111111;
  --color-brand: #c41e3a;
  --color-cream: #faf9f6;
  --color-muted: #707070;
  --color-quiet: #9e9e9e;
  --color-line: #e8e7e4;
  --color-line-strong: #cccccc;
  --color-white: #ffffff;
  --font-display: "LINE Seed Sans TH", sans-serif;
  --font-ui: "LINE Seed Sans TH", sans-serif;
  --space-gutter: 80px;
  --content: 1280px;
  --header-h: 80px;
  --radius: 2px;
  --focus: 0 0 0 3px rgba(196, 30, 58, 0.35);
  --product-plate: #e6e6e6;
}

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

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-ui);
  font-synthesis: none;
  color: var(--color-ink);
  background: var(--color-white);
  line-height: 1.5;
  min-width: 320px;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; color: inherit; }
button { cursor: pointer; background: none; border: 0; }
ul { margin: 0; padding: 0; list-style: none; }

:focus-visible { outline: none; box-shadow: var(--focus); }

.skip-link {
  position: absolute;
  left: 12px;
  top: -40px;
  z-index: 1000;
  background: var(--color-brand);
  color: #fff;
  padding: 8px 12px;
}
.skip-link:focus { top: 12px; }

.wrap {
  width: min(100% - (var(--space-gutter) * 2), var(--content));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--space-gutter);
  background: #fff;
  border-bottom: 1px solid var(--color-line);
}

.logo-block {
  display: flex;
  align-items: baseline;
  gap: 12px;
}
.logo-block img { width: 140px; height: 40px; object-fit: contain; }
.logo-tag {
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-brand);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  font-size: 14px;
}
.nav-links ul {
  display: flex;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a { font-weight: 400; }
.nav-links a.is-active { font-weight: 700; color: var(--color-brand); }

.header-actions {
  display: flex;
  align-items: center;
  gap: 24px;
}
.icon-btn {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.icon-btn img { width: 20px; height: 20px; }
.cart-badge {
  position: absolute;
  top: 6px;
  right: 2px;
  min-width: 19px;
  height: 15px;
  padding: 0 6px;
  border-radius: 10px;
  background: var(--color-brand);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  line-height: 15px;
  text-align: center;
}
.lang-toggle {
  display: flex;
  gap: 0;
  font-size: 12px;
  align-items: center;
}
.lang-toggle a {
  color: var(--color-muted);
  font-weight: 500;
  min-width: 44px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.lang-toggle a.is-active { color: var(--color-ink); font-weight: 700; }
.header-rule { width: 1px; height: 16px; background: var(--color-line-strong); }
.menu-toggle { display: none; }
.menu-bars {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  width: 18px;
  height: 14px;
}
.menu-bars span {
  display: block;
  height: 2px;
  background: var(--color-ink);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 45px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.btn-primary { background: var(--color-brand); color: #fff; }
.btn-outline {
  border: 1.5px solid var(--color-ink);
  background: transparent;
}
.btn-ghost {
  border: 1px solid var(--color-ink);
  width: 100%;
  padding: 10px 16px;
  font-size: 12px;
}
.btn-primary:hover { filter: brightness(0.95); }
.btn-outline:hover, .btn-ghost:hover { background: var(--color-ink); color: #fff; }

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--color-brand);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
}
.text-link.dark { color: var(--color-ink); }
.text-link img { width: 14px; height: 14px; }

.badge {
  display: inline-flex;
  padding: 4px 10px;
  border: 1px solid var(--color-ink);
  border-radius: var(--radius);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero {
  position: relative;
  min-height: 640px;
  display: flex;
  align-items: flex-end;
  padding: 80px var(--space-gutter);
  color: var(--color-cream);
  overflow: hidden;
}
.hero img.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
}
.hero-copy { position: relative; z-index: 1; max-width: 720px; }
.hero-copy h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin: 0 0 16px;
  text-wrap: balance;
  color: #fff;
}
.hero-kicker {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin: 8px 0 16px;
}
.hero p { font-size: 18px; opacity: 0.92; margin: 0 0 24px; max-width: 52ch; }

.home-fold {
  position: relative;
  height: 100svh;
  min-height: 100svh;
  margin-top: calc(-1 * var(--header-h));
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  overflow: hidden;
  isolation: isolate;
}
.home-fold .hero {
  grid-row: 1;
  grid-column: 1;
  min-height: 0;
  height: auto;
  padding-top: calc(var(--header-h) + 32px);
  padding-bottom: 40px;
}
.home-fold .hero::after { z-index: 0; }
.home-fold .hero-copy { z-index: 1; }
.home-fold .promise-bar {
  grid-row: 2;
  grid-column: 1;
  position: relative;
  z-index: 2;
  background: rgba(17, 17, 17, 0.82);
  backdrop-filter: blur(12px);
}
.home-fold .hero img.hero-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform-origin: 58% 42%;
  will-change: transform;
  animation: hero-kenburns 22s cubic-bezier(0.45, 0.05, 0.55, 0.95) infinite alternate;
}
@keyframes hero-kenburns {
  0% { transform: scale(1.06) translate3d(0, 0, 0); }
  50% { transform: scale(1.18) translate3d(-3.2%, 2.2%, 0); }
  100% { transform: scale(1.1) translate3d(2.8%, -1.8%, 0); }
}

.home .site-header {
  background: transparent;
  border-bottom-color: rgba(255, 255, 255, 0.16);
  color: #fff;
}
.home .site-header .logo-block img {
  filter: brightness(0) invert(1);
  width: 168px;
  height: 48px;
}
.home .site-header .nav-links a { color: rgba(255, 255, 255, 0.9); }
.home .site-header .nav-links a.is-active,
.home .site-header .nav-links .current-menu-item > a,
.home .site-header .nav-links .current_page_item > a {
  color: var(--color-brand);
}
.home .site-header .icon-btn img { filter: invert(1); }
.home .site-header .menu-bars span { background: #fff; }
.home .site-header .header-rule { background: rgba(255, 255, 255, 0.35); }
.home .site-header .lang-toggle a { color: rgba(255, 255, 255, 0.65); }
.home .site-header .lang-toggle a.is-active { color: #fff; }

.home .site-header.is-solid {
  background: #fff;
  border-bottom-color: var(--color-line);
  color: var(--color-ink);
}
.home .site-header.is-solid .logo-block img,
.home .site-header.is-solid .icon-btn img { filter: none; }
.home .site-header.is-solid .nav-links a { color: var(--color-ink); }
.home .site-header.is-solid .nav-links a.is-active,
.home .site-header.is-solid .nav-links .current-menu-item > a,
.home .site-header.is-solid .nav-links .current_page_item > a {
  color: var(--color-brand);
}
.home .site-header.is-solid .menu-bars span { background: var(--color-ink); }
.home .site-header.is-solid .header-rule { background: var(--color-line-strong); }
.home .site-header.is-solid .lang-toggle a { color: var(--color-muted); }
.home .site-header.is-solid .lang-toggle a.is-active { color: var(--color-ink); }

.promise-bar {
  background: var(--color-ink);
  color: var(--color-cream);
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 24px var(--space-gutter);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.promise-item { display: flex; align-items: center; gap: 12px; }
.promise-item img { width: 20px; height: 20px; }

.section { padding: 100px var(--space-gutter); }
.section-cream { background: var(--color-cream); }
.section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  margin-bottom: 48px;
}
.section-header h2,
.page-title,
.display {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 36px;
  line-height: 1.15;
  margin: 12px 0 0;
}
.stack-title { margin-bottom: 48px; }

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

.collection-card img.cover {
  width: 100%;
  aspect-ratio: 296 / 380;
  object-fit: cover;
  border-radius: var(--radius);
}
.collection-card h3 {
  font-family: var(--font-display);
  font-size: 20px;
  margin: 20px 0 6px;
}
.collection-card p { color: var(--color-muted); font-size: 14px; margin: 0 0 12px; }

.product-card {
  background: var(--color-cream);
  padding: 16px;
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.product-card .media {
  aspect-ratio: 264 / 260;
  background: #fff;
  overflow: hidden;
  border-radius: var(--radius);
}
.product-card .media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 12px;
}
.shop-catalog .product-card {
  background: transparent;
  padding: 0;
  border-radius: 0;
}
.shop-catalog .product-card .media {
  position: relative;
  aspect-ratio: 900 / 1200;
  background: var(--product-plate);
  border-radius: 0;
}
.shop-catalog .product-card .media img {
  padding: 0;
  object-fit: contain;
}
.shop-catalog .product-card .media img.media-hover {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.28s ease;
  pointer-events: none;
}
@media (hover: hover) and (prefers-reduced-motion: no-preference) {
  .shop-catalog .product-card .media.has-hover:hover img.media-hover,
  .shop-catalog .product-card .media.has-hover:focus-visible img.media-hover {
    opacity: 1;
  }
}
.shop-catalog .product-card .media:hover,
.shop-catalog .product-card .media:focus-visible,
.shop-catalog .product-card a:focus-visible,
.shop-catalog .product-card button:focus-visible {
  outline: none;
  box-shadow: none;
}
.shop-catalog .product-card a:focus-visible,
.shop-catalog .product-card button:focus-visible {
  box-shadow: 0 0 0 3px rgba(17, 17, 17, 0.28);
}
.product-flag {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  margin: 0;
  padding: 0;
  border: 0;
  background: none;
  color: var(--color-ink);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  pointer-events: none;
}
.shop-catalog .product-card .price {
  color: var(--color-ink);
}
.shop-catalog .product-card .price s,
.shop-catalog .product-card .price del {
  color: var(--color-quiet);
  text-decoration: line-through;
}
.shop-catalog .product-card .price ins {
  color: var(--color-ink);
  background: none;
  text-decoration: none;
  font-weight: 600;
}
.shop-catalog .product-card .btn-ghost {
  background: transparent;
  color: var(--color-ink);
  border: 1px solid var(--color-ink);
}
.shop-catalog .product-card .btn-ghost:hover {
  background: var(--color-ink);
  color: #fff;
}
.product-card .media.is-placeholder {
  position: relative;
}
.product-card .media.is-placeholder::after {
  content: attr(data-photo-note);
  position: absolute;
  left: 8px;
  right: 8px;
  bottom: 8px;
  font-size: 12px;
  line-height: 1.35;
  color: var(--color-ink);
  background: rgba(255, 255, 255, 0.94);
  padding: 8px 10px;
}
.product-card .btn-ghost {
  background: #fff;
  border-width: 1.5px;
  font-size: 13px;
}
.product-card .meta {
  font-size: 13px;
  color: var(--color-muted);
  margin: 0;
}
.price-caption {
  font-size: 13px;
  color: var(--color-muted);
  margin: 8px 0 0;
}
.product-card h3 {
  font-family: var(--font-display);
  font-size: 18px;
  margin: 0;
}
.price-row { display: flex; justify-content: space-between; align-items: center; }
.price { font-weight: 600; font-size: 16px; }
.price s { color: var(--color-quiet); font-size: 13px; font-weight: 500; margin-left: 8px; }
.swatches { display: flex; gap: 6px; }
.swatch {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 1px solid rgba(0,0,0,0.15);
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center;
}
.split img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: var(--radius);
}

.tech-item { display: flex; gap: 16px; margin-bottom: 24px; }
.icon-badge {
  width: 48px;
  height: 48px;
  border-radius: 24px;
  background: #fff;
  border: 1px solid var(--color-line);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.icon-badge img { width: 20px; height: 20px; }
.tech-item h3 { font-family: var(--font-display); font-size: 18px; margin: 0 0 4px; }
.tech-item p { margin: 0; color: var(--color-muted); font-size: 14px; }

.size-row {
  display: flex;
  justify-content: center;
  gap: 48px;
  margin: 48px 0;
}
.size-col {
  width: 296px;
  background: var(--color-cream);
  padding: 24px;
  text-align: center;
  border-radius: var(--radius);
}
.silhouette {
  height: 240px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.luggage-shape {
  background: var(--color-ink);
  opacity: 0.08;
  border-radius: 6px;
}
.size-col h3 { font-family: var(--font-display); font-size: 24px; margin: 24px 0 8px; }
.size-col h3 span { font-weight: 400; font-size: 16px; color: var(--color-muted); }
.size-col p { margin: 4px 0; color: var(--color-muted); font-size: 14px; }
.size-col .accent { color: var(--color-brand); font-weight: 600; }

.heritage h2 { font-size: 42px; font-weight: 800; line-height: 1.1; }
.heritage p { color: var(--color-muted); font-size: 16px; line-height: 1.6; }

.hero-brand { min-height: min(72vh, 640px); }
.hero-brand .hero-bg { object-position: center 42%; }
.hero-brand::after {
  background: linear-gradient(90deg, rgba(0,0,0,0.62) 0%, rgba(0,0,0,0.28) 48%, rgba(0,0,0,0.18) 100%);
}
.brand-origin h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 800;
  line-height: 1.1;
  margin: 0 0 12px;
  text-wrap: balance;
}
.brand-origin .lede {
  font-size: 18px;
  color: var(--color-ink);
  margin: 0 0 32px;
  max-width: 36ch;
}
.brand-origin h3 {
  font-family: var(--font-display);
  font-size: 22px;
  margin: 0 0 12px;
}
.brand-origin p { max-width: 62ch; }
.awards-head { max-width: 62ch; margin-bottom: 40px; }
.awards-head h2 { margin-top: 0; }
.awards-head > p { color: var(--color-muted); line-height: 1.7; }
.time-item h3 {
  font-family: var(--font-display);
  font-size: 22px;
  margin: 0 0 12px;
}
.time-item p { margin: 0; color: var(--color-muted); line-height: 1.7; }
.time-item strong {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.03em;
}
.award-card {
  background: #fff;
  padding: 32px;
  border-radius: var(--radius);
  text-align: left;
}
.award-card h3 {
  font-family: var(--font-display);
  font-size: 20px;
  margin: 0 0 12px;
}
.award-card p {
  margin: 0;
  color: var(--color-muted);
  font-size: 15px;
  line-height: 1.65;
}
.brand-proof {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--color-brand);
  margin: 8px 0 16px;
}
.brand-quote {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.6vw, 32px);
  font-weight: 500;
  line-height: 1.35;
  max-width: 22em;
  margin: 48px 0 32px;
  text-wrap: pretty;
}

.article-card > img,
.article-card > a:not(.text-link) img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: var(--radius);
}
.article-meta {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  margin: 20px 0 12px;
}
.kicker { color: var(--color-brand); font-weight: 700; text-transform: uppercase; }
.article-card h3 { font-family: var(--font-display); font-size: 20px; line-height: 1.3; margin: 0 0 12px; }

.store-banner {
  background: var(--color-cream);
  border-block: 1px solid var(--color-line);
  padding: 64px var(--space-gutter);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}
.store-banner-copy { display: flex; gap: 24px; align-items: center; }
.pin-circle {
  width: 56px;
  height: 56px;
  border-radius: 28px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.pin-circle img { width: 24px; height: 24px; }
.store-banner h2 { font-family: var(--font-display); font-size: 24px; margin: 0 0 6px; }
.store-banner p { margin: 0; color: var(--color-muted); }

.service-card {
  background: var(--color-cream);
  padding: 32px;
  border-radius: var(--radius);
}
.service-card img { width: 32px; height: 32px; }
.service-card h3 { font-family: var(--font-display); font-size: 20px; margin: 16px 0 8px; }
.service-card p { color: var(--color-muted); font-size: 14px; margin: 0; }
.fine-print { text-align: center; color: var(--color-quiet); font-size: 12px; margin: 64px 0 0; }

.newsletter {
  background: var(--color-ink);
  color: var(--color-cream);
  text-align: center;
  padding: 120px var(--space-gutter);
}
.newsletter h2 { font-family: var(--font-display); font-size: 32px; margin: 0 0 12px; }
.newsletter p { color: var(--color-quiet); margin: 0 0 32px; }
.newsletter-form {
  display: flex;
  gap: 12px;
  max-width: 624px;
  margin: 0 auto;
}
.newsletter-form input {
  flex: 1;
  min-height: 50px;
  border: 0;
  border-radius: var(--radius);
  padding: 16px 20px;
}
.form-note { margin-top: 12px; font-size: 13px; color: #b8f0c4; }

.site-footer {
  background: var(--color-cream);
  padding: 100px var(--space-gutter) 48px;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 32px;
}
.site-footer p.blurb { color: var(--color-muted); font-size: 14px; }
.footer-title {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  margin: 0 0 16px;
}
.footer-links { display: flex; flex-direction: column; gap: 12px; }
.footer-links a { color: var(--color-muted); font-size: 14px; overflow-wrap: anywhere; }
.footer-links a:hover { color: var(--color-ink); }
.socials { display: flex; gap: 16px; }
.socials a, .pay-badge {
  width: 36px;
  height: 32px;
  border: 1px solid var(--color-line-strong);
  background: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
}
.socials img { width: 18px; height: 18px; }
.pay-row { display: flex; gap: 8px; margin-top: 12px; }
.pay-badge { width: 48px; height: 28px; border-color: var(--color-line); }
.pay-badge img { width: 16px; height: 16px; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-top: 64px;
  padding-top: 24px;
  border-top: 1px solid var(--color-line);
  font-size: 12px;
  color: var(--color-muted);
}
.legal { display: flex; gap: 24px; }

.crumbs { font-size: 17px; color: var(--color-muted); padding: 24px 0 0; }
.crumbs a { color: var(--color-muted); }
.shop-intro {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 32px;
  padding: 28px var(--space-gutter) 20px;
}
.shop-intro .page-title { margin: 0 0 8px; }
.shop-lead {
  max-width: 40rem;
  margin: 0;
  color: var(--color-muted);
  font-size: 16px;
  line-height: 1.5;
}
.shop-intro-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
  flex-shrink: 0;
}
.shop-intro-meta [data-result-count] {
  margin: 0;
  font-size: 14px;
  font-weight: 600;
}
.page-hero { padding: 80px var(--space-gutter) 40px; text-align: center; }
.page-hero.left { text-align: left; }

.shop-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 48px;
  padding: 100px var(--space-gutter);
}
.filters h2 { font-size: 20px; margin: 0; }
.filter-head { display: flex; justify-content: space-between; align-items: center; gap: 16px; margin-bottom: 8px; }
.filter-head button { font-size: 13px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.04em; color: var(--color-brand); }
.filter-section { border-top: 1px solid var(--color-line); }
.filter-section > summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  list-style: none;
  padding: 18px 0;
  font-size: 18px;
  font-weight: 600;
}
.filter-section > summary::-webkit-details-marker { display: none; }
.filter-section > summary::after {
  content: "+";
  font-weight: 400;
  color: var(--color-muted);
}
.filter-section[open] > summary::after { content: "–"; }
.filter-section[open] { padding-bottom: 12px; }
.filter-section h3 { font-size: 18px; margin: 0 0 16px; }
.check { display: flex; align-items: center; gap: 12px; margin: 8px 0; font-size: 16px; }
.check input { width: 16px; height: 16px; flex-shrink: 0; accent-color: var(--color-ink); }
.check-label { flex: 1; }
.facet-count {
  margin-left: auto;
  color: var(--color-quiet);
  font-size: 13px;
  font-variant-numeric: tabular-nums;
}
.count { margin-left: auto; color: var(--color-quiet); font-size: 16px; }
.swatch-lg {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 1px solid var(--color-line);
}
.toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.shop-mobile-bar { display: none; }
.filters [data-close-filters],
.filters [data-apply-filters] { display: none; }
.filters-actions { display: none; }
.filter-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 16px;
}
.filter-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 36px;
  padding: 4px 12px;
  border: 1px solid var(--color-line);
  border-radius: 999px;
  font-size: 13px;
  background: #fff;
}
.filter-chip:hover { border-color: var(--color-ink); }
.zero-results {
  grid-column: 1 / -1;
  padding: 64px 16px;
  text-align: center;
  background: var(--color-cream);
  border-radius: var(--radius);
}
.zero-results p {
  margin: 0 0 20px;
  color: var(--color-ink);
  font-size: 18px;
  font-weight: 600;
}
.catalog-more {
  grid-column: 1 / -1;
  margin: 8px 0 0;
  text-align: center;
}
.photo-note {
  font-size: 13px;
  color: var(--color-muted);
  margin: 8px 0 0;
}
.variation-status {
  margin: 16px 0;
  padding: 12px 16px;
  background: var(--color-cream);
  font-size: 14px;
}
.socials a {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

.pdp {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(min(100%, 360px), 1fr);
  gap: clamp(24px, 4vw, 48px);
  padding: 24px var(--space-gutter) 80px;
  width: 100%;
  max-width: 100%;
}
.pdp-main {
  width: 100%;
  height: auto;
  max-height: min(72vh, 640px);
  aspect-ratio: 696 / 600;
  object-fit: contain;
  background: var(--color-cream);
  border-radius: var(--radius);
}
.thumbs { display: grid; grid-template-columns: repeat(auto-fit, minmax(72px, 1fr)); gap: 12px; margin-top: 20px; }
.thumbs button { padding: 0; border: 2px solid transparent; }
.thumbs button.is-active { border-color: var(--color-ink); }
.thumbs img { width: 100%; height: 100px; object-fit: cover; }
.pdp-meta .price { font-size: 35px; }
.pdp-meta s { font-size: 18px; }
.off { color: var(--color-brand); font-size: 16px; font-weight: 600; margin-left: 8px; }
.pdp-desc { color: var(--color-muted); margin: 24px 0; }
.picker { margin: 24px 0; }
.picker-label { display: flex; justify-content: space-between; font-size: 18px; margin-bottom: 12px; }
.size-opts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.size-opts button {
  border: 1px solid var(--color-line);
  min-height: 62px;
  padding: 8px;
  text-align: left;
}
.size-opts button.is-active { border-color: var(--color-ink); box-shadow: inset 0 0 0 1px var(--color-ink); }
.buy-row { display: flex; gap: 12px; }
.qty {
  display: flex;
  align-items: center;
  border: 1px solid var(--color-line);
  min-width: 88px;
  height: 48px;
  justify-content: space-between;
  padding: 0 12px;
}
.qty img { width: 12px; height: 12px; }
.buy-row .btn { flex: 1; }
.service-row { display: flex; gap: 16px; margin-top: 24px; font-size: 13px; color: var(--color-muted); flex-wrap: wrap; }
.service-row span, .service-row a { display: flex; align-items: center; gap: 8px; }
.service-row img { width: 16px; height: 16px; }

.accordion { padding: 0 var(--space-gutter) 80px; }
.accordion details {
  border-bottom: 1px solid var(--color-line);
}
.accordion summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 73px;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  cursor: pointer;
  list-style: none;
}
.accordion summary::-webkit-details-marker { display: none; }
.accordion .body { padding: 0 0 24px; color: var(--color-muted); }
.spec-table { width: 100%; border-collapse: collapse; }
.spec-table th, .spec-table td { border-bottom: 1px solid var(--color-line); padding: 12px 8px; text-align: left; }

.cart-layout, .checkout-layout {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr;
  gap: 48px;
  padding: 24px var(--space-gutter) 80px;
}
.cart-item {
  display: grid;
  grid-template-columns: 100px 1fr auto;
  gap: 24px;
  padding: 24px 0;
  border-bottom: 1px solid var(--color-line);
}
.cart-item .cart-thumb { width: 100px; height: 120px; object-fit: cover; }
.cart-item .qty img,
.cart-item button img { width: 12px; height: 12px; object-fit: contain; }
.summary {
  background: var(--color-cream);
  padding: 32px;
  height: fit-content;
}
.summary h2 { font-family: var(--font-display); margin-top: 0; }
.summary-row { display: flex; justify-content: space-between; margin: 12px 0; }
.summary-row.total { font-size: 20px; font-weight: 700; border-top: 1px solid var(--color-line); padding-top: 16px; }
.sim-note { font-size: 13px; color: var(--color-brand); }

.checkout-header { justify-content: space-between; }
.steps {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 24px var(--space-gutter) 40px;
  font-size: 14px;
}
.step { display: flex; align-items: center; gap: 8px; color: var(--color-quiet); }
.step.is-active { color: var(--color-ink); font-weight: 600; }
.step-num {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--color-line);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
}
.step.is-active .step-num { background: var(--color-brand); color: #fff; }
.field { display: flex; flex-direction: column; gap: 8px; margin-bottom: 16px; }
.field label { font-size: 14px; font-weight: 600; }
.field input, .field select, .field textarea {
  min-height: 48px;
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  padding: 12px 16px;
  background: #fff;
}
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.mini-footer {
  padding: 32px var(--space-gutter);
  font-size: 12px;
  color: var(--color-muted);
  border-top: 1px solid var(--color-line);
}

.tabs { display: flex; gap: 32px; padding: 24px var(--space-gutter); border-bottom: 1px solid var(--color-line); }
.tabs button { font-size: 18px; color: var(--color-muted); padding-bottom: 8px; border-bottom: 2px solid transparent; }
.tabs button.is-active { color: var(--color-ink); font-weight: 700; border-color: var(--color-brand); }

.journal-feature {
  display: grid;
  grid-template-columns: 640px 1fr;
  gap: 48px;
  padding: 60px var(--space-gutter);
  align-items: center;
}
.journal-feature > img { width: 100%; height: 420px; object-fit: cover; }

.locator {
  display: grid;
  grid-template-columns: 648px 1fr;
  min-height: 900px;
}
.store-search { padding: 24px; border-bottom: 1px solid var(--color-line); }
.store-search input { width: 100%; min-height: 42px; border: 1px solid var(--color-line); padding: 0 16px 0 44px; }
.store-item {
  padding: 24px;
  border-bottom: 1px solid var(--color-line);
  cursor: pointer;
}
.store-item.is-active { background: var(--color-cream); }
.map-panel {
  background: #eceae4;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-muted);
  text-align: center;
  padding: 40px;
}

.contact-channels { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.channel-card { border: 1px solid var(--color-line); padding: 32px 24px; min-height: 220px; }
.channel-card h3 { font-family: var(--font-display); font-size: 20px; display: flex; gap: 8px; align-items: center; }
.form-grid { max-width: 752px; margin: 0 auto; }

.warranty-tiers { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.tier-card { background: var(--color-cream); padding: 40px; }
.coverage { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.ok { color: #1f7a3a; }
.no { color: var(--color-brand); }

.error-page { text-align: center; padding: 80px var(--space-gutter) 120px; }
.error-page .code {
  font-family: var(--font-display);
  font-size: 151px;
  line-height: 1;
  margin: 0;
}
.search-bar { display: flex; gap: 12px; max-width: 500px; margin: 32px auto; }
.search-bar input { flex: 1; min-height: 50px; border: 1px solid var(--color-line); padding: 0 20px; }

.policy { max-width: 860px; }
.policy h2 { font-family: var(--font-display); font-size: 24px; }
.policy p, .policy li { color: var(--color-muted); line-height: 1.7; }

.modal {
  position: fixed;
  inset: 0;
  background: rgba(17,17,17,0.45);
  display: none;
  z-index: 50;
}
.modal.is-open { display: block; }
.modal-panel {
  position: absolute;
  top: 80px;
  right: 80px;
  width: min(480px, calc(100% - 32px));
  background: #fff;
  padding: 24px;
  border-radius: var(--radius);
}
.drawer {
  position: fixed;
  inset: 0 40% 0 0;
  background: #fff;
  z-index: 60;
  transform: translateX(-100%);
  transition: transform 0.25s ease;
  padding: 24px;
  overflow: auto;
}
.drawer.is-open { transform: none; }
.drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(17,17,17,0.4);
  display: none;
  z-index: 55;
}
.drawer-backdrop.is-open { display: block; }

.notice {
  padding: 12px 16px;
  background: var(--color-cream);
  border-left: 3px solid var(--color-brand);
  margin: 16px 0;
}
.extension-flag {
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-quiet);
}

.timeline { display: grid; gap: 40px; }
.time-item { display: grid; grid-template-columns: 120px 1fr; gap: 24px; align-items: start; }
.awards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }

@media (max-width: 1200px) {
  :root { --space-gutter: 32px; }
  .grid-4, .grid-3, .product-grid, .contact-channels { grid-template-columns: repeat(2, 1fr); }
  .shop-layout, .pdp, .cart-layout, .checkout-layout, .split, .journal-feature, .locator, .footer-grid, .warranty-tiers {
    grid-template-columns: 1fr;
  }
  .nav-links { display: none; }
  .menu-toggle { display: inline-flex; }
  .promise-bar { flex-wrap: wrap; }
  .size-row { flex-wrap: wrap; }
  .hero img.hero-bg { object-position: 72% center; }
  .hero-brand img.hero-bg { object-position: center 40%; }
  .home-fold .hero img.hero-bg { object-position: 72% center; }
  .shop-mobile-bar {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
  }
  .filters [data-close-filters],
  .filters [data-apply-filters] { display: inline-flex; }
  .filters-actions {
    display: flex;
    flex-direction: column;
    gap: 8px;
    position: sticky;
    bottom: 0;
    padding: 16px 0 8px;
    background: #fff;
    border-top: 1px solid var(--color-line);
  }
  .filters-actions .btn { width: 100%; }
  .shop-layout > .filters {
    position: fixed;
    inset: 0 20% 0 0;
    background: #fff;
    z-index: 62;
    transform: translateX(-110%);
    transition: transform 0.25s ease;
    padding: 24px;
    overflow: auto;
    display: block;
    max-width: 420px;
  }
  .shop-layout > .filters.is-open { transform: none; }
  .checkout-layout .summary { order: -1; }
}

@media (max-width: 700px) {
  :root { --space-gutter: 20px; }
  .grid-4, .grid-3, .product-grid, .contact-channels, .coverage, .field-row { grid-template-columns: 1fr; }
  .section-header { flex-direction: column; align-items: flex-start; }
  .store-banner, .newsletter-form, .buy-row, .footer-bottom { flex-direction: column; }
  .logo-tag { display: none; }
  .header-actions { gap: 8px; }
  .error-page .code { font-size: 96px; }
  .drawer { inset: 0 0 0 0; }
  .shop-layout > .filters { inset: 0; max-width: none; }
  .hero { min-height: 360px; align-items: flex-end; }
  .hero img.hero-bg { object-position: 80% 40%; }
  .hero-brand { min-height: 52vh; }
  .hero-brand img.hero-bg { object-position: center 38%; }
  .time-item { grid-template-columns: 1fr; gap: 8px; }
  .awards { grid-template-columns: 1fr; }
  .shop-intro { flex-direction: column; align-items: flex-start; padding-top: 20px; }
  .shop-intro-meta { align-items: flex-start; }
  .home-fold .hero { padding-top: calc(var(--header-h) + 20px); }
  .home-fold .hero img.hero-bg { object-position: 80% 40%; }
  .home-fold .hero-copy h1 { font-size: clamp(26px, 8vw, 36px); }
  .home-fold .hero p { font-size: 15px; margin-bottom: 16px; }
  .home-fold .promise-bar { padding: 14px var(--space-gutter); font-size: 11px; gap: 10px 16px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; animation: none !important; }
  .home-fold .hero img.hero-bg { transform: none; }
}

body.archive.woocommerce #main.section {
  padding-top: 32px;
  padding-bottom: 80px;
}

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