:root {
  --ink: #161616;
  --muted: #6e6e6e;
  --paper: #fafafa;
  --soft: #f1f0ee;
  --line: #e4e2de;
  --accent: #161616;
  --gold: #8c7350;
  --display: "Cormorant Garamond", "Times New Roman", serif;
  --sans: "Outfit", "Helvetica Neue", Arial, sans-serif;
  --radius: 0;
  --ease: cubic-bezier(.22, 1, .36, 1);
}

html[data-theme="dark"] {
  --ink: #f3f2ef;
  --muted: #a3a09a;
  --paper: #0e0e0e;
  --soft: #181816;
  --line: #2a2926;
  --accent: #f3f2ef;
  --gold: #c4a574;
  color-scheme: dark;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(1200px 500px at 12% -10%, rgba(140, 115, 80, .06), transparent 55%),
    radial-gradient(900px 420px at 100% 0%, rgba(22, 22, 22, .04), transparent 50%),
    var(--paper);
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: .01em;
  -webkit-font-smoothing: antialiased;
  transition: color .2s ease, background .2s ease;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; color: inherit; }
[hidden] { display: none !important; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.shell {
  width: 100%;
  max-width: 1400px;
  margin-inline: auto;
  padding-inline: clamp(20px, 3.5vw, 40px);
}
.full-bleed {
  width: 100%;
  max-width: none;
  margin-inline: 0;
  padding-inline: 0;
}

.btn-dark, .btn-light {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 148px;
  padding: 13px 22px;
  border: 1px solid var(--ink);
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  transition: background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease), transform .25s var(--ease);
}
.btn-dark { color: #fff; background: var(--ink); }
.btn-light { color: var(--ink); background: transparent; }
.btn-dark:hover { transform: translateY(-1px); }
.btn-light:hover { background: var(--ink); color: #fff; }
html[data-theme="dark"] .btn-dark { color: #111; background: #f5f5f5; border-color: #f5f5f5; }
html[data-theme="dark"] .btn-light { color: #f5f5f5; background: transparent; border-color: #f5f5f5; }

.utility-bar {
  width: 100%;
  max-width: none;
  background: #111;
  color: #fff;
  font-size: 11px;
}
.utility-inner {
  min-height: 36px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 16px;
}
.utility-inner p { margin: 0; text-align: center; letter-spacing: .04em; }
.utility-inner a { font-weight: 500; }
.utility-actions {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 10px;
}
.sell-now {
  padding: 6px 12px;
  border: 1px solid rgba(255,255,255,.45);
  background: transparent;
  color: #fff;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: 10px;
  font-weight: 500;
}
.sell-now:hover { background: #fff; color: #111; }
#theme-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 8px;
  border: 1px solid rgba(255,255,255,.35);
  background: transparent;
  color: #fff;
  cursor: pointer;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .08em;
}
#theme-toggle .theme-icon { font-size: 14px; }
.lang-switch { position: relative; z-index: 50; }
.lang-switch-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-width: 72px;
  padding: 4px 8px;
  border: 1px solid rgba(255,255,255,.35);
  background: transparent;
  color: #fff;
  cursor: pointer;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .04em;
}
.lang-switch-btn .lang-caret { font-size: 9px; opacity: .85; }
.lang-menu {
  position: absolute;
  top: calc(100% + 4px);
  right: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  min-width: 168px;
  max-height: min(70vh, 420px);
  overflow-y: auto;
  border: 1px solid var(--line);
  background: #fff;
  color: #111;
  box-shadow: 0 8px 24px rgba(0,0,0,.12);
  z-index: 80;
}
/* Hide Google Translate top banner / attribution chrome */
.goog-te-banner-frame,
.skiptranslate,
#goog-gt-tt,
.goog-te-balloon-frame { display: none !important; }
body { top: 0 !important; }
.goog-te-gadget { font-size: 0 !important; }
#google_translate_element { display: none !important; }
.lang-menu li {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  cursor: pointer;
  font-size: 12px;
  font-weight: 600;
  border-top: 1px solid #f0f0f0;
}
.lang-menu li:first-child { border-top: 0; }
.lang-menu li:hover,
.lang-menu li[aria-selected="true"] { background: #f3f3f3; }
.lang-flag {
  width: 18px;
  height: 12px;
  display: inline-block;
  border: 1px solid rgba(0,0,0,.12);
  background-size: cover;
  background-position: center;
  flex-shrink: 0;
}
.lang-flag[data-flag="en"] {
  background-color: #b22234;
  background-image:
    linear-gradient(#3c3b6e, #3c3b6e),
    repeating-linear-gradient(
      to bottom,
      #b22234 0 1.5px,
      #fff 1.5px 3px
    );
  background-size: 40% 54%, 100% 100%;
  background-position: left top, 0 0;
  background-repeat: no-repeat;
}
.lang-flag[data-flag="fr"] { background-image: linear-gradient(90deg, #002395 0 33.33%, #fff 33.33% 66.66%, #ed2939 66.66% 100%); }
.lang-flag[data-flag="de"] { background-image: linear-gradient(#000 0 33.33%, #dd0000 33.33% 66.66%, #ffce00 66.66% 100%); }
.lang-flag[data-flag="es"] { background-image: linear-gradient(#aa151b 0 25%, #f1bf00 25% 75%, #aa151b 75% 100%); }
.lang-flag[data-flag="pt"] { background-image: linear-gradient(90deg, #006600 0 40%, #ff0000 40% 100%); }
.lang-flag[data-flag="ar"] { background-image: linear-gradient(#00732f 0 33.33%, #fff 33.33% 66.66%, #000 66.66% 100%); }
.lang-flag[data-flag="zh"] { background-image: linear-gradient(#de2910,#de2910); }
.lang-flag[data-flag="ru"] { background-image: linear-gradient(#fff 0 33.33%, #0039a6 33.33% 66.66%, #d52b1e 66.66% 100%); }
.lang-flag[data-flag="ja"] { background-color: #fff; background-image: radial-gradient(circle at 50% 50%, #bc002d 0 38%, transparent 39%); }
.lang-flag[data-flag="ko"] { background-image: linear-gradient(#fff,#fff); }
.lang-flag[data-flag="it"] { background-image: linear-gradient(90deg, #009246 0 33.33%, #fff 33.33% 66.66%, #ce2b37 66.66% 100%); }
.lang-flag[data-flag="nl"] { background-image: linear-gradient(#ae1c28 0 33.33%, #fff 33.33% 66.66%, #21468b 66.66% 100%); }
.lang-flag[data-flag="tr"] { background-color: #e30a17; }
.lang-flag[data-flag="hi"] { background-image: linear-gradient(#ff9933 0 33.33%, #fff 33.33% 66.66%, #138808 66.66% 100%); }
.lang-flag[data-flag="th"] { background-image: linear-gradient(#a51931 0 16%, #f4f5f8 16% 33%, #2d2a4a 33% 67%, #f4f5f8 67% 84%, #a51931 84% 100%); }
.lang-flag[data-flag="vi"] { background-color: #da251d; }
.lang-flag[data-flag="id"] { background-image: linear-gradient(#ff0000 0 50%, #fff 50% 100%); }
.lang-flag[data-flag="pl"] { background-image: linear-gradient(#fff 0 50%, #dc143c 50% 100%); }
.lang-flag[data-flag="uk"] { background-image: linear-gradient(#0057b7 0 50%, #ffd700 50% 100%); }
.lang-flag[data-flag="sv"] { background-color: #006aa7; }
.lang-flag[data-flag="he"] { background-color: #fff; }
.lang-flag[data-flag="fa"] { background-image: linear-gradient(#239f40 0 33.33%, #fff 33.33% 66.66%, #da0000 66.66% 100%); }
.lang-switch-btn .lang-flag { border-color: rgba(255,255,255,.35); }

.search-overlay {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  align-items: start;
  justify-items: center;
  padding: 12vh 20px 40px;
  background: rgba(0,0,0,.45);
}
.search-overlay[hidden] { display: none !important; }
.search-panel {
  position: relative;
  width: min(640px, 100%);
  padding: 28px 28px 24px;
  background: var(--paper);
  border: 1px solid var(--line);
  box-shadow: 0 18px 50px rgba(0,0,0,.18);
}
.search-close {
  position: absolute;
  top: 10px;
  right: 14px;
  border: 0;
  background: transparent;
  cursor: pointer;
  color: var(--ink);
  font-size: 28px;
  line-height: 1;
}
.search-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  margin-bottom: 22px;
}
.search-form input {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--line);
  outline: 0;
  background: var(--soft);
  color: var(--ink);
  font-size: 16px;
}
.search-keywords p {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.search-keyword-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.search-keyword {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border: 1px solid var(--line);
  background: var(--soft);
  color: var(--ink);
  font-size: 13px;
  font-weight: 500;
}
.search-keyword:hover { border-color: var(--ink); }
body.search-open { overflow: hidden; }

.site-chrome {
  position: sticky;
  top: 0;
  z-index: 100;
  width: 100%;
}
.site-header {
  position: relative;
  width: 100%;
  max-width: none;
  background: color-mix(in srgb, var(--paper) 88%, transparent);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.header-row {
  min-height: 84px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
}
.brand {
  display: inline-flex;
  align-items: center;
  font-family: var(--sans);
  font-size: clamp(0.95rem, 1.35vw, 1.15rem);
  font-weight: 300;
  letter-spacing: .04em;
  text-transform: uppercase;
  line-height: 1;
  white-space: nowrap;
}
@media (max-width: 1100px) {
  .brand {
    font-size: clamp(0.72rem, 1.6vw, 0.95rem);
    letter-spacing: .02em;
  }
}
.main-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  gap: 22px;
  white-space: nowrap;
  min-height: 40px;
}
.main-nav a,
.nav-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  height: 22px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .12em;
  line-height: 1;
  text-transform: uppercase;
  opacity: .78;
  transition: opacity .2s ease;
}
.main-nav a:hover,
.nav-link:hover,
.nav-link.active { opacity: 1; }
.nav-link-text {
  display: block;
  line-height: 1;
  font-size: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
}
.nav-link--hot {
  overflow: visible;
}
.nav-hot {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  padding: 1px 5px;
  border-radius: 3px;
  background: #ff7a00;
  color: #fff;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .04em;
  line-height: 1.35;
  text-transform: uppercase;
  pointer-events: none;
}
.nav-hot::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -4px;
  transform: translateX(-50%);
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid #ff7a00;
}
.main-nav a:hover, .main-nav a.active { text-decoration: underline; text-underline-offset: 6px; }
.header-actions { display: flex; align-items: center; gap: 10px; }
.header-actions button, .header-actions a {
  border: 0;
  background: transparent;
  cursor: pointer;
  font-size: 18px;
  line-height: 1;
  color: var(--ink);
}
.header-actions .header-icon {
  position: relative;
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}
.header-actions .header-icon svg {
  width: 24px;
  height: 24px;
  display: block;
}
.header-icon--bag .cart-count {
  position: absolute;
  top: 2px;
  right: 0;
  min-width: 16px;
  height: 16px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--paper);
  background: var(--ink);
  font-size: 9px;
  font-weight: 700;
  line-height: 1;
}

.fp-hero {
  position: relative;
  width: 100%;
  min-height: min(72vh, 720px);
  aspect-ratio: auto;
  max-height: none;
  overflow: hidden;
  background: #1a1a1a;
}
.fp-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(10,10,10,.72) 0%, rgba(10,10,10,.35) 42%, rgba(10,10,10,.12) 100%),
    linear-gradient(180deg, transparent 55%, rgba(10,10,10,.35) 100%);
  pointer-events: none;
  z-index: 1;
}
.fp-hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
  transform: scale(1.02);
  animation: heroDrift 18s var(--ease) infinite alternate;
}
@keyframes heroDrift {
  from { transform: scale(1.02) translate3d(0, 0, 0); }
  to { transform: scale(1.06) translate3d(-1.5%, -1%, 0); }
}
.fp-hero-copy {
  position: absolute;
  z-index: 2;
  left: clamp(6%, 8vw, 10%);
  right: auto;
  top: 50%;
  transform: translateY(-50%);
  max-width: 520px;
  margin: 0;
  color: #fff;
  text-align: left;
  text-shadow: none;
  animation: fadeRise .9s var(--ease) both;
}
@keyframes fadeRise {
  from { opacity: 0; transform: translateY(calc(-50% + 18px)); }
  to { opacity: 1; transform: translateY(-50%); }
}
.fp-hero-brand {
  margin: 0 0 14px !important;
  font-family: var(--display);
  font-size: clamp(2rem, 4vw, 2.75rem) !important;
  font-weight: 500 !important;
  letter-spacing: .34em !important;
  text-transform: uppercase;
  line-height: 1;
}
.fp-hero-tag,
.fp-hero-copy p {
  margin: 0 0 12px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  opacity: .88;
}
.fp-hero-copy h1 {
  margin: 0 0 18px;
  font-family: var(--display);
  font-size: clamp(2.6rem, 5.5vw, 4.4rem);
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: .01em;
  text-transform: none;
}
.fp-hero-copy > a {
  display: inline-block;
  margin-bottom: 22px;
  border-bottom: 1px solid #fff;
  color: #fff;
  font-size: 14px;
}
.fp-hero-lead {
  margin: 0 0 28px;
  max-width: 420px;
  color: rgba(255,255,255,.88);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.65;
  letter-spacing: .01em;
  opacity: 1;
  text-transform: none;
}
.fp-hero-actions {
  display: flex;
  justify-content: flex-start;
  gap: 10px;
}
.fp-hero-actions .btn-dark {
  border-color: #fff;
  background: #fff;
  color: #111;
}
.fp-hero-actions .btn-dark:hover {
  background: transparent;
  color: #fff;
}
.fp-hero-actions .btn-light { border-color: #fff; background: rgba(255,255,255,.7); }

.fp-strip { width: 100%; background: #161616; color: #fff; }
.fp-strip-inner {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.fp-strip h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(1.45rem, 2.8vw, 2rem);
  font-weight: 500;
  letter-spacing: .08em;
}
.home-blog-wrap {
  padding: 36px 0 28px;
}
.home-blog-layout {
  align-items: start;
}
.home-blog-layout .blog-sidebar {
  position: sticky;
  top: 88px;
}
.home-blog {
  display: grid;
  gap: 40px;
  min-width: 0;
}
.home-blog-block-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
}
.home-blog-block-title {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(1.35rem, 2.2vw, 1.7rem);
  font-weight: 500;
  letter-spacing: .06em;
}
.home-blog-block-title a {
  text-decoration: none;
  color: var(--ink);
}
.home-blog-more {
  color: var(--muted);
  font-size: 11px;
  font-weight: 500;
  text-decoration: none;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.home-blog-more:hover { color: var(--ink); text-decoration: underline; }
.home-blog-empty {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 13px;
}
.home-blog-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 22px 16px;
}
.home-blog-card .blog-card-title {
  font-weight: 400;
  color: var(--ink);
  font-size: 13px;
  line-height: 1.45;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  max-height: calc(1.45em * 2);
}
.home-blog-card .blog-card-title:hover {
  color: var(--gold);
}
.home-blog-card .blog-card-excerpt {
  margin: 4px 0 0;
}
@media (max-width: 1200px) {
  .home-blog-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}
@media (max-width: 1100px) {
  .home-blog-layout { grid-template-columns: 1fr; }
  .home-blog-layout .blog-sidebar { position: static; }
  .home-blog-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (max-width: 700px) {
  .home-blog-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

.fp-archive, .fp-blazy {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 100%;
  max-width: 1440px;
  margin-inline: auto;
  padding-inline: 0;
  min-height: 420px;
}
.fp-archive-copy, .fp-blazy-copy {
  display: grid;
  align-content: center;
  justify-items: start;
  gap: 12px;
  padding: 56px clamp(24px, 6vw, 80px);
}
.fp-archive-copy > p:first-child {
  margin: 0;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.fp-archive-copy h2, .fp-blazy-copy h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 500;
  letter-spacing: .02em;
}
.fp-archive-copy p, .fp-blazy-copy p {
  margin: 0;
  max-width: 360px;
  color: #444;
  font-size: 15px;
  font-weight: 300;
  line-height: 1.65;
}
.fp-archive-copy small {
  color: #555;
  font-size: 11px;
}
.fp-archive-media, .fp-blazy-media { background: var(--soft); }
.fp-archive-media img, .fp-blazy-media img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}
.fp-archive { background: #eceae6; }
.fp-blazy { background: #e6ebef; }
.fp-blazy-copy { justify-items: center; text-align: center; }

.fp-values, .fp-collections, .fp-unicorns { padding: 80px 0; }
.fp-values header, .fp-collections > h2, .fp-unicorns header {
  margin-bottom: 32px;
}
.fp-values h2, .fp-collections h2, .fp-unicorns h2 {
  margin: 0 0 10px;
  font-family: var(--display);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 500;
  letter-spacing: .03em;
}
.fp-values header { text-align: center; }
.fp-values p, .fp-unicorns p { margin: 0; color: var(--muted); font-size: 14px; font-weight: 300; }
.fp-values header a { text-decoration: underline; text-underline-offset: 3px; }
.fp-unicorns a { text-decoration: underline; text-underline-offset: 3px; }
.home-shop-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 22px 16px;
  padding-bottom: 28px;
}
.home-shop-grid .product-card[hidden],
.home-top-clicks .product-card[hidden] {
  display: none !important;
}
.home-shop-more {
  display: flex;
  justify-content: center;
  margin-top: 8px;
}
.home-top-clicks {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px 22px;
  padding-bottom: 0;
}
.fp-collections header {
  text-align: center;
  margin-bottom: 28px;
}
.fp-collections header p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 300;
}
.fp-value-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
.fp-value-grid a {
  display: grid;
  gap: 10px;
  text-align: center;
}
.fp-value-grid img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  background: var(--soft);
  border-radius: 4px;
}
.fp-value-grid span {
  font-size: 13px;
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.fp-collection-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.fp-collection-grid img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  background: var(--soft);
  margin-bottom: 16px;
}
.fp-collection-grid h3 {
  margin: 0 0 6px;
  font-size: 18px;
  font-weight: 700;
}
.fp-collection-grid p {
  margin: 0 0 10px;
  color: var(--muted);
}
.fp-collection-grid article > a:last-child {
  font-size: 13px;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.fp-product-rail {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(220px, 1fr);
  gap: 18px;
  overflow-x: auto;
  padding-bottom: 8px;
  scroll-snap-type: x mandatory;
}
.product-card {
  min-width: 220px;
  scroll-snap-align: start;
}
.product-image {
  position: relative;
  display: block;
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--soft);
}
.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.product-card:hover .product-image img { transform: scale(1.03); }
.likes {
  position: absolute;
  top: 10px;
  right: 10px;
  padding: 4px 8px;
  border-radius: 999px;
  background: rgba(255,255,255,.9);
  color: #111;
  font-size: 11px;
}
.product-info { padding: 12px 0 8px; }
.product-category {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.product-info .brand {
  margin: 0 0 4px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .06em;
}
.product-info h3 {
  margin: 0;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.35;
}
.condition {
  margin: 6px 0;
  color: var(--muted);
  font-size: 12px;
}
.price-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
  font-size: 13px;
}
.price-row s { color: var(--muted); }
/* Listing cards: no Add to Bag — buy from product page */
.product-card .add-button { display: none !important; }
.add-button {
  width: 100%;
  margin-top: 8px;
  padding: 10px 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.add-button:hover { color: var(--paper); background: var(--ink); }
.add-button:disabled { opacity: .4; cursor: not-allowed; }

.fp-ways {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.fp-ways a {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  color: #fff;
}
.fp-ways img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(.55);
}
.fp-ways div {
  position: relative;
  z-index: 1;
  height: 100%;
  display: grid;
  place-content: center;
  text-align: center;
  gap: 8px;
}
.fp-ways span { font-size: 12px; letter-spacing: .16em; text-transform: uppercase; }
.fp-ways h2 { margin: 0; font-size: 42px; font-weight: 700; }
.fp-ways em { font-style: normal; text-decoration: underline; text-underline-offset: 5px; }

.service-strip {
  padding: 64px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.service-grid article {
  padding: 10px 28px;
  text-align: center;
  border-right: 1px solid var(--line);
}
.service-grid article:last-child { border-right: 0; }
.service-grid span { font-size: 22px; }
.service-grid h3 { margin: 12px 0 8px; font-size: 15px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.service-grid p { margin: 0 0 12px; color: var(--muted); font-size: 13px; }
.service-grid a { text-decoration: underline; text-underline-offset: 4px; font-size: 13px; }

.site-footer { padding: 56px 0 28px; color: #ddd; background: #111; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr repeat(3, 1fr);
  gap: 28px;
  padding-bottom: 36px;
}
.footer-newsletter h3, .footer-grid h4 {
  margin: 0 0 14px;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.footer-newsletter form {
  display: flex;
  margin-bottom: 18px;
  border: 1px solid #555;
}
.footer-newsletter input {
  flex: 1;
  padding: 12px;
  border: 0;
  outline: 0;
  background: transparent;
  color: #fff;
}
.footer-newsletter button {
  width: 42px;
  border: 0;
  background: transparent;
  color: #fff;
  cursor: pointer;
  font-size: 22px;
}
.footer-newsletter p { margin: 0 0 10px; color: #aaa; font-size: 12px; }
.socials { display: flex; gap: 8px; }
.socials span {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border: 1px solid #555;
  border-radius: 50%;
  font-size: 10px;
}
.footer-grid a {
  display: block;
  margin-bottom: 8px;
  color: #bbb;
  font-size: 12px;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 18px;
  border-top: 1px solid #2a2a2a;
  color: #888;
  font-size: 11px;
}
.footer-bottom div { display: flex; gap: 16px; }
.footer-bottom a { color: #888; }

.contact-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 90;
  display: grid;
  gap: 10px;
}
.contact-fab {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  color: #fff;
  box-shadow: 0 6px 18px rgba(0,0,0,.18);
  cursor: pointer;
  text-decoration: none;
}
.contact-fab svg { width: 24px; height: 24px; display: block; }
.contact-fab--wa { background: #25d366; }
.contact-fab--tg { background: #2aabee; }
.contact-fab--wx { background: #09b83e; }
.contact-fab--mail { background: #111; }
.contact-fab:hover { transform: translateY(-1px); }

.wechat-overlay {
  position: fixed;
  inset: 0;
  z-index: 130;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(0,0,0,.5);
}
.wechat-overlay[hidden] { display: none !important; }
.wechat-card {
  position: relative;
  width: min(320px, 100%);
  overflow: hidden;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 18px 50px rgba(0,0,0,.25);
  text-align: center;
}
.wechat-card header {
  margin: 0;
  padding: 14px 40px 14px 16px;
  background: #09b83e;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  text-align: left;
}
.wechat-close {
  position: absolute;
  top: 8px;
  right: 10px;
  border: 0;
  background: transparent;
  color: #fff;
  cursor: pointer;
  font-size: 28px;
  line-height: 1;
}
.wechat-card img {
  width: min(260px, 78%);
  height: auto;
  margin: 22px auto 10px;
}
.wechat-card p {
  margin: 0 0 22px;
  color: #888;
  font-size: 13px;
  line-height: 1.5;
}
.wechat-card small { color: #555; }

.mail-overlay {
  position: fixed;
  inset: 0;
  z-index: 130;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(0,0,0,.5);
}
.mail-overlay[hidden] { display: none !important; }
.mail-card {
  position: relative;
  width: min(440px, 100%);
  overflow: hidden;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 18px 50px rgba(0,0,0,.25);
}
.mail-card header {
  margin: 0;
  padding: 14px 44px 14px 18px;
  background: #111;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
}
.mail-close {
  position: absolute;
  top: 8px;
  right: 10px;
  border: 0;
  background: transparent;
  color: #fff;
  cursor: pointer;
  font-size: 28px;
  line-height: 1;
}
.mail-form {
  display: grid;
  gap: 12px;
  padding: 18px;
}
.mail-form label {
  display: grid;
  gap: 6px;
  color: #555;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.mail-form input,
.mail-form textarea {
  width: 100%;
  padding: 11px 12px;
  border: 1px solid #ddd;
  border-radius: 0;
  font: inherit;
  font-size: 14px;
  text-transform: none;
  letter-spacing: 0;
  color: #111;
  background: #fafafa;
}
.mail-form textarea { resize: vertical; min-height: 110px; }
.mail-honeypot {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
}
.mail-form .btn-dark { width: 100%; margin-top: 4px; }
.mail-status {
  margin: 0;
  min-height: 1.2em;
  font-size: 13px;
  color: #666;
}
.mail-status.is-ok { color: #1a7a3a; }
.mail-status.is-error { color: #b42318; }
body.mail-open,
body.wechat-open { overflow: hidden; }

.page-hero, .shop-header { padding: 56px 0 28px; }
.page-hero h1, .shop-header h1 {
  margin: 0;
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 700;
}
.shop-tools {
  display: grid;
  gap: 16px;
  margin: 18px 0 24px;
  justify-items: center;
}
.shop-layout {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  gap: 28px;
  align-items: start;
  margin-bottom: 48px;
}
.shop-sidebar {
  display: grid;
  gap: 8px;
  position: sticky;
  top: 108px;
  align-self: start;
  z-index: 20;
}
.shop-sidebar .shop-filter-list {
  max-height: none;
}
.shop-filter-block {
  border: 1px solid var(--line);
  background: var(--paper);
  padding: 0;
}
.shop-filter-block > summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 14px 10px;
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
}
.shop-filter-block > summary::-webkit-details-marker { display: none; }
.shop-filter-block > summary::after {
  content: "^";
  font-size: 12px;
  color: var(--muted);
  transform: translateY(1px);
}
.shop-filter-block:not([open]) > summary::after {
  content: "v";
}
.shop-filter-list {
  display: grid;
  gap: 8px;
  padding: 0 14px 14px;
}
.shop-filter-option {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 8px;
  align-items: center;
  color: var(--ink);
  font-size: 13px;
  cursor: pointer;
}
.shop-filter-option input {
  width: 15px;
  height: 15px;
  margin: 0;
  accent-color: #111;
}
.shop-filter-option em {
  color: var(--muted);
  font-style: normal;
  font-size: 12px;
}
.shop-price-custom {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 8px;
  align-items: center;
  margin-top: 6px;
}
.shop-price-custom input {
  width: 100%;
  min-width: 0;
  padding: 8px 10px;
  border: 1px solid var(--line);
  background: var(--soft);
  font-size: 12px;
}
.shop-price-custom button {
  border: 0;
  background: transparent;
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
  font-size: 12px;
  font-weight: 600;
  padding: 0 2px;
}
.shop-main { min-width: 0; }
.filters { display: flex; flex-wrap: wrap; gap: 10px; }
.filter {
  padding: 8px 12px;
  border: 1px solid transparent;
  background: transparent;
  cursor: pointer;
  color: var(--muted);
  font-size: 12px;
}
.filter.active, .filter:hover { border-color: var(--ink); color: var(--ink); }
.category-rail {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin: 0;
  padding: 14px 18px;
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, color-mix(in srgb, var(--soft) 70%, transparent), transparent),
    var(--paper);
  box-shadow: inset 0 1px 0 color-mix(in srgb, var(--paper) 80%, transparent);
}
.category-pill {
  appearance: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 9px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--paper);
  color: var(--muted);
  cursor: pointer;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  text-decoration: none;
  transition: color .18s ease, border-color .18s ease, background .18s ease, transform .18s ease;
}
.category-pill:hover {
  border-color: var(--ink);
  color: var(--ink);
  transform: translateY(-1px);
}
.category-pill.active {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--paper);
  box-shadow: 0 8px 18px color-mix(in srgb, var(--ink) 16%, transparent);
}
.search-box {
  display: flex;
  align-items: center;
  width: min(320px, 100%);
  border-bottom: 1px solid var(--ink);
}
.search-box input {
  width: 100%;
  padding: 8px 0;
  border: 0;
  outline: 0;
  background: transparent;
}
.product-grid, .product-catalog {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px 18px;
  padding-bottom: 80px;
}
.product-grid.home-shop-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 22px 14px;
  padding-bottom: 28px;
}
.product-grid.home-top-clicks {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px 22px;
  padding-bottom: 0;
}
.result-count { margin: 0; color: var(--muted); font-size: 12px; letter-spacing: .08em; text-transform: uppercase; }
.shop-result-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin: 0 0 18px;
}
.shop-sort select {
  appearance: none;
  min-width: 220px;
  padding: 8px 32px 8px 12px;
  border: 1px solid var(--line);
  border-radius: 0;
  background: var(--panel, #fff) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%2320221e' d='M1 1l5 5 5-5'/%3E%3C/svg%3E") no-repeat right 12px center;
  color: var(--ink);
  font-size: 12px;
  cursor: pointer;
}
.empty-state { padding: 60px 0; text-align: center; color: var(--muted); }

.product-page {
  display: block;
  padding: 48px 0 100px;
}
.product-top {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(28px, 4vw, 64px);
  align-items: start;
}
.product-description-block {
  width: min(820px, 100%);
  margin: 56px auto 0;
  text-align: center;
}
.product-description-block .detail-notes {
  text-align: center;
}
.product-description-block .detail-notes summary {
  text-align: center;
}
.product-page .product-title,
.product-page .assurance-card-head strong,
.product-page .assurance-seller-meta strong {
  font-weight: 500;
}
.product-page .product-price-sale,
.product-page .buy-button,
.product-page .assurance-message {
  font-weight: 500;
}
.product-gallery {
  display: grid;
  gap: 12px;
  align-items: start;
}
.product-gallery.has-thumbs {
  grid-template-columns: 72px minmax(0, 1fr);
}
.product-gallery-thumbs {
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-height: min(72vh, 640px);
  overflow: auto;
  padding-right: 2px;
}
.product-gallery-thumb {
  width: 72px;
  height: 72px;
  padding: 0;
  border: 1px solid var(--line);
  background: var(--soft);
  cursor: pointer;
  overflow: hidden;
}
.product-gallery-thumb.is-active {
  border-color: var(--ink);
  box-shadow: 0 0 0 1px var(--ink);
}
.product-gallery-thumb img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  background: var(--soft);
  display: block;
}
.product-gallery-main {
  position: relative;
}
.product-gallery-zoom {
  display: block;
  width: fit-content;
  max-width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: zoom-in;
}
.product-gallery-main img,
.product-gallery-zoom img {
  display: block;
  width: auto;
  height: auto;
  max-width: min(100%, 650px);
  max-height: 650px;
  object-fit: contain;
  background: var(--soft);
}
.product-gallery-main .image-note {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.product-details .eyebrow {
  margin: 0 0 10px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.product-details .product-title,
.product-details h1.product-title {
  margin: 0 0 16px;
  font-family: var(--sans);
  font-size: clamp(1.2rem, 2.1vw, 1.55rem);
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: .02em;
}
.product-price-row {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin: 0 0 6px;
}
.product-price-sale {
  color: #8f2f2f;
  font-family: var(--sans);
  font-size: clamp(1.45rem, 2.2vw, 1.85rem);
  font-weight: 500;
  line-height: 1;
  letter-spacing: .04em;
}
.product-price-compare {
  color: #9a9a9a;
  font-size: 15px;
  font-weight: 400;
  text-decoration: line-through;
}
.product-price-note {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: .02em;
  line-height: 1.4;
}
.product-meta-lines {
  display: grid;
  gap: 4px;
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}
.product-meta-lines p { margin: 0; }
.product-policy-note {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 12.5px;
  line-height: 1.7;
  letter-spacing: .01em;
}
.product-policy-note p {
  margin: 0 0 12px;
}
.product-policy-note p:last-child { margin-bottom: 0; }
.product-perks {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 0 0 8px;
  padding: 14px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.product-perk {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #4a5560;
  font-size: 12px;
  line-height: 1.3;
}
.product-perk-icon {
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  color: #2f6f6a;
}
.product-perk-icon svg {
  display: block;
  width: 100%;
  height: 100%;
}
.product-lightbox {
  width: min(96vw, 1100px);
  max-height: 92vh;
  padding: 18px;
  border: 0;
  background: #fff;
  box-shadow: 0 24px 80px #0005;
}
.product-lightbox::backdrop { background: #111a; }
.product-lightbox-close {
  position: absolute;
  top: 8px;
  right: 12px;
  border: 0;
  background: transparent;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}
.product-lightbox img {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: calc(92vh - 40px);
  margin: 0 auto;
  object-fit: contain;
}
.product-lead { display: none; }
.option-block {
  display: flex;
  justify-content: space-between;
  margin: 18px 0;
  padding: 14px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  font-size: 13px;
}
.product-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin: 18px 0;
}
.buy-button {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 15px 14px;
  border: 1px solid var(--ink);
  color: var(--ink);
  background: transparent;
  cursor: pointer;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  transition: background .25s var(--ease), color .25s var(--ease);
}
.buy-button.buy-now {
  color: #fff;
  background: var(--ink);
}
.buy-button:hover:not(:disabled) {
  background: var(--ink);
  color: #fff;
}
.buy-button.buy-now:hover:not(:disabled) {
  background: transparent;
  color: var(--ink);
}
.buy-button:disabled {
  opacity: .45;
  cursor: not-allowed;
}
.product-assurance {
  margin: 4px 0 18px;
  display: grid;
  gap: 10px;
}
.assurance-card {
  padding: 14px 16px;
  border: 1px solid #e4e4e4;
  background: #fff;
  font-size: 13px;
  line-height: 1.45;
  color: #222;
}
.assurance-card--confidence {
  background: #eef2f6;
  border-color: #e0e6ec;
}
.assurance-card-head {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}
.assurance-card-head strong {
  font-size: 14px;
  font-weight: 600 !important;
  color: #111;
}
.assurance-icon {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  color: #111;
}
.assurance-card p {
  margin: 0 0 4px;
}
.assurance-card p:last-child {
  margin-bottom: 0;
}
.assurance-em {
  text-decoration: underline;
  text-underline-offset: 2px;
}
.assurance-promo {
  color: #c62828;
}
.assurance-seller {
  margin-top: 6px;
  padding-top: 16px;
  border-top: 1px solid #e4e4e4;
}
.assurance-seller-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}
.assurance-seller-badge {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #1a7f37;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}
.assurance-seller-badge svg {
  width: 16px;
  height: 16px;
}
.assurance-seller-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 14px;
  min-width: 0;
}
.assurance-seller-meta strong {
  font-size: 14px;
  font-weight: 600 !important;
  color: #111;
}
.assurance-rating {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: #333;
}
.assurance-rating em {
  font-style: normal;
  font-weight: 600 !important;
}
.assurance-stars {
  color: #e87722;
  letter-spacing: 1px;
  font-size: 12px;
  line-height: 1;
}
.assurance-message {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 13px 16px;
  border: 1px solid #111;
  background: #fff;
  color: #111;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: 12px;
}
.assurance-message:hover {
  background: #111;
  color: #fff;
}
.detail-notes details { border-top: 1px solid var(--line); }
.detail-notes summary {
  padding: 14px 0;
  cursor: pointer;
  font-size: 13px;
  font-weight: 400;
  list-style: none;
}
.product-copy {
  text-align: center;
  margin: 0 auto;
  font-weight: 400;
}
.product-copy,
.product-copy * {
  font-weight: 400 !important;
}
.product-copy strong,
.product-copy b {
  font-weight: 400 !important;
}
.product-copy img {
  display: block;
  margin-left: auto;
  margin-right: auto;
  max-width: 100%;
  height: auto;
}
.product-copy p,
.product-copy h1,
.product-copy h2,
.product-copy h3,
.product-copy h4,
.product-copy li,
.product-copy div,
.product-copy span {
  text-align: center;
  font-weight: 400 !important;
}
.product-copy ul,
.product-copy ol {
  list-style-position: inside;
  padding: 0;
  margin: 12px auto;
  text-align: center;
  display: block;
  width: 100%;
}
.product-copy li {
  text-align: center;
}
.related { padding-bottom: 80px; }
.product-recommend {
  padding: 48px 0 90px;
  border-top: 1px solid var(--line);
}
.product-recommend .section-heading {
  margin-bottom: 22px;
}
.product-recommend-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 18px 12px;
}
.product-recommend-grid .product-card .add-button {
  font-size: 10px;
  padding: 10px 8px;
}
.product-recommend-grid .product-info h3 {
  font-size: 12px;
  line-height: 1.35;
}
.product-recommend-grid .brand,
.product-recommend-grid .condition,
.product-recommend-grid .product-category {
  font-size: 10px;
}

.blog-hero { padding-bottom: 8px; }
.blog-browser { padding: 8px 0 90px; }
.blog-cats { margin-bottom: 28px; }
.blog-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 36px;
  align-items: start;
}
.brand-filter-wrap {
  margin: 0 0 28px;
}
.brand-filter-box {
  background: var(--soft);
  border: 1px solid var(--line);
  padding: 10px 14px;
}
.brand-filter-row {
  display: flex;
  gap: 10px;
  padding: 8px 0;
  border-bottom: 1px dashed var(--line);
  align-items: flex-start;
}
.brand-filter-row:last-child {
  border-bottom: none;
}
.brand-filter-label {
  flex: 0 0 88px;
  font-weight: 700;
  font-size: 12px;
  color: var(--ink);
  padding-top: 4px;
  text-transform: lowercase;
}
.brand-filter-options {
  flex: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 6px 8px;
}
.brand-filter-chip {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 999px;
  font-size: 12px;
  color: var(--ink);
  line-height: 1.35;
  border: 1px solid transparent;
  background: transparent;
  cursor: pointer;
  font: inherit;
  transition: background .15s ease, color .15s ease, border-color .15s ease;
}
.brand-filter-chip:hover {
  background: var(--paper);
  border-color: var(--line);
}
.brand-filter-chip.is-active {
  background: #5a5a5a;
  border-color: #5a5a5a;
  color: #fff;
  font-weight: 600;
}
.brand-filter-count {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 12.5px;
}
@media (max-width: 800px) {
  .brand-filter-row {
    flex-direction: column;
    gap: 6px;
  }
  .brand-filter-label {
    flex: none;
  }
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 28px 18px;
}
.blog-card {
  display: grid;
  gap: 12px;
  background: transparent;
}
.blog-card-media {
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--soft);
  border-radius: 0;
}
.blog-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .55s var(--ease);
}
.blog-card:hover .blog-card-media img { transform: scale(1.04); }
.blog-card-placeholder {
  display: grid;
  place-items: center;
  height: 100%;
  color: var(--muted);
  font-family: var(--display);
  font-weight: 500;
  letter-spacing: .28em;
}
.blog-card-title {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  overflow: hidden;
  color: var(--ink);
  font-size: 13.5px;
  font-weight: 400;
  line-height: 1.45;
  max-height: calc(1.45em * 2);
  text-decoration: none;
  transition: color .2s ease;
}
.blog-card-title:hover {
  color: var(--gold);
  text-decoration: none;
}
.blog-card-excerpt {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  overflow: hidden;
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 300;
  line-height: 1.45;
  max-height: calc(1.45em * 2);
}
.blog-card-body { padding: 14px 0 8px; }
.blog-card-cat {
  margin: 0 0 6px;
  color: var(--gold);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.blog-card-body h2 {
  margin: 0 0 8px;
  font-family: var(--display);
  font-size: 1.15rem;
  font-weight: 500;
  line-height: 1.35;
}
.blog-card-desc {
  margin: 0 0 10px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
  font-weight: 300;
}
.blog-card-body time { color: var(--muted); font-size: 11px; letter-spacing: .04em; }
.blog-empty {
  padding: 48px 0;
  color: var(--muted);
  text-align: center;
}
.shop-pagination {
  margin-top: 28px;
  margin-bottom: 40px;
}
.product-catalog {
  padding-bottom: 24px;
}
.blog-pagination {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 36px;
  padding: 16px 0 8px;
}
.blog-page-btn {
  display: inline-grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--paper);
  color: #333;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  transition: background .15s ease, border-color .15s ease, color .15s ease, box-shadow .15s ease;
}
.blog-page-btn:hover {
  border-color: #d0d0d0;
  color: var(--ink);
}
.blog-page-btn.is-active {
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
  box-shadow: none;
}
.blog-page-btn.is-active:hover {
  color: #fff;
}
.blog-page-next {
  font-size: 20px;
  font-weight: 500;
}
.blog-page-ellipsis {
  display: inline-grid;
  place-items: center;
  min-width: 24px;
  color: var(--muted);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: .06em;
  user-select: none;
}
.blog-sidebar { display: grid; gap: 22px; }
.blog-widget {
  padding: 22px;
  border: 1px solid var(--line);
  background: color-mix(in srgb, var(--soft) 80%, transparent);
}
.blog-widget h3 {
  margin: 0 0 14px;
  font-family: var(--display);
  font-size: 1.15rem;
  font-weight: 500;
  letter-spacing: .03em;
}
.blog-about { text-align: center; }
.blog-avatar {
  display: inline-grid;
  place-items: center;
  width: 56px;
  height: 56px;
  margin-bottom: 10px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--paper);
  font-size: 22px;
  font-weight: 700;
}
.blog-about p {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 12.5px;
  line-height: 1.6;
}
.blog-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  border-top: 1px solid var(--line);
  padding-top: 14px;
}
.blog-stats div { display: grid; gap: 2px; }
.blog-stats strong { font-size: 16px; }
.blog-stats span { color: var(--muted); font-size: 11px; }
.blog-popular {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}
.blog-popular li {
  display: grid;
  grid-template-columns: auto 48px 1fr;
  gap: 10px;
  align-items: center;
}
.blog-popular-rank {
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--paper);
  font-size: 11px;
  font-weight: 700;
}
.blog-popular-thumb {
  display: block;
  width: 48px;
  height: 48px;
  overflow: hidden;
  background: var(--paper);
  border: 1px solid var(--line);
}
.blog-popular-thumb img { width: 100%; height: 100%; object-fit: cover; }
.blog-popular li a { font-size: 12.5px; font-weight: 400; line-height: 1.35; }
.blog-popular li time { display: block; color: var(--muted); font-size: 10.5px; }
.blog-topic-list { display: flex; flex-wrap: wrap; gap: 8px; }
.blog-topic-list a {
  padding: 6px 12px;
  border: 1px solid var(--line);
  background: var(--paper);
  font-size: 12px;
}
.blog-topic-list a:hover { border-color: var(--ink); }
.blog-keyword-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.blog-keyword-list .blog-keyword-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 12px;
  border: 0 !important;
  border-radius: 4px;
  background: var(--kw, #5c6bc0) !important;
  color: #fff !important;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.25;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: none;
  transition: filter .12s ease, transform .12s ease;
}
.blog-keyword-list .blog-keyword-btn:hover {
  border-color: transparent;
  filter: brightness(1.08);
  transform: translateY(-1px);
  box-shadow: none;
}
.search-page { padding: 40px 0 80px; }
.search-page-header { margin-bottom: 28px; max-width: 720px; }
.search-page-header h1 {
  margin: 8px 0 18px;
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
}
.search-page-form {
  display: flex;
  gap: 10px;
  margin-bottom: 12px;
}
.search-page-form input[type="search"] {
  flex: 1;
  min-width: 0;
  padding: 12px 14px;
  border: 1px solid var(--line);
  background: var(--paper);
  font-size: 14px;
}
.search-page-meta {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.article, .archive { max-width: 780px; padding: 70px 0 100px; }
.article-with-sidebar {
  padding: 48px 0 100px;
}
.article-with-sidebar .article-main {
  max-width: none;
  padding: 0;
  min-width: 0;
}
.article-with-sidebar .blog-sidebar {
  position: sticky;
  top: 88px;
  align-self: start;
}
.article-header .eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.article-header h1, .archive-item h2 {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(2rem, 4vw, 2.75rem);
  line-height: 1.18;
  letter-spacing: .01em;
  margin: 0 0 16px;
}
.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  color: var(--muted);
  font-size: 12px;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.article-cover {
  margin: 22px 0 8px;
  border: 1px solid var(--line);
  background: var(--soft);
  overflow: hidden;
}
.article-cover img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}
.prose figure {
  margin: 1.4em 0;
}
.prose figure img,
.prose .wp-block-image img {
  width: 100%;
  height: auto;
  border: 1px solid var(--line);
  background: var(--soft);
}
.prose figcaption {
  margin-top: 8px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}
.prose .wp-block-embed,
.prose .video-embed {
  position: relative;
  margin: 1.4em 0;
  aspect-ratio: 16 / 9;
  background: #111;
  border: 1px solid var(--line);
  overflow: hidden;
}
.prose .wp-block-embed iframe,
.prose .video-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.prose {
  margin-top: 28px;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.75;
  color: #2a2a2a;
}
.prose a { text-decoration: underline; text-underline-offset: 3px; }
.prose h2, .prose h3 {
  font-family: var(--display);
  font-weight: 500;
  letter-spacing: .01em;
  margin-top: 1.6em;
}
html[data-theme="dark"] .prose { color: #ddd; }

@media (prefers-reduced-motion: reduce) {
  .fp-hero > img { animation: none; }
  .fp-hero-copy { animation: none; }
}

.cart-open { overflow: hidden; }
.cart-overlay {
  position: fixed;
  z-index: 80;
  inset: 0;
  background: rgba(0,0,0,.45);
}
.cart-drawer {
  position: fixed;
  z-index: 90;
  inset: 0 0 0 auto;
  width: min(420px, 100%);
  display: grid;
  grid-template-rows: auto 1fr auto;
  background: var(--paper);
  transform: translateX(105%);
  transition: transform .28s ease;
}
.cart-drawer.open { transform: translateX(0); }
.cart-drawer > header {
  display: flex;
  justify-content: space-between;
  padding: 22px;
  border-bottom: 1px solid var(--line);
}
.cart-drawer > header p { margin: 0; color: var(--muted); font-size: 11px; letter-spacing: .12em; }
.cart-drawer > header h2 { margin: 4px 0 0; font-size: 24px; }
.cart-drawer > header button { border: 0; background: transparent; font-size: 28px; cursor: pointer; }
.cart-items { overflow: auto; }
.cart-line {
  display: grid;
  grid-template-columns: 88px 1fr auto;
  gap: 14px;
  padding: 18px 22px;
  border-bottom: 1px solid var(--line);
}
.cart-line img { width: 88px; height: 88px; object-fit: cover; background: var(--soft); }
.cart-line h3 { margin: 4px 0 8px; font-size: 13px; font-weight: 500; }
.quantity {
  display: inline-flex;
  align-items: center;
  margin-top: 10px;
  border: 1px solid var(--line);
}
.quantity button { width: 28px; height: 28px; border: 0; background: transparent; cursor: pointer; }
.remove-line { border: 0; background: transparent; cursor: pointer; font-size: 18px; }
.empty-cart {
  min-height: 280px;
  display: grid;
  place-content: center;
  text-align: center;
  gap: 8px;
  color: var(--muted);
}
.cart-drawer > footer { padding: 20px 22px; border-top: 1px solid var(--line); }
.cart-drawer > footer > div {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
  font-size: 16px;
  font-weight: 600;
}
#checkout-button {
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 14px 16px;
  border: 0;
  color: #fff;
  background: #111;
  cursor: pointer;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
}
#checkout-button:disabled { opacity: .45; cursor: not-allowed; }
.checkout-error { color: #b42318; font-size: 12px; }
.checkout-result { min-height: 60vh; padding: 100px 0; text-align: center; }

.tracking-page {
  display: grid;
  justify-content: center;
  padding-bottom: 90px;
}
.tracking-page .shop-header {
  max-width: 480px;
}
.tracking-form {
  display: grid;
  gap: 16px;
  width: min(480px, 100%);
  max-width: 480px;
  margin-bottom: 28px;
}
.tracking-form label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.tracking-form input {
  padding: 12px 14px;
  border: 1px solid var(--line);
  outline: 0;
  background: var(--paper);
  color: var(--ink);
  font-size: 14px;
  text-transform: none;
  letter-spacing: 0;
  font-weight: 500;
}
.tracking-result {
  width: min(560px, 100%);
  max-width: 560px;
  padding: 22px;
  border: 1px solid var(--line);
  background: var(--soft);
}
.tracking-result h2 { margin: 0 0 8px; font-size: 18px; }
.tracking-result p { margin: 0 0 12px; color: var(--muted); }
.tracking-result a { text-decoration: underline; text-underline-offset: 4px; }

.account-page {
  display: grid;
  justify-content: center;
  padding-bottom: 90px;
}
.account-page .shop-header {
  max-width: 420px;
}
.account-login,
.account-dashboard {
  width: min(420px, 100%);
}
.account-form {
  display: grid;
  gap: 16px;
  width: 100%;
  max-width: 420px;
  margin-bottom: 16px;
}
.account-form label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.account-form input {
  padding: 12px 14px;
  border: 1px solid var(--line);
  outline: 0;
  background: var(--paper);
  color: var(--ink);
  font-size: 14px;
  text-transform: none;
  letter-spacing: 0;
  font-weight: 500;
}
.account-hint { color: var(--muted); font-size: 13px; }
.account-hint code { padding: 1px 6px; background: var(--soft); font-size: 12px; }
.account-error { color: #b42318; font-size: 13px; }
.account-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.account-toolbar p { margin: 0; }
.account-orders { display: grid; gap: 16px; }
.account-order-card {
  padding: 22px 24px;
  border: 1px solid var(--line);
  background: var(--soft);
}
.account-order-card header {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 16px;
}
.account-order-card h2 { margin: 0 0 4px; font-size: 18px; }
.account-order-card header p { margin: 0; color: var(--muted); font-size: 13px; }
.account-status { font-size: 11px; font-weight: 700; letter-spacing: .08em; }
.account-order-card dl {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 0 0 12px;
}
.account-order-card dt {
  margin: 0 0 4px;
  color: var(--muted);
  font-size: 11px;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.account-order-card dd { margin: 0; font-weight: 600; }
.account-items { margin: 0; padding-left: 18px; color: var(--muted); font-size: 13px; }
.account-empty {
  padding: 28px;
  border: 1px dashed var(--line);
  text-align: center;
}
.account-empty a { text-decoration: underline; text-underline-offset: 4px; }

@media (max-width: 1100px) {
  .main-nav { display: none; }
  .shop-layout { grid-template-columns: 1fr; }
  .shop-sidebar { position: static; }
  .fp-value-grid { grid-template-columns: repeat(3, 1fr); }
  .product-grid.home-shop-grid { grid-template-columns: repeat(5, minmax(0, 1fr)); }
  .product-grid.home-top-clicks { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .product-recommend-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .blog-layout { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (max-width: 800px) {
  .blog-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }

  .utility-bar { font-size: 10px; }
  .utility-inner {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    min-height: 34px;
    padding: 0;
    grid-template-columns: none;
  }
  .utility-inner > span[aria-hidden="true"] { display: none; }
  .utility-inner p {
    flex: 1 1 auto;
    min-width: 0;
    margin: 0;
    text-align: left;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    letter-spacing: .02em;
  }
  .utility-actions {
    flex: 0 0 auto;
    justify-self: auto;
    gap: 6px;
  }
  .lang-switch-btn,
  #theme-toggle {
    min-width: 0;
    padding: 3px 6px;
    font-size: 9px;
    gap: 4px;
  }
  .sell-now {
    padding: 4px 8px;
    font-size: 9px;
  }
  .header-row { grid-template-columns: 1fr auto; min-height: 60px; }
  .shop-layout { grid-template-columns: 1fr; }
  .shop-sidebar { position: static; grid-template-columns: 1fr; }
  .fp-hero {
    min-height: 40vh;
    aspect-ratio: auto;
    max-height: none;
  }
  .fp-hero > img { object-position: 15% center; }
  .fp-hero-copy {
    left: 50%;
    right: auto;
    width: min(100% - 32px, 420px);
    max-width: none;
    transform: translate(-50%, -50%);
  }
  .fp-archive, .fp-blazy, .fp-ways, .service-grid { grid-template-columns: 1fr; }
  .product-top { grid-template-columns: 1fr; }
  .product-gallery.has-thumbs { grid-template-columns: 1fr; }
  .product-gallery-thumbs {
    flex-direction: row;
    max-height: none;
    overflow-x: auto;
    overflow-y: hidden;
    order: 2;
  }
  .product-gallery-main { order: 1; }
  .product-perks { grid-template-columns: 1fr; gap: 12px; }
  .product-price-sale { font-size: 24px; }
  .fp-collection-grid { grid-template-columns: 1fr; }
  .fp-value-grid { grid-template-columns: repeat(2, 1fr); }
  .product-grid.home-shop-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .product-grid.home-top-clicks { grid-template-columns: 1fr; }
  .product-recommend-grid { grid-template-columns: repeat(2, 1fr); }
  .fp-strip-inner { flex-direction: column; align-items: flex-start; padding: 18px 0; }
  .footer-bottom { flex-direction: column; }
  .account-order-card dl { grid-template-columns: 1fr; }
}
@media (max-width: 520px) {
  .shell { padding-inline: 14px; }
  .theme-label { display: none; }
  .fp-value-grid, .product-grid, .product-catalog, .product-recommend-grid, .footer-grid { grid-template-columns: 1fr; }
  .category-rail { padding: 12px 10px; gap: 8px; }
  .category-pill { min-height: 34px; padding: 8px 12px; letter-spacing: .08em; }
}

/* ——— Checkout page ——— */
.checkout-page { padding: 28px 0 72px; }
.checkout-breadcrumb {
  display: flex;
  gap: 8px;
  align-items: center;
  margin: 0 0 28px;
  color: var(--muted);
  font-size: 13px;
}
.checkout-breadcrumb a { color: var(--muted); text-decoration: none; }
.checkout-breadcrumb a:hover { color: var(--ink); }
.checkout-steps {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 36px;
  margin: 0 0 36px;
  padding: 0;
}
.checkout-steps li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.checkout-step-num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  background: var(--paper);
  font-size: 12px;
}
.checkout-steps .is-done .checkout-step-num,
.checkout-steps .is-current .checkout-step-num {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}
.checkout-steps .is-current { color: var(--ink); font-weight: 600; }
.checkout-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(280px, 0.85fr);
  gap: 28px;
  align-items: start;
}
.checkout-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 22px 22px 20px;
  margin-bottom: 16px;
}
html[data-theme="dark"] .checkout-card { background: var(--soft); }
.checkout-card h2 {
  margin: 0 0 18px;
  font-family: var(--sans);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0;
}
.checkout-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.checkout-field {
  display: grid;
  gap: 6px;
  margin-bottom: 14px;
  font-size: 13px;
  color: var(--ink);
}
.checkout-field span em { color: #c0392b; font-style: normal; }
.checkout-field input,
.checkout-field select,
.checkout-field textarea {
  width: 100%;
  min-height: 44px;
  padding: 10px 12px;
  border: 1px solid #d8d8d8;
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  font: inherit;
}
.checkout-field textarea { min-height: 110px; resize: vertical; }
.checkout-field input:focus,
.checkout-field select:focus,
.checkout-field textarea:focus {
  outline: 2px solid color-mix(in srgb, #2563eb 35%, transparent);
  border-color: #2563eb;
}
.checkout-check {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  cursor: pointer;
}
.checkout-check input { accent-color: #f59e0b; width: 18px; height: 18px; }
.checkout-radio {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 10px;
  cursor: pointer;
}
.checkout-radio.is-selected { border-color: #f59e0b; background: color-mix(in srgb, #f59e0b 6%, transparent); }
.checkout-radio input { margin-top: 3px; accent-color: #f59e0b; }
.checkout-ship-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  margin-top: -2px;
  border-radius: 8px;
  color: #c47a1a;
  background: color-mix(in srgb, #f59e0b 14%, #fff);
}
.checkout-radio-body { display: grid; gap: 6px; flex: 1; }
.checkout-radio-body strong { font-size: 14px; }
.checkout-radio-body small { color: var(--muted); font-size: 12px; }
.checkout-pay-icons {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-top: 4px;
}
.checkout-pay-icons img {
  display: block;
  height: 28px;
  width: auto;
  max-width: 56px;
  border-radius: 4px;
  object-fit: contain;
  background: #fff;
  box-shadow: 0 0 0 1px #e5e7eb;
}
.checkout-address-field { position: relative; }
.checkout-address-suggest {
  position: absolute;
  z-index: 30;
  top: calc(100% + 4px);
  left: 0;
  right: 0;
  margin: 0;
  padding: 6px 0;
  list-style: none;
  max-height: 260px;
  overflow: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
}
html[data-theme="dark"] .checkout-address-suggest { background: var(--soft); }
.checkout-address-suggest li {
  margin: 0;
  padding: 10px 12px;
  cursor: pointer;
  font-size: 13px;
  line-height: 1.35;
  color: var(--ink);
}
.checkout-address-suggest li:hover,
.checkout-address-suggest li.is-active {
  background: color-mix(in srgb, #f59e0b 12%, transparent);
}
.checkout-address-suggest li small {
  display: block;
  margin-top: 2px;
  color: var(--muted);
  font-size: 11px;
}
.checkout-address-suggest-empty {
  padding: 10px 12px;
  color: var(--muted);
  font-size: 12px;
  pointer-events: none;
}
.checkout-sidebar { position: sticky; top: 112px; }
.checkout-signin-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  text-decoration: none;
  color: var(--ink);
  font-weight: 500;
  font-size: 14px;
}
.checkout-signin-btn:hover { background: var(--soft); }
.checkout-lines { display: grid; gap: 14px; margin-bottom: 16px; }
.checkout-line {
  display: grid;
  grid-template-columns: 64px 1fr auto;
  gap: 12px;
  align-items: start;
}
.checkout-line img {
  width: 64px;
  height: 64px;
  object-fit: cover;
  border-radius: 8px;
  background: var(--soft);
}
.checkout-line h3 {
  margin: 0 0 4px;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.35;
}
.checkout-line p { margin: 0; color: var(--muted); font-size: 12px; }
.checkout-line strong { font-size: 13px; white-space: nowrap; }
.checkout-summary { margin: 0 0 18px; display: grid; gap: 10px; }
.checkout-summary > div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: 14px;
}
.checkout-summary dt { margin: 0; color: var(--muted); }
.checkout-summary dd { margin: 0; font-weight: 500; }
.checkout-summary-total {
  padding-top: 10px;
  border-top: 1px solid var(--line);
  font-size: 16px !important;
}
.checkout-summary-total dd { color: #c0392b; font-weight: 700; }
.checkout-pay-btn {
  width: 100%;
  min-height: 48px;
  border: 0;
  border-radius: 999px;
  background: #2563eb;
  color: #fff;
  font: inherit;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
}
.checkout-pay-btn:hover { background: #1d4ed8; }
.checkout-pay-btn:disabled { opacity: .55; cursor: not-allowed; }
.checkout-error { margin: 12px 0 0; color: #c0392b; font-size: 13px; }
.checkout-empty { margin: 12px 0 0; color: var(--muted); font-size: 13px; }
.checkout-empty a { color: var(--ink); text-decoration: underline; }
@media (max-width: 900px) {
  .checkout-layout { grid-template-columns: 1fr; }
  .checkout-sidebar { position: static; }
  .checkout-steps { gap: 16px; }
  .checkout-grid-2 { grid-template-columns: 1fr; }
}

.video-embed { position: relative; }
.video-embed .yt-fallback {
  position: absolute; inset: 0; z-index: 2; display: grid; place-items: center; background: #111; text-decoration: none;
}
.video-embed .yt-fallback img { width: 100%; height: 100%; object-fit: cover; border: 0; }
.video-embed .yt-play {
  position: absolute; padding: 10px 16px; border: 1px solid rgba(255,255,255,.7); color: #fff;
  font-size: 12px; letter-spacing: .08em; text-transform: uppercase; background: rgba(0,0,0,.45);
}
.video-embed iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; z-index: 1; }