:root {
  --ink: #1c1b19;
  --ink-2: #57534e;
  --ink-3: #8b857c;
  --paper: #ffffff;
  --cream: #f7f4ef;
  --sand: #ede7dd;
  --line: #e4ded4;
  --brass: #a67c3d;
  --brass-dark: #8a6531;
  --brass-soft: #f2e9db;
  --green: #2f6b4f;
  --green-soft: #e8f0ec;
  --danger: #9b3a2e;
  --shadow: 0 1px 2px rgba(28, 27, 25, .04), 0 8px 28px rgba(28, 27, 25, .06);
  --shadow-lg: 0 2px 4px rgba(28, 27, 25, .05), 0 18px 50px rgba(28, 27, 25, .12);
  --radius: 4px;
  --radius-lg: 10px;
  --serif: Georgia, "Times New Roman", serif;
  --sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}

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

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

button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }

input, select, textarea { font-family: inherit; font-size: 16px; color: var(--ink); }

h1, h2, h3, h4 { font-family: var(--serif); font-weight: 400; line-height: 1.15; letter-spacing: -.01em; }

.container { width: 100%; max-width: 1280px; margin: 0 auto; padding: 0 24px; }

.container-narrow { max-width: 760px; }

.eyebrow {
  font-size: 11px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--brass);
  font-weight: 600;
  margin-bottom: 12px;
}

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

/* ============ Announcement bar ============ */
.announce {
  background: var(--ink);
  color: #f4f1ec;
  font-size: 12.5px;
  letter-spacing: .04em;
  text-align: center;
  padding: 9px 16px;
  position: relative;
}
.announce a { text-decoration: underline; text-underline-offset: 2px; }
.announce .announce-close {
  position: absolute; right: 12px; top: 50%; transform: translateY(-50%);
  font-size: 16px; opacity: .6; padding: 4px 8px;
}
.announce .announce-close:hover { opacity: 1; }

/* ============ Header ============ */
.header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(255, 255, 255, .94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 32px;
  height: 68px;
}
.logo {
  font-family: var(--serif);
  font-size: 25px;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 400;
  flex-shrink: 0;
}
.logo em { color: var(--brass); font-style: normal; }
.nav { display: flex; gap: 4px; flex: 1; }
.nav a {
  font-size: 13.5px;
  letter-spacing: .05em;
  text-transform: uppercase;
  padding: 8px 12px;
  color: var(--ink-2);
  border-radius: var(--radius);
  transition: color .15s, background .15s;
}
.nav a:hover { color: var(--ink); background: var(--cream); }
.nav a.active { color: var(--ink); }
.nav .nav-sale { color: var(--danger); }
.header-actions { display: flex; align-items: center; gap: 6px; flex-shrink: 0; }
.icon-btn {
  width: 40px; height: 40px;
  display: grid; place-items: center;
  border-radius: 50%;
  position: relative;
  color: var(--ink-2);
  transition: background .15s, color .15s;
}
.icon-btn:hover { background: var(--cream); color: var(--ink); }
.cart-count {
  position: absolute; top: 2px; right: 0;
  min-width: 17px; height: 17px;
  background: var(--brass);
  color: #fff;
  border-radius: 9px;
  font-size: 10.5px;
  font-weight: 700;
  display: grid; place-items: center;
  padding: 0 4px;
}
.cart-count.hidden { display: none; }
.nav-toggle { display: none; }

/* Mobile nav */
@media (max-width: 900px) {
  .nav {
    display: none;
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    padding: 8px 16px 16px;
    gap: 0;
    box-shadow: var(--shadow);
  }
  .nav.open { display: flex; }
  .nav a { padding: 13px 8px; font-size: 14px; border-bottom: 1px solid var(--cream); }
  .nav-toggle { display: grid; }
}

/* ============ Buttons ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 15px 28px;
  font-size: 13px;
  letter-spacing: .1em;
  text-transform: uppercase;
  font-weight: 600;
  border-radius: var(--radius);
  transition: transform .12s, background .15s, opacity .15s;
  border: 1px solid transparent;
  white-space: nowrap;
}
.btn:active { transform: scale(.985); }
.btn-primary { background: var(--ink); color: #fff; }
.btn-primary:hover { background: #33302c; }
.btn-brass { background: var(--brass); color: #fff; }
.btn-brass:hover { background: var(--brass-dark); }
.btn-outline { border-color: var(--ink); color: var(--ink); background: transparent; }
.btn-outline:hover { background: var(--ink); color: #fff; }
.btn-ghost { color: var(--ink); border-color: var(--line); }
.btn-ghost:hover { background: var(--cream); }
.btn-block { width: 100%; }
.btn-sm { padding: 10px 18px; font-size: 12px; }
.btn[disabled] { opacity: .5; cursor: not-allowed; }

.link-underline {
  font-size: 13px; letter-spacing: .06em; text-transform: uppercase; font-weight: 600;
  border-bottom: 1px solid var(--brass); padding-bottom: 3px;
  display: inline-flex; align-items: center; gap: 8px;
  transition: gap .18s, color .18s;
}
.link-underline:hover { gap: 13px; color: var(--brass-dark); }

/* ============ Hero ============ */
.hero { position: relative; min-height: 620px; display: grid; align-items: center; overflow: hidden; }
.hero-media { position: absolute; inset: 0; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: center 40%; }
.hero-media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(20,18,15,.62) 0%, rgba(20,18,15,.28) 48%, rgba(20,18,15,.05) 78%);
}
.hero-content { position: relative; color: #fff; max-width: 560px; padding: 72px 0; }
.hero-content .eyebrow { color: #e8d3ae; }
.hero-content h1 { font-size: clamp(38px, 5.4vw, 62px); margin-bottom: 20px; }
.hero-content p { font-size: 17.5px; line-height: 1.6; color: rgba(255,255,255,.88); margin-bottom: 32px; max-width: 440px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-meta {
  display: flex; gap: 26px; margin-top: 40px; padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.18);
  font-size: 12.5px; letter-spacing: .04em; color: rgba(255,255,255,.78);
  flex-wrap: wrap;
}
.hero-meta span { display: inline-flex; align-items: center; gap: 8px; }

/* ============ Trust bar ============ */
.trustbar { background: var(--cream); border-bottom: 1px solid var(--line); }
.trustbar-inner {
  display: grid; grid-template-columns: repeat(4, 1fr);
  padding: 26px 0; gap: 20px;
}
.trust-item { display: flex; align-items: center; gap: 13px; }
.trust-item svg { flex-shrink: 0; color: var(--brass); }
.trust-item b { display: block; font-size: 13.5px; font-weight: 600; letter-spacing: .01em; }
.trust-item span { font-size: 12.5px; color: var(--ink-3); }

/* ============ Sections ============ */
.section { padding: 84px 0; }
.section-cream { background: var(--cream); }
.section-head { max-width: 560px; margin-bottom: 46px; }
.section-head h2 { font-size: clamp(28px, 3.4vw, 38px); margin-bottom: 12px; }
.section-head p { color: var(--ink-2); font-size: 16.5px; }
.section-head-row {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 24px; margin-bottom: 46px; flex-wrap: wrap;
}
.section-head-row .section-head { margin-bottom: 0; }

/* ============ Product grid & card ============ */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px 22px;
}
.product-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }

.card { position: relative; display: block; }
.card-media {
  position: relative;
  aspect-ratio: 1 / 1;
  background: var(--cream);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 14px;
}
.card-media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .6s cubic-bezier(.2,.7,.3,1);
}
.card:hover .card-media img { transform: scale(1.045); }
.card-badge {
  position: absolute; top: 12px; left: 12px;
  background: var(--paper); color: var(--ink);
  font-size: 10.5px; letter-spacing: .1em; text-transform: uppercase;
  font-weight: 700; padding: 5px 10px; border-radius: 3px;
}
.card-badge.sale { background: var(--danger); color: #fff; }
.card-badge.new { background: var(--green); color: #fff; }
.card-quick {
  position: absolute; left: 12px; right: 12px; bottom: 12px;
  background: rgba(255,255,255,.96);
  border-radius: var(--radius);
  padding: 13px;
  font-size: 12px; letter-spacing: .1em; text-transform: uppercase; font-weight: 700;
  text-align: center;
  opacity: 0; transform: translateY(8px);
  transition: opacity .22s, transform .22s;
  box-shadow: var(--shadow);
}
.card:hover .card-quick { opacity: 1; transform: translateY(0); }
.card-quick:hover { background: var(--ink); color: #fff; }
.card-info h3 { font-size: 16.5px; font-weight: 400; margin-bottom: 5px; font-family: var(--sans); letter-spacing: 0; }
.card-info .card-cat { font-size: 11.5px; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-3); margin-bottom: 7px; }
.card-price { display: flex; align-items: baseline; gap: 9px; font-size: 15.5px; font-weight: 600; }
.card-price .was { color: var(--ink-3); text-decoration: line-through; font-weight: 400; font-size: 14px; }
.card-rating { display: inline-flex; align-items: center; gap: 6px; font-size: 12.5px; color: var(--ink-2); margin-top: 6px; }
.card-rating .stars { color: var(--brass); font-size: 12px; letter-spacing: 1px; }

@media (max-width: 1000px) { .product-grid, .product-grid.cols-3 { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 720px) { .product-grid, .product-grid.cols-3 { grid-template-columns: repeat(2, 1fr); gap: 22px 14px; } .card-quick { display: none; } }

/* ============ Category tiles ============ */
.room-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.room-tile { position: relative; aspect-ratio: 4/5; border-radius: var(--radius); overflow: hidden; background: var(--sand); }
.room-tile img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s cubic-bezier(.2,.7,.3,1); }
.room-tile:hover img { transform: scale(1.05); }
.room-tile::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(20,18,15,.58), rgba(20,18,15,0) 55%); }
.room-tile-label {
  position: absolute; left: 18px; bottom: 16px; right: 18px; z-index: 2;
  color: #fff;
}
.room-tile-label b { font-family: var(--serif); font-size: 21px; font-weight: 400; display: block; }
.room-tile-label span { font-size: 12px; letter-spacing: .08em; text-transform: uppercase; opacity: .82; }
@media (max-width: 900px) { .room-grid { grid-template-columns: repeat(2, 1fr); } }

/* ============ Split feature ============ */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.split-media { border-radius: var(--radius); overflow: hidden; background: var(--sand); }
.split-media img { width: 100%; aspect-ratio: 4/3.4; object-fit: cover; }
.split-content h2 { font-size: clamp(28px, 3.4vw, 38px); margin-bottom: 16px; }
.split-content > p { color: var(--ink-2); margin-bottom: 24px; font-size: 16.5px; }
.split-list { list-style: none; margin-bottom: 30px; }
.split-list li { display: flex; gap: 13px; padding: 9px 0; font-size: 15px; color: var(--ink-2); }
.split-list svg { color: var(--brass); flex-shrink: 0; margin-top: 3px; }
@media (max-width: 860px) { .split { grid-template-columns: 1fr; gap: 34px; } }

/* ============ Reviews ============ */
.review-strip { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.review-card {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 28px;
}
.review-card .stars { color: var(--brass); letter-spacing: 2px; font-size: 14px; margin-bottom: 14px; }
.review-card p { font-size: 15px; color: var(--ink-2); margin-bottom: 20px; }
.review-card footer { display: flex; align-items: center; gap: 11px; font-size: 13px; }
.review-card .avatar {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--sand); color: var(--brass-dark);
  display: grid; place-items: center; font-weight: 600; font-size: 13px;
  flex-shrink: 0;
}
.review-card b { display: block; font-size: 13.5px; }
.review-card .verified { color: var(--green); font-size: 11.5px; letter-spacing: .04em; }
@media (max-width: 860px) { .review-strip { grid-template-columns: 1fr; } }

.trustpilot-chip {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--paper); border: 1px solid var(--line); border-radius: 999px;
  padding: 9px 18px; font-size: 13px;
}
.trustpilot-chip b { color: var(--brass); letter-spacing: 1px; }

/* Footer trust block — real US address + contact hours.
   Extra trust signals are needed because the .top TLD carries lower baseline trust. */
.footer-contact {
  display: grid; grid-template-columns: 1fr 1fr; gap: 14px 18px;
  margin-top: 22px; padding-top: 18px;
  border-top: 1px solid var(--line);
  font-size: 13px; line-height: 1.5; color: var(--ink-3);
}
.footer-contact b { display: block; color: var(--ink); font-weight: 600; }
@media (max-width: 520px) { .footer-contact { grid-template-columns: 1fr; } }

/* ============ Newsletter ============ */
.newsletter { background: var(--ink); color: #f4f1ec; padding: 74px 0; }
.newsletter-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 52px; align-items: center; }
.newsletter h2 { font-size: clamp(26px, 3vw, 34px); color: #fff; margin-bottom: 10px; }
.newsletter p { color: rgba(255,255,255,.72); font-size: 15.5px; }
.newsletter-form { display: flex; gap: 10px; }
.newsletter-form input {
  flex: 1; background: rgba(255,255,255,.09); border: 1px solid rgba(255,255,255,.2);
  border-radius: var(--radius); padding: 15px 18px; color: #fff; font-size: 15px;
}
.newsletter-form input::placeholder { color: rgba(255,255,255,.45); }
.newsletter-form input:focus { outline: none; border-color: var(--brass); background: rgba(255,255,255,.13); }
.newsletter-note { font-size: 12px; color: rgba(255,255,255,.45); margin-top: 12px; }
@media (max-width: 860px) { .newsletter-inner { grid-template-columns: 1fr; gap: 26px; } }

/* ============ Footer ============ */
.footer { border-top: 1px solid var(--line); padding: 64px 0 30px; background: var(--paper); }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 52px; }
.footer h4 { font-family: var(--sans); font-size: 11.5px; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-3); margin-bottom: 16px; font-weight: 600; }
.footer ul { list-style: none; }
.footer li { margin-bottom: 9px; }
.footer li a { font-size: 14px; color: var(--ink-2); transition: color .15s; }
.footer li a:hover { color: var(--ink); }
.footer-brand p { font-size: 14px; color: var(--ink-2); max-width: 280px; margin: 14px 0 20px; }
.footer-bottom {
  border-top: 1px solid var(--line); padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center;
  gap: 20px; flex-wrap: wrap;
  font-size: 12.5px; color: var(--ink-3);
}
.pay-icons { display: flex; gap: 8px; align-items: center; }
.pay-chip {
  height: 26px; padding: 0 9px; border: 1px solid var(--line); border-radius: 4px;
  display: inline-flex; align-items: center; font-size: 10.5px; font-weight: 700;
  letter-spacing: .02em; color: var(--ink-2); background: var(--paper);
}
@media (max-width: 860px) { .footer-grid { grid-template-columns: 1fr 1fr; } }

/* ============ Breadcrumb ============ */
.breadcrumb { font-size: 12.5px; color: var(--ink-3); padding: 22px 0; }
.breadcrumb a:hover { color: var(--ink); }
.breadcrumb span { margin: 0 8px; color: var(--line); }

/* ============ PDP ============ */
.pdp { display: grid; grid-template-columns: 1.05fr 1fr; gap: 56px; align-items: start; padding-bottom: 70px; }
.pdp-gallery { position: sticky; top: 90px; }
.pdp-main-img {
  background: var(--cream); border-radius: var(--radius-lg); overflow: hidden;
  aspect-ratio: 1/1;
}
.pdp-main-img img { width: 100%; height: 100%; object-fit: cover; }
.pdp-thumbs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-top: 12px; }
.pdp-thumbs .thumb {
  aspect-ratio: 1/1; border-radius: var(--radius); overflow: hidden;
  border: 1.5px solid var(--line); padding: 0; background: var(--cream);
  transition: border-color .15s;
}
.pdp-thumbs .thumb img { width: 100%; height: 100%; object-fit: cover; }
.pdp-thumbs .thumb.active { border-color: var(--ink); }

.pdp-info .pdp-cat { font-size: 11.5px; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-3); margin-bottom: 10px; }
.pdp-info h1 { font-size: clamp(30px, 3.6vw, 40px); margin-bottom: 12px; }
.pdp-rating-row { display: flex; align-items: center; gap: 12px; font-size: 13.5px; color: var(--ink-2); margin-bottom: 20px; }
.pdp-rating-row .stars { color: var(--brass); letter-spacing: 2px; }
.pdp-rating-row a { text-decoration: underline; text-underline-offset: 2px; }
.pdp-price-row { display: flex; align-items: baseline; gap: 12px; margin-bottom: 6px; }
.pdp-price { font-size: 27px; font-weight: 600; }
.pdp-price .was { font-size: 18px; color: var(--ink-3); text-decoration: line-through; font-weight: 400; margin-left: 10px; }
.pdp-tax { font-size: 12.5px; color: var(--ink-3); margin-bottom: 22px; }
.klarna-line {
  display: flex; align-items: center; gap: 10px;
  background: var(--cream); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 12px 15px; font-size: 13px; color: var(--ink-2); margin-bottom: 24px;
}
.klarna-line b { color: var(--ink); }
.klarna-logo { font-weight: 700; font-size: 13px; letter-spacing: -.02em; background: #ffb3c7; color: #17120f; padding: 2px 8px; border-radius: 3px; }

.option-group { margin-bottom: 22px; }
.option-label { font-size: 13px; font-weight: 600; letter-spacing: .04em; margin-bottom: 10px; display: flex; justify-content: space-between; }
.option-label span:last-child { color: var(--ink-3); font-weight: 400; }
.swatch-row { display: flex; gap: 10px; }
.swatch {
  border: 1.5px solid var(--line); border-radius: var(--radius);
  padding: 10px 15px; font-size: 13.5px; background: var(--paper);
  display: inline-flex; align-items: center; gap: 9px;
  transition: border-color .15s;
}
.swatch .dot { width: 14px; height: 14px; border-radius: 50%; border: 1px solid rgba(0,0,0,.12); }
.swatch.active { border-color: var(--ink); box-shadow: inset 0 0 0 1px var(--ink); }
.swatch { cursor: pointer; font: inherit; color: var(--ink); text-align: left; }
.swatch-meta { font-size: 13.5px; color: var(--ink-2); margin: 12px 0 6px; }
.swatch-meta b { color: var(--ink); }
.swatch-hint { font-size: 12.5px; color: var(--ink-3); line-height: 1.5; margin: 0; }

.qty-row { display: flex; gap: 12px; margin-bottom: 14px; }
.qty {
  display: inline-flex; align-items: center; border: 1px solid var(--ink);
  border-radius: var(--radius); overflow: hidden; flex-shrink: 0;
}
.qty button { width: 44px; height: 52px; font-size: 19px; color: var(--ink); }
.qty button:hover { background: var(--cream); }
.qty input { width: 44px; text-align: center; border: none; font-size: 15px; font-weight: 600; -moz-appearance: textfield; }
.qty input::-webkit-outer-spin-button, .qty input::-webkit-inner-spin-button { -webkit-appearance: none; }

.atc-btn { flex: 1; height: 52px; padding: 0 26px; font-size: 13px; }

.stock-line { display: flex; align-items: center; gap: 9px; font-size: 13.5px; color: var(--green); margin-bottom: 20px; font-weight: 500; }
.stock-line .pulse { width: 8px; height: 8px; border-radius: 50%; background: var(--green); }

.delivery-box {
  border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 17px 19px; margin-bottom: 24px; background: var(--paper);
}
.delivery-box .row { display: flex; align-items: flex-start; gap: 12px; font-size: 13.5px; }
.delivery-box .row + .row { margin-top: 11px; padding-top: 11px; border-top: 1px solid var(--cream); }
.delivery-box svg { color: var(--brass); flex-shrink: 0; margin-top: 2px; }
.delivery-box b { font-weight: 600; }
.delivery-box .muted { color: var(--ink-3); font-size: 12.5px; }

.usp-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin-bottom: 24px; }
.usp {
  display: flex; align-items: center; gap: 9px;
  background: var(--cream); border-radius: var(--radius); padding: 11px 13px;
  font-size: 12px; font-weight: 600; letter-spacing: .01em; color: var(--ink-2);
}
.usp svg { color: var(--brass); flex-shrink: 0; }

.accordion { border-top: 1px solid var(--line); }
.acc-item { border-bottom: 1px solid var(--line); }
.acc-head {
  width: 100%; display: flex; justify-content: space-between; align-items: center;
  padding: 18px 0; font-size: 14px; font-weight: 600; letter-spacing: .02em;
  text-align: left;
}
.acc-head svg { transition: transform .22s; color: var(--ink-3); flex-shrink: 0; }
.acc-item.open .acc-head svg { transform: rotate(180deg); }
.acc-body { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.acc-body-inner { padding: 0 0 20px; font-size: 14.5px; color: var(--ink-2); }
.acc-body-inner table { width: 100%; border-collapse: collapse; font-size: 13.5px; }
.acc-body-inner td { padding: 9px 0; border-bottom: 1px solid var(--cream); vertical-align: top; }
.acc-body-inner td:first-child { color: var(--ink-3); width: 44%; padding-right: 16px; }
.acc-body-inner td:last-child { color: var(--ink); font-weight: 500; }
.acc-body-inner p + p { margin-top: 11px; }

.sticky-atc {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 55;
  background: rgba(255,255,255,.97); backdrop-filter: blur(10px);
  border-top: 1px solid var(--line);
  padding: 11px 16px;
  display: none; align-items: center; gap: 14px;
  box-shadow: 0 -4px 20px rgba(28,27,25,.06);
}
.sticky-atc .sa-info { flex: 1; min-width: 0; }
.sticky-atc b { display: block; font-size: 13.5px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.sticky-atc span { font-size: 12.5px; color: var(--ink-3); }
.sticky-atc .btn { padding: 12px 20px; }
@media (max-width: 720px) { .sticky-atc.show { display: flex; } }

@media (max-width: 900px) {
  .pdp { grid-template-columns: 1fr; gap: 30px; }
  .pdp-gallery { position: static; }
  .usp-grid { grid-template-columns: 1fr; }
}

/* ============ Shop page ============ */
.shop-head { padding: 44px 0 26px; border-bottom: 1px solid var(--line); }
.shop-head h1 { font-size: clamp(30px, 4vw, 44px); margin-bottom: 10px; }
.shop-head p { color: var(--ink-2); max-width: 560px; }
.filter-row { display: flex; gap: 8px; align-items: center; padding: 20px 0; flex-wrap: wrap; }
.chip {
  border: 1px solid var(--line); border-radius: 999px;
  padding: 8px 17px; font-size: 13px; color: var(--ink-2); background: var(--paper);
  transition: all .15s;
}
.chip:hover { border-color: var(--ink); color: var(--ink); }
.chip.active { background: var(--ink); color: #fff; border-color: var(--ink); }
.toolbar { display: flex; justify-content: space-between; align-items: center; margin-bottom: 26px; gap: 16px; flex-wrap: wrap; }
.toolbar .count { font-size: 13.5px; color: var(--ink-3); }
.sort-wrap { display: flex; align-items: center; gap: 10px; font-size: 13.5px; color: var(--ink-2); }
.sort-wrap select {
  border: 1px solid var(--line); border-radius: var(--radius); padding: 9px 13px;
  background: var(--paper); font-size: 13.5px; cursor: pointer;
}

/* ============ Cart page ============ */
.page-title { padding: 44px 0 30px; }
.page-title h1 { font-size: clamp(30px, 4vw, 42px); }
.cart-layout { display: grid; grid-template-columns: 1.6fr 1fr; gap: 48px; align-items: start; padding-bottom: 80px; }
.ship-progress { border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 18px 20px; margin-bottom: 22px; background: var(--cream); }
.ship-progress .sp-text { font-size: 13.5px; margin-bottom: 11px; }
.ship-progress .sp-text b { color: var(--brass-dark); }
.bar { height: 6px; background: var(--sand); border-radius: 3px; overflow: hidden; }
.bar-fill { height: 100%; background: var(--brass); border-radius: 3px; transition: width .4s ease; }
.cart-lines { border-top: 1px solid var(--line); }
.cart-line { display: grid; grid-template-columns: 104px 1fr auto; gap: 20px; padding: 22px 0; border-bottom: 1px solid var(--line); }
.cart-line-img { width: 104px; height: 104px; background: var(--cream); border-radius: var(--radius); overflow: hidden; }
.cart-line-img img { width: 100%; height: 100%; object-fit: cover; }
.cart-line-info b { display: block; font-size: 15.5px; margin-bottom: 4px; }
.cart-line-info .variant { font-size: 12.5px; color: var(--ink-3); margin-bottom: 4px; }
.cart-line-info .ships { font-size: 12px; color: var(--green); margin-top: 6px; }
.cart-line-right { text-align: right; display: flex; flex-direction: column; align-items: flex-end; gap: 10px; }
.cart-line-right .lp { font-weight: 600; font-size: 15px; }
.qty-sm button { width: 34px; height: 34px; font-size: 16px; }
.qty-sm input { width: 34px; font-size: 13.5px; }
.remove-btn { font-size: 12px; color: var(--ink-3); text-decoration: underline; text-underline-offset: 2px; }
.remove-btn:hover { color: var(--danger); }

.summary { background: var(--cream); border-radius: var(--radius-lg); padding: 26px; position: sticky; top: 90px; }
.summary h2 { font-size: 20px; margin-bottom: 20px; font-family: var(--sans); font-weight: 600; letter-spacing: -.01em; }
.sum-row { display: flex; justify-content: space-between; font-size: 14.5px; padding: 7px 0; color: var(--ink-2); }
.sum-row.total { border-top: 1px solid var(--sand); margin-top: 12px; padding-top: 16px; font-size: 17px; font-weight: 600; color: var(--ink); }
.sum-row .free { color: var(--green); font-weight: 600; }
.summary .btn { margin-top: 18px; }
.summary-note { font-size: 12px; color: var(--ink-3); text-align: center; margin-top: 13px; }
.secure-badges { display: flex; justify-content: center; gap: 14px; margin-top: 20px; flex-wrap: wrap; }
.secure-badges span { font-size: 11px; color: var(--ink-3); letter-spacing: .04em; display: inline-flex; align-items: center; gap: 5px; }
.empty-cart { text-align: center; padding: 80px 0; }
.empty-cart h2 { font-size: 26px; margin-bottom: 10px; }
.empty-cart p { color: var(--ink-2); margin-bottom: 26px; }
@media (max-width: 900px) { .cart-layout { grid-template-columns: 1fr; } .summary { position: static; } }
@media (max-width: 600px) { .cart-line { grid-template-columns: 78px 1fr auto; gap: 13px; } .cart-line-img { width: 78px; height: 78px; } }

/* ============ Checkout ============ */
.checkout-wrap { display: grid; grid-template-columns: 1.25fr 1fr; gap: 56px; align-items: start; padding-bottom: 80px; }
.express-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 11px; margin-bottom: 14px; }
.express-btn {
  height: 48px; border-radius: var(--radius); color: #fff;
  display: flex; align-items: center; justify-content: center; gap: 7px;
  font-size: 14px; font-weight: 600; transition: opacity .15s, transform .12s;
}
.express-btn:hover { opacity: .9; }
.express-btn:active { transform: scale(.98); }
.express-apple { background: #000; }
.express-gpay { background: #fff; color: #3c4043; border: 1px solid var(--line); }
.express-paypal { background: #ffc439; color: #003087; }
.express-divider { display: flex; align-items: center; gap: 14px; margin: 20px 0 24px; color: var(--ink-3); font-size: 12px; letter-spacing: .08em; text-transform: uppercase; }
.express-divider::before, .express-divider::after { content: ""; flex: 1; height: 1px; background: var(--line); }

.co-section { margin-bottom: 34px; }
.co-section-title { display: flex; align-items: center; gap: 11px; margin-bottom: 16px; }
.co-step {
  width: 24px; height: 24px; border-radius: 50%; background: var(--ink); color: #fff;
  display: grid; place-items: center; font-size: 12px; font-weight: 700; flex-shrink: 0;
}
.co-section-title h2 { font-family: var(--sans); font-size: 17px; font-weight: 600; letter-spacing: -.01em; }
.field-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.field-grid .full { grid-column: 1 / -1; }
.field label { display: block; font-size: 12.5px; font-weight: 600; color: var(--ink-2); margin-bottom: 6px; }
.field input, .field select {
  width: 100%; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 13px 15px; background: var(--paper); font-size: 15px;
  transition: border-color .15s, box-shadow .15s;
}
.field input:focus, .field select:focus {
  outline: none; border-color: var(--ink); box-shadow: 0 0 0 3px rgba(166,124,61,.14);
}
.field .hint { font-size: 11.5px; color: var(--ink-3); margin-top: 5px; }
.radio-card {
  display: flex; align-items: center; gap: 13px;
  border: 1px solid var(--line); border-radius: var(--radius);
  padding: 14px 16px; cursor: pointer; transition: border-color .15s, background .15s;
  font-size: 14px;
}
.radio-card:hover { background: var(--cream); }
.radio-card.selected { border-color: var(--ink); box-shadow: inset 0 0 0 1px var(--ink); background: var(--cream); }
.radio-card input { accent-color: var(--ink); width: 17px; height: 17px; }
.radio-card .rc-body { flex: 1; }
.radio-card b { display: block; font-size: 14px; }
.radio-card span { font-size: 12.5px; color: var(--ink-3); }
.radio-card .rc-price { font-weight: 600; font-size: 14px; }
.radio-stack { display: grid; gap: 10px; }
.payment-note {
  display: flex; gap: 10px; align-items: flex-start;
  background: var(--cream); border-radius: var(--radius); padding: 13px 15px;
  font-size: 12.5px; color: var(--ink-2); margin-top: 14px;
}
.place-order { margin-top: 24px; }
.co-trust { display: flex; gap: 20px; margin-top: 18px; flex-wrap: wrap; }
.co-trust span { font-size: 11.5px; color: var(--ink-3); display: inline-flex; align-items: center; gap: 6px; }

.co-summary { background: var(--cream); border-radius: var(--radius-lg); padding: 26px; position: sticky; top: 90px; }
.co-summary h2 { font-family: var(--sans); font-size: 17px; font-weight: 600; margin-bottom: 18px; }
.co-item { display: grid; grid-template-columns: 58px 1fr auto; gap: 14px; padding: 9px 0; align-items: center; }
.co-item-img { width: 58px; height: 58px; background: var(--paper); border-radius: var(--radius); overflow: hidden; position: relative; }
.co-item-img img { width: 100%; height: 100%; object-fit: cover; }
.co-item-qty {
  position: absolute; top: -7px; right: -7px; background: var(--ink); color: #fff;
  width: 20px; height: 20px; border-radius: 50%; font-size: 11px; font-weight: 700;
  display: grid; place-items: center;
}
.co-item b { font-size: 13.5px; display: block; font-weight: 500; }
.co-item span { font-size: 12px; color: var(--ink-3); }
.co-item .ci-price { font-size: 13.5px; font-weight: 600; }
.coupon-row { display: flex; gap: 8px; margin: 16px 0; }
.coupon-row input { flex: 1; border: 1px solid var(--sand); border-radius: var(--radius); padding: 10px 13px; font-size: 13.5px; background: var(--paper); }
.coupon-row button { border: 1px solid var(--ink); border-radius: var(--radius); padding: 0 17px; font-size: 12.5px; font-weight: 600; }
.coupon-row button:hover { background: var(--ink); color: #fff; }
@media (max-width: 960px) { .checkout-wrap { grid-template-columns: 1fr; } .co-summary { position: static; order: -1; } }
@media (max-width: 620px) { .field-grid { grid-template-columns: 1fr; } .express-row { grid-template-columns: 1fr; } }

/* Success state */
.order-success { text-align: center; padding: 70px 0 90px; }
.order-success .check {
  width: 68px; height: 68px; border-radius: 50%; background: var(--green-soft); color: var(--green);
  display: grid; place-items: center; margin: 0 auto 24px;
}
.order-success h1 { font-size: clamp(30px, 4vw, 42px); margin-bottom: 12px; }
.order-success p { color: var(--ink-2); max-width: 480px; margin: 0 auto 30px; }
.order-num {
  display: inline-block; background: var(--cream); border-radius: var(--radius);
  padding: 11px 20px; font-size: 14px; margin-bottom: 30px;
}
.order-num b { font-family: var(--sans); }

/* ============ FAQ ============ */
.faq-wrap { max-width: 760px; }
.faq-wrap .acc-head { font-size: 16px; font-family: var(--serif); font-weight: 400; }

/* ============ Cookie banner ============ */
.cookie-banner {
  position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 90;
  max-width: 520px;
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 22px;
  transform: translateY(140%); transition: transform .4s cubic-bezier(.2,.7,.3,1);
}
.cookie-banner.show { transform: translateY(0); }
.cookie-banner h3 { font-family: var(--sans); font-size: 15px; font-weight: 600; margin-bottom: 8px; }
.cookie-banner p { font-size: 13px; color: var(--ink-2); margin-bottom: 16px; }
.cookie-banner .cb-actions { display: flex; gap: 10px; }
.cookie-banner .btn { padding: 11px 18px; font-size: 12px; flex: 1; }
.cookie-banner .btn-ghost { border-color: var(--line); }
@media (max-width: 560px) { .cookie-banner { left: 10px; right: 10px; } }

/* ============ Newsletter modal ============ */
.modal-overlay {
  position: fixed; inset: 0; z-index: 95;
  background: rgba(28,27,25,.5); backdrop-filter: blur(3px);
  display: grid; place-items: center; padding: 20px;
  opacity: 0; pointer-events: none; transition: opacity .3s;
}
.modal-overlay.show { opacity: 1; pointer-events: auto; }
.modal-card {
  background: var(--paper); border-radius: var(--radius-lg); overflow: hidden;
  width: 100%; max-width: 760px;
  display: grid; grid-template-columns: 1fr 1fr;
  transform: translateY(16px) scale(.98); transition: transform .3s;
  max-height: 90vh;
}
.modal-overlay.show .modal-card { transform: none; }
.modal-media { background: var(--sand); min-height: 320px; }
.modal-media img { width: 100%; height: 100%; object-fit: cover; }
.modal-body { padding: 40px 36px; position: relative; display: flex; flex-direction: column; justify-content: center; }
.modal-body .close-x { position: absolute; top: 14px; right: 14px; width: 34px; height: 34px; display: grid; place-items: center; border-radius: 50%; color: var(--ink-3); }
.modal-body .close-x:hover { background: var(--cream); color: var(--ink); }
.modal-body .eyebrow { margin-bottom: 10px; }
.modal-body h2 { font-size: 27px; margin-bottom: 10px; }
.modal-body > p { font-size: 14.5px; color: var(--ink-2); margin-bottom: 22px; }
.modal-body input {
  width: 100%; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 13px 15px; font-size: 15px; margin-bottom: 11px;
}
.modal-body input:focus { outline: none; border-color: var(--ink); }
.modal-body .fine { font-size: 11.5px; color: var(--ink-3); margin-top: 12px; }
@media (max-width: 680px) { .modal-card { grid-template-columns: 1fr; } .modal-media { display: none; } }

/* ============ Toast ============ */
.toast {
  position: fixed; bottom: 26px; left: 50%; transform: translate(-50%, 130%);
  background: var(--ink); color: #fff; border-radius: var(--radius);
  padding: 14px 22px; font-size: 14px; z-index: 100;
  box-shadow: var(--shadow-lg);
  transition: transform .3s cubic-bezier(.2,.7,.3,1);
  display: flex; align-items: center; gap: 10px;
  max-width: calc(100% - 32px);
}
.toast.show { transform: translate(-50%, 0); }
.toast svg { color: #8fd0ae; flex-shrink: 0; }

/* ============ Star rating ============ */
.stars { position: relative; display: inline-block; line-height: 1; font-size: 13px; }
.stars .stars-bg { color: var(--sand); letter-spacing: 2px; }
.stars .stars-fg {
  position: absolute; left: 0; top: 0; overflow: hidden; white-space: nowrap;
  color: var(--brass); letter-spacing: 2px;
}

/* ============ Mini cart drawer ============ */
.drawer-overlay {
  position: fixed; inset: 0; background: rgba(28,27,25,.45); z-index: 80;
  opacity: 0; pointer-events: none; transition: opacity .28s;
}
.drawer-overlay.show { opacity: 1; pointer-events: auto; }
.mini-cart {
  position: fixed; top: 0; right: 0; bottom: 0; z-index: 85;
  width: min(420px, 100%);
  background: var(--paper);
  transform: translateX(100%);
  transition: transform .32s cubic-bezier(.2,.7,.3,1);
  display: flex; flex-direction: column;
  box-shadow: var(--shadow-lg);
}
.mini-cart.show { transform: none; }
.mc-head {
  display: flex; justify-content: space-between; align-items: center;
  padding: 18px 22px; border-bottom: 1px solid var(--line); flex-shrink: 0;
}
.mc-head h3 { font-family: var(--sans); font-size: 16px; font-weight: 600; }
.mc-body { flex: 1; overflow-y: auto; padding: 0 22px 20px; }
.mc-foot { border-top: 1px solid var(--line); padding: 18px 22px 22px; flex-shrink: 0; }
.mc-foot .sum-row { padding: 4px 0; }
@media (max-width: 420px) { .mini-cart { width: 100%; } }

/* ============ PDP: Amazon-style content blocks ============ */
.pdp-lead {
  font-size: 15.5px; color: var(--ink-2); margin-bottom: 18px; line-height: 1.6;
}
.about-item { margin: 26px 0 28px; }
.about-item h2 {
  font-family: var(--sans); font-size: 15px; font-weight: 600;
  letter-spacing: .01em; margin-bottom: 14px;
}
.about-item ul { list-style: none; }
.about-item li {
  position: relative; padding-left: 18px; margin-bottom: 13px;
  font-size: 14.5px; line-height: 1.62; color: var(--ink-2);
}
.about-item li::before {
  content: ""; position: absolute; left: 2px; top: 9px;
  width: 6px; height: 6px; border-radius: 50%; background: var(--brass);
}
.spec-note {
  font-size: 12px; color: var(--ink-3);
  background: var(--cream); border-left: 2px solid var(--brass);
  padding: 9px 13px; border-radius: 3px; margin-top: 14px;
}
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-bottom: 28px; }
.why-card { border: 1px solid var(--line); border-radius: var(--radius); padding: 16px 17px; }
.why-card b { display: block; font-size: 13.5px; margin-bottom: 7px; }
.why-card p { font-size: 13px; color: var(--ink-2); line-height: 1.55; }
.pdp-main-img video { width: 100%; height: 100%; object-fit: cover; }
.thumb-video {
  display: grid; place-items: center; gap: 5px; padding: 6px;
  font-size: 10px; letter-spacing: .08em; text-transform: uppercase; color: var(--ink-2);
}
.play-badge { width: 24px; height: 24px; border-radius: 50%; background: var(--ink); position: relative; }
.play-badge::after {
  content: ""; position: absolute; left: 9px; top: 6px;
  border-left: 8px solid #fff; border-top: 6px solid transparent; border-bottom: 6px solid transparent;
}
@media (max-width: 720px) { .why-grid { grid-template-columns: 1fr; } }

/* ============ Policy / legal pages ============ */
.policy { max-width: 760px; margin: 0 auto; padding-bottom: 90px; }
.policy-meta { font-size: 12.5px; letter-spacing: .06em; text-transform: uppercase; color: var(--ink-3); margin: 0 0 6px; }
.policy h2 {
  font-family: var(--serif); font-size: 20px; font-weight: 600;
  color: var(--ink); margin: 36px 0 10px; letter-spacing: -.01em;
}
.policy h3 { font-size: 15px; font-weight: 600; color: var(--ink); margin: 22px 0 6px; }
.policy p { font-size: 14.5px; line-height: 1.78; color: var(--ink-2); margin: 0 0 13px; }
.policy ul, .policy ol { margin: 0 0 15px; padding: 0; }
.policy ul { list-style: none; }
.policy ol { padding-left: 20px; }
.policy li { font-size: 14.5px; line-height: 1.78; color: var(--ink-2); margin-bottom: 8px; }
.policy ul li { position: relative; padding-left: 18px; }
.policy ul li::before {
  content: ""; position: absolute; left: 2px; top: 9.5px;
  width: 5px; height: 5px; border-radius: 50%; background: var(--brass);
}
.policy a { color: var(--ink); text-decoration: underline; text-underline-offset: 2px; }
.policy a:hover { color: var(--brass-dark); }
.policy .callout {
  border-left: 3px solid var(--brass); background: var(--cream);
  padding: 15px 18px; margin: 22px 0; border-radius: 0 6px 6px 0;
}
.policy .callout p:last-child { margin-bottom: 0; }
.policy table { width: 100%; border-collapse: collapse; margin: 0 0 16px; font-size: 14px; }
.policy th, .policy td { text-align: left; padding: 9px 12px 9px 0; border-bottom: 1px solid var(--line); color: var(--ink-2); }
.policy th { color: var(--ink); font-weight: 600; }

/* ===========================================================================
   B2B site — sections added for the wholesale / enquiry site
   =========================================================================== */

.announce-inner { display: flex; align-items: center; justify-content: center; gap: 18px; flex-wrap: wrap; }
.logo-sub {
  display: block; font-family: var(--sans); font-size: 9.5px; letter-spacing: .2em;
  text-transform: uppercase; color: var(--ink-3); margin-top: 2px;
}
.header-cta { display: flex; align-items: center; gap: 12px; }

/* ---- cards (product + post) ---- */
.card-body { padding: 16px 2px 0; }
.card-media { position: relative; overflow: hidden; background: var(--cream); border-radius: var(--radius); }
.card-tag {
  position: absolute; left: 12px; top: 12px; z-index: 2;
  background: rgba(255,255,255,.94); color: var(--ink); font-size: 10px;
  letter-spacing: .12em; text-transform: uppercase; padding: 5px 9px; border-radius: 2px;
}
.card-tag.draft { background: var(--sand); color: var(--ink-2); }
.card-body h3 { font-family: var(--sans); font-size: 16px; font-weight: 500; letter-spacing: 0; margin-bottom: 6px; }
.card-meta { font-size: 13px; color: var(--ink-3); }
.card-foot { margin-top: 10px; }
.card-cta {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 12.5px; font-weight: 600; color: var(--brass-dark);
  border-bottom: 1px solid transparent; padding-bottom: 2px;
}
.card:hover .card-cta { border-bottom-color: var(--brass); }
.card-cta svg { width: 14px; height: 14px; }
.no-match { grid-column: 1 / -1; padding: 40px 0; color: var(--ink-3); font-size: 15px; }

/* ---- sourcing comparison table ---- */
.compare-table { width: 100%; border-collapse: collapse; font-size: 14.5px; }
.compare-table th, .compare-table td {
  text-align: left; padding: 15px 18px 15px 0; border-bottom: 1px solid var(--line); vertical-align: top;
}
.compare-table thead th {
  font-size: 11.5px; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-3);
  border-bottom: 1px solid var(--ink); padding-bottom: 12px;
}
.compare-table tbody th { font-weight: 600; color: var(--ink); width: 30%; }
.compare-table td.good { color: var(--ink); font-weight: 500; padding-left: 18px; border-left: 2px solid var(--brass); }
.compare-table td.dim { color: var(--ink-3); padding-left: 18px; }
@media (max-width: 780px) {
  .compare-table { font-size: 13.5px; }
  .compare-table th, .compare-table td { padding: 11px 10px 11px 0; }
  .compare-table tbody th { width: 34%; }
}

/* ---- who we supply ---- */
.segment { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 28px; }
.segment h3 { font-family: var(--serif); font-size: 19px; font-weight: 600; margin-bottom: 10px; }
.segment p { font-size: 14.5px; color: var(--ink-2); line-height: 1.72; margin-bottom: 16px; }
.segment ul { list-style: none; border-top: 1px solid var(--line); padding-top: 14px; }
.segment li { display: flex; align-items: flex-start; gap: 9px; font-size: 13.5px; color: var(--ink-2); padding: 4px 0; }
.segment li svg { color: var(--brass); flex-shrink: 0; margin-top: 3px; width: 15px; height: 15px; }
.segments-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
@media (max-width: 860px) { .segments-grid { grid-template-columns: 1fr; } }

/* ---- capabilities ---- */
.cap-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
@media (max-width: 900px) { .cap-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .cap-grid { grid-template-columns: 1fr; } }
.cap-card { border-top: 2px solid var(--ink); padding-top: 18px; }
.cap-card h3 { font-family: var(--serif); font-size: 18px; font-weight: 600; margin-bottom: 8px; }
.cap-card p { font-size: 14px; color: var(--ink-2); line-height: 1.7; }

/* ---- process steps ---- */
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
@media (max-width: 900px) { .process-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .process-grid { grid-template-columns: 1fr; } }
.step { position: relative; padding-top: 16px; border-top: 1px solid var(--line); }
.step-n {
  font-family: var(--serif); font-size: 13px; letter-spacing: .1em;
  color: var(--brass); display: block; margin-bottom: 8px;
}
.step h3 { font-size: 15.5px; font-weight: 600; margin-bottom: 7px; }
.step p { font-size: 13.5px; color: var(--ink-2); line-height: 1.68; }

/* ---- product detail ---- */
.pdp-title { font-size: clamp(26px, 3vw, 34px); margin-bottom: 26px; }
.crumbs { font-size: 12.5px; color: var(--ink-3); margin-bottom: 18px; }
.crumbs a { color: var(--ink-3); }
.crumbs a:hover { color: var(--ink); }
.crumbs span { color: var(--ink); }

.pdp { display: grid; grid-template-columns: 1.05fr 1fr; gap: 56px; align-items: start; }
@media (max-width: 900px) { .pdp { grid-template-columns: 1fr; gap: 32px; } }
.pdp-media { position: sticky; top: 92px; }
@media (max-width: 900px) { .pdp-media { position: static; } }
.pdp-media > img { width: 100%; background: var(--cream); border-radius: var(--radius-lg); }
.cert-strip { display: flex; flex-wrap: wrap; gap: 10px 18px; margin-top: 18px; }

/* ---- product gallery ---- */
.pdp-thumbs { display: flex; gap: 10px; margin-top: 14px; flex-wrap: wrap; }
.pdp-thumb {
  width: 72px; height: 72px; padding: 0; cursor: pointer;
  border: 2px solid var(--line); border-radius: 10px; overflow: hidden;
  background: #fff; transition: border-color .15s ease;
}
.pdp-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.pdp-thumb:hover { border-color: var(--ink-3); }
.pdp-thumb.active { border-color: var(--brass, #b08d57); }

.cert-strip span {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 12.5px; color: var(--ink-2);
}
.cert-strip svg { color: var(--brass); width: 14px; height: 14px; }
.cert-strip-link { margin-top: 10px; font-size: 13px; }
.cert-strip-link a { color: var(--brass-dark); text-decoration: underline; text-underline-offset: 2px; }
.pdp-info h1 { font-size: clamp(26px, 3vw, 34px); margin-bottom: 14px; }
.pdp-lead p { font-size: 16px; color: var(--ink-2); line-height: 1.66; }
.pdp-price-row { display: flex; gap: 32px; padding: 20px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); margin: 22px 0; }
.pdp-price .lbl { display: block; font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-3); margin-bottom: 4px; }
.pdp-price b { font-size: 24px; font-weight: 600; }
.pdp-price b.muted { font-size: 20px; color: var(--ink-3); font-weight: 500; }
.pdp-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 24px; }
.pdp-quick { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; background: var(--cream); padding: 20px; border-radius: var(--radius); }
@media (max-width: 620px) { .pdp-quick { grid-template-columns: 1fr; gap: 14px; } }
.pdp-quick span { display: block; font-size: 10.5px; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-3); }
.pdp-quick b { display: block; font-size: 16px; font-weight: 600; margin: 3px 0 2px; }
.pdp-quick small { font-size: 12px; color: var(--ink-3); line-height: 1.5; display: block; }

.pdp-lower { display: grid; grid-template-columns: repeat(2, 1fr); gap: 48px; margin-top: 72px; }
@media (max-width: 860px) { .pdp-lower { grid-template-columns: 1fr; gap: 32px; } }
.pdp-block h2 { font-family: var(--serif); font-size: 22px; font-weight: 600; margin-bottom: 16px; }
.spec-note {
  font-size: 12.5px; color: var(--ink-3); background: var(--cream);
  border-left: 2px solid var(--sand); padding: 10px 14px; margin-bottom: 16px; line-height: 1.6;
}
.spec-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.spec-table th, .spec-table td { text-align: left; padding: 11px 0; border-bottom: 1px solid var(--line); vertical-align: top; }
.spec-table th { color: var(--ink-3); font-weight: 400; width: 42%; padding-right: 16px; }
.spec-table td { color: var(--ink); font-weight: 500; }

/* ---- posts ---- */
.posts-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 34px 26px; }
@media (max-width: 900px) { .posts-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .posts-grid { grid-template-columns: 1fr; } }
.post-card { display: block; }
.post-card.is-draft { opacity: .72; }
.post-media { position: relative; overflow: hidden; border-radius: var(--radius); background: var(--cream); aspect-ratio: 3 / 2; }
.post-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.post-card:hover .post-media img { transform: scale(1.04); }
.post-body { padding: 16px 0 0; }
.post-body h3 { font-family: var(--serif); font-size: 18px; font-weight: 600; margin-bottom: 8px; line-height: 1.35; }
.post-body p { font-size: 14px; color: var(--ink-2); line-height: 1.68; margin-bottom: 10px; }
.post-meta { font-size: 12px; color: var(--ink-3); letter-spacing: .04em; }

.post { max-width: 720px; margin: 0 auto; }
.post h1, .post-title {
  font-size: clamp(28px, 3.6vw, 40px); max-width: 720px; margin: 8px auto 14px;
}
#post-crumbs { max-width: 720px; margin: 0 auto; }
.post .post-hero { width: 100%; border-radius: var(--radius-lg); margin: 26px 0 34px; }
.post-body-full { font-size: 16.5px; line-height: 1.78; color: var(--ink-2); }
.post-body-full h2 {
  font-family: var(--serif); font-size: 24px; font-weight: 600; color: var(--ink);
  margin: 40px 0 14px; padding-top: 8px;
}
.post-body-full h3 { font-size: 17px; font-weight: 600; color: var(--ink); margin: 28px 0 8px; }
.post-body-full p { margin-bottom: 18px; }
.post-body-full ul, .post-body-full ol { margin: 0 0 20px; padding-left: 22px; }
.post-body-full li { margin-bottom: 8px; }
.post-body-full b, .post-body-full strong { color: var(--ink); font-weight: 600; }
.post-body-full .lede { font-size: 18px; line-height: 1.7; color: var(--ink); margin-bottom: 26px; }
.post-body-full .spec-table { font-size: 14.5px; margin-bottom: 22px; }
.post-cta {
  margin-top: 56px; padding: 34px; background: var(--cream);
  border-radius: var(--radius-lg); text-align: center;
}
.post-cta h3 { font-family: var(--serif); font-size: 21px; font-weight: 600; margin-bottom: 8px; }
.post-cta p { font-size: 14.5px; color: var(--ink-2); margin-bottom: 20px; }
/* 每篇文章末尾固定的「全球区域合作伙伴招募」行（由 blog/build.js 注入） */
.partner-recruit {
  margin-top: 26px; padding-top: 18px; border-top: 1px solid var(--line);
  font-size: 14.5px; color: var(--ink-2); text-align: center;
}
.partner-recruit a { color: var(--brass-dark); font-weight: 600; white-space: nowrap; }
.partner-recruit a:hover { text-decoration: underline; }
.draft-note {
  background: var(--sand); border-left: 3px solid var(--brass);
  padding: 14px 18px; margin-bottom: 24px; font-size: 14.5px; color: var(--ink-2);
}
.draft-note code {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  background: var(--paper); padding: 1px 5px; border-radius: 3px; font-size: 13px;
}

/* ---- CTA band ---- */
.cta-band { background: var(--ink); color: #fff; padding: 68px 0; }
.cta-inner { display: grid; grid-template-columns: 1.3fr 1fr; gap: 40px; align-items: center; }
@media (max-width: 860px) { .cta-inner { grid-template-columns: 1fr; gap: 28px; } }
.cta-band h2 { font-family: var(--serif); font-size: clamp(26px, 3.2vw, 36px); font-weight: 600; margin-bottom: 12px; }
.cta-band p { color: rgba(255,255,255,.8); font-size: 16px; line-height: 1.65; max-width: 560px; }
.cta-actions { display: flex; flex-direction: column; gap: 12px; }
.cta-actions .btn-primary { background: #fff; color: var(--ink); }
.cta-actions .btn-primary:hover { background: var(--sand); }
.cta-actions .btn-ghost { color: #fff; border-color: rgba(255,255,255,.35); justify-content: center; }
.cta-actions .btn-ghost:hover { background: rgba(255,255,255,.1); }

/* ---- forms ---- */
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
@media (max-width: 700px) { .form-grid { grid-template-columns: 1fr; } }
.field { display: flex; flex-direction: column; gap: 7px; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: 12.5px; font-weight: 600; letter-spacing: .04em; color: var(--ink); }
.field label .opt { font-weight: 400; color: var(--ink-3); }
.field input, .field select, .field textarea {
  font-family: inherit; font-size: 15px; color: var(--ink);
  padding: 13px 14px; border: 1px solid var(--line); border-radius: var(--radius);
  background: var(--paper); width: 100%; transition: border-color .18s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--ink); box-shadow: 0 0 0 3px rgba(28,27,25,.06);
}
.field textarea { min-height: 140px; resize: vertical; }
.form-note, .form-error, .form-ok {
  grid-column: 1 / -1; font-size: 14px; padding: 12px 16px; border-radius: var(--radius); margin: 0;
}
.form-note { background: var(--cream); color: var(--ink-2); }
.form-error { background: #fbeae8; color: var(--danger); }
.form-ok { background: var(--green-soft); color: var(--green); }

/* ---- contact info blocks ---- */
.info-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
@media (max-width: 760px) { .info-grid { grid-template-columns: 1fr; } }
.info-card { border-top: 2px solid var(--ink); padding-top: 18px; }
.info-card h3 { display: flex; align-items: center; gap: 9px; font-size: 14px; font-weight: 600; margin-bottom: 9px; }
.info-card h3 svg { color: var(--brass); }
.info-card p { font-size: 14px; color: var(--ink-2); line-height: 1.68; }

/* ---- stats strip ---- */
.stats-strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
@media (max-width: 760px) { .stats-strip { grid-template-columns: repeat(2, 1fr); } }
.stat { text-align: center; }
.stat b { display: block; font-family: var(--serif); font-size: clamp(28px, 3.4vw, 40px); font-weight: 600; color: var(--ink); line-height: 1.1; }
.stat span { display: block; font-size: 12.5px; color: var(--ink-3); margin-top: 7px; line-height: 1.5; }

/* ---- generic grids used by sections ---- */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 34px 26px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 34px; }
@media (max-width: 900px) { .grid-3 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .grid-3, .grid-2 { grid-template-columns: 1fr; } }
.filter-row { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 26px; }
.section-note { font-size: 13px; color: var(--ink-3); margin-top: 14px; }

/* ============ Misc ============ */
.divider { height: 1px; background: var(--line); border: 0; }
.text-center { text-align: center; }
.mt-8 { margin-top: 8px; } .mt-16 { margin-top: 16px; } .mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; } .mt-48 { margin-top: 48px; }
.mb-8 { margin-bottom: 8px; } .mb-16 { margin-bottom: 16px; } .mb-24 { margin-bottom: 24px; }

.reveal { opacity: 0; transform: translateY(14px); }
.reveal.in { opacity: 1; transform: none; transition: opacity .5s ease, transform .5s ease; }

/* ---- certifications page (2026-09-15) ---- */
.cert-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px; align-items: start; }
@media (max-width: 880px) { .cert-grid { grid-template-columns: 1fr; } }

.cert-card {
  background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: 30px 28px 26px; box-shadow: var(--shadow);
}
.cert-card .cert-kicker {
  font-size: 11.5px; letter-spacing: .14em; text-transform: uppercase;
  color: var(--brass); font-weight: 600; margin-bottom: 10px;
}
.cert-card h3 {
  font-family: var(--serif); font-size: 23px; font-weight: 600;
  color: var(--ink); letter-spacing: -.01em; margin-bottom: 10px;
}
.cert-card p { color: var(--ink-2); font-size: 15.5px; margin-bottom: 14px; }
.cert-card p:last-child { margin-bottom: 0; }
.cert-card .cert-mark {
  display: inline-block; font-size: 12px; font-weight: 700; letter-spacing: .06em;
  color: var(--brass-dark); background: var(--brass-soft);
  border: 1px solid var(--sand); border-radius: 999px; padding: 5px 12px; margin-bottom: 16px;
}
.cert-facts { width: 100%; border-collapse: collapse; font-size: 14px; margin-top: 4px; }
.cert-facts th, .cert-facts td {
  text-align: left; padding: 8px 0; border-bottom: 1px solid var(--line); vertical-align: top;
}
.cert-facts th { width: 42%; padding-right: 16px; color: var(--ink-3); font-weight: 500; }
.cert-facts td { color: var(--ink); font-weight: 500; }
.cert-facts tr:last-child th, .cert-facts tr:last-child td { border-bottom: 0; }
.cert-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }

@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; animation: none !important; }
  .reveal { opacity: 1; transform: none; }
}

/* ===========================================================================
   Content centre — article pages (/blog/*.html) and the article index
   =========================================================================== */

/* callout + note, reused from the policy pages but scoped to article bodies */
.post-body-full .callout {
  border-left: 3px solid var(--brass); background: var(--cream);
  padding: 15px 18px; margin: 24px 0; border-radius: 0 6px 6px 0;
}
.post-body-full .callout p { margin-bottom: 0; color: var(--ink-2); }
.post-body-full .spec-note { font-size: 14px; color: var(--ink-3); }
.post-body-full table.spec-table { margin-bottom: 24px; }

/* related reading block at the foot of every article */
.post-related { margin-top: 52px; padding-top: 26px; border-top: 1px solid var(--line); }
.post-related h3 {
  font-family: var(--sans); font-size: 11.5px; letter-spacing: .16em;
  text-transform: uppercase; color: var(--ink-3); font-weight: 600; margin-bottom: 14px;
}
.post-related ul { list-style: none; }
.post-related li { position: relative; padding-left: 18px; margin-bottom: 9px; }
.post-related li::before {
  content: ""; position: absolute; left: 2px; top: 9.5px;
  width: 5px; height: 5px; border-radius: 50%; background: var(--brass);
}
.post-related a { color: var(--ink); font-weight: 500; font-size: 15.5px; }
.post-related a:hover { color: var(--brass-dark); }

/* "show more" control on the article index */
.posts-more { display: flex; justify-content: center; margin-top: 46px; }
.posts-count { color: var(--ink-3); font-size: 14px; }
.post-card .post-body h3 { font-size: 17px; }
.no-match { color: var(--ink-3); font-size: 15px; }

/* --- blog pagination (2026-09-16) --- */
.pager{display:flex;gap:8px;justify-content:center;flex-wrap:wrap;margin:4px 0 14px}
.pager .chip{cursor:pointer}
.posts-more .posts-count{margin-top:6px}

/* 2026-09-16: tighter vertical rhythm on the homepage */
[data-page="home"] .section { padding: 58px 0; }
[data-page="home"] .section-head { margin-bottom: 30px; }
[data-page="home"] .section-head-row { margin-bottom: 30px; }
[data-page="home"] .cta-band { padding: 50px 0; }

/* 2026-09-16b: hero buttons made prominent */
[data-page="home"] .hero-actions .btn-primary { background: var(--brass); color: #fff; box-shadow: 0 10px 26px rgba(0,0,0,.35); }
[data-page="home"] .hero-actions .btn-primary:hover { background: var(--brass-dark); }
[data-page="home"] .hero-actions .btn-ghost { color: #fff; border-color: #fff; background: rgba(255,255,255,.16); }
[data-page="home"] .hero-actions .btn-ghost:hover { background: rgba(255,255,255,.3); }

/* ============ language switcher + machine translation ============ */
/* Google injects a banner frame and offsets <body>; neutralise both. */
.goog-te-banner-frame.skiptranslate,
.goog-te-banner-frame { display: none !important; }
html body { top: 0 !important; }
.goog-te-menu-frame { box-shadow: 0 10px 30px rgba(0,0,0,.18) !important; }

/* off-screen host for the Google widget (it must stay in the DOM) */
.gt-host {
  position: absolute !important;
  left: -9999px !important;
  top: 0 !important;
  width: 1px; height: 1px;
  overflow: hidden;
}

.lang-switch {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  vertical-align: middle;
}
.lang-switch .lang-glyph { display: inline-flex; opacity: .8; }
.lang-switch .lang-select {
  appearance: none;
  -webkit-appearance: none;
  background: transparent;
  border: 1px solid currentColor;
  border-radius: 999px;
  padding: 5px 22px 5px 10px;
  font: inherit;
  font-size: 12.5px;
  line-height: 1.5;
  color: inherit;
  cursor: pointer;
  opacity: .85;
  transition: opacity .15s ease;
}
.lang-switch .lang-select:hover { opacity: 1; }
.lang-switch .lang-select:focus-visible { outline: 2px solid var(--brass, #b08d3f); outline-offset: 2px; }
.lang-switch .lang-select option { color: #1d1c19; background: #fff; }
.lang-switch .lang-caret {
  position: absolute;
  right: 9px;
  font-size: 10px;
  opacity: .7;
  pointer-events: none;
}
.lang-switch-head { margin-right: 10px; }
.lang-switch-foot { margin-left: 12px; }

/* right-to-left languages (Arabic) */
[dir="rtl"] .lang-switch .lang-select { padding: 5px 10px 5px 22px; text-align: right; }
[dir="rtl"] .lang-switch .lang-caret { right: auto; left: 9px; }
[dir="rtl"] .header-inner,
[dir="rtl"] .footer-grid { direction: rtl; }
[dir="rtl"] .lang-switch-foot { margin-left: 0; margin-right: 12px; }
/* the switcher is always rendered; on narrow screens it moves into the menu */
.lang-switch-nav { display: none; }

/* status bubble shown while the fallback engine is working */
.tr-note {
  position: fixed; bottom: 24px; right: 20px; z-index: 120;
  background: var(--ink); color: #fff; font-size: 13px; line-height: 1.4;
  padding: 11px 16px; border-radius: var(--radius); box-shadow: var(--shadow-lg);
  opacity: 0; transform: translateY(12px); pointer-events: none;
  transition: opacity .25s ease, transform .25s ease;
  max-width: calc(100% - 40px);
}
.tr-note.show { opacity: 1; transform: none; }

@media (max-width: 860px) {
  .lang-switch-head { margin-right: 0; }
  .lang-switch-head .lang-glyph { display: none; }
  .lang-switch-head .lang-select { font-size: 12px; padding: 4px 18px 4px 8px; }
}
@media (max-width: 640px) {
  .lang-switch-head { display: none; }
  .lang-switch-nav { display: inline-flex; margin: 8px 8px 4px; }
  .lang-switch-nav .lang-select { font-size: 13px; }
}

/* ============================================================================
   GEO 补强（2026-09-16）—— 服务端预渲染产品页 /products/<id>.html 专用
   这些块让页面呈现「答案优先」结构：先给一段自足的可引用摘要，再给事实清单
   与页内问答。只作用于静态产品页，不影响 JS 模板页与其它页面。
   ========================================================================== */

.pdp-answer {
  max-width: 74ch;
  margin: 14px 0 28px;
  font-size: 17px;
  line-height: 1.62;
  color: var(--ink-2);
}

.pdp-faq .pdp-answer { margin-bottom: 18px; }

.pdp-faq-item {
  max-width: 78ch;
  padding: 20px 0;
  border-top: 1px solid var(--line);
}
.pdp-faq-item:first-of-type { border-top: 0; padding-top: 4px; }
.pdp-faq-item h3 {
  font-family: var(--sans);
  font-size: 17px;
  font-weight: 600;
  line-height: 1.35;
  margin-bottom: 8px;
}
.pdp-faq-item p { color: var(--ink-2); }

.pdp-list {
  max-width: 74ch;
  margin: 14px 0 0 20px;
  color: var(--ink-2);
}
.pdp-list li { margin-bottom: 6px; }

/* 全系对比表：这个表有 8 列，而 .compare-table 原本是给 3 列（美国仓 vs 中国直发）
   设计的，单元格只有右内边距，多列并排时相邻两列会贴在一起。这里补左内边距并
   给足最小宽度，窄屏改为容器内横向滚动而不是把列压扁。 */
.table-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.table-scroll .compare-table { min-width: 1080px; }
.table-scroll .compare-table tbody th { width: auto; white-space: nowrap; }
.table-scroll .compare-table th,
.table-scroll .compare-table td { padding-right: 14px; }
.table-scroll .compare-table th + th,
.table-scroll .compare-table td + td { padding-left: 14px; }

@media (max-width: 640px) {
  .pdp-answer { font-size: 16px; }
  .pdp-faq-item { padding: 16px 0; }
}
