/* ============================================================
   DeluxHomes — Luxury House Living
   Palette: off-white, warm grey, charcoal, brass accent
   ============================================================ */
:root {
  --bg: #faf9f7;
  --paper: #ffffff;
  --ink: #1f1d1a;
  --ink-soft: #55504a;
  --grey: #8a8377;
  --line: #e7e3dc;
  --brass: #b08d57;
  --brass-dark: #96754a;
  --black: #141210;            /* brand black (flyers / showroom) */
  --black-soft: #1c1916;
  --gold: #cfa85e;
  --gold-line: linear-gradient(90deg, #6f5426 0%, #b98f4a 22%, #ecd7a0 50%, #b98f4a 78%, #6f5426 100%);
  --hdr-txt: #e9e3d7;
  --hdr-dim: #a89f90;
  --ok: #2c7a3f;
  --err: #b3261e;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Inter', system-ui, -apple-system, sans-serif;
  --shadow: 0 18px 50px rgba(31, 29, 26, .09);
  --rad: 4px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font: 15px/1.65 var(--sans);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3 { font-family: var(--serif); font-weight: 500; line-height: 1.15; margin: 0 0 .4em; }
h1 { font-size: clamp(34px, 5vw, 56px); letter-spacing: .01em; }
h2 { font-size: clamp(26px, 3.4vw, 38px); }
h3 { font-size: 22px; }
p { margin: 0 0 1em; }
.pre { white-space: pre-line; }

.wrap { max-width: 1320px; margin: 0 auto; padding: 0 clamp(22px, 4.5vw, 48px); }

/* ---------- buttons ---------- */
.btn {
  display: inline-block; padding: 13px 30px; font: 600 13px/1 var(--sans);
  letter-spacing: .12em; text-transform: uppercase; border: 1px solid var(--ink);
  border-radius: var(--rad); cursor: pointer; transition: all .25s ease;
  background: transparent; color: var(--ink);
}
.btn:hover { background: var(--ink); color: #fff; }
.btn-dark { background: var(--ink); color: #fff; }
.btn-dark:hover { background: #000; }
.btn-brass { background: var(--brass); border-color: var(--brass); color: #fff; }
.btn-brass:hover { background: var(--brass-dark); border-color: var(--brass-dark); color: #fff; }
.btn-block { display: block; width: 100%; text-align: center; }
.btn[disabled] { opacity: .5; pointer-events: none; }

/* ---------- header (brand black + gold hairline) ---------- */
.hdr {
  position: sticky; top: 0; z-index: 100;
  background: var(--black); color: var(--hdr-txt);
}
.hdr-in {
  max-width: 1320px; margin: 0 auto; padding: 0 clamp(22px, 4.5vw, 48px);
  display: flex; align-items: center; gap: 26px; height: 78px;
}
.hdr-spacer { flex: 1; }
.logo { display: flex; align-items: center; color: #fff; }
.logo img { max-height: 48px; width: auto; }
.logo-svg { width: auto; display: block; fill: currentColor; }
.logo-svg-word { height: 24px; }               /* wordmark — header */
.logo-svg-simple { height: 116px; }            /* DH mark — footer */
.logo-word { font-family: var(--serif); font-size: 27px; letter-spacing: .04em; color: #fff; }
.logo-word b { color: var(--gold); font-weight: 600; }
.logo-sub { font-size: 9px; letter-spacing: .34em; text-transform: uppercase; color: var(--hdr-dim); }

.nav { position: relative; }
.nav::before { content: ''; display: block; height: 2px; background: var(--gold-line); }

/* social icons (header nav bar + footer) */
.socials { display: flex; gap: 2px; align-items: center; }
.socials a {
  width: 34px; height: 34px; display: grid; place-items: center; border-radius: 50%;
  color: var(--grey); transition: color .2s, background .2s;
}
.socials a:hover { color: var(--brass); background: rgba(176, 141, 87, .12); }
.socials svg { width: 17px; height: 17px; }
.socials-hdr { margin-right: 6px; padding-right: 8px; border-right: 1px solid rgba(255,255,255,.14); }
.socials-hdr a { color: var(--hdr-dim); }
.socials-hdr a:hover { color: var(--gold); background: rgba(207, 168, 94, .14); }
.socials-nav { display: none; }
.socials-ftr { margin-top: 8px; }
.socials-ftr a { color: #8d867b; }
.socials-ftr a:hover { color: var(--brass); background: rgba(176, 141, 87, .14); }
.nav-l1 {
  display: flex; list-style: none; margin: 0 auto; padding: 0 clamp(22px, 4.5vw, 48px);
  justify-content: center; max-width: 1320px; flex-wrap: wrap;
}
.nav-l1 > li > a {
  display: block; padding: 15px 7px; font: 500 11px/1 var(--sans);
  letter-spacing: .06em; text-transform: uppercase; color: var(--hdr-txt);
  transition: color .2s; white-space: nowrap;
}
.nav-l1 > li > a:hover { color: var(--gold); }

/* mega menu */
.has-mega { position: static; }
.mega {
  position: absolute; left: 0; right: 0; top: 100%;
  background: var(--paper); border-bottom: 1px solid var(--line);
  box-shadow: var(--shadow); opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: all .22s ease;
}
.has-mega:hover .mega, .has-mega:focus-within .mega { opacity: 1; visibility: visible; transform: none; }
.mega-in {
  max-width: 1320px; margin: 0 auto; padding: 36px clamp(22px, 4.5vw, 48px);
  display: flex; gap: 56px; align-items: flex-start;
}
.mega-col { display: grid; grid-template-columns: repeat(2, minmax(210px, 1fr)); gap: 4px 48px; }
.mega-col a { padding: 7px 0; color: var(--ink-soft); font-size: 14.5px; transition: color .15s; }
.mega-col a:hover { color: var(--brass); }
.mega-all { font-weight: 600; color: var(--brass) !important; margin-top: 6px; }
.mega-img { width: 300px; flex-shrink: 0; }
.mega-img img { aspect-ratio: 3/2; object-fit: cover; border-radius: var(--rad); }

.hdr-actions { display: flex; align-items: center; gap: 6px; }
.icon-btn {
  width: 40px; height: 40px; display: grid; place-items: center; border: 0; background: none;
  cursor: pointer; color: var(--hdr-txt); border-radius: 50%; transition: background .2s; position: relative;
}
.icon-btn:hover { background: rgba(207, 168, 94, .16); }
.icon-btn svg { width: 21px; height: 21px; }
.cart-n {
  position: absolute; top: 2px; right: 0; background: var(--brass); color: #fff;
  font-size: 10.5px; font-weight: 600; min-width: 17px; height: 17px; border-radius: 9px;
  display: grid; place-items: center; padding: 0 4px;
}

/* language switcher */
.lang { position: relative; }
.lang-btn {
  display: flex; align-items: center; gap: 7px; border: 0; background: none; cursor: pointer;
  font: 600 12px var(--sans); letter-spacing: .06em; color: var(--hdr-txt); padding: 9px 10px; border-radius: 20px;
}
.lang-btn:hover { background: rgba(207, 168, 94, .16); }
.flag { width: 20px; height: 14px; border-radius: 2px; object-fit: cover; box-shadow: 0 0 0 1px rgba(0,0,0,.08); }
.lang-menu {
  position: absolute; right: 0; top: calc(100% + 8px); background: var(--paper);
  border: 1px solid var(--line); border-radius: 10px; box-shadow: var(--shadow);
  min-width: 190px; padding: 6px; display: none; z-index: 110;
}
.lang.open .lang-menu { display: block; }
.lang-menu a { display: flex; align-items: center; gap: 10px; padding: 9px 12px; border-radius: 7px; font-size: 14px; color: var(--ink); }
.lang-menu a:hover { background: var(--bg); }
.lang-menu a.on { color: var(--brass-dark); font-weight: 600; }

/* search bar */
.searchbar { display: none; border-top: 1px solid rgba(255,255,255,.1); background: var(--black-soft); }
.searchbar.open { display: block; }
.searchbar-in { max-width: 760px; margin: 0 auto; padding: 18px; display: flex; gap: 10px; }
.searchbar input {
  flex: 1; padding: 13px 18px; font-size: 16px; border: 1px solid var(--line); border-radius: var(--rad);
  background: #fff;
}
.searchbar input:focus { outline: 2px solid var(--gold); }
.searchbar .btn-dark { background: var(--gold); border-color: var(--gold); color: var(--black); }

/* burger */
.burger { display: none; border: 0; background: none; cursor: pointer; padding: 8px; }
.burger span { display: block; width: 22px; height: 2px; background: var(--hdr-txt); margin: 5px 0; transition: .2s; }

/* ---------- hero ---------- */
.hero { position: relative; overflow: hidden; background: var(--ink); }
.hero-slide {
  position: relative; min-height: clamp(420px, 64vh, 680px);
  display: none; align-items: center;
}
.hero-slide.on { display: flex; }
.hero-bg { position: absolute; inset: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; opacity: .82; }
.hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(20, 18, 15, .62) 18%, rgba(20, 18, 15, .12) 65%);
}
.hero-bg.placeholder { background: linear-gradient(120deg, #2b2722, #4d4337 60%, #6b5a44); }
.hero-txt { position: relative; z-index: 2; color: #fff; max-width: 640px; padding: 80px 0; }
.hero-txt .kicker { color: #d8bd95; }
.hero-txt h1 { color: #fff; margin-bottom: 18px; }
.hero-txt p { font-size: 17px; color: rgba(255, 255, 255, .85); margin-bottom: 30px; max-width: 480px; }
.hero-dots { position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%); display: flex; gap: 9px; z-index: 3; }
.hero-dots button { width: 9px; height: 9px; border-radius: 50%; border: 0; background: rgba(255,255,255,.45); cursor: pointer; padding: 0; }
.hero-dots button.on { background: var(--brass); }

.kicker {
  display: block; font: 600 11.5px var(--sans); letter-spacing: .3em; text-transform: uppercase;
  color: var(--brass); margin-bottom: 14px;
}

/* ---------- sections ---------- */
.sect { padding: clamp(56px, 8vw, 110px) 0; }
.sect-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; margin-bottom: clamp(28px, 4vw, 48px); }
.sect-head .more { font: 600 12.5px var(--sans); letter-spacing: .12em; text-transform: uppercase; color: var(--brass); white-space: nowrap; }
.sect-head .more:hover { color: var(--ink); }
.sect-alt { background: var(--paper); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }

/* category grid */
.cat-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 22px; }
.cat-card { position: relative; border-radius: var(--rad); overflow: hidden; aspect-ratio: 4/3; background: #ddd6cb; }
.cat-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s cubic-bezier(.2,.6,.2,1); }
.cat-card:hover img { transform: scale(1.06); }
.cat-card .ph { width: 100%; height: 100%; background: linear-gradient(135deg, #e8e2d7, #cdc2af); }
.cat-card-txt {
  position: absolute; inset: auto 0 0 0; padding: 48px 24px 22px;
  background: linear-gradient(transparent, rgba(20, 18, 15, .72));
  color: #fff; display: flex; align-items: baseline; justify-content: space-between; gap: 10px;
}
.cat-card-txt h3 { color: #fff; margin: 0; font-size: 24px; }
.cat-card-txt span { font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: #d8bd95; white-space: nowrap; }

/* product cards */
.prod-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 26px 22px; }
.pcard { display: flex; flex-direction: column; }
.pcard-img {
  position: relative; aspect-ratio: 1; overflow: hidden; border-radius: var(--rad);
  background: var(--paper); border: 1px solid var(--line);
}
.pcard-img img { width: 100%; height: 100%; object-fit: contain; padding: 6%; box-sizing: border-box; transition: transform .65s cubic-bezier(.2,.6,.2,1); }
.pcard:hover .pcard-img img { transform: scale(1.07); }
.pcard-badge {
  position: absolute; top: 12px; left: 12px; background: var(--brass); color: #fff;
  font: 600 10.5px var(--sans); letter-spacing: .1em; text-transform: uppercase;
  padding: 5px 10px; border-radius: 3px; z-index: 2;
}
.pcard-badge.quote { background: var(--ink); }
.pcard-body { padding: 14px 2px 0; }
.pcard-brand { font: 600 10.5px var(--sans); letter-spacing: .18em; text-transform: uppercase; color: var(--grey); }
.pcard h3 { font-size: 18.5px; margin: 3px 0 6px; font-weight: 500; }
.pcard:hover h3 { color: var(--brass); }
.pcard-price { font: 600 14.5px var(--sans); }
.pcard-price .old { color: var(--grey); text-decoration: line-through; font-weight: 400; margin-left: 8px; }
.pcard-price .from { color: var(--grey); font-weight: 400; }

/* brand strip */
.brand-strip { display: flex; flex-wrap: wrap; gap: 14px 40px; align-items: center; justify-content: center; }
.brand-strip a {
  font-family: var(--serif); font-size: 24px; color: var(--grey); letter-spacing: .04em;
  transition: color .2s; padding: 10px 6px;
}
.brand-strip a:hover { color: var(--brass); }
.brand-strip img {
  /* fixed height so SVGs always render; the width cap + contain shrinks wide wordmarks into balance */
  height: 52px; width: auto; max-width: 130px; object-fit: contain;
  filter: grayscale(1) opacity(.75); transition: filter .25s;
}
.brand-strip a:hover img { filter: none; }

/* split section (SUNS / inspiration) */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 6vw, 90px); align-items: center; }
.split-img { border-radius: var(--rad); overflow: hidden; aspect-ratio: 5/4; background: #ddd6cb; }
.split-img img { width: 100%; height: 100%; object-fit: cover; }
.split-img .ph { width: 100%; height: 100%; background: linear-gradient(135deg, #e8e2d7, #cdc2af); }
.split-txt p { color: var(--ink-soft); font-size: 16px; max-width: 480px; }

/* ---------- category page ---------- */
.page-head { padding-top: clamp(36px, 6vw, 70px); }
.crumbs { font-size: 12.5px; color: var(--grey); margin-bottom: 14px; }
.crumbs a:hover { color: var(--brass); }
.crumbs span { margin: 0 7px; }
.subcat-chips { display: flex; flex-wrap: wrap; gap: 9px; margin: 22px 0 0; }
.subcat-chips a {
  padding: 9px 18px; border: 1px solid var(--line); border-radius: 30px; font-size: 13.5px;
  background: var(--paper); transition: all .2s;
}
.subcat-chips a:hover { border-color: var(--brass); color: var(--brass); }
.subcat-chips a.on { background: var(--ink); border-color: var(--ink); color: #fff; }

.listing { display: grid; grid-template-columns: 240px 1fr; gap: clamp(28px, 4vw, 56px); padding-top: 36px; padding-bottom: 90px; }
.filters h4 { font: 600 11.5px var(--sans); letter-spacing: .16em; text-transform: uppercase; color: var(--grey); margin: 0 0 12px; }
.fgroup { padding: 14px 0; border-top: 1px solid var(--line); }
.fgroup h4 { margin-bottom: 8px; }
.fgroup a { display: block; padding: 5px 0; font-size: 14px; color: var(--ink-soft); }
.fgroup a:hover, .fgroup a.on { color: var(--brass); }
.fgroup a.on { font-weight: 600; }
.price-inputs { display: flex; gap: 8px; align-items: center; }
.price-inputs input { width: 100%; padding: 9px 10px; border: 1px solid var(--line); border-radius: var(--rad); font-size: 14px; background: var(--paper); }
.fgroup .btn { margin-top: 12px; padding: 10px 18px; font-size: 11px; }

.listing-top { display: flex; align-items: center; justify-content: space-between; gap: 14px; margin-bottom: 22px; }
.listing-top .count { color: var(--grey); font-size: 13.5px; }
.listing-top select {
  padding: 10px 14px; border: 1px solid var(--line); border-radius: var(--rad);
  font-size: 13.5px; background: var(--paper); cursor: pointer;
}

.pagination { display: flex; gap: 8px; justify-content: center; margin-top: 48px; }
.pagination a, .pagination span {
  min-width: 40px; height: 40px; display: grid; place-items: center; border: 1px solid var(--line);
  border-radius: var(--rad); font-size: 14px; background: var(--paper);
}
.pagination .on { background: var(--ink); color: #fff; border-color: var(--ink); }
.pagination a:hover { border-color: var(--brass); color: var(--brass); }

/* ---------- product page ---------- */
.pdp { display: grid; grid-template-columns: minmax(0, 7fr) minmax(0, 5fr); gap: clamp(30px, 5vw, 80px); padding: clamp(30px, 5vw, 60px) 0 80px; }
.gallery-main {
  border-radius: var(--rad); overflow: hidden; background: var(--paper); border: 1px solid var(--line);
  aspect-ratio: 1; cursor: zoom-in;
}
.gallery-main img { width: 100%; height: 100%; object-fit: contain; }
.gallery-thumbs { display: flex; gap: 10px; margin-top: 12px; flex-wrap: wrap; }
.gallery-thumbs button {
  width: 76px; height: 76px; border: 1px solid var(--line); border-radius: var(--rad);
  overflow: hidden; padding: 0; cursor: pointer; background: var(--paper); opacity: .75; transition: all .2s;
}
.gallery-thumbs button.on, .gallery-thumbs button:hover { opacity: 1; border-color: var(--brass); }
.gallery-thumbs img { width: 100%; height: 100%; object-fit: contain; padding: 5px; box-sizing: border-box; }

.pdp-info .kicker { margin-bottom: 8px; }
.pdp-info h1 { font-size: clamp(28px, 3.4vw, 42px); margin-bottom: 12px; }
.pdp-price { font: 600 24px var(--sans); margin: 10px 0 4px; }
.pdp-price .old { color: var(--grey); text-decoration: line-through; font-weight: 400; font-size: 18px; margin-left: 12px; }
.pdp-vat { font-size: 12.5px; color: var(--grey); margin-bottom: 20px; }
.stock { display: inline-flex; align-items: center; gap: 7px; font-size: 13px; font-weight: 500; margin-bottom: 20px; }
.stock::before { content: ''; width: 8px; height: 8px; border-radius: 50%; background: var(--ok); }
.stock.on-order::before { background: #d6a000; }
.stock.quote::before { background: var(--brass); }
.pdp-desc { color: var(--ink-soft); font-size: 15.5px; }
.pdp-form { margin: 26px 0; display: grid; gap: 14px; min-width: 0; }
.pdp-form select { width: 100%; max-width: 100%; min-width: 0; text-overflow: ellipsis; }
.pdp-info, .gallery-main { min-width: 0; max-width: 100%; }
.pdp-form select, .pdp-form input[type=number] {
  padding: 13px 16px; border: 1px solid var(--line); border-radius: var(--rad); font-size: 15px; background: var(--paper);
}
.qty-row { display: flex; gap: 12px; }
.qty-row input { width: 90px; }
.qty-row .btn { flex: 1; }

.spec-table { width: 100%; border-collapse: collapse; font-size: 14px; margin-top: 10px; }
.spec-table td { padding: 10px 4px; border-bottom: 1px solid var(--line); vertical-align: top; }
.spec-table td:first-child { color: var(--grey); width: 42%; }

.quote-box { background: var(--paper); border: 1px solid var(--line); border-radius: 10px; padding: 26px; margin-top: 10px; }
.viz-cam-btn { display: none; }                 /* camera button: touch devices only */
@media (hover: none) and (pointer: coarse) {
  .viz-cam-btn { display: inline-block; }
}
.quote-box h3 { margin-bottom: 6px; }
.quote-box p { color: var(--ink-soft); font-size: 14px; }

/* ---------- forms ---------- */
.fld { display: block; margin-bottom: 16px; }
.fld span { display: block; font: 600 12.5px var(--sans); margin-bottom: 6px; color: var(--ink-soft); }
.fld input, .fld textarea, .fld select {
  width: 100%; padding: 13px 15px; font-size: 15px; font-family: var(--sans);
  border: 1px solid var(--line); border-radius: var(--rad); background: var(--paper);
}
.fld input:focus, .fld textarea:focus, .fld select:focus { outline: 2px solid var(--brass); border-color: var(--brass); }
.fld textarea { min-height: 120px; resize: vertical; }
.frow { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.check { display: flex; gap: 9px; align-items: center; font-size: 14px; cursor: pointer; }
.check input { width: auto; accent-color: var(--brass); }

/* ---------- cart / checkout ---------- */
.cart-table { width: 100%; border-collapse: collapse; }
.cart-table th { text-align: left; font: 600 11.5px var(--sans); letter-spacing: .14em; text-transform: uppercase; color: var(--grey); padding: 0 10px 14px 0; border-bottom: 1px solid var(--line); }
.cart-table td { padding: 18px 10px 18px 0; border-bottom: 1px solid var(--line); vertical-align: middle; }
.cart-item { display: flex; gap: 16px; align-items: center; }
.cart-item img { width: 84px; height: 84px; object-fit: cover; border-radius: var(--rad); border: 1px solid var(--line); }
.cart-item .t { font-weight: 500; }
.cart-item .v { font-size: 12.5px; color: var(--grey); }
.cart-qty { width: 70px; padding: 9px; border: 1px solid var(--line); border-radius: var(--rad); text-align: center; }
.cart-rm { color: var(--grey); font-size: 13px; border: 0; background: none; cursor: pointer; text-decoration: underline; }
.cart-rm:hover { color: var(--err); }

.cart-layout { display: grid; grid-template-columns: minmax(0, 1fr) 380px; gap: clamp(28px, 4vw, 60px); align-items: start; padding-bottom: 90px; }
.summary { background: var(--paper); border: 1px solid var(--line); border-radius: 10px; padding: 26px; position: sticky; top: 96px; }
.summary h3 { margin-bottom: 16px; }
.sum-row { display: flex; justify-content: space-between; padding: 8px 0; font-size: 14.5px; }
.sum-row.total { border-top: 1px solid var(--line); margin-top: 10px; padding-top: 16px; font: 600 18px var(--sans); }
.sum-row .muted, .muted { color: var(--grey); font-size: 12.5px; }

.pm-list { display: grid; gap: 10px; margin: 8px 0 20px; }
.pm {
  display: flex; gap: 13px; align-items: flex-start; border: 1px solid var(--line); border-radius: 10px;
  padding: 15px 16px; cursor: pointer; background: var(--paper); transition: border .2s;
}
.pm:hover { border-color: var(--brass); }
.pm input { margin-top: 3px; accent-color: var(--brass); }
.pm.sel { border-color: var(--brass); box-shadow: 0 0 0 1px var(--brass); }
.pm .pm-name { font-weight: 600; font-size: 14.5px; }
.pm .pm-hint { font-size: 12.5px; color: var(--grey); }
.pm-logo { margin-left: auto; display: flex; gap: 5px; align-items: center; flex-wrap: wrap; justify-content: flex-end; }
.pm-logo img { height: 24px; width: auto; border-radius: 4px; box-shadow: 0 0 0 1px var(--line); }
@media (max-width: 560px) {
  .pm-logo img { height: 20px; }
}

.order-box { background: var(--paper); border: 1px solid var(--line); border-radius: 12px; padding: clamp(26px, 4vw, 44px); max-width: 720px; margin: 0 auto; }
.order-ok { text-align: center; }
.order-ok .big { font-size: 52px; color: var(--ok); }
.bank-box { background: var(--bg); border: 1px dashed var(--brass); border-radius: 10px; padding: 20px 22px; margin: 18px 0; }
.status-pill {
  display: inline-block; padding: 6px 14px; border-radius: 20px; font: 600 12px var(--sans);
  letter-spacing: .06em; text-transform: uppercase; background: rgba(176, 141, 87, .14); color: var(--brass-dark);
}
.status-pill.ok { background: rgba(44, 122, 63, .12); color: var(--ok); }

/* ---------- brands page ---------- */
.brands-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); gap: 20px; }
.brand-card {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--rad);
  aspect-ratio: 8/5; display: grid; place-items: center; padding: 26px; transition: all .25s; position: relative;
}
.brand-card:hover { border-color: var(--brass); box-shadow: var(--shadow); }
.brand-card img { height: 86px; width: auto; max-width: 62%; object-fit: contain; }
.brand-card .brand-name { font-family: var(--serif); font-size: 30px; color: var(--ink-soft); }
.brand-card .excl {
  position: absolute; top: 12px; right: 12px; background: var(--brass); color: #fff;
  font: 600 9.5px var(--sans); letter-spacing: .1em; text-transform: uppercase; padding: 4px 9px; border-radius: 3px;
}
.brand-hero { background: var(--ink); color: #fff; position: relative; overflow: hidden; }
.brand-hero-img { position: absolute; inset: 0; }
.brand-hero-img img { width: 100%; height: 100%; object-fit: cover; opacity: .45; }
.brand-hero-in { position: relative; z-index: 2; padding: clamp(56px, 9vw, 120px) 0; max-width: 640px; }
.brand-hero h1 { color: #fff; }
.brand-hero p { color: rgba(255,255,255,.85); font-size: 16px; }

/* ---------- lightbox (fullscreen image + zoom) ---------- */
.lb {
  position: fixed; inset: 0; z-index: 300; background: rgba(20, 18, 15, .93);
  display: flex; align-items: center; justify-content: center; overflow: hidden;
}
.lb img {
  max-width: 94vw; max-height: 94vh; user-select: none; -webkit-user-drag: none;
  transition: transform .12s ease-out; cursor: zoom-in;
}
.lb.zoomed img { cursor: grab; }
.lb.dragging img { cursor: grabbing; transition: none; }
.lb-tools { position: fixed; top: 18px; right: 18px; display: flex; gap: 8px; z-index: 301; }
.lb-tools button {
  width: 44px; height: 44px; border-radius: 50%; border: 0; cursor: pointer;
  background: rgba(255, 255, 255, .14); color: #fff; font-size: 20px; line-height: 1;
  transition: background .2s;
}
.lb-tools button:hover { background: rgba(255, 255, 255, .3); }

/* ---------- toast / pencil ---------- */
.toast {
  position: fixed; top: 90px; left: 50%; transform: translateX(-50%); z-index: 200;
  padding: 14px 26px; border-radius: 10px; font-weight: 500; box-shadow: var(--shadow);
  animation: toastIn .3s ease, toastOut .4s ease 4s forwards;
}
.toast-ok { background: #eaf6ec; border: 1px solid #bfe3c6; color: #1d5d2c; }
.toast-err { background: #fdecea; border: 1px solid #f5c6c0; color: #8c1d18; }
@keyframes toastIn { from { opacity: 0; transform: translate(-50%, -8px); } }
@keyframes toastOut { to { opacity: 0; visibility: hidden; } }

.pencil {
  display: inline-grid; place-items: center; width: 22px; height: 22px; margin-left: 6px;
  font-size: 12px; border-radius: 50%; background: var(--brass); color: #fff !important; vertical-align: middle;
  opacity: .85;
}
.pencil:hover { opacity: 1; transform: scale(1.1); }
body:not(.is-admin) .pencil { display: none; }

/* ---------- product downloads ---------- */
.dl-list { list-style: none; margin: 0; padding: 0; }
.dl-list li { border-bottom: 1px solid var(--line); }
.dl-list a { display: flex; align-items: center; gap: 10px; padding: 11px 2px; font-size: 14.5px; color: var(--ink-soft); transition: color .15s; }
.dl-list a:hover { color: var(--brass); }
.dl-list svg { width: 17px; height: 17px; flex-shrink: 0; color: var(--brass); }

/* ---------- brand banner (framed logo + slogan on black) ---------- */
.brand-banner {
  background: var(--black); text-align: center; color: #fff;
  padding: clamp(52px, 8vw, 100px) 0; margin: clamp(30px, 5vw, 60px) 0;
}
.brand-banner::before, .brand-banner::after { content: ''; display: block; height: 2px; background: var(--gold-line); max-width: 560px; margin: 0 auto; }
.brand-banner::before { margin-bottom: clamp(36px, 5vw, 60px); }
.brand-banner::after { margin-top: clamp(36px, 5vw, 60px); }
.brand-banner-logo { height: clamp(170px, 26vw, 270px); margin: 0 auto; }

/* ---------- footer (brand black + gold hairline) ---------- */
.ftr { background: var(--black); color: #c9c2b8; margin-top: 40px; }
.ftr::before { content: ''; display: block; height: 3px; background: var(--gold-line); }
.ftr-in {
  max-width: 1320px; margin: 0 auto; padding: clamp(48px, 6vw, 80px) clamp(22px, 4.5vw, 48px) 40px;
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.1fr; gap: clamp(26px, 4vw, 60px);
}
.ftr h4 { font: 600 11.5px var(--sans); letter-spacing: .2em; text-transform: uppercase; color: var(--gold); margin: 0 0 16px; }
.ftr-col a { display: block; padding: 4px 0; font-size: 14px; color: #c9c2b8; }
.ftr-col a:hover { color: var(--gold); }
.ftr-about p { font-size: 14px; line-height: 1.7; }
.ftr-logo { margin-bottom: 18px; color: #fff; }
.ftr-social a { display: inline-block; margin-right: 16px; color: var(--gold); }
.ftr-bar {
  border-top: 1px solid rgba(255,255,255,.09);
  max-width: 1320px; margin: 0 auto; padding: 20px clamp(22px, 4.5vw, 48px);
  display: flex; justify-content: space-between; align-items: center; gap: 14px; flex-wrap: wrap;
  font-size: 12.5px; color: #8d867b;
}
.pay-badges { display: flex; gap: 7px; flex-wrap: wrap; align-items: center; }
.pay-badges img { height: 26px; width: auto; border-radius: 4px; opacity: .92; }

/* ---------- luxury motion ---------- */
.hdr { transition: box-shadow .35s ease; }
.hdr.scrolled { box-shadow: 0 10px 38px rgba(0, 0, 0, .38); }

.nav-l1 > li > a { position: relative; }
.nav-l1 > li > a::after {
  content: ''; position: absolute; left: 9px; right: 100%; bottom: 9px; height: 1px;
  background: var(--gold); transition: right .32s cubic-bezier(.2,.6,.2,1);
}
.nav-l1 > li > a:hover::after { right: 9px; }
.nav-l1 > li > a.nav-sale::after { display: none; }
.nav-l1 > li > a.nav-sale span {
  display: inline-block; background: #9e3524; color: #fff; font-weight: 600;
  padding: 4px 12px 3px; margin: -4px 0 -3px; vertical-align: middle; border-radius: 999px; letter-spacing: .08em;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .12);
  transition: background .2s, transform .2s;
}
.nav-l1 > li > a.nav-sale:hover span { background: #b8402f; transform: translateY(-1px); }

.pcard-img { transition: box-shadow .45s ease; }
.pcard:hover .pcard-img { box-shadow: 0 24px 50px rgba(31, 29, 26, .13); border-color: #ddd6ca; }
.cat-card, .brand-card { transition: transform .45s cubic-bezier(.2,.6,.2,1), box-shadow .45s ease, border-color .25s ease; }
.cat-card:hover, .brand-card:hover { transform: translateY(-5px); box-shadow: 0 26px 54px rgba(31, 29, 26, .16); }
.cat-card-txt span { transition: transform .35s cubic-bezier(.2,.6,.2,1); }
.cat-card:hover .cat-card-txt span { transform: translateX(5px); }
.split-img img { transition: transform 1.2s cubic-bezier(.2,.6,.2,1); }
.split:hover .split-img img { transform: scale(1.04); }

.btn { position: relative; overflow: hidden; }
.btn::after {
  content: ''; position: absolute; top: 0; left: -80%; width: 45%; height: 100%;
  background: linear-gradient(105deg, transparent, rgba(255, 255, 255, .38), transparent);
  transform: skewX(-20deg); transition: left .01s;
}
.btn:hover::after { left: 130%; transition: left .65s ease; }

@media (prefers-reduced-motion: no-preference) {
  /* scroll reveal (elements get .reveal via JS; .in-view when scrolled into sight) */
  .reveal {
    opacity: 0; transform: translateY(44px);
    transition: opacity 1.15s cubic-bezier(.16,.68,.24,1) var(--d, 0s), transform 1.15s cubic-bezier(.16,.68,.24,1) var(--d, 0s);
    will-change: opacity, transform;
  }
  .reveal.in-view { opacity: 1; transform: none; }

  /* hero: slow zoom-out + staggered text rise */
  .hero-slide.on .hero-bg img { animation: kenburns 8s cubic-bezier(.2,.5,.3,1) forwards; }
  .hero-slide.on .hero-txt > * { opacity: 0; animation: riseIn .95s cubic-bezier(.2,.6,.2,1) forwards; }
  .hero-slide.on .hero-txt > *:nth-child(2) { animation-delay: .18s; }
  .hero-slide.on .hero-txt > *:nth-child(3) { animation-delay: .36s; }
  .hero-slide.on .hero-txt > *:nth-child(4) { animation-delay: .54s; }
}
@keyframes kenburns { from { transform: scale(1.09); } to { transform: scale(1); } }
@keyframes riseIn { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: none; } }

/* ---------- responsive ---------- */
@media (max-width: 1080px) {
  .nav-l1 > li > a { padding: 28px 9px; font-size: 11.5px; }
  .listing { grid-template-columns: 1fr; }
  .filters { display: flex; flex-wrap: wrap; gap: 0 28px; border-bottom: 1px solid var(--line); margin-bottom: 8px; }
  .fgroup { border-top: 0; padding: 10px 0 18px; }
}
@media (max-width: 900px) {
  .burger { display: block; }
  body.nav-open { overflow: hidden; }
  .burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .burger.open span:nth-child(2) { opacity: 0; }
  .burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .nav {
    position: fixed; inset: 78px 0 0 0; background: var(--black); z-index: 99;
    transform: translateX(-100%); transition: transform .3s ease; overflow-y: auto; padding: 10px 22px 40px;
  }
  .nav::before { position: absolute; top: 0; left: 0; right: 0; }
  .nav.open { transform: none; }
  .nav-l1 { flex-direction: column; gap: 0; }
  .nav-l1 > li { border-bottom: 1px solid rgba(255,255,255,.09); }
  .nav-l1 > li > a { padding: 16px 0; font-size: 14px; }
  /* chevron on items with a submenu (replaces the desktop hover underline here) */
  .nav-l1 .has-mega > a { position: relative; padding-right: 26px; }
  .nav-l1 .has-mega > a::after {
    content: ''; position: absolute; left: auto; right: 6px; bottom: auto; top: 50%;
    width: 8px; height: 8px; background: none;
    border-right: 1.5px solid var(--hdr-dim); border-bottom: 1.5px solid var(--hdr-dim);
    transform: translateY(-70%) rotate(45deg); transition: transform .25s ease;
  }
  .nav-l1 .has-mega.open > a::after { transform: translateY(-30%) rotate(225deg); }
  .mega-col a { padding: 9px 0 9px 16px; font-size: 14px; border-left: 1px solid rgba(255,255,255,.14); color: var(--hdr-dim); }
  .mega-col a.mega-all { border-left-color: var(--gold); color: var(--gold) !important; }
  .mega { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: 0; background: none; display: none; }
  .has-mega.open .mega { display: block; }
  .mega-in { padding: 0 0 16px; }
  .mega-col { grid-template-columns: 1fr; }
  .mega-img { display: none; }
  .socials-hdr { display: none; }
  .socials-nav { display: flex; padding: 18px 0 6px; }
  .socials-nav a { color: var(--hdr-dim); }
  .socials-nav a:hover { color: var(--gold); }
  .cart-layout { grid-template-columns: 1fr; }
  .summary { position: static; }
  .pdp { grid-template-columns: minmax(0, 1fr); }
  .split { grid-template-columns: 1fr; }
  .ftr-in { grid-template-columns: 1fr 1fr; }
  .frow { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .logo-sub { display: none; }
  .hdr-in { gap: 6px; padding-right: 14px; }
  .hdr-actions { gap: 0; }
  .lang-btn { padding: 9px 6px; gap: 5px; }
  .lang-btn > span { display: none; }        /* flag only — saves room for the cart */
  .icon-btn { width: 38px; }
  .logo-word { font-size: 23px; }
  .logo-svg-word { height: 19px; }
  .prod-grid { grid-template-columns: repeat(2, 1fr); gap: 18px 12px; }
  .pcard h3 { font-size: 15.5px; }
  .cat-grid { grid-template-columns: 1fr; }
  .ftr-in { grid-template-columns: 1fr; }
  .cart-table th:nth-child(2), .cart-table td:nth-child(2) { display: none; }
}

/* ---------- live search suggestions ---------- */
.searchbar-in { position: relative; }
.suggest {
  position: absolute; top: calc(100% - 6px); left: 18px; right: 18px;
  background: #fff; border-radius: 12px; box-shadow: 0 26px 70px rgba(0,0,0,.4);
  z-index: 130; max-height: 65vh; overflow: auto; padding: 8px;
}
.sug-label { font: 600 10.5px var(--sans); letter-spacing: .16em; text-transform: uppercase; color: var(--grey); padding: 10px 10px 4px; }
.sug-item { display: flex; align-items: center; gap: 12px; padding: 9px 10px; border-radius: 8px; font-size: 14.5px; color: var(--ink); }
.sug-item:hover, .sug-item.on { background: rgba(176, 141, 87, .13); color: var(--brass-dark); }
.sug-link { font-weight: 500; }
.sug-arrow { margin-left: auto; width: 16px; height: 16px; color: var(--brass); flex-shrink: 0; }
.chip-arrow { width: 14px; height: 14px; color: var(--brass); flex-shrink: 0; }
.sug-prod img { width: 42px; height: 42px; object-fit: cover; border-radius: 6px; flex-shrink: 0; background: var(--bg); }
.sug-prod .t { display: flex; flex-direction: column; line-height: 1.3; }
.sug-prod .t small { color: var(--grey); font-size: 11.5px; }
.sug-prod .p { margin-left: auto; font-weight: 600; white-space: nowrap; }

/* search page: brand / category hits */
.s-hits { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 14px; }
.chip {
  display: inline-flex; align-items: center; gap: 8px; border: 1px solid var(--line); background: #fff;
  border-radius: 20px; padding: 7px 14px; font-size: 13.5px; transition: border-color .15s, color .15s;
}
.chip span { font-size: 10px; letter-spacing: .1em; text-transform: uppercase; color: var(--grey); }
.chip:hover { border-color: var(--brass); color: var(--brass-dark); }

/* ---------- room visualizer loading state ---------- */
.viz-spinner {
  display: inline-block; width: 15px; height: 15px; margin-right: 9px; vertical-align: -2px;
  border: 2.5px solid rgba(176, 141, 87, .25); border-top-color: var(--brass); border-radius: 50%;
  animation: vizspin .8s linear infinite;
}
@keyframes vizspin { to { transform: rotate(360deg); } }
.viz-prog { height: 6px; background: #eee7db; border-radius: 4px; overflow: hidden; margin-top: 10px; }
.viz-prog i {
  display: block; height: 100%; width: 0; border-radius: 4px;
  background: linear-gradient(90deg, var(--brass), #e6cf96, var(--brass)); background-size: 200% 100%;
}
.viz-prog.run i { animation: vizfill 16s cubic-bezier(.25,.6,.3,1) forwards, vizshimmer 1.2s linear infinite; }
@keyframes vizfill { 0% { width: 2%; } 70% { width: 78%; } 100% { width: 97%; } }
@keyframes vizshimmer { to { background-position: -200% 0; } }
.viz-wait { animation: vizpulse 1.6s ease-in-out infinite; }
@keyframes vizpulse { 50% { opacity: .55; } }

/* original (untranslated) product name under the title, for phone orders */
.orig-title { margin: -4px 0 14px; font-size: 13px; color: var(--grey); letter-spacing: .02em; }

/* ---------- "my rooms" corner viewer ---------- */
.rooms-fab {
  position: fixed; right: 18px; bottom: 18px; z-index: 140;
  display: flex; align-items: center; gap: 9px; padding: 12px 18px;
  background: var(--black); color: #f4efe6; border: 1px solid rgba(207,168,94,.55); border-radius: 30px;
  font: 600 12.5px var(--sans); letter-spacing: .04em; cursor: pointer;
  box-shadow: 0 12px 34px rgba(0,0,0,.35); transition: transform .25s ease, box-shadow .25s ease;
}
.rooms-fab:hover { transform: translateY(-2px); box-shadow: 0 18px 40px rgba(0,0,0,.42); }
.rooms-fab svg { width: 18px; height: 18px; color: var(--gold); }
.rooms-fab b { background: var(--gold); color: var(--black); min-width: 19px; height: 19px; border-radius: 10px; display: grid; place-items: center; font-size: 11px; padding: 0 5px; }
.rooms-fab b:empty { display: none; }
.rooms-fab.pop { animation: roomspop .8s cubic-bezier(.2,.9,.3,1.4); }
@keyframes roomspop { 30% { transform: scale(1.12); } }

.rooms-panel {
  position: fixed; right: 18px; bottom: 74px; z-index: 141;
  width: min(400px, calc(100vw - 36px)); max-height: min(72vh, 620px); overflow: auto;
  background: #fff; border-radius: 16px; box-shadow: 0 30px 80px rgba(0,0,0,.4); padding: 18px;
}
.rooms-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 4px; }
.rooms-head strong { font-family: var(--serif); font-size: 19px; }
.rooms-x { border: 0; background: none; cursor: pointer; font-size: 15px; color: var(--grey); padding: 6px; }
.rooms-hint { color: var(--grey); font-size: 12.5px; margin: 0 0 12px; }
.rooms-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 14px; }
.rooms-card { position: relative; border: 1px solid var(--line); border-radius: 10px; overflow: hidden; }
.rooms-card img { aspect-ratio: 4/3; object-fit: cover; width: 100%; cursor: zoom-in; }
.rooms-del {
  position: absolute; top: 5px; right: 5px; width: 22px; height: 22px; border: 0; border-radius: 50%;
  background: rgba(20,18,16,.72); color: #fff; font-size: 10px; cursor: pointer;
}
.rooms-meta { padding: 7px 9px; font-size: 11.5px; line-height: 1.35; }
.rooms-meta span { display: block; color: var(--ink-soft); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.rooms-meta a { color: var(--brass); font-weight: 600; }
.rooms-acct { border-top: 2px solid; border-image: var(--gold-line) 1; padding-top: 13px; }
.rooms-acct p { color: var(--grey); font-size: 12.5px; margin: 5px 0 10px; }
.rooms-acct input { width: 100%; padding: 10px 12px; border: 1px solid var(--line); border-radius: 8px; margin-bottom: 8px; font: 14px var(--sans); }
#roomsMsg { color: var(--ok); font-weight: 600; font-size: 13px; }

/* ---------- category facet filters ---------- */
.fgroup .fcheck, .fgroup .fswatch {
  display: flex; align-items: center; gap: 9px; padding: 4px 0;
  font-size: 13.5px; color: var(--ink-soft); transition: color .15s;
}
.fcheck:hover, .fswatch:hover { color: var(--brass-dark); }
.fcheck i, .fswatch i { margin-left: auto; font-style: normal; font-size: 11px; color: var(--grey); }
.fcheck .fbox {
  width: 16px; height: 16px; border: 1.5px solid #cfc8bb; border-radius: 4px; flex-shrink: 0;
  display: inline-grid; place-items: center; font-size: 10px; color: #fff; transition: all .15s;
}
.fcheck.on { color: var(--ink); font-weight: 600; }
.fcheck.on .fbox { background: var(--brass); border-color: var(--brass); }
.fswatch .swatch {
  width: 18px; height: 18px; border-radius: 50%; flex-shrink: 0;
  border: 1px solid rgba(0,0,0,.18); display: grid; place-items: center;
  font-size: 9px; color: var(--grey); text-transform: uppercase;
}
.fswatch.on { color: var(--ink); font-weight: 600; }
.fswatch.on .swatch { box-shadow: 0 0 0 2px #fff, 0 0 0 4px var(--brass); }

/* colour filter: general colour dots only */
.fswatch-row { display: flex; flex-wrap: wrap; gap: 10px; padding: 6px 0; }
.fdot {
  width: 26px; height: 26px; border-radius: 50%; flex-shrink: 0;
  border: 1px solid rgba(0,0,0,.18); transition: transform .15s ease, box-shadow .15s ease;
}
.fdot:hover { transform: scale(1.15); }
.fdot.on { box-shadow: 0 0 0 2px #fff, 0 0 0 4.5px var(--brass); }

/* ---------- modest cookie note ---------- */
.cookiebar {
  position: fixed; left: 18px; bottom: 18px; z-index: 139;
  display: flex; align-items: center; gap: 14px; max-width: min(430px, calc(100vw - 120px));
  background: #fff; border: 1px solid var(--line); border-radius: 14px;
  box-shadow: 0 18px 50px rgba(0,0,0,.22); padding: 13px 16px; font-size: 13px; color: var(--ink-soft);
}
.cookiebar[hidden] { display: none; }            /* the hidden attribute must beat display:flex */
.cookiebar { opacity: 0; transform: translateY(10px); transition: opacity .5s ease, transform .5s ease; }
.cookiebar.show { opacity: 1; transform: none; }
.cookiebar a { color: var(--brass-dark); text-decoration: underline; }
.cookiebar button {
  border: 1px solid var(--ink); background: var(--ink); color: #fff; border-radius: 8px;
  padding: 8px 18px; font: 600 12px var(--sans); letter-spacing: .06em; cursor: pointer; flex-shrink: 0;
}
.cookiebar button:hover { background: #000; }
@media (max-width: 560px) { .cookiebar { left: 10px; right: 10px; max-width: none; bottom: 76px; } }

/* ---------- contact page ---------- */
.contact-grid { display: grid; grid-template-columns: 1.25fr .9fr; gap: 26px; margin-bottom: 26px; align-items: start; }
.contact-form-card { background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: clamp(20px, 3vw, 34px); }
.contact-info-card {
  background: var(--black); color: #cfc8ba; border-radius: 16px; padding: clamp(22px, 3vw, 34px);
  position: relative; overflow: hidden;
}
.contact-info-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--gold-line); }
.contact-info-card h3 { color: #fff; font-size: 25px; }
.contact-addr { font-size: 15px; line-height: 1.85; }
.contact-lines { display: flex; flex-direction: column; gap: 11px; margin: 16px 0 16px; }
.contact-lines a { display: flex; gap: 11px; align-items: center; color: #e9e3d7; transition: color .15s; }
.contact-lines a:hover { color: var(--gold); }
.contact-lines svg { width: 17px; height: 17px; color: var(--gold); flex-shrink: 0; }
.socials-contact { margin: 0 0 20px -8px; }
.socials-contact a { color: #a89f90; }
.socials-contact a:hover { color: var(--gold); background: rgba(207,168,94,.14); }
.contact-dir-btn { border-color: var(--gold); color: var(--gold); }
.contact-dir-btn:hover { background: var(--gold); border-color: var(--gold); color: var(--black); }
.contact-map { position: relative; border-radius: 16px; overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow); }
.contact-map-btn { position: absolute; right: 16px; bottom: 16px; box-shadow: 0 12px 30px rgba(0,0,0,.35); }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } .contact-map iframe { height: 320px; } }

/* smoother nav hover underline (GPU transform instead of layout animation) */
.nav-l1 > li > a::after {
  left: 9px; right: 9px; transform: scaleX(0); transform-origin: left center;
  transition: transform .38s cubic-bezier(.22, .61, .36, 1);
}
.nav-l1 > li > a:hover::after { transform: scaleX(1); }

/* cookie OK: repeating shine sweep while the 8 s auto-accept counts down */
.cookiebar button { position: relative; overflow: hidden; }
.cookiebar button.shine::after, .cookiebar button.shine-loop::after {
  content: ''; position: absolute; top: 0; left: -80%; width: 55%; height: 100%;
  background: linear-gradient(105deg, transparent, rgba(255,255,255,.8), transparent);
  transform: skewX(-20deg);
}
.cookiebar button.shine::after { animation: ckshine .75s ease forwards; }
.cookiebar button.shine-loop::after { animation: ckshineloop 1.6s ease infinite; }
@keyframes ckshine { to { left: 150%; } }
@keyframes ckshineloop { 0% { left: -80%; } 60% { left: 150%; } 100% { left: 150%; } }

/* brand page: logo chip in the dark hero */
.brand-hero-logo {
  display: inline-flex; align-items: center; justify-content: center;
  background: #fff; border-radius: 14px; padding: 16px 22px; margin-bottom: 20px;
  box-shadow: 0 14px 40px rgba(0,0,0,.3);
}
.brand-hero-logo img { height: 76px; width: auto; max-width: 190px; object-fit: contain; }

/* mobile: filters collapsed behind a toggle button */
.filters-toggle { display: none; }
@media (max-width: 1080px) {
  .filters-toggle {
    display: flex; align-items: center; gap: 9px; width: 100%;
    padding: 13px 16px; margin-bottom: 6px; border: 1px solid var(--line); border-radius: 10px;
    background: #fff; font: 600 13px var(--sans); letter-spacing: .08em; text-transform: uppercase;
    color: var(--ink); cursor: pointer;
  }
  .filters-toggle svg { width: 17px; height: 17px; color: var(--brass); }
  .filters-toggle b {
    background: var(--brass); color: #fff; min-width: 19px; height: 19px; border-radius: 10px;
    display: grid; place-items: center; font-size: 11px; padding: 0 5px;
  }
  .filters-toggle .chev { margin-left: auto; transition: transform .25s ease; }
  .filters-toggle.open .chev { transform: rotate(180deg); }
  .filters { display: none; }
  .filters.open { display: flex; }
}

/* footer newsletter */
.ftr-news { margin-top: 22px; padding-top: 16px; border-top: 1px solid rgba(255,255,255,.09); }
.ftr-news h4 { color: var(--gold); }
.ftr-news p { font-size: 13px; color: #a89f90; margin-bottom: 10px; }
.ftr-news input {
  width: 100%; padding: 11px 13px; margin-bottom: 8px; border: 1px solid rgba(255,255,255,.16);
  border-radius: 8px; background: rgba(255,255,255,.06); color: #f0ebe0; font: 14px var(--sans);
}
.ftr-news input::placeholder { color: #8d867b; }
.ftr-news input:focus { outline: 1px solid var(--gold); }
.ftr-news-row { display: flex; gap: 8px; }
.ftr-news-row input { margin-bottom: 0; flex: 1; }
.ftr-news-row .btn { padding: 11px 18px; font-size: 11px; white-space: nowrap; }
#newsMsg { color: #a9e6b5; font-weight: 600; font-size: 13.5px; margin-top: 8px; }

/* mobile polish: filters in a clear card, smaller subcategory chips */
@media (max-width: 1080px) {
  .filters.open {
    background: #fff; border: 1px solid var(--line); border-radius: 12px;
    padding: 2px 16px 16px; margin-bottom: 16px; box-shadow: var(--shadow);
  }
}
@media (max-width: 900px) {
  .subcat-chips { gap: 6px; margin-top: 16px; }
  .subcat-chips a { padding: 7px 13px; font-size: 12px; }
}

/* brands page: sort pills + product counts */
.brand-sort { margin-top: 12px; }
.brand-sort a { padding: 6px 14px; font-size: 12.5px; }
.sort-label { align-self: center; font: 600 10.5px var(--sans); letter-spacing: .14em; text-transform: uppercase; color: var(--grey); margin-right: 4px; }
.brand-card { position: relative; }
.brand-count { position: absolute; bottom: 10px; left: 0; right: 0; text-align: center; font-size: 11px; color: var(--grey); letter-spacing: .04em; }

/* brands page: sort dropdown top-right */
.brand-toolbar { display: flex; justify-content: flex-end; align-items: center; margin: 0 0 22px; }
.sort-select { display: inline-flex; align-items: center; gap: 12px; }
.sort-select span { font: 600 10.5px var(--sans); letter-spacing: .16em; text-transform: uppercase; color: var(--grey); }
.sort-select select {
  appearance: none; -webkit-appearance: none; -moz-appearance: none;
  padding: 10px 40px 10px 18px; font: 500 13.5px var(--sans); color: var(--ink); letter-spacing: .02em;
  border: 1px solid var(--line); border-radius: 30px;
  background: #fff url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='11' height='7' viewBox='0 0 11 7'%3E%3Cpath d='M1 1l4.5 4.5L10 1' fill='none' stroke='%23927643' stroke-width='1.6' stroke-linecap='round'/%3E%3C/svg%3E") no-repeat right 16px center;
  box-shadow: 0 1px 4px rgba(30,26,23,.05);
  cursor: pointer; transition: border-color .2s, box-shadow .2s;
}
.sort-select select:hover { border-color: var(--brass); box-shadow: 0 2px 10px rgba(146,118,67,.14); }
.sort-select select:focus { border-color: var(--brass); outline: none; box-shadow: 0 0 0 3px rgba(146,118,67,.14); }
@media (max-width: 640px) { .brand-toolbar { justify-content: flex-start; } }

/* ============ AI Visualizer promo (home) + FAQ ============ */
.viz-kicker { color: var(--brass); }
.btn-viz { background: var(--ink); color: #fff; border: 0; }
.btn-viz:hover { background: var(--brass); color: #fff; }

.viz-promo { background: linear-gradient(180deg, var(--paper) 0%, #fff 100%); }
.viz-promo-head { max-width: 640px; margin: 0 auto 40px; text-align: center; }
.viz-promo-head h2 { font-size: clamp(26px, 3.2vw, 38px); margin: 10px 0 14px; }
.viz-promo-head p { color: var(--ink-soft); font-size: 16px; line-height: 1.6; }
.viz-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(20px, 3vw, 40px); }
.viz-step { text-align: center; }
.viz-step-img { position: relative; aspect-ratio: 4/3; border-radius: var(--rad); overflow: hidden; background: var(--paper); border: 1px solid var(--line); margin-bottom: 16px; }
.viz-step-img img { width: 100%; height: 100%; object-fit: cover; }
.viz-step-num { position: absolute; top: 12px; left: 12px; width: 34px; height: 34px; border-radius: 50%; background: var(--ink); color: #fff; font: 600 16px var(--sans); display: flex; align-items: center; justify-content: center; box-shadow: 0 2px 10px rgba(0,0,0,.2); }
.viz-step h3 { font-size: 18px; margin: 0 0 6px; }
.viz-step p { color: var(--ink-soft); font-size: 14.5px; line-height: 1.55; max-width: 320px; margin: 0 auto; }
.viz-promo-cta { text-align: center; margin-top: 40px; }

.faq-viz-hero { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 4vw, 56px); align-items: center; margin-bottom: 46px; }
.faq-viz-txt h2 { font-size: clamp(24px, 3vw, 34px); margin: 10px 0 14px; }
.faq-viz-txt p { color: var(--ink-soft); font-size: 16px; line-height: 1.6; margin-bottom: 22px; }
.faq-viz-media { aspect-ratio: 4/3; border-radius: var(--rad); overflow: hidden; background: var(--paper); border: 1px solid var(--line); }
.faq-viz-media img { width: 100%; height: 100%; object-fit: cover; }
.faq-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(18px, 3vw, 34px); }
.faq-step { text-align: center; }
.faq-step-img { position: relative; aspect-ratio: 4/3; border-radius: var(--rad); overflow: hidden; background: var(--paper); border: 1px solid var(--line); margin-bottom: 14px; }
.faq-step-img img { width: 100%; height: 100%; object-fit: cover; }
.faq-step h3 { font-size: 16.5px; margin: 0 0 5px; }
.faq-step p { color: var(--ink-soft); font-size: 14px; line-height: 1.5; }

.faq-group-h { font-size: 20px; margin: 40px 0 16px; padding-bottom: 10px; border-bottom: 1px solid var(--line); }
.faq-list { display: flex; flex-direction: column; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item summary { list-style: none; cursor: pointer; padding: 18px 0; font-size: 16px; font-weight: 500; display: flex; justify-content: space-between; align-items: center; gap: 16px; transition: color .15s; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--brass); }
.faq-plus { position: relative; width: 16px; height: 16px; flex-shrink: 0; }
.faq-plus::before, .faq-plus::after { content: ''; position: absolute; background: var(--brass); transition: transform .2s; }
.faq-plus::before { top: 7px; left: 0; width: 16px; height: 2px; }
.faq-plus::after { top: 0; left: 7px; width: 2px; height: 16px; }
.faq-item[open] .faq-plus::after { transform: scaleY(0); }
.faq-answer { color: var(--ink-soft); font-size: 15px; line-height: 1.65; padding: 0 0 20px; max-width: 700px; }
.faq-more { text-align: center; margin-top: 50px; padding: 36px; background: var(--paper); border-radius: var(--rad); }
.faq-more h3 { font-size: 20px; margin-bottom: 8px; }
.faq-more p { color: var(--ink-soft); margin-bottom: 18px; }

@media (max-width: 760px) {
  .viz-steps, .faq-steps { grid-template-columns: 1fr; }
  .faq-viz-hero { grid-template-columns: 1fr; }
}

/* visualizer "coming soon" note */
.viz-soon { display: inline-block; font-size: 13px; color: var(--brass-dark); background: rgba(146,118,67,.09); border: 1px solid rgba(146,118,67,.25); border-radius: 30px; padding: 7px 16px; margin: 4px 0 20px !important; }
.viz-promo-head .viz-soon { margin: 4px auto 0 !important; }

/* nav: iets krappere spacing op middelgrote schermen zodat lange labels op één regel blijven */
@media (max-width: 1180px) and (min-width: 901px) {
  .nav-l1 > li > a { padding: 15px 6px; letter-spacing: .04em; font-size: 10.5px; }
}

/* ---------- IVA display toggle + price tags ---------- */
.vat-toggle {
  display: inline-flex; align-items: center; border: 1px solid var(--line); border-radius: 30px;
  background: var(--paper); padding: 3px; cursor: pointer; gap: 2px;
}
.vat-toggle span {
  padding: 5px 11px; border-radius: 20px; font: 600 10.5px var(--sans);
  letter-spacing: .04em; color: var(--grey); white-space: nowrap; transition: background .18s ease, color .18s ease;
}
.vat-toggle span.on { background: var(--ink); color: #fff; }
.vat-toggle:hover { border-color: var(--brass); }
.pcard-price .vat-tag { display: block; font: 500 10.5px var(--sans); color: var(--grey); margin-top: 2px; letter-spacing: .03em; }
@media (max-width: 700px) {
  .vat-toggle span { padding: 4px 8px; font-size: 9.5px; }
}
.ftr .vat-toggle { background: transparent; border-color: rgba(255, 255, 255, .25); }
.ftr .vat-toggle span { color: rgba(255, 255, 255, .6); }
.ftr .vat-toggle span.on { background: var(--brass); color: #fff; }
.ftr .vat-toggle:hover { border-color: var(--brass); }
.pdp-vat .vat-toggle span { padding: 4px 9px; font-size: 10px; }

/* ---- B2B price gate ---- */
.price-locked { color: var(--grey); font-weight: 500; }
.pgate-overlay { position: fixed; inset: 0; z-index: 1200; background: rgba(24, 21, 17, .55); display: flex; align-items: center; justify-content: center; padding: 20px; backdrop-filter: blur(3px); }
.pgate-overlay[hidden] { display: none; }
.pgate-modal { position: relative; background: #fff; border-radius: 16px; max-width: 440px; width: 100%; padding: 34px 32px 30px; box-shadow: 0 24px 70px rgba(0, 0, 0, .3); animation: pgateIn .3s ease; }
@keyframes pgateIn { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }
.pgate-modal h3 { font-size: 22px; margin: 0 0 10px; }
.pgate-modal p { color: var(--grey); font-size: 14.5px; line-height: 1.55; margin: 0 0 20px; }
.pgate-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.pgate-actions .btn { padding: 12px 22px; font-size: 12px; }
.pgate-close { position: absolute; top: 12px; right: 14px; background: none; border: 0; font-size: 17px; color: var(--grey); cursor: pointer; padding: 6px; line-height: 1; }
.pgate-close:hover { color: var(--ink); }

/* ---- mobile: keep the sort pill inside the viewport (no horizontal scroll) ---- */
@media (max-width: 640px) {
  .listing-top { flex-wrap: wrap; gap: 10px; }
  .listing-top form { max-width: 100%; }
  .sort-select { max-width: 100%; gap: 8px; }
  .sort-select span { display: none; }
  .sort-select select { max-width: 100%; }
}

/* ---- header: same optical icon size for socials as the action icons ---- */
.socials-hdr svg { width: 19px; height: 19px; }
.socials-hdr { gap: 4px; margin-right: 8px; padding-right: 10px; }

/* ---- logged-in indicator on the account icon (was unstyled and pushed the icon up) ---- */
.acct-dot {
  position: absolute; top: 8px; right: 7px; width: 8px; height: 8px;
  border-radius: 50%; background: var(--gold, #cfa85e); border: 2px solid var(--hdr-bg, #141210);
}

/* ---- temporary launch notice bar (dismissible; toggle with setting site_notice_on) ---- */
.site-notice {
  display: flex; align-items: center; justify-content: center; gap: 14px;
  background: #141210; color: #efe9df;
  font-size: 13.5px; line-height: 1.45; text-align: center;
  padding: 9px 44px 9px 18px; position: relative;
}
.site-notice span { max-width: 900px; }
.site-notice-x {
  position: absolute; right: 12px; top: 50%; transform: translateY(-50%);
  background: none; border: 0; color: #cdc5b6; font-size: 22px; line-height: 1;
  cursor: pointer; padding: 4px 8px;
}
.site-notice-x:hover { color: #fff; }
@media (max-width: 640px) { .site-notice { font-size: 12.5px; padding: 8px 40px 8px 14px; } }

/* ---- brands without active products yet ---- */
.brand-soon { font-style: italic; opacity: .75; }
.brand-soon small { display: block; font-size: 10px; opacity: .8; margin-top: 1px; }
