:root {
  --black: #0b0b0c;
  --ink: #161617;
  --charcoal: #242426;
  --red: #c4141c;
  --red-dark: #941017;
  --paper: #f5f4f1;
  --white: #fff;
  --line: #d7d4ce;
  --muted: #6b6965;
  --soft: #e9e7e2;
  --header-h: 78px;
  --max: 1480px;
  --control-h: 52px;
  --control-border: #b8b4ad;
  --control-focus: #19191a;
  --control-bg: #fff;
  --bevel: 12px;
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--paper); color: var(--ink); }
body.locked { overflow: hidden; }
button, input, select, textarea { font: inherit; }
button {
  appearance: none;
  border-radius: 0;
  line-height: 1;
}
input, select, textarea { color: var(--ink); border-radius: 0; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.turnstile-wrap { margin-top: 10px; min-height: 72px; }
.turnstile-disabled .turnstile-wrap { display: none; }
input:not([type="checkbox"]):not([type="radio"]):not([type="file"]),
select {
  width: 100%;
  height: var(--control-h);
  min-height: var(--control-h);
  padding: 0 15px;
  border: 1px solid var(--control-border);
  outline: 0;
  background-color: var(--control-bg);
  transition: border-color .2s ease, box-shadow .2s ease, background-color .2s ease;
}
textarea {
  width: 100%;
  min-height: 132px;
  padding: 14px 15px;
  border: 1px solid var(--control-border);
  outline: 0;
  background: var(--control-bg);
  line-height: 1.5;
  resize: vertical;
  transition: border-color .2s ease, box-shadow .2s ease, background-color .2s ease;
}
input::placeholder, textarea::placeholder { color: #85827d; opacity: 1; }
input:not([type="checkbox"]):not([type="radio"]):focus-visible,
select:focus-visible,
textarea:focus-visible {
  border-color: var(--control-focus);
  box-shadow: 0 0 0 3px rgba(196, 20, 28, .12);
  background-color: #fff;
}
input[type="checkbox"], input[type="radio"] { accent-color: var(--red); }
input[type="file"] {
  width: 100%;
  min-height: var(--control-h);
  padding: 6px;
  color: var(--muted);
  border: 1px solid var(--control-border);
  background: var(--control-bg);
  cursor: pointer;
}
input[type="file"]::file-selector-button {
  min-height: 38px;
  margin-right: 12px;
  padding: 0 14px;
  color: white;
  border: 0;
  background: var(--charcoal);
  font-weight: 800;
  cursor: pointer;
}
button, a { -webkit-tap-highlight-color: transparent; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3, strong, button, .eyebrow { letter-spacing: 0; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  display: grid;
  grid-template-columns: minmax(220px, 300px) 1fr auto;
  align-items: center;
  gap: 30px;
  padding: 0 34px;
  color: var(--white);
  background: rgba(8, 8, 9, .97);
  border-bottom: 1px solid rgba(255,255,255,.12);
}

.brand-plaque {
  position: relative;
  width: 275px;
  max-width: 100%;
  height: 58px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: linear-gradient(145deg, #1b1b1d, #050506 54%, #242426);
  border: 1px solid #3d3d40;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.16), inset 0 -5px 12px rgba(0,0,0,.8), 0 8px 18px rgba(0,0,0,.38);
  transform: perspective(500px) rotateX(2deg);
  transition: transform .35s ease, border-color .35s ease;
}
.brand-plaque::after { content: ""; position: absolute; inset: -80% -30%; background: linear-gradient(110deg, transparent 42%, rgba(255,255,255,.22) 49%, transparent 56%); transform: translateX(-60%); animation: plaque-shine 7s ease-in-out infinite; }
.brand-plaque:hover { transform: perspective(500px) rotateX(0) translateY(-2px); border-color: #777; }
.brand-plaque img { width: 92%; max-height: 48px; object-fit: contain; filter: contrast(1.12) drop-shadow(0 2px 1px #000); }
@keyframes plaque-shine { 0%, 70% { transform: translateX(-65%); } 88%, 100% { transform: translateX(65%); } }

.main-nav { justify-self: center; display: flex; align-items: stretch; height: 100%; }
.main-nav > a, .nav-item > button { display: flex; align-items: center; padding: 0 18px; color: #f3f3f3; font-weight: 750; font-size: .94rem; background: none; border: 0; cursor: pointer; }
.main-nav > a:hover, .nav-item > button:hover { color: #fff; background: #1b1b1c; }
.nav-item { position: static; display: flex; }
.nav-item > button span { margin-left: 8px; color: #e05459; font-size: 1.2rem; transition: transform .2s ease; }
.nav-item.open > button span { transform: rotate(45deg); }
.mega-menu { position: absolute; top: 100%; left: 0; right: 0; display: none; grid-template-columns: repeat(5, 1fr); gap: 34px; padding: 34px max(34px, calc((100vw - var(--max)) / 2)); color: var(--ink); background: var(--white); border-bottom: 4px solid var(--red); box-shadow: 0 22px 45px rgba(0,0,0,.2); }
.nav-item.open .mega-menu { display: grid; }
.mega-column h3 { margin-bottom: 14px; font-size: .92rem; text-transform: uppercase; }
.mega-column h3 a { color: var(--red); }
.mega-column h4 { margin: 15px 0 6px; font-size: .72rem; color: var(--muted); text-transform: uppercase; }
.mega-column a { display: block; padding: 5px 0; font-size: .86rem; color: #393838; }
.mega-column a:hover { color: var(--red); }

.header-actions { position: relative; display: flex; gap: 8px; justify-self: end; }
.search-button, .cart-button {
  min-height: 42px;
  padding: 0 15px;
  border: 1px solid #48484b;
  color: white;
  background: transparent;
  font-weight: 750;
  cursor: pointer;
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
  transition: transform .22s ease, opacity .22s ease, background .22s ease, border-color .22s ease, box-shadow .22s ease;
}
.search-button:hover { border-color: #6a696d; background: rgba(255,255,255,.05); }
.cart-button { background: linear-gradient(135deg, #981017 0%, #c4141c 58%, #dd2a31 100%); border-color: #9c1219; box-shadow: inset 0 1px 0 rgba(255,255,255,.12); }
.cart-button span { display: inline-grid; place-items: center; min-width: 22px; height: 22px; margin-left: 7px; color: var(--black); background: white; font-size: .75rem; }
.icon-btn {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid currentColor;
  color: inherit;
  background: rgba(255,255,255,.03);
  cursor: pointer;
  font-weight: 800;
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
  transition: transform .22s ease, background .22s ease, border-color .22s ease, color .22s ease;
}
.icon-btn:hover { background: rgba(255,255,255,.08); }
.menu-toggle { display: none; }
.menu-toggle span { width: 20px; height: 2px; background: currentColor; }
.site-header.search-open .search-button { opacity: 0; pointer-events: none; transform: translateX(14px); }
.header-search {
  position: absolute;
  top: 50%;
  right: var(--search-right, 122px);
  z-index: 6;
  width: var(--search-width, 340px);
  max-width: min(460px, calc(100vw - 430px));
  display: grid;
  grid-template-columns: minmax(0, 1fr) 44px;
  align-items: center;
  gap: 8px;
  padding: 0;
  color: var(--ink);
  background: transparent;
  transform: translateY(-50%) scaleX(.86);
  transform-origin: right center;
  opacity: 0;
  pointer-events: none;
  transition: transform .32s ease, opacity .22s ease;
}
.header-search.open { transform: translateY(-50%) scaleX(1); opacity: 1; pointer-events: auto; }
.header-search input {
  height: 44px;
  min-height: 44px;
  padding-inline: 16px;
  color: #171718;
  caret-color: #171718;
  border-color: #49494c;
  background: #fff;
  box-shadow: 0 16px 36px rgba(0,0,0,.28);
}
.header-search input:focus-visible {
  color: #171718;
  border-color: #7d2b2f;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(196, 20, 28, .16), 0 16px 36px rgba(0,0,0,.28);
}
.header-search input::placeholder { color: #8a857d; }
.header-search .icon-btn {
  width: 44px;
  height: 44px;
  color: #f4f2ee;
  border-color: #49494c;
  background: rgba(12, 12, 13, .98);
  box-shadow: 0 16px 36px rgba(0,0,0,.28);
}

.hero { position: relative; height: calc(100vh - var(--header-h)); height: calc(100svh - var(--header-h)); min-height: 560px; display: grid; align-items: end; overflow: hidden; color: white; background: #111; }
.hero-carousel, .hero-slide { position: absolute; inset: 0; }
.hero-slide { background-position: center; background-size: cover; opacity: 0; transform: translateX(7%); transition: opacity 1.1s ease, transform 1.4s cubic-bezier(.2,.8,.2,1); }
.hero-slide.active { opacity: 1; transform: translateX(0); }
.hero-slide-howa { background-position: center 47%; }
.hero-slide-precision { background-position: center 42%; }
.hero-slide-miroku { background-position: center 38%; }
.hero-slide-zeiss { background-position: center 45%; }
.hero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(3,3,4,.92) 0%, rgba(3,3,4,.63) 42%, rgba(3,3,4,.18) 78%), linear-gradient(0deg, rgba(0,0,0,.7), transparent 45%); }
.hero-content { position: relative; z-index: 2; width: min(780px, calc(100% - 80px)); margin: 0 0 110px max(40px, calc((100vw - var(--max)) / 2)); }
.eyebrow { margin-bottom: 12px; color: var(--red); font-size: .76rem; font-weight: 900; text-transform: uppercase; }
.hero h1 { max-width: 780px; margin-bottom: 20px; font-size: clamp(2.8rem, 5.2vw, 5.4rem); line-height: .98; }
.hero-content > p:not(.eyebrow) { max-width: 650px; font-size: 1.12rem; line-height: 1.65; color: #e6e3de; }
.button-row { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 28px; }
.btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border: 1px solid transparent;
  font-weight: 850;
  cursor: pointer;
  white-space: nowrap;
  text-align: center;
  clip-path: polygon(0 0, calc(100% - var(--bevel)) 0, 100% var(--bevel), 100% 100%, var(--bevel) 100%, 0 calc(100% - var(--bevel)));
  transition: transform .2s ease, border-color .2s ease, background .2s ease, color .2s ease, box-shadow .2s ease;
}
.btn-primary {
  color: white;
  background: linear-gradient(135deg, #921017 0%, #c4141c 56%, #e02a31 100%);
  border-color: #851016;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.09);
}
.btn-primary:hover { background: linear-gradient(135deg, #7a0d13 0%, #ab1118 54%, #cf242b 100%); }
.btn-quiet {
  color: inherit;
  background: rgba(255,255,255,.02);
  border-color: currentColor;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.05);
  clip-path: none;
}
.btn-quiet:hover { background: rgba(255,255,255,.08); }
.btn-light { color: var(--black); background: white; border-color: rgba(0,0,0,.14); }
.btn-light:hover { background: #f0eeea; }
.btn:focus-visible,
.icon-btn:focus-visible,
.search-button:focus-visible,
.cart-button:focus-visible,
.add-btn:focus-visible,
.qty-btn:focus-visible,
.remove-btn:focus-visible,
.suggestion:focus-visible,
.hero-dot:focus-visible,
.featured-dot:focus-visible,
.filter-mobile-toggle:focus-visible,
.result-bar button:focus-visible {
  outline: 0;
  box-shadow: 0 0 0 3px rgba(196, 20, 28, .18);
}
.full { width: 100%; }
.hero-proof { position: absolute; z-index: 3; right: max(30px, calc((100vw - var(--max)) / 2)); bottom: 105px; display: grid; gap: 8px; }
.hero-proof span { padding: 8px 12px; background: rgba(10,10,10,.8); border-left: 3px solid var(--red); font-size: .72rem; font-weight: 850; text-transform: uppercase; }
.hero-dots { position: absolute; z-index: 3; bottom: 35px; left: 50%; display: flex; gap: 9px; transform: translateX(-50%); }
.hero-dot { width: 36px; height: 4px; padding: 0; border: 0; background: rgba(255,255,255,.4); cursor: pointer; transition: background .2s ease, transform .2s ease; }
.hero-dot:hover { background: rgba(255,255,255,.78); }
.hero-dot.active { background: var(--red); }

.benefit-bar { display: grid; grid-template-columns: repeat(3, 1fr); max-width: var(--max); margin: 0 auto; border-inline: 1px solid var(--line); background: white; }
.benefit-bar div { padding: 24px 30px; border-right: 1px solid var(--line); }
.benefit-bar div:last-child { border-right: 0; }
.benefit-bar strong, .benefit-bar span { display: block; }
.benefit-bar strong { margin-bottom: 6px; }
.benefit-bar span { color: var(--muted); font-size: .88rem; }
.benefit-bar a { color: var(--red); }

.brand-rail {
  max-width: var(--max);
  display: grid;
  grid-template-columns: minmax(220px, .65fr) 2fr;
  align-items: center;
  gap: 55px;
  margin: 0 auto;
  padding: 42px 34px;
  background: #eceae5;
  border-inline: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.brand-rail h2 { margin: 0; font-size: 1.35rem; }
.brand-logos { display: grid; grid-template-columns: repeat(6, minmax(70px, 1fr)); align-items: center; gap: 20px; }
.brand-logos img { width: 100%; height: 56px; object-fit: contain; mix-blend-mode: multiply; filter: grayscale(1) contrast(1.12); opacity: .72; transition: filter .3s ease, opacity .3s ease, transform .3s ease; }
.brand-logos img:hover { filter: grayscale(0) contrast(1); opacity: 1; transform: translateY(-2px); }

.category-showcase, .catalogue, .newsletter { position: relative; max-width: var(--max); margin: 0 auto; padding: 95px 34px; }
.section-title { display: flex; justify-content: space-between; align-items: end; gap: 40px; margin-bottom: 38px; }
.section-title h2, .catalogue-head h2, .featured-copy h2, .newsletter h2, .licence-cta h2 { margin-bottom: 0; font-size: clamp(2rem, 3.3vw, 3.5rem); line-height: 1.04; }
.section-title > p { max-width: 560px; margin-bottom: 5px; color: var(--muted); line-height: 1.6; }
.department-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px; }
.department-card { position: relative; min-height: 360px; overflow: hidden; color: white; background: #222; }
.department-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .7s cubic-bezier(.2,.8,.2,1); }
.department-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(0,0,0,.9), rgba(0,0,0,.08) 70%); }
.department-card > span { position: absolute; z-index: 2; left: 22px; right: 22px; bottom: 24px; }
.department-card strong { display: block; margin-bottom: 7px; font-size: 1.28rem; }
.department-card small { color: #dedbd6; line-height: 1.45; }
.department-card:hover img { transform: scale(1.055); }
.department-card:hover strong { color: #ff7075; }

.featured-strip { position: relative; height: 100vh; height: 100svh; min-height: 660px; display: grid; grid-template-columns: minmax(330px, .78fr) 2.2fr; overflow: hidden; color: white; background: var(--black); }
.featured-copy { padding: 74px max(36px, calc((100vw - var(--max)) / 2)); padding-right: 42px; align-self: center; }
.featured-copy h2 { font-size: clamp(2.8rem, 4.2vw, 4.8rem); }
.featured-copy > p:not(.eyebrow) { color: #bfbdb8; line-height: 1.6; }
.featured-controls { display: flex; gap: 8px; margin-top: 30px; }
.featured-products { height: 100%; overflow-x: auto; overflow-y: hidden; display: grid; grid-auto-flow: column; grid-auto-columns: minmax(350px, 42%); scroll-behavior: smooth; scroll-snap-type: x mandatory; scrollbar-width: none; }
.featured-products::-webkit-scrollbar { display: none; }
.featured-card { position: relative; height: 100%; min-height: 0; overflow: hidden; border-left: 1px solid #3b3b3d; cursor: pointer; scroll-snap-align: start; }
.featured-card img { width: 100%; height: 100%; object-fit: cover; opacity: .76; transition: transform .7s ease, opacity .4s ease; }
.featured-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, #080809 0%, transparent 63%); }
.featured-card div { position: absolute; z-index: 2; left: 26px; right: 26px; bottom: 28px; }
.featured-card span { color: #ef7c80; font-size: .72rem; font-weight: 850; text-transform: uppercase; }
.featured-card h3 { margin: 8px 0; font-size: 1.35rem; }
.featured-card strong { font-size: 1.2rem; }
.discount-price { display: inline-flex; align-items: baseline; gap: 8px; }
.discount-price del { color: #8c8984; font-size: .75em; font-weight: 650; }
.discount-price strong { color: var(--red); font-size: 1em; }
.featured-card .discount-price { display: flex; color: white; }
.featured-card .discount-price del { color: #bbb; }
.featured-card .discount-price strong { color: #ff777c; font-size: 1.2rem; }
.featured-card:hover img { transform: scale(1.045); opacity: .92; }
.featured-dots { display: flex; flex-wrap: wrap; gap: 8px; max-width: 260px; margin-top: 18px; }
.featured-dot { width: 28px; height: 4px; padding: 0; border: 0; background: rgba(255,255,255,.35); cursor: pointer; transition: background .25s ease, transform .25s ease; }
.featured-dot:hover { background: rgba(255,255,255,.72); }
.featured-dot.active { background: var(--red); }

.catalogue { max-width: none; padding-inline: max(34px, calc((100vw - var(--max)) / 2)); background: linear-gradient(112deg, transparent 0 56%, rgba(130,130,130,.065) 56.1% 76%, transparent 76.1%), #f7f6f3; }
.catalogue-head { display: flex; justify-content: space-between; align-items: end; gap: 45px; padding-bottom: 32px; border-bottom: 1px solid var(--line); }
.catalogue-head > div:first-child { max-width: 720px; }
.catalogue-head h2 { margin-bottom: 12px; }
.catalogue-head p:last-child { margin-bottom: 0; color: var(--muted); line-height: 1.55; }
.breadcrumb { margin-bottom: 20px !important; color: #777 !important; font-size: .78rem; }
.catalogue-tools { display: grid; grid-template-columns: minmax(240px, 1fr) 190px; gap: 10px; min-width: min(520px, 100%); }
.catalogue-tools label { display: grid; gap: 8px; }
.catalogue-tools span { font-size: .7rem; font-weight: 900; text-transform: uppercase; }
.catalogue-tools input, .catalogue-tools select { height: var(--control-h); }
.catalogue-layout { display: grid; grid-template-columns: 250px 1fr; gap: 38px; padding-top: 34px; }
.filters { align-self: start; position: sticky; top: calc(var(--header-h) + 20px); }
.filter-group { padding: 16px 0; border-bottom: 1px solid var(--line); }
.filter-group > button { width: 100%; display: flex; justify-content: space-between; padding: 0 0 10px; border: 0; background: none; font-weight: 850; cursor: pointer; }
.filter-options { display: grid; gap: 7px; }
.filter-options button { width: 100%; min-height: 36px; padding: 8px 10px; text-align: left; border: 0; color: #5d5b57; background: transparent; cursor: pointer; font-weight: 650; transition: color .2s ease, background .2s ease; }
.filter-options button:hover { color: #252426; background: #e4e2dd; clip-path: polygon(0 0, calc(100% - 11px) 0, 100% 11px, 100% 100%, 9px 100%, 0 calc(100% - 9px)); font-weight: 650; }
.filter-options button.parent-active { padding: 8px 10px; color: white; background: #2a2a2c; clip-path: polygon(0 0, calc(100% - 13px) 0, 100% 13px, 100% 100%, 10px 100%, 0 calc(100% - 10px)); font-weight: 850; }
.filter-options button.child-active { padding: 8px 10px; color: #a80f16; background: rgba(196, 20, 28, .09); border-left: 3px solid var(--red); clip-path: polygon(0 0, calc(100% - 11px) 0, 100% 11px, 100% 100%, 8px 100%, 0 calc(100% - 8px)); font-weight: 850; }
.filter-options button.facet-active { color: #111; font-weight: 850; }
.filter-options button.facet-active::before { content: ""; display: inline-block; width: 12px; height: 2px; margin: 0 7px 4px 0; background: #777; }
.stock-filter { display: flex; gap: 8px; padding: 20px 0; font-weight: 750; }
.filter-mobile-toggle { display: none; }
.result-bar { min-height: 38px; display: flex; justify-content: space-between; color: var(--muted); font-size: .84rem; }
.result-bar button { min-height: 34px; padding: 0 10px; border: 1px solid rgba(0,0,0,.12); background: #fff; cursor: pointer; font-weight: 700; clip-path: polygon(0 0, calc(100% - 9px) 0, 100% 9px, 100% 100%, 9px 100%, 0 calc(100% - 9px)); transition: transform .2s ease, border-color .2s ease, background .2s ease; }
.result-bar button:hover { border-color: #a29f99; background: #f4f2ee; }
.product-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.product-card { position: relative; min-width: 0; display: flex; flex-direction: column; overflow: hidden; background: white; border: 1px solid #d9d6d0; cursor: url("assets/scope-cursor.svg") 15 15, crosshair; transition: transform .3s ease, box-shadow .3s ease; }
.product-card :is(img, span, h3, p, strong, button) { cursor: inherit; }
.product-card:hover { transform: translateY(-4px); box-shadow: 0 18px 35px rgba(20,20,20,.1); }
.product-image { position: relative; aspect-ratio: 1.18; overflow: hidden; background: #e8e7e3; }
.product-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.product-card:hover .product-image img { transform: scale(1.035); }
.product-badges { position: absolute; top: 12px; left: 12px; right: 12px; display: flex; align-items: start; justify-content: space-between; gap: 6px; pointer-events: none; }
.badge { padding: 6px 8px; color: white; background: var(--black); font-size: .64rem; font-weight: 900; text-transform: uppercase; }
.badge.red { background: var(--red); }
.badge.out { background: #666; }
.product-body { flex: 1; display: flex; flex-direction: column; padding: 18px; }
.product-kicker { margin-bottom: 7px; color: var(--red); font-size: .68rem; font-weight: 850; text-transform: uppercase; }
.product-card h3 { margin-bottom: 8px; font-size: 1.07rem; line-height: 1.25; }
.product-card p { color: var(--muted); font-size: .86rem; line-height: 1.48; }
.product-shipping { min-height: 32px; padding-top: 9px; border-top: 1px solid #eceae6; color: #5c5a56 !important; font-size: .72rem !important; font-weight: 750; }
.product-bottom { display: flex; justify-content: space-between; align-items: end; gap: 10px; margin-top: auto; padding-top: 15px; }
.price { font-size: 1.25rem; }
.add-btn { min-width: 92px; height: 40px; padding: 0 15px; color: white; border: 1px solid #171718; background: linear-gradient(135deg, #111 0%, #1b1b1d 100%); font-weight: 850; clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px)); transition: transform .2s ease, background .2s ease, border-color .2s ease, box-shadow .2s ease; }
.add-btn:hover { border-color: #9c1219; background: linear-gradient(135deg, #951118 0%, #c4141c 100%); box-shadow: 0 10px 20px rgba(196,20,28,.15); }
.add-btn:disabled { cursor: not-allowed; color: #888; background: #ddd; border-color: #ddd; clip-path: none; box-shadow: none; }
.empty-state { padding: 60px; text-align: center; background: white; border: 1px solid var(--line); }

.licence-cta { display: flex; justify-content: space-between; align-items: center; gap: 60px; padding: 74px max(34px, calc((100vw - var(--max)) / 2)); color: white; background: linear-gradient(110deg, #8d1016, var(--red) 55%, #9b1017); }
.licence-cta > div { max-width: 830px; }
.licence-cta .eyebrow { color: #ffb6b9; }
.licence-cta h2 { margin-bottom: 16px; }
.licence-cta p:last-child { margin-bottom: 0; color: #f3dfe0; line-height: 1.6; }
.service-row { max-width: var(--max); display: grid; grid-template-columns: repeat(3, 1fr); margin: 0 auto; padding: 90px 34px; gap: 0; }
.service-row article { padding: 0 35px; border-right: 1px solid var(--line); }
.service-row article:first-child { padding-left: 0; }
.service-row article:last-child { border-right: 0; }
.service-row span { color: var(--red); font-weight: 900; }
.service-row h3 { margin: 14px 0 9px; }
.service-row p { margin-bottom: 0; color: var(--muted); line-height: 1.55; }
.newsletter { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; padding-top: 70px; padding-bottom: 70px; background: white; border-top: 1px solid var(--line); }
.newsletter form { display: grid; grid-template-columns: 1fr auto; gap: 10px; align-items: end; }
.newsletter label { display: grid; gap: 8px; }
.newsletter label span { font-size: .7rem; font-weight: 900; text-transform: uppercase; }
.newsletter label:has(:required) span::after { content: " *"; color: var(--red); }
.newsletter input { height: var(--control-h); }
.newsletter [role=status] { grid-column: 1 / -1; min-height: 20px; margin: 0; color: var(--red); font-size: .84rem; }

.site-footer { display: grid; grid-template-columns: 1.5fr repeat(3, 1fr); gap: 50px; padding: 70px max(34px, calc((100vw - var(--max)) / 2)) 35px; color: #d0ceca; background: var(--black); }
.site-footer h2 { color: white; font-size: .86rem; text-transform: uppercase; }
.site-footer a, .site-footer p { display: block; color: #aaa8a4; font-size: .86rem; line-height: 1.65; }
.site-footer a:hover { color: white; }
.footer-brand img { width: 300px; margin-bottom: 18px; }
.footer-brand p { max-width: 420px; }
.footer-legal { grid-column: 1 / -1; padding-top: 30px; border-top: 1px solid #29292b; font-size: .74rem !important; }

.cart-drawer { position: fixed; inset: 0; z-index: 300; display: grid; justify-items: end; background: rgba(0,0,0,.68); opacity: 0; pointer-events: none; transition: opacity .3s ease; }
.cart-drawer.open { opacity: 1; pointer-events: auto; }
.cart-panel { position: relative; width: min(620px, 100vw); height: 100%; display: grid; grid-template-rows: auto minmax(0, 1fr) auto auto; color: white; background: linear-gradient(128deg, #111 0 35%, #212123 35.2% 72%, #111 72.2%); transform: translateX(100%); transition: transform .45s cubic-bezier(.2,.8,.2,1); }
.cart-drawer.open .cart-panel { transform: translateX(0); }
.drawer-head { display: flex; justify-content: space-between; align-items: center; padding: 26px 28px; border-bottom: 1px solid #3c3c3e; }
.drawer-head h2 { margin: 0; }
.cart-items { overflow-y: auto; padding: 18px 28px; }
.cart-empty { padding: 50px 0; color: #aaa; text-align: center; }
.cart-item { display: grid; grid-template-columns: 84px minmax(0, 1fr) 30px; align-items: center; gap: 14px; padding: 14px 0; border-bottom: 1px solid #3c3c3e; }
.cart-item img { width: 84px; height: 76px; object-fit: cover; }
.cart-item h3 { margin: 3px 0 5px; font-size: .93rem; }
.cart-item p { margin: 0; color: #bbb; }
.cart-item-info { min-width: 0; }
.cart-item-copy { min-width: 0; }
.cart-item-meta { display: flex; align-items: center; gap: 12px; }
.cart-item-actions { display: flex; align-items: center; gap: 7px; flex: 0 0 auto; margin-left: 2px; }
.qty-btn, .remove-btn { width: 30px; height: 30px; border: 1px solid #555; color: white; background: linear-gradient(135deg, #232325 0%, #181819 100%); cursor: pointer; clip-path: polygon(0 0, calc(100% - 7px) 0, 100% 7px, 100% 100%, 7px 100%, 0 calc(100% - 7px)); transition: transform .2s ease, border-color .2s ease, background .2s ease; }
.qty-btn:hover, .remove-btn:hover { border-color: #7d2b2f; background: linear-gradient(135deg, #2f2f31 0%, #1d1d1f 100%); }
.remove-btn { grid-column: 3; grid-row: 1; align-self: start; justify-self: end; }
.cart-suggestions { padding: 12px 28px 16px; }
.cart-suggestions h3 { margin-bottom: 8px; font-size: .72rem; text-transform: uppercase; }
.cart-suggestions > div { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.suggestion { min-width: 0; min-height: 58px; display: grid; grid-template-columns: 46px 1fr; align-items: start; gap: 7px; padding: 6px; border: 1px solid #444; color: white; background: #1c1c1e; text-align: left; cursor: pointer; clip-path: polygon(0 0, calc(100% - 9px) 0, 100% 9px, 100% 100%, 9px 100%, 0 calc(100% - 9px)); transition: transform .2s ease, border-color .2s ease, background .2s ease; }
.suggestion:hover { border-color: #67676b; background: #232325; }
.suggestion img { width: 46px; height: 46px; object-fit: cover; }
.suggestion span { min-width: 0; display: grid; gap: 3px; align-content: start; }
.suggestion strong, .suggestion small { display: block; overflow: hidden; text-overflow: ellipsis; }
.suggestion strong {
  font-size: .68rem;
  line-height: 1.18;
  white-space: normal;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.suggestion small { white-space: nowrap; }
.suggestion small { color: #ccc; font-size: .67rem; }
.cart-summary { padding: 22px 28px 28px; background: #0b0b0c; border-top: 1px solid #444; }
.cart-summary > div { display: flex; justify-content: space-between; font-size: 1.15rem; }
.cart-summary p { color: #c5c2bd; font-size: .8rem; line-height: 1.5; }
.cart-summary .btn { margin-top: 8px; }

.age-gate { position: fixed; inset: 0; z-index: 500; display: none; place-items: center; padding: 20px; background: rgba(0,0,0,.88); }
.age-gate.open { display: grid; }
.age-gate > div { width: min(560px, 100%); padding: 42px; background: white; border-top: 5px solid var(--red); }
.age-gate h2 { font-size: 2rem; }
.age-gate p:not(.eyebrow) { color: var(--muted); line-height: 1.6; }

@media (max-width: 1120px) {
  .site-header { grid-template-columns: 240px 1fr auto; padding-inline: 20px; gap: 12px; }
  .brand-plaque { width: 235px; }
  .main-nav > a, .nav-item > button { padding-inline: 11px; font-size: .84rem; }
  .department-grid { grid-template-columns: repeat(3, 1fr); }
  .department-card:nth-child(4), .department-card:nth-child(5) { min-height: 300px; }
  .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 820px) {
  :root { --header-h: 68px; }
  .site-header { grid-template-columns: auto 1fr auto; height: var(--header-h); padding: 0 14px; }
  .brand-plaque { width: 200px; height: 52px; }
  .menu-toggle { display: grid; gap: 4px; grid-column: 2; justify-self: end; width: 42px; border: 0; }
  .header-actions { grid-column: 3; }
  .search-button { display: none; }
  .cart-button { padding-inline: 11px; font-size: .8rem; }
  .main-nav { position: absolute; inset: 100% 0 auto; display: none; height: auto; max-height: calc(100vh - var(--header-h)); overflow-y: auto; color: var(--ink); background: white; border-bottom: 4px solid var(--red); }
  .main-nav.open { display: block; }
  .main-nav > a, .nav-item > button { width: 100%; min-height: 52px; justify-content: space-between; padding: 0 20px; color: var(--ink); border-bottom: 1px solid var(--line); }
  .nav-item { display: block; }
  .mega-menu { position: static; grid-template-columns: 1fr 1fr; padding: 20px; box-shadow: none; border-bottom: 0; background: #f3f2ef; }
  .header-search { display: none; }
  .hero { min-height: 560px; }
  .hero-content { width: auto; margin: 0 25px 120px; }
  .hero h1 { font-size: clamp(2.5rem, 11vw, 4.2rem); }
  .hero-proof { left: 25px; right: auto; bottom: 65px; display: flex; flex-wrap: wrap; }
  .hero-proof span { font-size: .6rem; }
  .benefit-bar { grid-template-columns: 1fr; }
  .benefit-bar div { border-right: 0; border-bottom: 1px solid var(--line); }
  .brand-rail { grid-template-columns: 1fr; gap: 25px; padding-inline: 20px; }
  .brand-logos { grid-template-columns: repeat(3, 1fr); gap: 17px 26px; }
  .category-showcase, .catalogue, .newsletter { padding: 70px 20px; }
  .section-title, .catalogue-head { display: block; }
  .section-title > p { margin-top: 15px; }
  .department-grid { grid-template-columns: 1fr 1fr; }
  .department-card { min-height: 300px; }
  .featured-strip { height: 100vh; height: 100svh; min-height: 660px; grid-template-columns: 1fr; grid-template-rows: minmax(220px, .48fr) 1fr; }
  .featured-copy { padding: 34px 25px 22px; align-self: start; }
  .featured-copy h2 { font-size: clamp(2.2rem, 8vw, 3.2rem); }
  .featured-copy > p:not(.eyebrow) { max-width: 620px; margin-bottom: 0; }
  .featured-controls { margin-top: 18px; }
  .featured-products { min-height: 0; grid-auto-columns: 74%; }
  .featured-card { min-height: 0; }
  .catalogue-tools { margin-top: 25px; min-width: 0; }
  .catalogue-layout { grid-template-columns: 1fr; gap: 18px; }
  .filters { position: static; }
  .filter-mobile-toggle { width: 100%; height: 48px; display: flex; justify-content: space-between; align-items: center; padding: 0 14px; border: 1px solid #aaa; background: white; font-weight: 800; }
  .filters > div, .stock-filter { display: none; }
  .filters.open > div { display: grid; grid-template-columns: 1fr 1fr; gap: 0 20px; padding: 10px 14px; background: white; border: 1px solid #ddd; }
  .filters.open .stock-filter { display: flex; }
  .licence-cta { display: block; padding: 60px 25px; }
  .licence-cta .btn { margin-top: 25px; }
  .service-row { grid-template-columns: 1fr; gap: 30px; padding: 65px 25px; }
  .service-row article, .service-row article:first-child { padding: 0 0 30px; border-right: 0; border-bottom: 1px solid var(--line); }
  .newsletter { grid-template-columns: 1fr; gap: 25px; }
  .site-footer { grid-template-columns: 1fr 1fr; padding-inline: 25px; }
  .footer-brand, .footer-legal { grid-column: 1 / -1; }
}

@media (max-width: 540px) {
  .brand-plaque { width: 150px; }
  .menu-toggle { width: 36px; }
  .cart-button { font-size: 0; width: 48px; padding: 0; }
  .cart-button::before { content: "Cart"; font-size: .72rem; }
  .cart-button span { margin-left: 3px; }
  .mega-menu { grid-template-columns: 1fr; }
  .hero-content { margin-inline: 18px; }
  .hero-content > p:not(.eyebrow) { font-size: .96rem; }
  .hero-proof { left: 18px; right: 18px; }
  .department-grid { grid-template-columns: 1fr; }
  .brand-logos { grid-template-columns: repeat(2, 1fr); }
  .department-card, .department-card:nth-child(4), .department-card:nth-child(5) { min-height: 260px; }
  .catalogue-tools { grid-template-columns: 1fr; }
  .product-grid { grid-template-columns: 1fr; }
  .filters.open > div { grid-template-columns: 1fr; }
  .featured-strip { min-height: 620px; grid-template-rows: minmax(245px, .52fr) 1fr; }
  .featured-copy { padding: 26px 18px 18px; }
  .featured-copy h2 { font-size: 2.15rem; }
  .featured-copy > p:not(.eyebrow) { font-size: .86rem; line-height: 1.45; }
  .featured-products { grid-auto-columns: 88%; }
  .featured-dots { gap: 5px; margin-top: 12px; }
  .featured-dot { width: 20px; }
  .newsletter form { grid-template-columns: 1fr; }
  .site-footer { grid-template-columns: 1fr; }
  .site-footer > * { grid-column: 1; }
  .cart-panel { grid-template-rows: auto minmax(0, 1fr) auto auto; }
  .cart-item-meta { flex-wrap: wrap; gap: 10px; }
  .cart-item-actions { margin-left: 0; }
  .cart-suggestions > div { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .suggestion { display: block; padding: 5px; }
  .suggestion img { width: 100%; height: 62px; margin-bottom: 4px; }
  .age-gate > div { padding: 30px 22px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; transition-duration: .01ms !important; }
}
