:root {
  --brand-gold: #ecc500;
  --ink: #0d0d0c;
  --ink-soft: #575347;
  --paper: #f5f1e5;
  --paper-deep: #e6deca;
  --cream: #fffdf6;
  --line: #d1c7ad;
  --acid: var(--brand-gold);
  --terracotta: #9f4c2f;
  --green: #17150c;
  --white: #fff;
  --serif: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  --sans: Inter, Avenir, "Helvetica Neue", Arial, sans-serif;
  --shadow: 0 28px 70px rgba(13, 13, 12, 0.16);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.5;
}
body.filters-open, body.enquiry-drawer-open { overflow: hidden; }
button, input, select { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { color: inherit; }

.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;
}
.skip-link {
  position: fixed;
  top: -80px;
  left: 20px;
  z-index: 100;
  padding: 12px 18px;
  background: var(--acid);
  font-weight: 800;
  transition: top .2s;
}
.skip-link:focus { top: 12px; }

.site-header {
  position: relative;
  z-index: 20;
  height: 104px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 clamp(24px, 5vw, 76px);
  border-bottom: 1px solid rgba(236, 197, 0, .42);
  color: var(--paper);
  background: rgba(13, 13, 12, .96);
  backdrop-filter: blur(12px);
}
.brand { display: inline-flex; align-items: center; width: max-content; }
.brand-logo { width: auto; object-fit: contain; }
.brand-logo-header { height: 82px; }
.brand-logo-footer { height: 128px; }
.brand-logo-login { height: clamp(145px, 19vw, 220px); }
.brand-logo-admin { height: 64px; }
.desktop-nav { display: flex; gap: 34px; font-size: 12px; font-weight: 750; text-transform: uppercase; letter-spacing: .12em; }
.desktop-nav a { position: relative; }
.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -7px;
  height: 2px;
  background: var(--acid);
  transition: right .25s ease;
}
.desktop-nav a:hover::after { right: 0; }
.site-header .desktop-nav a::after { background: var(--acid); }
.header-actions { justify-self: end; display: flex; align-items: center; gap: 22px; }
.enquiry-list-trigger { display: inline-flex; align-items: center; gap: 8px; min-height: 38px; padding: 0; border: 0; border-bottom: 1px solid currentColor; background: none; cursor: pointer; font-size: 10px; font-weight: 850; letter-spacing: .08em; text-transform: uppercase; }
.enquiry-list-trigger b { min-width: 23px; height: 23px; display: grid; place-items: center; border-radius: 50%; color: var(--ink); background: var(--acid); font-size: 9px; }
.site-header .button-dark { color: var(--ink); background: var(--acid); }
.text-button { border: 0; background: none; display: inline-flex; align-items: center; gap: 8px; cursor: pointer; padding: 8px 0; font-weight: 700; }
.text-button svg, .catalog-search svg { width: 18px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; }

.button {
  display: inline-flex;
  min-height: 48px;
  padding: 0 22px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 0;
  cursor: pointer;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .1em;
  transition: transform .2s ease, background .2s, color .2s;
}
.button:hover { transform: translateY(-2px); }
.button-dark { color: var(--paper); background: var(--ink); }
.button-accent { color: var(--ink); background: var(--acid); }
.button-outline { background: transparent; border-color: var(--ink); }
.button-light { background: var(--paper); color: var(--ink); }

.enquiry-drawer { position: fixed; z-index: 90; top: 0; right: 0; width: min(520px, 100vw); height: 100vh; display: grid; grid-template-rows: auto auto minmax(0, 1fr) auto; padding: 30px; color: var(--ink); background: var(--cream); box-shadow: -30px 0 80px rgba(21,33,29,.2); }
.enquiry-drawer[hidden], .enquiry-drawer-scrim[hidden] { display: none !important; }
.enquiry-drawer-scrim { position: fixed; z-index: 89; inset: 0; background: rgba(21,33,29,.54); backdrop-filter: blur(4px); }
.enquiry-drawer-head { display: flex; align-items: start; justify-content: space-between; gap: 20px; padding-bottom: 18px; border-bottom: 1px solid var(--ink); }
.enquiry-drawer-head h2 { margin: 0; font-family: var(--serif); font-size: 45px; font-weight: 500; line-height: .95; letter-spacing: -.045em; }
.enquiry-drawer-head button { border: 0; background: none; cursor: pointer; font-size: 30px; line-height: 1; }
.enquiry-drawer-intro { margin: 18px 0; color: var(--ink-soft); font-size: 11px; line-height: 1.65; }
.enquiry-drawer-items { overflow-y: auto; border-top: 1px solid var(--line); }
.enquiry-list-item { display: grid; grid-template-columns: 76px 1fr auto; gap: 13px; padding: 15px 0; border-bottom: 1px solid var(--line); }
.enquiry-list-thumb { width: 76px; height: 90px; object-fit: cover; background: var(--paper-deep); }
.enquiry-list-copy > span { display: block; margin-bottom: 3px; color: var(--terracotta); font-size: 8px; font-weight: 850; letter-spacing: .08em; text-transform: uppercase; }
.enquiry-list-copy strong { display: block; margin-bottom: 9px; font-family: var(--serif); font-size: 19px; font-weight: 500; line-height: 1.05; }
.enquiry-item-meta { display: flex; flex-wrap: wrap; gap: 5px; margin-bottom: 9px; }
.enquiry-item-meta span { padding: 4px 6px; border: 1px solid var(--line); font-size: 8px; text-transform: uppercase; }
.enquiry-item-quantity { display: grid; gap: 4px; }
.enquiry-item-quantity span { color: var(--ink-soft); font-size: 8px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.enquiry-item-quantity input { width: 100%; height: 35px; padding: 0 8px; border: 1px solid var(--line); background: var(--paper); font-size: 10px; }
.enquiry-list-item-actions { display: flex; flex-direction: column; align-items: end; justify-content: space-between; }
.enquiry-list-item-actions button, .enquiry-list-item-actions a { padding: 3px 0; border: 0; border-bottom: 1px solid var(--ink); background: none; cursor: pointer; font-size: 8px; font-weight: 850; letter-spacing: .06em; text-transform: uppercase; }
.enquiry-list-item-actions button { color: var(--terracotta); border-color: var(--terracotta); }
.enquiry-list-empty { display: grid; place-items: center; min-height: 260px; padding: 30px; color: var(--ink-soft); text-align: center; }
.enquiry-list-empty strong { display: block; margin-bottom: 8px; color: var(--ink); font-family: var(--serif); font-size: 27px; font-weight: 500; }
.enquiry-drawer-foot { padding-top: 18px; border-top: 1px solid var(--ink); }
.enquiry-drawer-foot p { margin: 0 0 12px; font-size: 10px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.enquiry-drawer-foot .button { width: 100%; }
.enquiry-drawer-foot .button:disabled { opacity: .45; cursor: not-allowed; transform: none; }
.enquiry-drawer-foot small { display: block; margin-top: 10px; color: var(--ink-soft); font-size: 8px; text-align: center; }

.hero {
  min-height: 700px;
  display: grid;
  grid-template-columns: minmax(420px, .9fr) minmax(500px, 1.1fr);
  overflow: hidden;
}
.hero-copy {
  padding: clamp(84px, 10vw, 145px) clamp(36px, 7vw, 106px) 70px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.eyebrow {
  margin: 0 0 25px;
  font-size: 11px;
  font-weight: 850;
  letter-spacing: .19em;
  text-transform: uppercase;
}
.eyebrow::before { content: "— "; }
.hero h1 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(64px, 6.7vw, 112px);
  line-height: .86;
  font-weight: 500;
  letter-spacing: -.065em;
}
.hero h1::first-line { font-style: italic; }
.hero-intro { max-width: 530px; margin: 38px 0 32px; color: var(--ink-soft); font-size: 17px; line-height: 1.7; }
.hero-actions { display: flex; align-items: center; gap: 28px; }
.arrow-link { font-size: 12px; text-transform: uppercase; letter-spacing: .09em; font-weight: 800; border-bottom: 1px solid var(--ink); padding: 9px 0 6px; }
.arrow-link span { margin-left: 10px; }
.hero-stats {
  margin-top: auto;
  padding-top: 70px;
  display: flex;
  gap: 48px;
}
.hero-stats div { display: grid; gap: 3px; }
.hero-stats strong { font-family: var(--serif); font-size: 26px; font-weight: 500; }
.hero-stats span { color: var(--ink-soft); font-size: 10px; text-transform: uppercase; letter-spacing: .1em; }
.hero-visual { position: relative; min-height: 700px; padding: 34px 34px 34px 0; }
.hero-image-wrap { position: relative; width: 100%; height: 100%; overflow: hidden; background: var(--green); }
.hero-image-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(20, 36, 29, .04), transparent 50%, rgba(20, 36, 29, .28));
}
.hero-image-wrap img { width: 100%; height: 100%; object-fit: cover; object-position: 55% center; transform: scale(1.03); }
.image-index, .image-label {
  position: absolute;
  z-index: 2;
  color: var(--white);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .13em;
  text-shadow: 0 1px 12px rgba(0,0,0,.35);
}
.image-index { top: 22px; right: 22px; }
.image-label { bottom: 22px; left: 22px; }
.hero-stamp {
  position: absolute;
  left: -56px;
  bottom: 78px;
  z-index: 3;
  width: 116px;
  height: 116px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--ink);
  background: var(--acid);
  box-shadow: var(--shadow);
}
.hero-stamp span { width: 80px; text-align: center; font-size: 9px; line-height: 1.5; font-weight: 850; letter-spacing: .15em; }
.hero-stamp b { position: absolute; font-size: 18px; }

.category-strip { padding: 110px clamp(24px, 5vw, 76px) 130px; background: var(--cream); }
.section-heading { display: flex; justify-content: space-between; align-items: end; gap: 40px; margin-bottom: 45px; }
.section-heading h2, .collection-heading h2, .trade-banner h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(42px, 5vw, 76px);
  line-height: .95;
  font-weight: 500;
  letter-spacing: -.045em;
}
.section-heading p:last-child { max-width: 390px; color: var(--ink-soft); margin: 0 0 8px; }
.category-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.category-card {
  position: relative;
  height: 450px;
  padding: 0;
  overflow: hidden;
  border: 0;
  background: var(--ink);
  text-align: left;
  cursor: pointer;
}
.category-card::after { content: ""; position: absolute; inset: 45% 0 0; background: linear-gradient(transparent, rgba(8,17,13,.82)); }
.category-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s cubic-bezier(.2,.7,.2,1); }
.category-brocade img { object-position: 65% center; }
.category-lace img { object-position: 62% center; }
.category-card:hover img { transform: scale(1.045); }
.category-number, .category-name, .category-count, .category-arrow { position: absolute; z-index: 2; color: var(--white); }
.category-number { top: 20px; left: 20px; font-size: 10px; letter-spacing: .14em; }
.category-name { left: 22px; bottom: 45px; font-family: var(--serif); font-size: clamp(37px, 4vw, 58px); line-height: 1; letter-spacing: -.04em; }
.category-count { left: 25px; bottom: 18px; font-size: 9px; text-transform: uppercase; letter-spacing: .12em; }
.category-arrow { right: 20px; bottom: 20px; width: 42px; height: 42px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.7); border-radius: 50%; font-size: 18px; transition: background .2s, color .2s; }
.category-card:hover .category-arrow { background: var(--acid); color: var(--ink); border-color: var(--acid); }

.collection { padding: 120px clamp(24px, 5vw, 76px) 140px; }
.collection-heading { display: flex; justify-content: space-between; align-items: end; gap: 40px; margin-bottom: 52px; }
.collection-heading > p { max-width: 440px; margin: 0 0 7px; color: var(--ink-soft); }
.catalog-toolbar { display: grid; grid-template-columns: 1fr auto; gap: 16px; margin-bottom: 30px; }
.catalog-search { height: 64px; display: flex; align-items: center; padding: 0 22px; border: 1px solid var(--ink); background: var(--cream); }
.catalog-search svg { flex: none; margin-right: 14px; }
.catalog-search input { width: 100%; border: 0; outline: 0; background: transparent; color: var(--ink); font-size: 16px; }
.catalog-search input::placeholder { color: #777e78; }
.catalog-search kbd { color: #777e78; background: transparent; border: 1px solid var(--line); padding: 3px 7px; font: 10px var(--sans); }
.filter-toggle { display: none; gap: 9px; }
.filter-toggle svg { width: 19px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; }
.category-tabs { display: flex; border-bottom: 1px solid var(--line); margin-bottom: 32px; overflow-x: auto; }
.category-tab {
  flex: 0 0 auto;
  position: relative;
  min-width: 138px;
  padding: 0 0 17px;
  margin-right: 30px;
  border: 0;
  background: none;
  text-align: left;
  cursor: pointer;
  color: #717872;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .09em;
}
.category-tab span { float: right; font-size: 9px; }
.category-tab::after { content: ""; position: absolute; bottom: -1px; left: 0; right: 100%; height: 3px; background: var(--ink); transition: right .2s; }
.category-tab.is-active { color: var(--ink); }
.category-tab.is-active::after { right: 0; }
.catalog-layout { display: grid; grid-template-columns: 230px minmax(0, 1fr); gap: clamp(32px, 5vw, 78px); }
.filters { min-width: 0; }
.filter-head { height: 42px; display: flex; justify-content: space-between; align-items: start; border-bottom: 1px solid var(--ink); font-size: 11px; text-transform: uppercase; letter-spacing: .12em; font-weight: 850; }
.clear-button { border: 0; padding: 0; background: none; color: #747a75; cursor: pointer; font-size: 10px; text-decoration: underline; text-underline-offset: 3px; }
.filter-group { border-bottom: 1px solid var(--line); }
.filter-title { width: 100%; display: flex; align-items: center; justify-content: space-between; padding: 19px 0 15px; border: 0; background: none; cursor: pointer; text-align: left; font-size: 11px; text-transform: uppercase; letter-spacing: .1em; font-weight: 850; }
.filter-title span:last-child { font-size: 17px; font-weight: 400; transition: transform .2s; }
.filter-group.is-collapsed .filter-title span:last-child { transform: rotate(45deg); }
.filter-options { display: grid; gap: 10px; padding: 0 0 19px; }
.filter-group.is-collapsed .filter-options { display: none; }
.filter-option { display: flex; align-items: center; gap: 10px; color: var(--ink-soft); cursor: pointer; font-size: 13px; }
.filter-option input { position: absolute; opacity: 0; pointer-events: none; }
.filter-check { width: 15px; height: 15px; border: 1px solid #a19f97; display: grid; place-items: center; transition: background .2s, border .2s; }
.filter-check::after { content: ""; width: 7px; height: 4px; border-left: 1.5px solid var(--paper); border-bottom: 1.5px solid var(--paper); transform: rotate(-45deg) translateY(-1px); opacity: 0; }
.filter-option input:checked + .filter-check { background: var(--ink); border-color: var(--ink); }
.filter-option input:checked + .filter-check::after { opacity: 1; }
.filter-option .option-count { margin-left: auto; color: #989b95; font-size: 10px; }
.filter-mobile-head, .filter-mobile-foot { display: none; }
.products-area { min-width: 0; }
.results-meta { min-height: 42px; display: flex; align-items: start; gap: 20px; margin-bottom: 18px; font-size: 11px; text-transform: uppercase; letter-spacing: .09em; }
.results-meta strong { font-size: 13px; }
.results-meta > div:first-child { white-space: nowrap; padding-top: 6px; }
.active-filter-list { flex: 1; display: flex; flex-wrap: wrap; gap: 6px; }
.active-pill { display: inline-flex; align-items: center; gap: 7px; min-height: 28px; padding: 0 9px; border: 1px solid var(--line); background: var(--cream); text-transform: none; letter-spacing: 0; font-size: 11px; }
.active-pill button { border: 0; padding: 0; background: none; cursor: pointer; font-size: 15px; line-height: 1; }
.sort-control { display: flex; align-items: center; gap: 9px; color: #777d78; white-space: nowrap; }
.sort-control select { border: 0; border-bottom: 1px solid var(--line); background: transparent; color: var(--ink); padding: 4px 20px 5px 2px; outline: 0; font-size: 11px; }
.product-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 44px 14px; }
.product-card { min-width: 0; }
.product-image-button { position: relative; width: 100%; aspect-ratio: 4 / 5; padding: 0; border: 0; overflow: hidden; background: var(--paper-deep); cursor: pointer; }
.product-image-button::after { content: "View article ↗"; position: absolute; inset: auto 12px 12px; padding: 13px 15px; color: var(--paper); background: rgba(21,33,29,.92); font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: .1em; transform: translateY(70px); transition: transform .25s ease; }
.product-image-button:hover::after, .product-image-button:focus-visible::after { transform: translateY(0); }
.product-image-button img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s cubic-bezier(.2,.7,.2,1), filter .3s; }
.product-image-button:hover img { transform: scale(1.04); }
.crop-a img { object-position: 30% center; }
.crop-b img { object-position: 68% center; }
.crop-c img { object-position: center 65%; }
.tone-rose img { filter: hue-rotate(305deg) saturate(.82) brightness(1.1); }
.tone-blue img { filter: hue-rotate(26deg) saturate(.8); }
.tone-black img { filter: grayscale(.8) contrast(1.18) brightness(.72); }
.tone-silver img { filter: grayscale(.65) contrast(.86) brightness(1.16); }
.tone-red img { filter: hue-rotate(308deg) saturate(1.28); }
.tone-natural img { filter: sepia(.16) saturate(.7) brightness(1.08); }
.card-badge { position: absolute; z-index: 2; top: 12px; left: 12px; padding: 7px 9px; background: var(--acid); font-size: 9px; font-weight: 850; letter-spacing: .1em; text-transform: uppercase; }
.card-favourite { position: absolute; z-index: 2; top: 12px; right: 12px; width: 36px; height: 36px; display: grid; place-items: center; padding: 0; border: 0; border-radius: 50%; background: rgba(250,248,242,.9); cursor: pointer; font-size: 18px; }
.card-favourite.is-saved { color: var(--terracotta); }
.product-info { padding: 14px 2px 0; }
.product-overline { display: flex; justify-content: space-between; margin-bottom: 7px; color: #7a7f7a; font-size: 9px; text-transform: uppercase; letter-spacing: .12em; }
.product-info h3 { margin: 0 0 8px; font-family: var(--serif); font-size: 23px; font-weight: 500; line-height: 1.1; letter-spacing: -.025em; }
.card-tags { display: flex; flex-wrap: wrap; gap: 4px 9px; color: var(--ink-soft); font-size: 10px; }
.card-tags span::before { content: "•"; margin-right: 5px; color: var(--terracotta); }
.empty-state { padding: 100px 20px; text-align: center; border: 1px solid var(--line); background: var(--cream); }
.empty-state > span { font-size: 30px; color: var(--terracotta); }
.empty-state h3 { margin: 12px 0 8px; font-family: var(--serif); font-size: 36px; font-weight: 500; }
.empty-state p { margin: 0 auto 24px; max-width: 420px; color: var(--ink-soft); }

.trade-banner { display: grid; grid-template-columns: 1.1fr .8fr auto; gap: 60px; align-items: end; padding: 86px clamp(24px, 5vw, 76px); color: var(--ink); background: var(--acid); }
.trade-banner .eyebrow { margin-bottom: 19px; }
.trade-banner p { margin: 0 0 5px; max-width: 490px; line-height: 1.7; color: rgba(13,13,12,.72); }
.trade-banner .button-light { color: var(--paper); background: var(--ink); }
.about { padding: 120px clamp(24px, 8vw, 130px); text-align: center; background: var(--ink); color: var(--paper); }
.about .eyebrow::before { content: ""; }
.about-statement { max-width: 1000px; margin: 0 auto 55px; font-family: var(--serif); font-size: clamp(45px, 5.4vw, 82px); line-height: 1.06; letter-spacing: -.04em; }
.about-notes { display: flex; justify-content: center; gap: 60px; color: rgba(255,255,255,.67); font-size: 10px; text-transform: uppercase; letter-spacing: .15em; }
.about-notes span::before { content: "✦"; margin-right: 10px; color: var(--acid); }
.contact-section { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(60px, 9vw, 140px); padding: 120px clamp(24px, 7vw, 110px) 135px; background: var(--cream); }
.contact-section h2 { margin: 0; font-family: var(--serif); font-size: clamp(55px, 6vw, 92px); line-height: .92; font-weight: 500; letter-spacing: -.05em; }
.contact-copy > p:first-child { max-width: 640px; margin: 0 0 32px; color: var(--ink-soft); font-size: 16px; line-height: 1.75; }
.enquiry-form { padding: 28px; margin-bottom: 18px; border: 1px solid var(--ink); background: var(--paper); }
.enquiry-field-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px 12px; }
.enquiry-field { display: grid; gap: 7px; }
.enquiry-field-wide { grid-column: 1 / -1; }
.enquiry-field > span { font-size: 9px; font-weight: 850; letter-spacing: .11em; text-transform: uppercase; }
.enquiry-field input, .enquiry-field textarea { width: 100%; border: 1px solid var(--line); border-radius: 0; outline: none; color: var(--ink); background: var(--cream); transition: border .2s, background .2s; }
.enquiry-field input { height: 48px; padding: 0 12px; }
.enquiry-field textarea { padding: 12px; resize: vertical; line-height: 1.55; }
.enquiry-field input:focus, .enquiry-field textarea:focus { border-color: var(--ink); background: white; }
.enquiry-consent { display: flex; align-items: flex-start; gap: 9px; margin: 16px 0; color: var(--ink-soft); font-size: 10px; line-height: 1.5; }
.enquiry-consent input { margin-top: 2px; accent-color: var(--ink); }
.enquiry-honeypot { position: absolute; left: -9999px; }
.enquiry-status { min-height: 18px; margin: 0 0 10px; color: var(--ink-soft); font-size: 11px; }
.enquiry-status.is-success { color: #376f46; }
.enquiry-status.is-error { color: var(--terracotta); }
.enquiry-status a { text-decoration: underline; }
.enquiry-form .button { width: 100%; }
.contact-actions { display: flex; gap: 9px; }
.contact-note { margin: 15px 0 0; color: #777e78; font-size: 10px; }
.detail-contact-actions { grid-template-columns: 1fr 52px; }
.detail-email-link { display: inline-block; margin: -7px 0 24px; border-bottom: 1px solid var(--ink); padding-bottom: 3px; font-size: 10px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.whatsapp-float { position: fixed; z-index: 45; right: 22px; bottom: 22px; min-height: 52px; display: inline-flex; align-items: center; gap: 10px; padding: 7px 15px 7px 7px; border-radius: 28px; color: white; background: #176b4a; box-shadow: 0 14px 38px rgba(19,58,43,.28); transition: transform .2s; }
.whatsapp-float:hover { transform: translateY(-3px); }
.whatsapp-float span { width: 38px; height: 38px; display: grid; place-items: center; border-radius: 50%; color: var(--ink); background: var(--acid); font-size: 10px; font-weight: 900; }
.whatsapp-float b { font-size: 10px; letter-spacing: .09em; text-transform: uppercase; }
.site-footer { min-height: 210px; display: grid; grid-template-columns: auto minmax(0, 1fr) auto; gap: clamp(36px, 7vw, 110px); align-items: center; padding: 35px clamp(24px, 5vw, 76px); border-top: 1px solid rgba(236,197,0,.42); color: var(--paper); background: var(--ink); font-size: 11px; }
.footer-contacts { display: flex; justify-content: center; gap: clamp(34px, 7vw, 100px); }
.footer-contacts a { min-width: 210px; display: grid; gap: 8px; padding: 16px 0; border-top: 1px solid rgba(236,197,0,.52); }
.footer-contacts span { color: var(--acid); font-size: 9px; font-weight: 850; letter-spacing: .13em; text-transform: uppercase; }
.footer-contacts strong { color: var(--paper); font-size: clamp(13px, 1.25vw, 17px); font-weight: 650; letter-spacing: .02em; }
.site-footer > span { color: rgba(255,255,255,.48); }

.detail-view { min-height: calc(100vh - 88px); background: var(--cream); }
.detail-shell { padding: 38px clamp(24px, 5vw, 76px) 120px; }
.breadcrumbs { display: flex; align-items: center; gap: 11px; margin-bottom: 32px; color: #727a74; font-size: 10px; text-transform: uppercase; letter-spacing: .11em; }
.breadcrumbs button { border: 0; padding: 4px 0; background: none; cursor: pointer; text-transform: inherit; letter-spacing: inherit; font-size: inherit; }
.breadcrumbs button:hover { color: var(--ink); }
.detail-layout { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(360px, .8fr); gap: clamp(40px, 6vw, 90px); align-items: start; }
.gallery-main { position: relative; height: min(71vw, 760px); overflow: hidden; background: var(--paper-deep); }
.gallery-main img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s, object-position .35s; }
.gallery-main[data-view="2"] img { transform: scale(1.55); object-position: 25% 50%; }
.gallery-main[data-view="3"] img { transform: scale(1.5); object-position: 76% 65%; }
.gallery-main.uses-multiple-images[data-view] img { transform: none; object-position: center; }
.gallery-counter { position: absolute; right: 16px; bottom: 16px; padding: 8px 10px; background: rgba(21,33,29,.85); color: white; font-size: 9px; letter-spacing: .12em; }
.gallery-thumbs { display: grid; grid-template-columns: repeat(3, 1fr); gap: 9px; margin-top: 9px; }
.gallery-thumb { height: 115px; padding: 0; border: 2px solid transparent; overflow: hidden; cursor: pointer; background: var(--paper-deep); }
.gallery-thumb.is-active { border-color: var(--ink); }
.gallery-thumb img { width: 100%; height: 100%; object-fit: cover; }
.gallery-thumb[data-gallery-view="2"] img { transform: scale(1.65); object-position: 25% 50%; }
.gallery-thumb[data-gallery-view="3"] img { transform: scale(1.65); object-position: 76% 65%; }
.gallery-thumb.uses-multiple-images[data-gallery-view] img { transform: none; object-position: center; }
.detail-info { position: sticky; top: 24px; padding-top: 12px; }
.detail-code { display: flex; justify-content: space-between; color: #757b76; font-size: 10px; text-transform: uppercase; letter-spacing: .12em; }
.detail-info h1 { margin: 16px 0 18px; font-family: var(--serif); font-size: clamp(48px, 5vw, 78px); line-height: .94; font-weight: 500; letter-spacing: -.05em; }
.detail-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 27px; }
.detail-tags span { padding: 7px 10px; border: 1px solid var(--line); background: var(--paper); font-size: 9px; text-transform: uppercase; letter-spacing: .09em; }
.product-colour-picker { margin: 0 0 27px; padding: 20px; border: 1px solid var(--ink); background: var(--paper); }
.colour-picker-heading { display: flex; justify-content: space-between; gap: 20px; align-items: end; margin-bottom: 16px; }
.colour-picker-heading span, .colour-picker-heading strong { display: block; }
.colour-picker-heading span { margin-bottom: 4px; color: var(--ink-soft); font-size: 8px; font-weight: 850; letter-spacing: .1em; text-transform: uppercase; }
.colour-picker-heading strong { font-family: var(--serif); font-size: 22px; font-weight: 500; }
.colour-picker-heading > b { font: 9px var(--mono); text-transform: uppercase; }
.customer-colour-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 8px; }
.customer-colour { min-width: 0; padding: 7px; border: 1px solid var(--line); background: var(--cream); cursor: pointer; text-align: left; transition: border-color .2s, transform .2s; }
.customer-colour:hover { transform: translateY(-2px); border-color: var(--ink); }
.customer-colour.is-selected { outline: 2px solid var(--ink); outline-offset: 2px; }
.customer-colour input[type="color"] { width: 100%; height: 48px; display: block; padding: 0; border: 0; opacity: 1; background: none; }
.customer-colour input[type="color"]::-webkit-color-swatch-wrapper { padding: 0; }
.customer-colour input[type="color"]::-webkit-color-swatch { border: 0; }
.customer-colour input[type="color"]::-moz-color-swatch { border: 0; }
.customer-colour span, .customer-colour small { display: block; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.customer-colour span { margin-top: 7px; font-size: 9px; font-weight: 750; }
.customer-colour small { margin-top: 3px; color: var(--ink-soft); font: 8px var(--mono); text-transform: uppercase; }
.product-colour-picker > p, .no-colour-cards { margin: 13px 0 0; color: var(--ink-soft); font-size: 9px; line-height: 1.55; }
.detail-description { margin: 0 0 30px; color: var(--ink-soft); font-size: 16px; line-height: 1.75; }
.detail-highlights { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 30px; }
.highlight { min-height: 98px; padding: 15px; border: 1px solid var(--line); }
.highlight span { display: block; margin-bottom: 17px; color: #777d78; font-size: 9px; text-transform: uppercase; letter-spacing: .1em; }
.highlight strong { font-family: var(--serif); font-size: 20px; font-weight: 500; }
.detail-actions { display: grid; grid-template-columns: 1fr 52px; gap: 8px; margin-bottom: 25px; }
.detail-actions .button { min-height: 56px; }
.save-detail { border: 1px solid var(--ink); background: transparent; cursor: pointer; font-size: 20px; }
.specs { border-top: 1px solid var(--ink); }
.spec-row { display: grid; grid-template-columns: 130px 1fr; gap: 20px; padding: 14px 0; border-bottom: 1px solid var(--line); font-size: 12px; }
.spec-row span:first-child { color: #767c77; }
.detail-note { display: flex; align-items: center; gap: 12px; margin-top: 24px; color: var(--ink-soft); font-size: 11px; }
.detail-note b { width: 28px; height: 28px; display: grid; place-items: center; border-radius: 50%; background: var(--acid); color: var(--ink); }
.related-block { margin-top: 110px; }
.related-head { display: flex; justify-content: space-between; align-items: end; margin-bottom: 28px; }
.related-head h2 { margin: 0; font-family: var(--serif); font-size: 48px; font-weight: 500; letter-spacing: -.04em; }
.related-head button { border: 0; border-bottom: 1px solid var(--ink); padding: 7px 0; background: none; cursor: pointer; font-size: 10px; text-transform: uppercase; letter-spacing: .1em; font-weight: 800; }
.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }

.upload-view { min-height: calc(100vh - 88px); background: var(--cream); }
.upload-shell { padding: 38px clamp(24px, 5vw, 76px) 120px; }
.upload-topbar { display: flex; justify-content: space-between; align-items: center; margin-bottom: 68px; }
.upload-back { display: inline-flex; align-items: center; gap: 9px; border: 0; padding: 7px 0; background: none; cursor: pointer; font-size: 10px; font-weight: 800; letter-spacing: .11em; text-transform: uppercase; }
.upload-back span { font-size: 17px; font-weight: 400; }
.local-status { display: inline-flex; align-items: center; gap: 8px; color: #6d756f; font-size: 10px; letter-spacing: .09em; text-transform: uppercase; }
.local-status::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: #6fa85b; box-shadow: 0 0 0 4px rgba(111,168,91,.13); }
.upload-intro { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(300px, .85fr); gap: 70px; align-items: end; margin-bottom: 56px; }
.upload-intro h1 { margin: 0; font-family: var(--serif); font-size: clamp(60px, 7vw, 108px); font-weight: 500; line-height: .86; letter-spacing: -.06em; }
.upload-intro h1 em { font-weight: 500; }
.upload-intro > div:last-child { max-width: 530px; padding-bottom: 7px; }
.upload-intro p { margin: 0 0 19px; color: var(--ink-soft); font-size: 16px; line-height: 1.7; }
.upload-steps { display: flex; gap: 22px; color: #737a74; font-size: 9px; font-weight: 800; letter-spacing: .11em; text-transform: uppercase; }
.upload-steps span b { margin-right: 6px; color: var(--terracotta); }
.upload-layout { display: grid; grid-template-columns: minmax(360px, .78fr) minmax(500px, 1.22fr); gap: clamp(35px, 6vw, 88px); align-items: start; }
.upload-media { position: sticky; top: 28px; }
.upload-section-label { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; font-size: 10px; font-weight: 850; letter-spacing: .12em; text-transform: uppercase; }
.upload-section-label span:last-child { color: #858b86; font-weight: 500; }
.upload-dropzone { position: relative; min-height: 510px; display: grid; place-items: center; padding: 26px; border: 1px dashed #a8aca5; background: var(--paper); overflow: hidden; transition: border .2s, background .2s; }
.upload-dropzone.is-dragging { border-color: var(--ink); background: #eef2da; }
.upload-dropzone input { position: absolute; inset: 0; width: 100%; height: 100%; opacity: 0; cursor: pointer; }
.upload-empty { max-width: 270px; text-align: center; pointer-events: none; }
.upload-empty-icon { width: 62px; height: 62px; display: grid; place-items: center; margin: 0 auto 23px; border: 1px solid var(--ink); border-radius: 50%; font-size: 27px; }
.upload-empty strong { display: block; margin-bottom: 9px; font-family: var(--serif); font-size: 26px; font-weight: 500; }
.upload-empty p { margin: 0; color: #737a75; font-size: 12px; line-height: 1.6; }
.upload-empty small { display: block; margin-top: 18px; color: #969a95; font-size: 9px; letter-spacing: .09em; text-transform: uppercase; }
.upload-previews { width: 100%; align-self: stretch; display: grid; grid-template-columns: 1fr 1fr; grid-auto-rows: 1fr; gap: 8px; pointer-events: none; }
.upload-preview { position: relative; min-height: 210px; overflow: hidden; background: var(--paper-deep); pointer-events: auto; }
.upload-preview:first-child:nth-last-child(1) { grid-column: 1 / -1; }
.upload-preview:first-child:nth-last-child(2), .upload-preview:first-child:nth-last-child(2) ~ .upload-preview { grid-row: 1 / 3; }
.upload-preview img { width: 100%; height: 100%; object-fit: cover; }
.upload-preview button { position: absolute; z-index: 2; top: 9px; right: 9px; width: 31px; height: 31px; display: grid; place-items: center; border: 0; border-radius: 50%; color: white; background: rgba(21,33,29,.82); cursor: pointer; font-size: 16px; }
.upload-preview:first-child::after { content: "Cover"; position: absolute; left: 10px; bottom: 10px; padding: 6px 8px; color: white; background: rgba(21,33,29,.82); font-size: 8px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.upload-add-more { display: none; width: 100%; margin-top: 9px; }
.upload-has-images .upload-add-more { display: inline-flex; }
.upload-form { min-width: 0; }
.form-section { padding: 0 0 40px; margin-bottom: 40px; border-bottom: 1px solid var(--line); }
.form-section-head { display: flex; justify-content: space-between; gap: 30px; align-items: start; margin-bottom: 25px; }
.form-section-head h2 { margin: 0; font-family: var(--serif); font-size: 34px; font-weight: 500; letter-spacing: -.03em; }
.form-section-head p { max-width: 340px; margin: 5px 0 0; color: #747b75; font-size: 11px; line-height: 1.6; }
.field-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px 14px; }
.field { display: grid; gap: 8px; }
.field-wide { grid-column: 1 / -1; }
.field label, .field > span { font-size: 9px; font-weight: 850; letter-spacing: .12em; text-transform: uppercase; }
.field label em, .field > span em { color: var(--terracotta); font-style: normal; }
.field input, .field select, .field textarea, .new-tag-input input { width: 100%; border: 1px solid var(--line); border-radius: 0; outline: none; color: var(--ink); background: var(--paper); transition: border .2s, background .2s; }
.field input, .field select { height: 52px; padding: 0 14px; }
.field textarea { min-height: 128px; padding: 13px 14px; resize: vertical; line-height: 1.6; }
.field input:focus, .field select:focus, .field textarea:focus, .new-tag-input input:focus { border-color: var(--ink); background: white; }
.field-hint { color: #8a8f8a; font-size: 9px; }
.upload-tag-groups { display: grid; gap: 10px; }
.upload-tag-group { border: 1px solid var(--line); background: var(--paper); }
.upload-tag-title { width: 100%; display: flex; align-items: center; justify-content: space-between; padding: 16px; border: 0; background: none; cursor: pointer; font-size: 10px; font-weight: 850; letter-spacing: .11em; text-transform: uppercase; }
.upload-tag-title span:first-child { display: inline-flex; align-items: center; gap: 8px; }
.upload-tag-title b { min-width: 19px; height: 19px; display: grid; place-items: center; border-radius: 50%; background: var(--ink); color: var(--paper); font-size: 8px; }
.upload-tag-title b:empty { display: none; }
.upload-tag-options { display: flex; flex-wrap: wrap; gap: 8px; padding: 0 16px 16px; }
.upload-tag-group.is-collapsed .upload-tag-options { display: none; }
.upload-tag-option { position: relative; cursor: pointer; }
.upload-tag-option input { position: absolute; opacity: 0; pointer-events: none; }
.upload-tag-option span { min-height: 34px; display: inline-flex; align-items: center; padding: 0 11px; border: 1px solid var(--line); color: var(--ink-soft); background: var(--cream); font-size: 11px; transition: all .2s; }
.upload-tag-option input:checked + span { border-color: var(--ink); color: var(--paper); background: var(--ink); }
.new-tag-builder { margin-top: 22px; padding: 20px; background: var(--ink); color: var(--paper); }
.new-tag-builder > label { display: block; margin-bottom: 11px; font-size: 9px; font-weight: 850; letter-spacing: .12em; text-transform: uppercase; }
.new-tag-input { display: grid; grid-template-columns: 1fr auto; gap: 8px; }
.new-tag-input input { height: 46px; padding: 0 13px; border-color: #56615c; color: var(--paper); background: #22302a; }
.new-tag-input input::placeholder { color: #98a09b; }
.new-tag-input button { min-height: 46px; }
.custom-tag-list { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 13px; }
.custom-tag-chip { display: inline-flex; align-items: center; gap: 8px; padding: 7px 9px; border: 1px solid #53605a; font-size: 10px; }
.custom-tag-chip button { border: 0; padding: 0; color: var(--paper); background: none; cursor: pointer; font-size: 15px; line-height: 1; }
.publish-panel { padding: 27px; border: 1px solid var(--ink); background: var(--paper); }
.publish-summary { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-bottom: 21px; }
.publish-summary strong { font-family: var(--serif); font-size: 24px; font-weight: 500; }
.publish-summary span { color: #777d78; font-size: 10px; text-transform: uppercase; letter-spacing: .09em; }
.publish-panel .button { width: 100%; min-height: 57px; }
.publish-panel .button:disabled { cursor: not-allowed; opacity: .55; transform: none; }
.publish-note { display: flex; align-items: flex-start; gap: 9px; margin: 13px 0 0; color: #7b817c; font-size: 9px; line-height: 1.5; }
.publish-note::before { content: "i"; flex: none; width: 15px; height: 15px; display: grid; place-items: center; border: 1px solid #9ca09c; border-radius: 50%; font-family: var(--serif); font-style: italic; }
.form-error { display: none; margin: 0 0 13px; color: var(--terracotta); font-size: 11px; }
.form-error.is-visible { display: block; }
.upload-saving { opacity: .7; pointer-events: none; }
.custom-tag-list:empty { display: none; }
.upload-top-actions { display: flex; align-items: center; gap: 22px; }
.database-link { border: 0; border-bottom: 1px solid var(--ink); padding: 5px 0; background: none; cursor: pointer; font-size: 9px; font-weight: 850; letter-spacing: .11em; text-transform: uppercase; }

.manage-view { min-height: calc(100vh - 88px); background: var(--cream); }
.manage-shell { padding: 38px clamp(24px, 5vw, 76px) 120px; }
.manage-topbar { display: flex; justify-content: space-between; align-items: center; margin-bottom: 63px; }
.database-connection { display: inline-flex; align-items: center; gap: 8px; color: #6d756f; font-size: 10px; letter-spacing: .09em; text-transform: uppercase; }
.database-connection::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: #6fa85b; box-shadow: 0 0 0 4px rgba(111,168,91,.13); }
.manage-header { display: grid; grid-template-columns: 1fr auto; gap: 50px; align-items: end; margin-bottom: 48px; }
.manage-header h1 { margin: 0; font-family: var(--serif); font-size: clamp(58px, 6.5vw, 98px); font-weight: 500; line-height: .9; letter-spacing: -.055em; }
.manage-header-actions { display: flex; gap: 9px; padding-bottom: 5px; }
.manage-stats { display: grid; grid-template-columns: repeat(4, 1fr); border: 1px solid var(--line); margin-bottom: 28px; }
.manage-stat { min-height: 106px; padding: 18px 20px; border-right: 1px solid var(--line); background: var(--paper); }
.manage-stat:last-child { border-right: 0; }
.manage-stat span { display: block; margin-bottom: 12px; color: #777e78; font-size: 9px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.manage-stat strong { font-family: var(--serif); font-size: 33px; font-weight: 500; }
.manage-toolbar { display: grid; grid-template-columns: minmax(280px, 1fr) 180px 180px; gap: 10px; margin-bottom: 18px; }
.manage-search { height: 52px; display: flex; align-items: center; gap: 11px; padding: 0 15px; border: 1px solid var(--ink); background: var(--paper); }
.manage-search svg { width: 18px; flex: none; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; }
.manage-search input { width: 100%; border: 0; outline: 0; background: none; }
.manage-toolbar select { height: 52px; padding: 0 13px; border: 1px solid var(--line); border-radius: 0; color: var(--ink); background: var(--paper); }
.database-table { border-top: 1px solid var(--ink); }
.database-table-head, .database-row { display: grid; grid-template-columns: 82px minmax(230px, 1.25fr) .65fr .7fr .55fr 170px; gap: 18px; align-items: center; }
.database-table-head { min-height: 47px; color: #777e78; font-size: 9px; font-weight: 850; letter-spacing: .11em; text-transform: uppercase; }
.database-row { min-height: 112px; padding: 12px 0; border-top: 1px solid var(--line); }
.database-row.is-archived { opacity: .55; }
.database-thumb { width: 78px; height: 86px; overflow: hidden; background: var(--paper-deep); }
.database-thumb img { width: 100%; height: 100%; object-fit: cover; }
.database-product strong { display: block; margin-bottom: 5px; font-family: var(--serif); font-size: 21px; font-weight: 500; line-height: 1.1; }
.database-product span, .database-cell { color: #68706a; font-size: 10px; }
.database-cell b { display: none; }
.database-tags-mini { display: flex; flex-wrap: wrap; gap: 4px; margin-top: 7px; }
.database-tags-mini span { padding: 3px 6px; color: var(--ink-soft); background: var(--paper-deep); font-size: 8px; }
.status-pill { display: inline-flex; align-items: center; gap: 6px; width: max-content; padding: 6px 8px; border: 1px solid var(--line); font-size: 8px; font-weight: 850; letter-spacing: .08em; text-transform: uppercase; }
.status-pill::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: #6fa85b; }
.status-pill.archived::before { background: #9a9d99; }
.database-actions { display: flex; justify-content: flex-end; gap: 7px; }
.database-action { min-height: 35px; padding: 0 10px; border: 1px solid var(--line); background: transparent; cursor: pointer; font-size: 8px; font-weight: 850; letter-spacing: .08em; text-transform: uppercase; }
.database-action:hover { border-color: var(--ink); }
.database-action.primary { color: var(--paper); background: var(--ink); border-color: var(--ink); }
.database-empty { padding: 90px 20px; border-top: 1px solid var(--line); text-align: center; color: #777e78; }
.database-empty strong { display: block; margin-bottom: 7px; color: var(--ink); font-family: var(--serif); font-size: 30px; font-weight: 500; }
.database-footer-note { display: flex; align-items: center; justify-content: space-between; gap: 30px; padding: 18px 0; border-top: 1px solid var(--ink); color: #777e78; font-size: 9px; }

.scrim { position: fixed; inset: 0; z-index: 48; background: rgba(10,18,14,.58); backdrop-filter: blur(3px); }
.toast { position: fixed; z-index: 80; left: 50%; bottom: 22px; transform: translate(-50%, 30px); padding: 13px 18px; color: var(--paper); background: var(--ink); box-shadow: var(--shadow); opacity: 0; pointer-events: none; transition: opacity .2s, transform .2s; font-size: 12px; }
.toast.is-visible { opacity: 1; transform: translate(-50%, 0); }
.icon-button { display: grid; place-items: center; border: 0; background: none; cursor: pointer; }

@media (max-width: 1180px) {
  .site-header { grid-template-columns: 1fr auto; }
  .desktop-nav { display: none; }
  .hero { grid-template-columns: .9fr 1.1fr; }
  .hero-copy { padding-left: 40px; padding-right: 40px; }
  .hero h1 { font-size: clamp(60px, 7vw, 82px); }
  .hero-stats { gap: 24px; }
  .trade-banner { grid-template-columns: 1fr 1fr; }
  .trade-banner .button { grid-column: 2; width: max-content; }
  .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .upload-layout { grid-template-columns: minmax(320px, .8fr) minmax(430px, 1.2fr); gap: 42px; }
  .database-table-head, .database-row { grid-template-columns: 75px minmax(220px, 1fr) .55fr .6fr 150px; }
  .database-table-head > :nth-child(5), .database-row > :nth-child(5) { display: none; }
}

@media (max-width: 840px) {
  .site-header { height: 82px; padding: 0 20px; }
  .brand-logo-header { height: 64px; }
  .search-jump span, .header-cta { display: none; }
  .hero { display: flex; flex-direction: column; }
  .hero-copy { padding: 75px 24px 60px; }
  .hero h1 { font-size: clamp(56px, 14vw, 88px); }
  .hero-intro { max-width: 570px; }
  .hero-stats { margin-top: 0; padding-top: 55px; width: 100%; justify-content: space-between; }
  .hero-visual { min-height: 620px; padding: 0 20px 20px; }
  .hero-stamp { left: auto; right: 7px; bottom: 55px; width: 92px; height: 92px; }
  .hero-stamp span { width: 67px; font-size: 7px; }
  .section-heading, .collection-heading { display: block; }
  .section-heading p:last-child, .collection-heading > p { margin-top: 22px; }
  .category-cards { grid-template-columns: 1fr; }
  .category-card { height: 330px; }
  .catalog-layout { display: block; }
  .filter-toggle { display: inline-flex; }
  .filters {
    position: fixed;
    inset: 0 0 0 auto;
    z-index: 60;
    width: min(410px, 94vw);
    padding: 24px 24px 100px;
    overflow-y: auto;
    background: var(--paper);
    box-shadow: var(--shadow);
    transform: translateX(110%);
    transition: transform .3s ease;
  }
  body.filters-open .filters { transform: translateX(0); }
  .filter-mobile-head { display: flex; align-items: center; justify-content: space-between; padding-bottom: 22px; border-bottom: 1px solid var(--ink); font-family: var(--serif); font-size: 27px; }
  .filter-close { font-size: 30px; }
  .filter-head { padding-top: 22px; }
  .filter-mobile-foot { position: fixed; display: block; left: 0; right: 0; bottom: 0; padding: 14px 24px; background: var(--paper); border-top: 1px solid var(--line); }
  .filter-mobile-foot .button { width: 100%; }
  .detail-layout { grid-template-columns: 1fr; }
  .gallery-main { height: 100vw; max-height: 720px; }
  .detail-info { position: static; }
  .site-footer { grid-template-columns: auto 1fr; }
  .footer-contacts { justify-content: end; }
  .site-footer > span { grid-column: 1 / -1; }
  .contact-section { grid-template-columns: 1fr; gap: 42px; }
  .upload-shell { padding-top: 30px; }
  .upload-topbar { margin-bottom: 48px; }
  .upload-intro { grid-template-columns: 1fr; gap: 28px; }
  .upload-layout { grid-template-columns: 1fr; }
  .upload-media { position: static; }
  .upload-dropzone { min-height: 460px; }
  .manage-shell { padding-top: 30px; }
  .manage-header { grid-template-columns: 1fr; gap: 27px; }
  .manage-header-actions { padding: 0; }
  .manage-stats { grid-template-columns: 1fr 1fr; }
  .manage-stat:nth-child(2) { border-right: 0; }
  .manage-stat:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .manage-toolbar { grid-template-columns: 1fr 1fr; }
  .manage-search { grid-column: 1 / -1; }
  .database-table-head { display: none; }
  .database-row { grid-template-columns: 76px 1fr auto; gap: 13px; min-height: 120px; }
  .database-row > :nth-child(3), .database-row > :nth-child(4), .database-row > :nth-child(5) { display: none; }
  .database-actions { flex-direction: column; }
}

@media (max-width: 620px) {
  .brand-logo-header { height: 58px; }
  .brand-logo-footer { height: 118px; }
  .enquiry-list-trigger span { display: none; }
  .enquiry-list-trigger { border-bottom: 0; }
  .enquiry-drawer { padding: 22px 18px; }
  .enquiry-drawer-head h2 { font-size: 38px; }
  .enquiry-list-item { grid-template-columns: 64px 1fr; }
  .enquiry-list-thumb { width: 64px; height: 78px; }
  .enquiry-list-item-actions { grid-column: 1 / -1; flex-direction: row; }
  .hero-copy { padding-top: 60px; }
  .hero-actions { align-items: stretch; flex-direction: column; width: 100%; gap: 15px; }
  .hero-actions .button { width: 100%; }
  .hero-actions .arrow-link { width: max-content; }
  .hero-stats { gap: 12px; }
  .hero-stats strong { font-size: 22px; }
  .hero-stats span { font-size: 8px; }
  .hero-visual { min-height: 480px; }
  .category-strip, .collection { padding-top: 80px; padding-bottom: 90px; }
  .section-heading h2, .collection-heading h2, .trade-banner h2 { font-size: 47px; }
  .catalog-toolbar { grid-template-columns: 1fr auto; }
  .catalog-search { height: 53px; min-width: 0; padding: 0 13px; }
  .catalog-search kbd { display: none; }
  .filter-toggle { min-height: 53px; padding: 0 14px; }
  .filter-toggle svg { display: none; }
  .category-tab { min-width: 120px; margin-right: 16px; }
  .results-meta { flex-wrap: wrap; }
  .active-filter-list { order: 3; flex-basis: 100%; }
  .sort-control { margin-left: auto; }
  .product-grid { gap: 34px 9px; }
  .product-image-button::after { display: none; }
  .card-favourite { width: 32px; height: 32px; }
  .product-info h3 { font-size: 19px; }
  .card-tags span:nth-child(n+3) { display: none; }
  .trade-banner { grid-template-columns: 1fr; gap: 28px; padding-top: 70px; padding-bottom: 70px; }
  .trade-banner .button { grid-column: auto; width: 100%; }
  .about { padding-top: 90px; padding-bottom: 90px; }
  .about-statement { font-size: 46px; }
  .about-notes { align-items: center; flex-direction: column; gap: 14px; }
  .site-footer { grid-template-columns: 1fr; gap: 28px; padding-top: 55px; padding-bottom: 55px; }
  .footer-contacts { width: 100%; display: grid; gap: 14px; justify-content: stretch; }
  .footer-contacts a { min-width: 0; }
  .site-footer > span { grid-column: auto; }
  .detail-shell { padding-left: 18px; padding-right: 18px; }
  .gallery-thumbs { gap: 6px; }
  .gallery-thumb { height: 78px; }
  .detail-info h1 { font-size: 53px; }
  .related-grid { grid-template-columns: 1fr 1fr; }
  .related-grid .product-card:nth-child(3) { display: none; }
  .related-head h2 { font-size: 38px; }
  .header-actions { gap: 15px; }
  .upload-jump span, .manage-jump span { display: none; }
  .upload-shell { padding-left: 18px; padding-right: 18px; padding-bottom: 80px; }
  .upload-intro h1 { font-size: 58px; }
  .upload-steps { flex-direction: column; gap: 7px; }
  .upload-dropzone { min-height: 390px; }
  .field-grid { grid-template-columns: 1fr; }
  .field-wide { grid-column: auto; }
  .form-section-head { display: block; }
  .form-section-head p { margin-top: 9px; }
  .publish-panel { padding: 20px; }
  .publish-summary { align-items: flex-start; flex-direction: column; gap: 4px; }
  .manage-shell { padding-left: 18px; padding-right: 18px; padding-bottom: 80px; }
  .manage-topbar { margin-bottom: 42px; }
  .manage-header h1 { font-size: 55px; }
  .manage-header-actions { display: grid; grid-template-columns: 1fr 1fr; }
  .manage-header-actions .button { padding: 0 12px; }
  .manage-toolbar { grid-template-columns: 1fr; }
  .manage-search { grid-column: auto; }
  .manage-stats { grid-template-columns: 1fr 1fr; }
  .manage-stat { min-height: 92px; padding: 14px; }
  .database-row { grid-template-columns: 64px 1fr; }
  .database-thumb { width: 62px; height: 72px; }
  .database-actions { grid-column: 1 / -1; flex-direction: row; justify-content: stretch; }
  .database-action { flex: 1; }
  .database-footer-note { align-items: flex-start; flex-direction: column; }
  .contact-section { padding-top: 85px; padding-bottom: 95px; }
  .contact-section h2 { font-size: 52px; }
  .enquiry-form { padding: 20px; }
  .enquiry-field-grid { grid-template-columns: 1fr; }
  .enquiry-field-wide { grid-column: auto; }
  .customer-colour-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .contact-actions { flex-direction: column; }
  .whatsapp-float { right: 14px; bottom: 14px; }
  .whatsapp-float b { display: none; }
  .whatsapp-float { padding-right: 7px; }
}

/* Direct product-catalogue homepage */
.catalog-hero {
  min-height: 560px;
  grid-template-columns: minmax(390px, .78fr) minmax(620px, 1.22fr);
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}
.catalog-hero .hero-copy {
  justify-content: center;
  padding: 72px clamp(38px, 6vw, 90px) 58px clamp(24px, 5vw, 76px);
}
.catalog-hero h1 {
  max-width: 670px;
  font-size: clamp(60px, 6.1vw, 96px);
  line-height: .88;
}
.catalog-hero h1::first-line { font-style: normal; }
.catalog-hero .hero-intro { margin: 28px 0 27px; font-size: 16px; }
.catalog-points {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 9px 18px;
  margin-top: 42px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.catalog-points span { display: inline-flex; align-items: center; gap: 4px; }
.catalog-points span:not(:last-child)::after { content: "·"; margin-left: 14px; color: var(--terracotta); }
.catalog-points strong { color: var(--ink); font-size: 11px; }
.hero-catalog-access {
  min-width: 0;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  gap: 24px;
  padding: 36px 34px 34px;
  background: var(--cream);
}
.catalog-access-head { display: flex; align-items: end; justify-content: space-between; gap: 24px; }
.catalog-access-head .eyebrow { margin-bottom: 8px; }
.catalog-access-head h2 { margin: 0; font-family: var(--serif); font-size: clamp(34px, 3vw, 48px); font-weight: 500; line-height: 1; letter-spacing: -.04em; }
.catalog-access-head > a { flex: none; padding-bottom: 4px; border-bottom: 1px solid var(--ink); font-size: 9px; font-weight: 850; letter-spacing: .1em; text-transform: uppercase; }
.quick-category-grid { min-width: 0; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 9px; }
.quick-category {
  position: relative;
  min-width: 0;
  height: 100%;
  min-height: 380px;
  padding: 0;
  overflow: hidden;
  border: 0;
  color: var(--white);
  background: var(--ink);
  text-align: left;
  cursor: pointer;
}
.quick-category::after { content: ""; position: absolute; inset: 36% 0 0; background: linear-gradient(transparent, rgba(8,17,13,.9)); }
.quick-category img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; }
.quick-brocade img { object-position: 68% center; }
.quick-lace img { object-position: 62% center; }
.quick-category:hover img, .quick-category:focus-visible img { transform: scale(1.045); }
.quick-category:focus-visible { outline: 3px solid var(--acid); outline-offset: -3px; }
.quick-category-index, .quick-category-copy, .quick-category-arrow { position: absolute; z-index: 2; }
.quick-category-index { top: 16px; left: 16px; font-size: 9px; font-weight: 800; letter-spacing: .14em; }
.quick-category-copy { left: 0; right: 0; bottom: 0; display: grid; gap: 8px; min-width: 0; padding: 34px 16px 18px; background: linear-gradient(transparent, rgba(8,13,11,.92) 35%); }
.quick-category-copy strong { max-width: 100%; font-family: var(--serif); font-size: clamp(27px, 2.25vw, 38px); font-weight: 500; line-height: 1.04; letter-spacing: -.035em; overflow-wrap: anywhere; }
.quick-category-copy small { display: block; max-width: 100%; font-size: 8px; font-weight: 800; line-height: 1.35; letter-spacing: .1em; text-transform: uppercase; }
.quick-category-arrow { top: 12px; right: 12px; width: 34px; height: 34px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.7); border-radius: 50%; }
.collection { scroll-margin-top: 16px; padding-top: 82px; }

@media (max-width: 1180px) {
  .catalog-hero { grid-template-columns: minmax(360px, .8fr) minmax(520px, 1.2fr); }
  .catalog-hero .hero-copy { padding-left: 40px; padding-right: 40px; }
  .catalog-hero h1 { font-size: clamp(56px, 6.7vw, 78px); }
  .hero-catalog-access { padding-left: 24px; padding-right: 24px; }
  .quick-category-copy strong { font-size: 27px; }
}

@media (max-width: 840px) {
  .catalog-hero { min-height: auto; display: grid; grid-template-columns: 1fr; }
  .catalog-hero .hero-copy { padding: 64px 24px 50px; }
  .catalog-hero h1 { max-width: 700px; font-size: clamp(56px, 11vw, 84px); }
  .catalog-points { margin-top: 35px; }
  .hero-catalog-access { padding: 30px 24px 24px; }
  .quick-category { min-height: 330px; }
  .quick-category-copy strong { font-size: 31px; }
  .collection { padding-top: 68px; }
}

@media (max-width: 620px) {
  .catalog-hero .hero-copy { padding: 52px 18px 42px; }
  .catalog-hero h1 { font-size: clamp(50px, 14vw, 68px); }
  .catalog-hero .hero-intro { font-size: 15px; line-height: 1.6; }
  .catalog-points { display: grid; gap: 8px; }
  .catalog-points span:not(:last-child)::after { display: none; }
  .hero-catalog-access { padding: 26px 18px 18px; overflow: hidden; }
  .catalog-access-head { align-items: start; }
  .catalog-access-head h2 { font-size: 36px; }
  .catalog-access-head > a { display: none; }
  .quick-category-grid { grid-template-columns: repeat(3, minmax(160px, 1fr)); overflow-x: auto; padding-bottom: 5px; scroll-snap-type: x proximity; }
  .quick-category { min-height: 245px; scroll-snap-align: start; }
  .quick-category-copy strong { font-size: 27px; }
  .collection { padding-top: 62px; }
}

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