/* ============================================================
   NATCHATHIRAM – MAIN STYLESHEET
   Inspired by silaii.com layout | Original design
   Fonts: Cormorant Garamond + Outfit
============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Montserrat:wght@500;600;700;800&display=swap');

/* ── CSS VARIABLES ── */
:root {
  --cream:       #CFC5B8;
  --cream-dark:  #BFB3A4;
  --ink:         #171412;
  --ink-soft:    #332D28;
  --ink-muted:   #61584F;
  --copper:      #B57932;
  --copper-dark: #8E5C23;
  --copper-light:#C88E4B;
  --gold:        #C39558;
  --gold-light:  #E1C39A;
  --white:       #DED6CB;
  --border:      #A99C8D;
  --shadow:      rgba(27,23,20,0.10);
  --shadow-md:   rgba(27,23,20,0.20);
  --ink-deep:    #1B1714;
  --text-on-dark:#F3ECE4;

  --font-serif:  "Inter", "Montserrat", "Helvetica Neue", Arial, sans-serif;
  --font-sans:   "Inter", "Montserrat", "Helvetica Neue", Arial, sans-serif;
  --radius-sm:   6px;
  --radius-md:   12px;
  --radius-lg:   20px;
  --transition:  0.25s ease;
  --header-h:    140px;
  --home-hero-shell-height: 180vh;
  --home-hero-sticky-height: 100vh;
  --home-hero-shell-height-mobile: 120vh;
}

/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-sans);
  background: var(--cream);
  color: var(--ink);
  line-height: 1.65;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ── UTILITY ── */
.container { width: min(1280px, 100%); margin: 0 auto; padding: 0 24px; }
.container--showcase-wide,
.container--catalogue-wide {
  width: min(1520px, 100%);
  padding-inline: clamp(24px, 3vw, 40px);
}
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }
.flex { display: flex; }
.grid { display: grid; }
.hidden { display: none !important; }

/* ── ANNOUNCEMENT BAR ── */
.announcement-bar {
  background: var(--ink);
  color: var(--gold-light);
  font-size: 0.78rem;
  font-family: var(--font-sans);
  font-weight: 500;
  letter-spacing: 0.08em;
  padding: 9px 0;
  overflow: hidden;
  text-transform: uppercase;
}

.announcement-bar__track {
  display: flex;
  gap: 60px;
  width: max-content;
  animation: marquee 28s linear infinite;
}

.announcement-bar__track span { white-space: nowrap; }

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── HEADER ── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  height: var(--header-h);
  transition: box-shadow var(--transition);
}

.site-header.scrolled { box-shadow: 0 2px 20px var(--shadow-md); }

.header-inner {
  display: flex;
  align-items: center;
  height: var(--header-h);
  justify-content: space-between;
  gap: 18px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  text-decoration: none;
}

.logo__mark {
  width: 38px; height: 38px;
  background: linear-gradient(135deg, var(--copper), var(--gold));
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  color: white; font-weight: 700; font-size: 1.1rem;
  font-family: var(--font-serif);
}

.logo__text {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: 0.04em;
}

.logo__text span { color: var(--copper); }

/* Main Navigation */
.main-nav {
  flex: 1;
  min-width: 0;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 6px;
  justify-content: center;
  flex-wrap: nowrap;
}

.nav-item { position: relative; }

.nav-link {
  display: block;
  padding: 10px 12px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-soft);
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
  white-space: nowrap;
}

.nav-link:hover,
.nav-link.active {
  color: var(--copper);
  background: rgba(196, 122, 62, 0.08);
}

/* Mega Dropdown */
.mega-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: 0 12px 40px var(--shadow-md);
  min-width: 220px;
  padding: 12px 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s, visibility 0.2s, transform 0.2s;
  transform: translateX(-50%) translateY(-8px);
  z-index: 100;
}

.nav-item:hover .mega-menu,
.mega-menu:hover {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.mega-menu a {
  display: block;
  padding: 8px 20px;
  font-size: 0.83rem;
  color: var(--ink-soft);
  transition: background var(--transition), color var(--transition);
}

.mega-menu a:hover { background: var(--cream); color: var(--copper); }

/* Header Actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  margin-left: auto;
}

.header-btn {
  display: flex; align-items: center; justify-content: center;
  width: 42px; height: 42px;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  color: var(--ink-soft);
  transition: background var(--transition), color var(--transition), border-color var(--transition);
  position: relative;
}

.header-btn:hover {
  background: var(--cream-dark);
  color: var(--copper);
  border-color: var(--border);
}

.header-btn svg { width: 20px; height: 20px; }

.basket-count {
  position: absolute;
  top: 2px; right: 2px;
  min-width: 18px; height: 18px;
  background: var(--copper);
  color: white;
  font-size: 0.65rem;
  font-weight: 700;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  line-height: 1;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}

.hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: var(--transition);
}

/* ── SEARCH BAR ── */
.search-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15,10,4,0.6);
  z-index: 1200;
  display: flex;
  align-items: flex-start;
  padding-top: 120px;
  opacity: 0; visibility: hidden;
  transition: opacity 0.25s, visibility 0.25s;
}

.search-overlay.open { opacity: 1; visibility: visible; }

.search-box {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 20px;
  width: min(680px, 90%);
  margin: 0 auto;
  display: flex;
  gap: 12px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.search-box input {
  flex: 1;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-family: var(--font-sans);
  font-size: 1rem;
  color: var(--ink);
  background: var(--cream);
  outline: none;
}

.search-box input:focus { border-color: var(--copper); }

.btn-search-submit {
  background: var(--copper);
  color: white;
  border-radius: var(--radius-sm);
  padding: 12px 20px;
  font-weight: 600;
  transition: background var(--transition);
}

.btn-search-submit:hover { background: var(--copper-dark); }

/* ── MOBILE MENU ── */
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: min(88vw, 360px);
  height: 100vh;
  background: var(--white);
  z-index: 1100;
  transform: translateX(-100%);
  transition: transform 0.35s cubic-bezier(0.25,0.8,0.25,1);
  overflow-y: auto;
  box-shadow: 4px 0 30px var(--shadow-md);
}

.mobile-menu.open { transform: translateX(0); }

.mobile-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 1099;
  display: none;
}

.mobile-overlay.open { display: block; }

.mobile-menu__header {
  display: flex; align-items: center; justify-content: space-between;
  position: sticky;
  top: 0;
  background: var(--white);
  z-index: 1;
  padding: 18px 20px;
  border-bottom: 1px solid var(--border);
}

.mobile-nav-list { padding: 12px 0; }

.mobile-nav-item { border-bottom: 1px solid var(--cream-dark); }

.mobile-nav-link {
  display: flex; align-items: center; justify-content: space-between;
  min-height: 52px;
  width: 100%;
  border: 0;
  background: none;
  padding: 14px 20px;
  font-size: 0.88rem;
  font-weight: 600;
  font-family: inherit;
  text-align: left;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ink-soft);
  cursor: pointer;
  transition: background var(--transition), color var(--transition);
}

.mobile-nav-link:hover,
.mobile-nav-link.nav-link--active {
  color: var(--copper);
  background: rgba(196, 122, 62, 0.06);
}

.mobile-sub {
  padding: 6px 0 14px 34px;
  background: linear-gradient(180deg, rgba(250,246,240,0.7), rgba(250,246,240,0));
  display: none;
}

.mobile-sub.open { display: block; }

.mobile-sub a {
  display: flex;
  align-items: center;
  min-height: 42px;
  padding: 7px 0;
  font-size: 0.85rem;
  color: var(--ink-muted);
}

.mobile-arrow { transition: transform var(--transition); }
.mobile-nav-link[aria-expanded="true"] .mobile-arrow { transform: rotate(180deg); }

/* ── HERO SLIDER ── */
.hero-pin {
  position: relative;
  height: var(--home-hero-shell-height);
  background: #282828;
}

.hero-pin__sticky {
  position: sticky;
  top: 0;
  height: var(--home-hero-sticky-height);
  width: 100%;
  overflow: hidden;
}

.hero-pin__media,
.home-promo-banner__media {
  position: absolute;
  inset: 0;
}

.hero-banner__slide {
  opacity: 0;
  transition: opacity 900ms ease;
}

.hero-banner__slide.is-active {
  opacity: 1;
}

.hero-pin__media.is-static .hero-banner__slide,
.home-promo-banner__media.is-static .hero-banner__slide {
  opacity: 1;
  transition: none;
}

.hero-pin__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 40% top;
  display: block;
}

.hero-pin__sticky::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.08);
  pointer-events: none;
  z-index: 1;
}

.hero-pin__cta {
  position: absolute;
  left: 50%;
  bottom: 8vh;
  transform: translateX(-50%);
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 14px 28px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: var(--color-accent);
  color: var(--color-header-text);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-decoration: none;
  text-transform: uppercase;
  box-shadow: 0 10px 24px rgba(203, 160, 80, 0.22);
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}

.hero-pin__cta:hover {
  background: var(--copper-dark);
  transform: translateX(-50%) translateY(-2px);
  box-shadow: 0 14px 28px rgba(157, 94, 38, 0.35);
}

@media (max-width: 768px) {
  .hero-pin {
    height: var(--home-hero-shell-height-mobile);
  }

  .hero-pin__image {
    object-position: 38% top;
  }
}

/* ── TRUST BADGES ── */
.trust-strip {
  background: var(--ink);
  padding: 18px 0;
}

.trust-strip__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  divide-color: rgba(255,255,255,0.1);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 24px;
  border-right: 1px solid rgba(255,255,255,0.12);
}

.trust-item:last-child { border-right: none; }

.trust-item__icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(203, 160, 80, 0.14);
  border: 1px solid rgba(203, 160, 80, 0.3);
  color: var(--gold-light);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  padding-left: 0.14em;
  text-transform: uppercase;
  flex-shrink: 0;
}

.trust-item__label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold-light);
}

.trust-item__sub {
  font-size: 0.68rem;
  color: rgba(255,255,255,0.5);
  margin-top: 2px;
}

/* ── HOME PROMO BANNER ── */
.home-promo-banner {
  position: relative;
  height: var(--home-hero-shell-height);
  background: #282828;
}

.home-promo-banner__sticky {
  position: sticky;
  top: 0;
  width: 100%;
  height: var(--home-hero-sticky-height);
  overflow: hidden;
}

.home-promo-banner__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 28%;
  display: block;
}

.home-promo-banner__veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.16) 0%, rgba(0, 0, 0, 0.42) 100%),
    radial-gradient(circle at 20% 18%, rgba(203, 160, 80, 0.18), transparent 24rem),
    radial-gradient(circle at 82% 82%, rgba(203, 160, 80, 0.12), transparent 20rem);
  opacity: 1;
  pointer-events: none;
}

/* ── SECTION HEADERS ── */
.section-header {
  text-align: center;
  margin-bottom: 40px;
}

.section-eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 10px;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 700;
  color: var(--ink);
  line-height: 1.2;
}

.section-title--light { color: white; }

.section-line {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 32px;
}

.view-all-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--copper);
  letter-spacing: 0.04em;
  border-bottom: 1px solid transparent;
  transition: border-color var(--transition);
}

.view-all-link:hover { border-color: var(--copper); }

/* ── PRODUCT CARD ── */
.product-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 14px 30px rgba(15,10,4,0.06);
  transition: box-shadow var(--transition), transform var(--transition);
  display: flex; flex-direction: column;
  height: 100%;
}

.product-card:hover {
  box-shadow: 0 8px 32px var(--shadow-md);
  transform: translateY(-4px);
}

.product-card__image-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 0.92;
  background: var(--cream-dark);
  cursor: pointer;
}

.product-card__badge {
  position: absolute;
  top: 12px; left: 12px;
  background: var(--copper);
  color: white;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 9px;
  border-radius: 3px;
  z-index: 2;
}

.product-card__placeholder {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 28% 18%, rgba(255,255,255,0.34), transparent 34%),
    linear-gradient(150deg, var(--placeholder-top, #d7cdc0) 0%, var(--placeholder-bottom, #b8ab9d) 100%);
  color: rgba(23, 20, 18, 0.92);
  transition: transform 0.45s ease, filter 0.3s ease;
}

.product-card__placeholder::after {
  content: '';
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(243, 236, 228, 0.44);
  border-radius: 20px;
  pointer-events: none;
}

.product-card__placeholder-halo {
  position: absolute;
  left: 50%;
  top: 17%;
  width: 62%;
  height: 62%;
  transform: translateX(-50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(243, 236, 228, 0.52) 0%, rgba(243, 236, 228, 0.08) 56%, transparent 72%);
}

.product-card__placeholder-arch {
  position: absolute;
  left: 50%;
  top: 16%;
  width: 54%;
  height: 56%;
  transform: translateX(-50%);
  border: 1px solid rgba(23, 20, 18, 0.12);
  border-bottom: none;
  border-radius: 180px 180px 0 0;
  opacity: 0.58;
}

.product-card__placeholder-plinth {
  position: absolute;
  left: 21%;
  right: 21%;
  bottom: 24%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(23, 20, 18, 0.3), transparent);
}

.product-card__placeholder-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 24px 18px;
  text-align: center;
  z-index: 1;
}

.product-card__placeholder-series {
  font-size: 0.64rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(23, 20, 18, 0.58);
}

.product-card__placeholder-code {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 6vw, 3.6rem);
  font-weight: 600;
  letter-spacing: 0.18em;
  line-height: 0.95;
  color: rgba(23, 20, 18, 0.82);
  text-shadow: 0 10px 18px rgba(243, 236, 228, 0.25);
}

.product-card__placeholder-sku {
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(23, 20, 18, 0.52);
}

.product-card:hover .product-card__placeholder {
  transform: scale(1.03);
  filter: saturate(1.05) brightness(1.02);
}

.product-card__image {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  background: var(--cream-dark);
  transition: transform 0.5s ease, filter 0.35s ease;
  z-index: 1;
}

.product-card:hover .product-card__image {
  transform: scale(1.06);
  filter: brightness(1.04);
}

.product-card__placeholder--all {
  --placeholder-top: #d9d0c5;
  --placeholder-bottom: #bcae9f;
}

.product-card__placeholder--divine {
  --placeholder-top: #dfd0bd;
  --placeholder-bottom: #ba9766;
}

.product-card__placeholder--monuments {
  --placeholder-top: #d7cfc5;
  --placeholder-bottom: #b09d8b;
}

.product-card__placeholder--leaders {
  --placeholder-top: #d3c7bb;
  --placeholder-bottom: #978678;
}

.product-card__placeholder--float {
  --placeholder-top: #d8d2cb;
  --placeholder-bottom: #a9a097;
}

.product-card__placeholder--car-dash {
  --placeholder-top: #d3cbc0;
  --placeholder-bottom: #80756c;
}

.product-card__placeholder--pride {
  --placeholder-top: #dfd0bc;
  --placeholder-bottom: #b88748;
}

.product-card__placeholder--movie {
  --placeholder-top: #d0c6bc;
  --placeholder-bottom: #756a61;
}

.product-card__placeholder--life-size {
  --placeholder-top: #dcd2c7;
  --placeholder-bottom: #9f8e80;
}

.product-card__body {
  padding: 20px 20px 22px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.product-card__category {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 6px;
}

.product-card__name {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.3;
  min-height: 2.7em;
  flex: 1;
}

.product-card__desc {
  font-size: 0.78rem;
  color: var(--ink-muted);
  line-height: 1.5;
}

.product-card__price {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--copper);
  letter-spacing: 0.04em;
}

.product-card__footer {
  display: flex;
  gap: 10px;
  align-items: stretch;
  margin-top: auto;
}

.btn-card-view {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 10px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--ink-soft);
  text-align: center;
  transition: border-color var(--transition), color var(--transition);
}

.btn-card-view:hover { border-color: var(--copper); color: var(--copper); }

.btn-card-enquiry {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 10px;
  background: var(--copper);
  border-radius: var(--radius-sm);
  font-size: 0.78rem;
  font-weight: 600;
  color: white;
  text-align: center;
  transition: background var(--transition);
}

.btn-card-enquiry:hover { background: var(--copper-dark); }

.btn-card-enquiry.added {
  background: #2e7d32;
}

/* ── HORIZONTAL SCROLL SECTION ── */
.scroll-section { padding: 60px 0; }

.scroll-section .container { position: relative; }

.scroll-track-wrap {
  overflow: hidden;
  margin: 0 -24px;
  padding: 0 24px;
}

.scroll-track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding-bottom: 8px;
}

.scroll-track::-webkit-scrollbar { display: none; }

.scroll-track .product-card {
  flex: 0 0 calc(25% - 15px);
  min-width: 220px;
  scroll-snap-align: start;
}

.scroll-section--showcase {
  padding: 76px 0 82px;
}

.scroll-section--showcase .section-line {
  align-items: flex-end;
  gap: 24px;
  margin-bottom: 38px;
}

.scroll-section--showcase .scroll-track-wrap--showcase {
  overflow: visible;
  margin: 0;
  padding: 28px clamp(22px, 3vw, 38px) 34px;
  border: 1px solid rgba(169, 156, 141, 0.48);
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(243, 236, 228, 0.72) 0%, rgba(222, 214, 203, 0.94) 100%);
  box-shadow: 0 18px 40px rgba(27, 23, 20, 0.08);
}

.scroll-section--showcase .scroll-track--showcase {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(24px, 2vw, 34px);
  overflow: visible;
  padding: 0;
  scroll-snap-type: none;
  scroll-padding-inline: 0;
  align-items: stretch;
}

.scroll-section--showcase .scroll-track--showcase .product-card--showcase {
  min-width: 0;
  flex-basis: auto;
  border-radius: 24px;
  border-color: rgba(169, 156, 141, 0.72);
  box-shadow: 0 20px 40px rgba(27, 23, 20, 0.11);
}

.scroll-section--showcase .scroll-track--showcase .product-card--showcase:hover {
  transform: translateY(-6px);
}

.scroll-section--showcase .scroll-track--showcase .product-card--showcase .product-card__image-wrap {
  aspect-ratio: 0.76;
  background: linear-gradient(180deg, rgba(243, 236, 228, 0.92) 0%, rgba(191, 179, 164, 0.9) 100%);
}

.scroll-section--showcase .scroll-track--showcase .product-card--showcase .product-card__badge {
  top: 18px;
  left: 18px;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.62rem;
  letter-spacing: 0.1em;
}

.scroll-section--showcase .scroll-track--showcase .product-card--showcase .product-card__placeholder,
.scroll-section--showcase .scroll-track--showcase .product-card--showcase .product-card__image {
  inset: 18px 18px 0;
  border-radius: 22px 22px 0 0;
}

.scroll-section--showcase .scroll-track--showcase .product-card--showcase .product-card__placeholder::after {
  inset: 18px;
  border-radius: 18px 18px 12px 12px;
}

.scroll-section--showcase .scroll-track--showcase .product-card--showcase .product-card__placeholder-halo {
  top: 15%;
  width: 66%;
  height: 66%;
}

.scroll-section--showcase .scroll-track--showcase .product-card--showcase .product-card__placeholder-arch {
  top: 14%;
  width: 56%;
  height: 58%;
}

.scroll-section--showcase .scroll-track--showcase .product-card--showcase .product-card__placeholder-plinth {
  left: 18%;
  right: 18%;
  bottom: 22%;
}

.scroll-section--showcase .scroll-track--showcase .product-card--showcase .product-card__placeholder-content {
  gap: 10px;
  padding: 32px 24px;
}

.scroll-section--showcase .scroll-track--showcase .product-card--showcase .product-card__placeholder-series {
  font-size: 0.68rem;
  letter-spacing: 0.22em;
}

.scroll-section--showcase .scroll-track--showcase .product-card--showcase .product-card__placeholder-code {
  font-size: clamp(3rem, 5vw, 4.35rem);
  letter-spacing: 0.2em;
}

.scroll-section--showcase .scroll-track--showcase .product-card--showcase .product-card__placeholder-sku {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
}

.scroll-section--showcase .scroll-track--showcase .product-card--showcase .product-card__body {
  padding: 26px 26px 28px;
  gap: 12px;
}

.scroll-section--showcase .scroll-track--showcase .product-card--showcase .product-card__category {
  font-size: 0.71rem;
  letter-spacing: 0.16em;
  margin-bottom: 2px;
}

.scroll-section--showcase .scroll-track--showcase .product-card--showcase .product-card__name {
  font-size: clamp(1.16rem, 1.45vw, 1.42rem);
  line-height: 1.24;
  min-height: 2.5em;
}

.scroll-section--showcase .scroll-track--showcase .product-card--showcase .product-card__desc {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  min-height: 4.8em;
  font-size: 0.83rem;
  line-height: 1.62;
  color: var(--ink-muted);
}

.scroll-section--showcase .scroll-track--showcase .product-card--showcase .product-card__price {
  margin-top: 2px;
  font-size: 0.84rem;
  letter-spacing: 0.05em;
}

.scroll-section--showcase .scroll-track--showcase .product-card--showcase .product-card__footer {
  gap: 12px;
  margin-top: 6px;
}

.scroll-section--showcase .scroll-track--showcase .product-card--showcase .btn-card-view,
.scroll-section--showcase .scroll-track--showcase .product-card--showcase .btn-card-enquiry {
  min-height: 52px;
  padding: 0 18px;
  border-radius: 999px;
  font-size: 0.76rem;
  letter-spacing: 0.06em;
}

/* ── CATEGORY SECTION ── */
.home-gallery-strip {
  position: relative;
  width: 100vw;
  max-width: none;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  overflow: hidden;
  background:
    radial-gradient(circle at 10% 0%, rgba(255, 255, 255, 0.08), transparent 28rem),
    radial-gradient(circle at 100% 100%, rgba(255, 255, 255, 0.05), transparent 26rem),
    linear-gradient(180deg, #181818 0%, #0f0f0f 100%);
  color: #ffffff;
  padding: 6px 0 8px;
}

.home-gallery-strip__bar,
.home-gallery-strip__stage {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
}

.home-gallery-strip__bar {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 18px;
}

.home-gallery-strip__bar-copy {
  display: grid;
  gap: 6px;
}

.home-gallery-strip__brand,
.home-gallery-strip__eyebrow {
  display: block;
  text-transform: uppercase;
}

.home-gallery-strip__brand {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  color: rgba(255, 255, 255, 0.64);
}

.home-gallery-strip__eyebrow {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: rgba(255, 255, 255, 0.52);
}

.home-gallery-strip__title {
  font-family: var(--font-sans);
  font-size: clamp(1.12rem, 1.6vw, 1.38rem);
  font-weight: 700;
  letter-spacing: 0.18em;
  line-height: 1.2;
  text-transform: uppercase;
  color: #ffffff;
}

.home-gallery-strip__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #ffffff;
  transition: border-color var(--transition), background var(--transition), transform var(--transition);
}

.home-gallery-strip__link:hover {
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-1px);
}

.home-gallery-strip__stage {
  position: relative;
}

.home-gallery-strip__viewport {
  position: relative;
  width: 100%;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  touch-action: pan-x pinch-zoom;
  cursor: grab;
  user-select: none;
  padding: 0;
  border-block: 1px solid rgba(255, 255, 255, 0.08);
  background: #0b0b0b;
  box-shadow: none;
}

.home-gallery-strip__viewport::-webkit-scrollbar {
  display: none;
}

.home-gallery-strip__viewport.is-dragging {
  cursor: grabbing;
  scroll-behavior: auto;
}

.home-gallery-strip__track {
  display: flex;
  gap: 2px;
  align-items: stretch;
  width: max-content;
}

.home-gallery-strip__item {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 clamp(120px, 11vw, 180px);
  height: clamp(110px, 10vw, 160px);
  overflow: hidden;
  border: none;
  border-radius: 0;
  padding: 0;
  background: transparent;
  box-shadow: none;
  isolation: isolate;
  transition: transform 0.35s ease;
}

.home-gallery-strip__item::after {
  content: none;
}

.home-gallery-strip__image {
  width: 100%;
  height: 100%;
  display: block;
  max-width: none;
  max-height: none;
  padding: 0;
  box-sizing: border-box;
  object-fit: cover;
  object-position: center top;
  filter: brightness(0.9) contrast(1.02) saturate(0.96);
  transform: scale(1);
  transition: transform 0.45s ease, filter 0.45s ease;
}

.home-gallery-strip__item:hover,
.home-gallery-strip__item:focus-visible,
.home-gallery-strip__item.is-pressed {
  transform: none;
}

.home-gallery-strip__item:hover .home-gallery-strip__image,
.home-gallery-strip__item:focus-visible .home-gallery-strip__image,
.home-gallery-strip__item.is-pressed .home-gallery-strip__image {
  transform: scale(1.05);
  filter: brightness(1) contrast(1.06) saturate(1);
}

.home-gallery-strip__item:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.5);
  outline-offset: 2px;
}

.home-gallery-strip__arrow {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(12, 12, 12, 0.7);
  color: #ffffff;
  transform: translateY(-50%);
  transition: border-color var(--transition), background var(--transition), opacity var(--transition);
  backdrop-filter: blur(10px);
}

.home-gallery-strip__arrow span {
  font-size: 1.6rem;
  line-height: 1;
}

.home-gallery-strip__arrow:hover:not(:disabled) {
  border-color: rgba(255, 255, 255, 0.32);
  background: rgba(24, 24, 24, 0.92);
}

.home-gallery-strip__arrow:disabled {
  opacity: 0.35;
  cursor: default;
}

.home-gallery-strip__arrow--prev {
  left: 12px;
}

.home-gallery-strip__arrow--next {
  right: 12px;
}

.home-gallery-strip__side-label {
  position: absolute;
  top: 14px;
  right: 10px;
  z-index: 1;
  transform: none;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.42);
  writing-mode: vertical-rl;
  text-orientation: mixed;
  pointer-events: none;
}

/* Category section */
.category-section { padding: 60px 0; background: var(--white); }

.category-tabs {
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
  margin-bottom: 36px;
  border-bottom: 2px solid var(--border);
  padding-bottom: 0;
}

.category-tab {
  padding: 10px 20px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--ink-muted);
  border-bottom: 3px solid transparent;
  transition: color var(--transition), border-color var(--transition);
  margin-bottom: -2px;
}

.category-tab.active, .category-tab:hover { color: var(--copper); border-bottom-color: var(--copper); }

.category-panel { display: none; }
.category-panel.active { display: block; }

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 2vw, 28px);
  align-items: stretch;
  max-width: 1140px;
}

.product-card--catalogue {
  border-radius: 24px;
  box-shadow: 0 18px 36px rgba(15,10,4,0.07);
}

.product-card--catalogue .product-card__image-wrap {
  aspect-ratio: 0.86;
  background: linear-gradient(180deg, rgba(243, 236, 228, 0.94) 0%, rgba(204, 191, 176, 0.98) 100%);
}

.product-card--catalogue .product-card__placeholder,
.product-card--catalogue .product-card__image {
  inset: 14px 14px 0;
  border-radius: 18px 18px 0 0;
}

.product-card--catalogue .product-card__placeholder::after {
  inset: 16px;
  border-radius: 14px 14px 10px 10px;
}

.product-card--catalogue .product-card__body {
  padding: 22px 22px 24px;
  gap: 12px;
}

.product-card--catalogue .product-card__name {
  font-size: 1.12rem;
  min-height: 0;
}

.product-card--catalogue .product-card__desc {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  min-height: 4.8em;
}

.product-card--catalogue .product-card__footer {
  gap: 12px;
}

.product-card--catalogue .btn-card-view,
.product-card--catalogue .btn-card-enquiry {
  min-height: 48px;
}

/* ── STATS SECTION ── */
.stats-section {
  background: var(--cream-dark);
  padding: 60px 0;
  text-align: center;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 28px;
  max-width: 960px;
  margin: 0 auto;
}

.stat-item__number,
.stat-number,
.stat-num {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--copper);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-item__label,
.stat-label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ink-soft);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ── TESTIMONIALS ── */
.testimonials-section {
  padding: 76px 0;
  background: linear-gradient(180deg, #ffffff 0%, #f8f5ef 100%);
  border-top: 1px solid #e3d8c8;
}

.testimonials-shell {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid #e3d8c8;
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: 0 28px 56px rgba(31, 31, 31, 0.08);
}

.testimonials-trust__header {
  max-width: 760px;
  margin: 0 auto 28px;
}

.testimonials-trust__header .section-subtitle {
  max-width: 700px;
  margin: 12px auto 0;
  color: #555555;
}

.testimonials-trust {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 30px;
}

.testimonials-trust__item {
  background: #ffffff;
  border: 1px solid #e3d8c8;
  border-radius: var(--radius-md);
  padding: 18px 16px;
  text-align: center;
  box-shadow: 0 14px 30px rgba(31, 31, 31, 0.05);
}

.testimonials-trust .stat-number {
  display: inline-block;
  margin-bottom: 6px;
  font-size: clamp(1.9rem, 4vw, 2.8rem);
}

.trust-point {
  max-width: 14ch;
  margin: 0 auto;
  font-family: var(--font-serif);
  font-size: clamp(1.1rem, 2.2vw, 1.45rem);
  font-weight: 700;
  color: #282828;
  line-height: 1.2;
  text-align: center;
  text-wrap: balance;
}

.trust-point--compact {
  max-width: 12ch;
  font-size: clamp(1rem, 1.5vw, 1.2rem);
}

.testimonials-trust__label {
  font-size: 0.75rem;
  font-weight: 700;
  color: #555555;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.testimonials-section__header {
  margin-bottom: 28px;
}

.testimonials-section__header .section-subtitle {
  color: #555555;
}

.testimonials-track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scrollbar-width: none;
  padding: 4px 2px;
}

.testimonials-track::-webkit-scrollbar { display: none; }

.testimonial-card {
  flex: 0 0 340px;
  background: #ffffff;
  border: 1px solid #e3d8c8;
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: 0 18px 36px rgba(31, 31, 31, 0.06);
}

.testimonial-card__stars {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(203, 160, 80, 0.22);
  background: rgba(203, 160, 80, 0.12);
  color: var(--copper);
  font-size: 0.68rem;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.testimonial-card__text {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-style: italic;
  color: #282828;
  line-height: 1.6;
  margin-bottom: 16px;
}

.testimonial-card__product {
  font-size: 0.72rem;
  color: var(--copper);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 12px;
}

.testimonial-card__author {
  display: flex; align-items: center; gap: 10px;
}

.testimonial-card__avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--copper), var(--gold));
  display: flex; align-items: center; justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 0.85rem;
  flex-shrink: 0;
}

.testimonial-card__name {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink);
}

.testimonial-card__city {
  font-size: 0.72rem;
  color: #555555;
}

@media (min-width: 1100px) {
  .testimonials-track {
    flex-wrap: wrap;
    overflow: visible;
  }

  .testimonial-card {
    flex: 1 1 calc(33.333% - 14px);
    min-width: 300px;
  }
}

/* ── CTA SECTION ── */
.cta-section {
  padding: 70px 0;
  background: linear-gradient(180deg, #f8f5ef 0%, #ffffff 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
  border-top: 1px solid #e3d8c8;
}

.cta-section::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle at 20% 28%, rgba(203, 160, 80, 0.12) 0%, transparent 42%),
                    radial-gradient(circle at 78% 68%, rgba(203, 160, 80, 0.08) 0%, transparent 38%);
}

.cta-section .container { position: relative; z-index: 1; }

.cta-section .section-title {
  color: #282828;
  margin-bottom: 12px;
}

.cta-section p {
  color: #555555;
  max-width: 480px;
  margin: 0 auto 32px;
}

.btn-cta {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--copper);
  color: white;
  padding: 14px 36px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 4px 20px rgba(157,94,38,0.4);
}

.btn-cta:hover {
  background: var(--copper-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(157,94,38,0.5);
}

/* ── FOOTER ── */
.site-footer {
  background: var(--ink);
  color: rgba(255,255,255,0.7);
  padding: 60px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand p {
  font-size: 0.85rem;
  line-height: 1.7;
  margin: 16px 0 20px;
  max-width: 280px;
}

.footer-socials {
  display: flex; gap: 10px;
}

.footer-social-link {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.6);
  font-size: 0.8rem;
  transition: background var(--transition), color var(--transition);
}

.footer-social-link:hover { background: var(--copper); color: white; border-color: var(--copper); }

.footer-social-link--disabled {
  pointer-events: none;
  cursor: default;
}

@media (max-width: 768px) {
  .home-promo-banner {
    height: var(--home-hero-shell-height-mobile);
  }
}

@media (max-width: 640px) {
  .home-promo-banner__image {
    object-position: center 24%;
  }
}

.footer-col__heading {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 16px;
}

.footer-col ul { display: flex; flex-direction: column; gap: 8px; }

.footer-col ul a {
  font-size: 0.83rem;
  color: rgba(255,255,255,0.55);
  transition: color var(--transition);
}

.footer-col ul a:hover { color: var(--copper-light); }

.footer-link--disabled {
  display: inline-block;
  cursor: default;
}

.footer-contact { display: flex; flex-direction: column; gap: 10px; }

.footer-contact-item {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 0.82rem;
}

.footer-contact-item svg { width: 16px; height: 16px; color: var(--copper-light); flex-shrink: 0; margin-top: 2px; }

.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 0;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.35);
  flex-wrap: wrap;
  gap: 12px;
}

.footer-newsletter { margin-top: 20px; }

.newsletter-form {
  display: flex; gap: 8px;
}

.newsletter-form input {
  flex: 1;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  color: white;
  font-family: var(--font-sans);
  font-size: 0.82rem;
  outline: none;
}

.newsletter-form input::placeholder { color: rgba(255,255,255,0.35); }
.newsletter-form input:focus { border-color: var(--copper); }

.newsletter-form button {
  background: var(--copper);
  color: white;
  border-radius: var(--radius-sm);
  padding: 10px 16px;
  font-weight: 600;
  font-size: 0.78rem;
  transition: background var(--transition);
}

.newsletter-form button:hover { background: var(--copper-dark); }

/* ── TOAST NOTIFICATION ── */
.toast {
  position: fixed;
  bottom: 28px; left: 50%;
  transform: translateX(-50%) translateY(80px);
  background: var(--ink);
  color: white;
  padding: 14px 24px;
  border-radius: var(--radius-md);
  font-size: 0.88rem;
  font-weight: 500;
  box-shadow: 0 8px 30px rgba(0,0,0,0.3);
  z-index: 9999;
  border-left: 4px solid var(--copper);
  transition: transform 0.35s cubic-bezier(0.25,0.8,0.25,1), opacity 0.3s;
  opacity: 0;
  white-space: nowrap;
}

.toast.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

/* ── PAGE HEADER (inner pages) ── */
.page-hero {
  background: linear-gradient(135deg, var(--ink) 0%, #2d1810 100%);
  padding: 50px 0;
  text-align: center;
}

.page-hero--catalogue .page-hero__content {
  max-width: 760px;
  margin: 0 auto;
  display: grid;
  justify-items: center;
}

.page-hero__breadcrumb {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 12px;
}

.page-hero--catalogue .page-hero__breadcrumb {
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.page-hero__breadcrumb a { color: var(--copper-light); }
.page-hero__breadcrumb span { color: rgba(255,255,255,0.3); }

.page-hero__title {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 4vw, 2.8rem);
  font-weight: 700;
  color: white;
  line-height: 1.2;
}

.page-hero__sub {
  color: rgba(255,255,255,0.65);
  margin-top: 10px;
  font-size: 0.9rem;
}

.page-hero--catalogue .page-hero__title {
  max-width: 18ch;
  margin: 0 auto;
}

.page-hero--catalogue .page-hero__sub {
  max-width: 680px;
  margin: 14px auto 0;
  line-height: 1.75;
}

/* ── PRODUCTS LISTING PAGE ── */
.products-page { padding: 40px 0 80px; }

.products-layout {
  display: grid;
  grid-template-columns: minmax(220px, 242px) minmax(0, 1fr);
  gap: clamp(28px, 2.8vw, 40px);
  align-items: start;
}

.products-main {
  min-width: 0;
}

/* Sidebar */
.sidebar { position: sticky; top: calc(var(--header-h) + 20px); }

.sidebar__section {
  margin-bottom: 20px;
  padding: 18px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: 0 10px 24px rgba(15,10,4,0.04);
}

.sidebar__heading {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border);
}

.sidebar__item {
  display: flex; align-items: center; justify-content: space-between;
  padding: 8px 0;
  font-size: 0.84rem;
  color: var(--ink-muted);
  cursor: pointer;
  transition: color var(--transition);
}

.sidebar__item:hover, .sidebar__item.active { color: var(--copper); }

.sidebar__item.active { font-weight: 600; }

.sidebar__count {
  font-size: 0.72rem;
  background: var(--cream-dark);
  border-radius: 20px;
  padding: 2px 8px;
}

/* Products toolbar */
.products-toolbar {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 24px;
  flex-wrap: wrap; gap: 12px;
}

.products-count {
  font-size: 0.85rem;
  color: var(--ink-muted);
}

.products-count strong { color: var(--ink); }

.sort-select {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 8px 14px;
  font-family: var(--font-sans);
  font-size: 0.83rem;
  color: var(--ink);
  background: var(--white);
  outline: none;
  cursor: pointer;
}

.sort-select:focus { border-color: var(--copper); }

/* ── PRODUCT DETAIL PAGE ── */
.detail-section { padding: 50px 0 80px; }

.detail-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.detail-gallery { position: sticky; top: calc(var(--header-h) + 20px); }

.detail-main-image {
  aspect-ratio: 1;
  background: var(--cream-dark);
  border-radius: var(--radius-lg);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
}

.detail-main-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.detail-thumbs {
  display: flex; gap: 10px;
}

.detail-thumb {
  width: 72px; height: 72px;
  border-radius: var(--radius-sm);
  background: var(--cream-dark);
  border: 2px solid transparent;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem;
  color: var(--copper-light);
  opacity: 0.5;
  transition: border-color var(--transition), opacity var(--transition);
  overflow: hidden;
}

.detail-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.detail-thumb.active { border-color: var(--copper); opacity: 1; }

.detail-info__category {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 10px;
}

.detail-info__title {
  font-family: var(--font-serif);
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--ink);
  line-height: 1.2;
  margin-bottom: 16px;
}

.detail-info__sku {
  font-size: 0.75rem;
  color: var(--ink-muted);
  margin-bottom: 20px;
}

.detail-info__desc {
  font-size: 0.92rem;
  color: var(--ink-soft);
  line-height: 1.75;
  margin-bottom: 28px;
}

.detail-info__price {
  display: inline-block;
  background: var(--cream-dark);
  border: 1px dashed var(--copper);
  border-radius: var(--radius-sm);
  padding: 10px 18px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--copper);
  margin-bottom: 24px;
}

.detail-features { margin-bottom: 28px; }

.detail-features__title {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 12px;
}

.detail-features ul { display: flex; flex-direction: column; gap: 8px; }

.detail-features li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 0.88rem;
  color: var(--ink-soft);
}

.detail-features li::before {
  content: '✦';
  color: var(--copper);
  flex-shrink: 0;
  font-size: 0.65rem;
  margin-top: 4px;
}

.btn-add-enquiry {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  width: 100%;
  min-height: 48px;
  background: var(--copper);
  color: white;
  padding: 16px 32px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  transition: background var(--transition), transform var(--transition);
  box-shadow: 0 4px 16px rgba(157,94,38,0.3);
  margin-bottom: 12px;
}

.btn-add-enquiry:hover { background: var(--copper-dark); transform: translateY(-2px); }

.btn-add-enquiry.added { background: #2e7d32; }

.btn-view-basket {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  width: 100%;
  min-height: 46px;
  background: transparent;
  border: 2px solid var(--border);
  color: var(--ink-soft);
  padding: 14px 32px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.88rem;
  transition: border-color var(--transition), color var(--transition);
}

.btn-view-basket:hover { border-color: var(--copper); color: var(--copper); }

.detail-specs {
  margin: 0 0 24px;
  border: 1px solid var(--color-border-dark, #444444);
  border-top: 2px solid var(--color-accent, #CBA050);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--color-surface, #303030);
}

.detail-specs__title {
  padding: 14px 16px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-accent, #CBA050);
  background: transparent;
  border-bottom: 1px solid var(--color-border-dark, #444444);
}

.detail-specs__row {
  display: grid;
  grid-template-columns: 150px 1fr;
  border-bottom: 1px solid var(--color-border-dark, #444444);
}

.detail-specs__row:last-child { border-bottom: none; }

.detail-specs__key {
  padding: 12px 16px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-accent, #CBA050);
  background: rgba(203, 160, 80, 0.06);
}

.detail-specs__val {
  padding: 12px 16px;
  font-size: 0.82rem;
  color: var(--color-text-main, #F5F2EA);
  border-left: 1px solid var(--color-border-dark, #444444);
  background: transparent;
}

/* ── ENQUIRY BASKET PAGE ── */
.basket-page { padding: 40px 0 80px; }

.basket-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 28px;
  align-items: start;
}

.basket-items { display: flex; flex-direction: column; gap: 16px; }

.basket-empty {
  text-align: center;
  padding: 80px 40px;
  background: var(--white);
  border: 2px dashed var(--border);
  border-radius: var(--radius-lg);
}

.basket-empty__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  margin: 0 auto 20px;
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-muted);
}
.basket-empty__title { font-family: var(--font-serif); font-size: 1.6rem; margin-bottom: 8px; }
.basket-empty__sub { color: var(--ink-muted); margin-bottom: 24px; }

.basket-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 22px;
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr) auto;
  gap: 16px;
  align-items: start;
  box-shadow: 0 10px 24px rgba(15,10,4,0.04);
}

.basket-item__body { min-width: 0; }

.basket-item__image {
  width: 80px; height: 80px;
  border-radius: var(--radius-sm);
  background: var(--cream-dark);
  display: flex; align-items: center; justify-content: center;
  font-size: 2.5rem;
  color: var(--copper-light);
  opacity: 0.6;
  flex-shrink: 0;
}

.basket-item__category {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 4px;
}

.basket-item__name {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 4px;
  line-height: 1.35;
}

.basket-item__sku {
  font-size: 0.72rem;
  color: var(--ink-muted);
  margin-bottom: 10px;
}

.basket-item__qty {
  display: flex; align-items: center; gap: 10px;
}

.basket-item__qty label { font-size: 0.78rem; color: var(--ink-muted); }

.qty-input {
  width: 60px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  min-height: 40px;
  padding: 6px 10px;
  font-family: var(--font-sans);
  font-size: 0.88rem;
  text-align: center;
  outline: none;
}

.qty-input:focus { border-color: var(--copper); }

.basket-item__actions {
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
}

.btn-remove {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 40px;
  padding: 10px 12px;
  border: 1px solid rgba(192,57,43,0.16);
  border-radius: var(--radius-sm);
  background: rgba(192,57,43,0.06);
  font-size: 0.78rem;
  color: #c0392b;
  transition: opacity var(--transition), background var(--transition), border-color var(--transition);
}

.btn-remove:hover {
  opacity: 1;
  background: rgba(192,57,43,0.12);
  border-color: rgba(192,57,43,0.24);
}
.btn-remove svg { width: 14px; height: 14px; }

/* Basket summary */
.basket-summary {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px;
  position: sticky;
  top: calc(var(--header-h) + 20px);
  box-shadow: 0 12px 28px rgba(15,10,4,0.05);
}

.basket-summary__title {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}

.basket-summary__item {
  display: flex; justify-content: space-between;
  font-size: 0.84rem;
  color: var(--ink-soft);
  margin-bottom: 10px;
}

.basket-summary__total {
  display: flex; justify-content: space-between;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--ink);
  padding-top: 16px;
  margin-top: 8px;
  border-top: 1px solid var(--border);
  margin-bottom: 20px;
}

.btn-submit-enquiry {
  display: block;
  width: 100%;
  background: var(--copper);
  color: white;
  padding: 15px;
  border-radius: var(--radius-sm);
  min-height: 48px;
  font-weight: 700;
  font-size: 0.92rem;
  text-align: center;
  transition: background var(--transition);
  margin-bottom: 10px;
  box-shadow: 0 8px 18px rgba(157,94,38,0.18);
}

.btn-submit-enquiry:hover { background: var(--copper-dark); }

.btn-continue-browsing {
  display: block;
  width: 100%;
  border: 1px solid var(--border);
  background: var(--white);
  color: var(--ink-soft);
  padding: 13px;
  border-radius: var(--radius-sm);
  min-height: 46px;
  font-size: 0.85rem;
  text-align: center;
  transition: border-color var(--transition), color var(--transition);
}

.btn-continue-browsing:hover { border-color: var(--copper); color: var(--copper); }

/* ── ENQUIRY FORM PAGE ── */
.enquiry-page { padding: 40px 0 80px; }

.enquiry-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 36px;
  align-items: start;
}

.enquiry-form-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 36px;
  box-shadow: 0 12px 28px rgba(15,10,4,0.05);
}

.enquiry-form-card__title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.enquiry-form-card__sub {
  font-size: 0.85rem;
  color: var(--ink-muted);
  margin-bottom: 28px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.form-group {
  display: flex; flex-direction: column;
  margin-bottom: 20px;
}

.form-group label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  min-height: 48px;
  padding: 12px 14px;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  color: var(--ink);
  background: #fcfaf6;
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--copper);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(184,121,50,0.14);
}

.form-group textarea { resize: vertical; min-height: 140px; }

.form-group.has-error input,
.form-group.has-error select,
.form-group.has-error textarea,
.form-group input.is-invalid,
.form-group select.is-invalid,
.form-group textarea.is-invalid {
  border-color: #c0392b;
  background: rgba(192,57,43,0.04);
  box-shadow: none;
}

.selected-products-list {
  background: linear-gradient(180deg, #fcfaf6, var(--cream));
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 16px 18px;
}

.selected-products-list.is-invalid { border-color: #c0392b; }

.selected-product-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}

.selected-product-row:last-child { border-bottom: none; }

.selected-product-icon { font-size: 1.5rem; color: var(--copper-light); opacity: 0.6; }

.selected-product-name { font-size: 0.85rem; font-weight: 500; }

.selected-product-copy { min-width: 0; }

.selected-product-meta {
  font-size: 0.72rem;
  color: var(--ink-muted);
  margin-top: 2px;
}

.selected-product-qty { font-size: 0.75rem; color: var(--ink-muted); margin-left: auto; }

.selected-products-placeholder {
  font-size: 0.84rem;
  color: var(--ink-muted);
  line-height: 1.7;
}

.selected-products-placeholder a {
  color: var(--copper);
  font-weight: 600;
}

.form-status {
  margin-bottom: 18px;
  padding: 12px 14px;
  border: 1px solid rgba(192,57,43,0.2);
  border-radius: var(--radius-sm);
  background: rgba(192,57,43,0.08);
  color: #9f2f23;
  font-size: 0.84rem;
  line-height: 1.6;
}

.btn-form-submit {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  width: 100%;
  background: var(--copper);
  color: white;
  padding: 16px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  transition: background var(--transition), transform var(--transition);
  box-shadow: 0 4px 16px rgba(157,94,38,0.3);
  margin-top: 8px;
}

.btn-form-submit:hover { background: var(--copper-dark); transform: translateY(-2px); }

/* Success message */
.success-message {
  text-align: center;
  padding: 60px 40px;
}

.success-message__icon { font-size: 4rem; color: #2e7d32; margin-bottom: 20px; }
.success-message__title {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 12px;
}
.success-message__text { color: var(--ink-soft); max-width: 400px; margin: 0 auto 28px; }

/* Enquiry sidebar info */
.enquiry-info-card {
  background: var(--ink);
  border-radius: var(--radius-md);
  padding: 28px;
  color: white;
  margin-bottom: 20px;
  box-shadow: 0 12px 24px rgba(15,10,4,0.08);
}

.enquiry-info-card__title {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--gold-light);
  margin-bottom: 16px;
}

.enquiry-info-item {
  display: flex; align-items: flex-start; gap: 12px;
  margin-bottom: 14px;
}

.enquiry-info-item__icon { font-size: 1.2rem; flex-shrink: 0; }
.enquiry-info-item__label { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--gold); margin-bottom: 2px; }
.enquiry-info-item__val { font-size: 0.84rem; color: rgba(255,255,255,0.65); }

/* ── ABOUT PAGE ── */
.about-section { padding: 60px 0 80px; }

.about-intro {
  display: block;
  margin-bottom: 0;
}

.about-image {
  aspect-ratio: 1;
  background: linear-gradient(135deg, var(--cream-dark) 0%, var(--cream) 100%);
  border-radius: var(--radius-lg);
  display: flex; align-items: center; justify-content: center;
  font-size: 8rem;
  color: var(--copper-light);
  opacity: 0.4;
  border: 1px solid var(--border);
}

.about-text .section-title { text-align: left; margin-bottom: 20px; }
.about-text p { color: var(--ink-soft); line-height: 1.8; margin-bottom: 16px; font-size: 0.92rem; }

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 60px;
}

.value-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  text-align: center;
}

.value-card__icon { font-size: 2.5rem; margin-bottom: 16px; }
.value-card__title { font-family: var(--font-serif); font-size: 1.2rem; font-weight: 700; margin-bottom: 10px; }
.value-card__text { font-size: 0.85rem; color: var(--ink-muted); line-height: 1.6; }

/* ── CONTACT PAGE ── */
.contact-section { padding: 50px 0 80px; }

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.contact-info__title { font-family: var(--font-serif); font-size: 1.8rem; font-weight: 700; margin-bottom: 12px; }
.contact-info__sub { color: var(--ink-muted); margin-bottom: 32px; font-size: 0.9rem; }

.contact-detail {
  display: flex; align-items: flex-start; gap: 16px;
  margin-bottom: 24px;
}

.contact-detail__icon {
  width: 44px; height: 44px;
  background: var(--cream-dark);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  color: var(--copper);
  flex-shrink: 0;
}

.contact-detail__icon svg { width: 20px; height: 20px; }
.contact-detail__label { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-muted); margin-bottom: 4px; }
.contact-detail__val { font-size: 0.9rem; color: var(--ink); font-weight: 500; }

.contact-form-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 36px;
  box-shadow: 0 12px 28px rgba(15,10,4,0.05);
}

/* ── RELATED PRODUCTS ── */
.related-section { padding: 60px 0; background: var(--white); }

.site-footer {
  background: var(--ink-deep);
}

.category-section,
.related-section,
.about-values,
.contact-faq {
  background: var(--cream-dark);
}

.product-card,
.basket-empty,
.basket-item,
.basket-summary,
.enquiry-form-card,
.contact-form-card,
.enquiry-success,
.value-card,
.about-badge {
  background: var(--white);
}

.faq-item,
.about-value-card,
.about-process__step {
  background: var(--cream);
}

.basket-item,
.basket-summary,
.enquiry-form-card,
.contact-form-card,
.enquiry-success,
.value-card,
.about-badge,
.about-process__step,
.faq-item {
  border-color: var(--border);
}

/* ════════════════════════════════════
   SHARED PAGE COMPONENTS
   ════════════════════════════════════ */

/* Page hero (used on about / contact / submit-enquiry) */
.page-hero {
  background: linear-gradient(135deg, var(--ink) 0%, #2a1408 100%);
  color: white;
  padding: 52px 0 44px;
}

.page-hero--about {
  background: linear-gradient(135deg, #0a0500 0%, #261004 60%, #1a0d08 100%);
}

.page-hero--about .page-hero__sub {
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.page-hero__title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 700;
  color: white;
  margin: 10px 0 10px;
  line-height: 1.15;
}

.page-hero__sub {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.6);
  max-width: 500px;
}

/* Breadcrumb */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.45);
  margin-bottom: 10px;
  flex-wrap: wrap;
}
.breadcrumb a { color: rgba(255,255,255,0.55); transition: color var(--transition); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span:last-child { color: rgba(255,255,255,0.35); }

/* Section tag pill */
.section-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--copper);
  background: rgba(157,94,38,0.08);
  border: 1px solid rgba(157,94,38,0.2);
  padding: 5px 12px;
  border-radius: 999px;
  margin-bottom: 12px;
}

/* Section header */
.section-header { margin-bottom: 36px; }
.section-header--center { text-align: center; }
.section-header--center .section-tag { display: block; margin: 0 auto 12px; width: max-content; }
.section-subtitle {
  font-size: 0.92rem;
  color: var(--ink-muted);
  max-width: 560px;
  margin: 10px auto 0;
  line-height: 1.7;
}

/* Generic buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  transition: background var(--transition), color var(--transition), border-color var(--transition), transform var(--transition);
  cursor: pointer;
}

.btn--primary {
  background: var(--copper);
  color: white;
  border: 1.5px solid transparent;
}
.btn--primary:hover { background: var(--copper-dark); transform: translateY(-1px); }

.btn--outline {
  background: transparent;
  color: var(--ink-soft);
  border: 1.5px solid var(--border);
}
.btn--outline:hover { border-color: var(--copper); color: var(--copper); }

.btn--lg { padding: 15px 32px; font-size: 0.92rem; }
.btn--full { width: 100%; justify-content: center; }

.btn:disabled,
.btn[aria-disabled='true'] {
  cursor: not-allowed;
  opacity: 0.7;
  transform: none;
}

/* ════════════════════════════════════
   SUBMIT ENQUIRY PAGE
   ════════════════════════════════════ */

.enquiry-form-section { padding: 48px 0 80px; }

.enquiry-form-card__header {
  margin-bottom: 28px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--border);
}
.enquiry-form-card__header h2 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 4px;
}
.enquiry-form-card__header p { font-size: 0.83rem; color: var(--ink-muted); }

.form-group--full { grid-column: 1 / -1; }

.form-hint {
  font-size: 0.74rem;
  color: var(--ink-muted);
  margin-top: 4px;
}

.form-error {
  font-size: 0.74rem;
  color: #c0392b;
  margin-top: 4px;
  display: none;
}

.form-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 8px;
  padding-top: 18px;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
}

/* Enquiry success state */
.enquiry-success {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 80px 40px;
  text-align: center;
  max-width: 540px;
  margin: 0 auto;
  box-shadow: 0 12px 28px rgba(15,10,4,0.05);
}
.enquiry-success__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  margin: 0 auto 16px;
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #2e7d32;
}
.enquiry-success h2 {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 12px;
}
.enquiry-success p { color: var(--ink-soft); line-height: 1.7; }
.enquiry-success__ref {
  display: inline-block;
  background: var(--cream-dark);
  padding: 8px 20px;
  border-radius: var(--radius-sm);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--copper);
  margin-top: 16px;
  letter-spacing: 0.06em;
}

/* Enquiry info sidebar */
.enquiry-info-sidebar { display: flex; flex-direction: column; gap: 16px; }

.enquiry-info-card {
  background: var(--ink);
  border-radius: var(--radius-md);
  padding: 24px 22px;
  color: white;
  box-shadow: 0 12px 24px rgba(15,10,4,0.08);
}

.enquiry-info-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 48px;
  height: 48px;
  padding: 0 12px;
  margin-bottom: 12px;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 999px;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1;
  text-transform: uppercase;
  color: var(--gold-light);
}

.enquiry-info-card h3 {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold-light);
  margin-bottom: 6px;
}

.enquiry-info-card p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
  margin-bottom: 8px;
}

.enquiry-info-card__link {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--gold);
}
.enquiry-info-card__link:hover { color: white; }

/* Steps card */
.enquiry-info-card--steps { background: var(--cream); color: var(--ink); }
.enquiry-info-card--steps h3 { color: var(--ink); }
.enquiry-info-card--steps p { color: var(--ink-muted); }

.enquiry-steps {
  list-style: none;
  margin: 0; padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.enquiry-steps li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.82rem;
  color: var(--ink-soft);
}

.enquiry-steps li strong {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 2px;
}

.enquiry-steps li p { font-size: 0.78rem; margin: 0; }

.enquiry-step__num {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  background: var(--copper);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  font-weight: 700;
}

/* Hours card */
.enquiry-info-card--hours { background: linear-gradient(135deg, #1a0e00, #2e1a08); }

/* ════════════════════════════════════
   ABOUT PAGE
   ════════════════════════════════════ */

.about-intro { padding: 72px 0 64px; }

.about-intro > .container {
  display: block;
  padding: 0;
}

.about-intro__shell {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  display: block;
}

.about-intro__grid {
  display: grid;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  grid-template-columns: 420px minmax(480px, 620px);
  gap: 72px;
  align-items: center;
  justify-content: center;
}

.about-intro__visual {
  width: 100%;
  max-width: 420px;
  margin-inline: auto;
  justify-self: center;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.about-intro__visual .about-intro__img-wrap {
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid var(--border);
  aspect-ratio: 0.96;
  background: linear-gradient(145deg, rgba(203, 160, 80, 0.12), rgba(48, 48, 48, 0.96));
  box-shadow: 0 22px 56px rgba(0, 0, 0, 0.22);
}

.about-intro__visual .about-intro__img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(circle at 50% 18%, rgba(203, 160, 80, 0.16), transparent 42%),
    var(--cream-dark);
  color: var(--ink-muted);
  text-align: center;
  padding: 40px;
}

.about-intro__stats {
  display: grid;
  width: 100%;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.about-badge {
  position: relative;
  inset: auto;
  min-width: 0;
  padding: 18px 20px;
  text-align: left;
  box-shadow: none;
}

.about-badge--1,
.about-badge--2 {
  inset: auto;
}

.about-badge__num {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--copper);
  line-height: 1;
}

.about-badge__label {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--ink-muted);
  letter-spacing: 0.08em;
  line-height: 1.45;
  margin-top: 6px;
  text-transform: uppercase;
}

.about-intro__text {
  padding-left: 0;
  width: 100%;
  max-width: 620px;
  margin-inline: 0;
}

.about-intro__heading {
  font-family: var(--font-serif);
  font-size: clamp(1.9rem, 3.8vw, 2.8rem);
  font-weight: 700;
  color: var(--ink);
  line-height: 1.15;
  margin-bottom: 20px;
}

.about-intro__text p {
  max-width: 62ch;
  font-size: 0.98rem;
  color: var(--ink-soft);
  line-height: 1.9;
  margin-bottom: 16px;
}

.about-intro__cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.about-intro__cta .btn {
  min-width: 190px;
}

/* About values */
.about-values { padding: 60px 0; background: var(--white); }

.about-values__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.about-value-card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  box-shadow: 0 10px 24px rgba(15,10,4,0.04);
  transition: box-shadow var(--transition), transform var(--transition);
}

.about-value-card:hover {
  box-shadow: 0 6px 24px var(--shadow-md);
  transform: translateY(-3px);
}

.about-value-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 52px;
  height: 52px;
  padding: 0 14px;
  margin-bottom: 14px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--white);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1;
  text-transform: uppercase;
  color: var(--ink);
}

.about-value-card h3 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 10px;
}

.about-value-card p {
  font-size: 0.83rem;
  color: var(--ink-muted);
  line-height: 1.65;
}

/* About process */
.about-process { padding: 64px 0; }

.about-process__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.about-process__step {
  position: relative;
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: 0 10px 24px rgba(15,10,4,0.04);
}

.about-process__step-num {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--copper);
  opacity: 0.2;
  line-height: 1;
  margin-bottom: 10px;
}

.about-process__step h4 {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 8px;
}

.about-process__step p {
  font-size: 0.8rem;
  color: var(--ink-muted);
  line-height: 1.6;
}

/* ════════════════════════════════════
   CONTACT PAGE
   ════════════════════════════════════ */

.contact-info { display: flex; flex-direction: column; gap: 0; }

.contact-info__block {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
}
.contact-info__block:first-child { padding-top: 0; }

.contact-info__icon {
  width: 44px; height: 44px;
  background: var(--cream-dark);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1;
  text-transform: uppercase;
  flex-shrink: 0;
}

.contact-info__detail { flex: 1; }

.contact-info__label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 3px;
}

.contact-info__value {
  font-size: 0.92rem;
  color: var(--ink);
  font-weight: 500;
  display: block;
}
a.contact-info__value:hover { color: var(--copper); }

.contact-info__value--static,
.enquiry-info-card__link--static {
  display: inline-block;
  cursor: default;
}

/* Map placeholder */
.contact-map-placeholder {
  margin-top: 8px;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px dashed var(--border);
  height: 200px;
  background: var(--cream-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 22px rgba(15,10,4,0.04);
}

.contact-map-placeholder__inner {
  text-align: center;
  color: var(--ink-muted);
  font-size: 0.82rem;
}

/* Quick links */
.contact-quick-links {
  display: flex;
  gap: 10px;
  margin-top: 18px;
  flex-wrap: wrap;
}

.contact-quick-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 44px;
  padding: 10px 18px;
  border-radius: var(--radius-sm);
  font-size: 0.82rem;
  font-weight: 600;
  transition: opacity var(--transition), transform var(--transition);
}
.contact-quick-link:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}
.contact-quick-link--wa { background: #25D366; color: white; }
.contact-quick-link--enquiry { background: var(--copper); color: white; }
.contact-quick-link--disabled {
  cursor: default;
  pointer-events: none;
  opacity: 0.78;
}

/* Contact form card header */
.contact-form-card__header { margin-bottom: 24px; padding-bottom: 18px; border-bottom: 1px solid var(--border); }
.contact-form-card__header h2 {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 4px;
}
.contact-form-card__header p { font-size: 0.82rem; color: var(--ink-muted); }

/* Contact success */
.contact-success {
  text-align: center;
  padding: 48px 20px;
  color: var(--ink);
}
.contact-success h3 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.contact-success p { color: var(--ink-soft); font-size: 0.9rem; line-height: 1.7; }

/* FAQ */
.contact-faq { padding: 60px 0; background: var(--white); }

.faq-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 36px;
}

.faq-item {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 22px 20px;
  box-shadow: 0 10px 24px rgba(15,10,4,0.04);
}

.faq-item h4 {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 8px;
  line-height: 1.35;
}

.faq-item p {
  font-size: 0.82rem;
  color: var(--ink-muted);
  line-height: 1.65;
}

/* ── RELATED PRODUCTS ── */
.related-section { padding: 60px 0; background: var(--white); }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .home-gallery-strip__item {
    flex-basis: clamp(176px, 24vw, 220px);
    height: clamp(160px, 22vw, 210px);
  }

  .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); max-width: none; }
  .scroll-section--showcase .scroll-track-wrap--showcase {
    margin: 0;
    padding: 0;
    border: none;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }
  .scroll-section--showcase .scroll-track--showcase {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
    overflow: visible;
    padding: 0;
  }
  .scroll-section--showcase .scroll-track--showcase .product-card--showcase {
    min-width: 0;
    flex-basis: auto;
  }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .about-intro { padding: 64px 0 56px; }
  .about-intro__shell {
    width: min(760px, calc(100% - 48px));
  }
  .about-intro__grid {
    grid-template-columns: 1fr;
    gap: 36px;
    justify-items: center;
  }
  .about-intro__visual { max-width: 520px; }
  .about-image { max-height: 280px; }
  .basket-layout, .enquiry-layout { grid-template-columns: 1fr; }
  .basket-summary { position: static; }
  .enquiry-info-card { margin-bottom: 0; }
  .detail-layout { grid-template-columns: 1fr; }
  .detail-gallery { position: static; }
  .about-process__steps { grid-template-columns: repeat(2, 1fr); }
  .about-values__grid { grid-template-columns: repeat(2, 1fr); }
  .faq-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .home-gallery-strip {
    padding: 6px 0 8px;
  }

  .home-gallery-strip__bar {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
  }

  .home-gallery-strip__viewport {
    padding-right: 0;
  }

  .home-gallery-strip__item {
    flex-basis: min(42vw, 156px);
    height: clamp(112px, 36vw, 148px);
  }

  .home-gallery-strip__arrow {
    width: 40px;
    height: 40px;
  }

  .home-gallery-strip__arrow--prev {
    left: 10px;
  }

  .home-gallery-strip__arrow--next {
    right: 10px;
  }

  .home-gallery-strip__side-label {
    display: none;
  }

  :root { --header-h: 62px; }

  .main-nav { display: none; }
  .hamburger { display: flex; }
  .header-inner { gap: 12px; }
  .logo__text { font-size: 1.35rem; }
  .header-actions { gap: 6px; }

  .trust-strip__inner { grid-template-columns: repeat(2, 1fr); }
  .trust-item:nth-child(2) { border-right: none; }
  .trust-item { padding: 10px 12px; }

  .product-grid { grid-template-columns: 1fr; gap: 14px; }
  .scroll-track .product-card { flex: 0 0 calc(50% - 10px); }
  .about-intro__stats { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .about-intro__text {
    max-width: 620px;
    margin-inline: auto;
  }
  .about-intro__text p { max-width: none; }
  .about-intro__cta {
    flex-direction: column;
    align-items: stretch;
  }
  .about-intro__cta .btn {
    width: 100%;
    min-width: 0;
  }
  .scroll-section--showcase {
    padding: 58px 0 64px;
  }
  .scroll-section--showcase .section-line {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 30px;
  }
  .scroll-section--showcase .scroll-track--showcase {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .scroll-section--showcase .scroll-track--showcase .product-card--showcase .product-card__image-wrap {
    aspect-ratio: 1.02;
  }
  .scroll-section--showcase .scroll-track--showcase .product-card--showcase .product-card__body {
    padding: 22px 22px 24px;
  }
  .scroll-section--showcase .scroll-track--showcase .product-card--showcase .product-card__name {
    font-size: 1.22rem;
  }

  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .testimonials-shell { padding: 28px 24px; }
  .testimonials-trust { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .testimonials-trust__item:last-child {
    grid-column: auto;
    max-width: none;
    margin: 0;
  }
  .values-grid { grid-template-columns: 1fr; }
  .about-values__grid { grid-template-columns: 1fr 1fr; }
  .about-process__steps { grid-template-columns: 1fr 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .products-layout { grid-template-columns: 1fr; }
  .sidebar { position: static; }
  .products-toolbar { align-items: stretch; }
  .sort-select { width: 100%; }
  .form-row { grid-template-columns: 1fr; }
  .enquiry-form-card,
  .contact-form-card { padding: 30px 24px; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .detail-layout { gap: 32px; }
  .faq-grid { grid-template-columns: 1fr 1fr; }
  .form-actions { flex-direction: column-reverse; align-items: stretch; }
  .form-actions .btn { justify-content: center; }
  .page-hero { padding: 36px 0 28px; }
  .page-hero--catalogue .page-hero__content { max-width: 680px; }
}

@media (max-width: 480px) {
  .home-gallery-strip__item {
    flex-basis: min(46vw, 148px);
    height: clamp(108px, 42vw, 140px);
  }

  .container { padding: 0 16px; }
  .logo__text { font-size: 1.2rem; }
  .product-grid { grid-template-columns: 1fr; gap: 14px; }
  .about-intro__visual { max-width: none; }
  .about-intro__img-wrap { aspect-ratio: 1.02; }
  .about-intro__stats { grid-template-columns: 1fr; }
  .about-badge { text-align: center; }
  .scroll-track .product-card { flex: 0 0 calc(80% - 10px); }
  .scroll-section--showcase {
    padding: 52px 0 58px;
  }
  .scroll-section--showcase .section-line {
    gap: 12px;
    margin-bottom: 24px;
  }
  .scroll-section--showcase .scroll-track--showcase .product-card--showcase .product-card__image-wrap {
    aspect-ratio: 1.08;
  }
  .scroll-section--showcase .scroll-track--showcase .product-card--showcase .product-card__placeholder,
  .scroll-section--showcase .scroll-track--showcase .product-card--showcase .product-card__image {
    inset: 14px 14px 0;
  }
  .scroll-section--showcase .scroll-track--showcase .product-card--showcase .product-card__badge {
    top: 14px;
    left: 14px;
  }
  .scroll-section--showcase .scroll-track--showcase .product-card--showcase .product-card__body {
    padding: 20px 18px 22px;
  }
  .product-card__footer { flex-direction: column; }
  .basket-item {
    grid-template-columns: 60px 1fr;
    padding: 18px;
  }
  .basket-item__actions {
    grid-column: 1 / -1;
    justify-content: flex-start;
  }
  .btn-remove {
    width: 100%;
    justify-content: center;
  }
  .category-tabs { gap: 0; }
  .category-tab { padding: 10px 12px; font-size: 0.75rem; }
  .about-values__grid { grid-template-columns: 1fr; }
  .about-process__steps { grid-template-columns: 1fr; }
  .faq-grid { grid-template-columns: 1fr; }
  .enquiry-success { padding: 48px 20px; }
  .selected-product-row {
    flex-direction: column;
    align-items: flex-start;
  }
  .selected-product-qty { margin-left: 0; }
  .contact-quick-links { flex-direction: column; }
  .contact-quick-link { justify-content: center; }
  .stats-grid { grid-template-columns: 1fr; }
  .testimonials-shell { padding: 24px 18px; }
  .testimonials-trust__header { margin-bottom: 24px; }
  .testimonials-trust { grid-template-columns: 1fr; }
  .testimonials-trust__item:last-child {
    grid-column: auto;
    max-width: none;
  }
  .page-hero--catalogue .page-hero__content,
  .page-hero--catalogue .page-hero__sub { max-width: 100%; }
  .page-hero--catalogue .page-hero__breadcrumb { margin-bottom: 12px; }
  .testimonial-card { flex: 0 0 calc(100vw - 56px); }
}

/* Shared header refresh */
:root {
  --header-h: 148px;
}

.announcement-bar {
  background: #f7f4ef;
  color: var(--ink-muted);
  border-bottom: 1px solid rgba(15, 10, 4, 0.08);
  padding: 8px 0;
}

.announcement-bar__track {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  animation: none;
  flex-wrap: wrap;
}

.announcement-bar__item {
  white-space: nowrap;
  font-size: 0.67rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.announcement-bar__sep {
  width: 4px;
  height: 4px;
  border-radius: 999px;
  background: var(--copper-light);
  opacity: 0.65;
}

.site-header {
  height: auto;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(15, 10, 4, 0.08);
}

.site-header.scrolled {
  box-shadow: 0 14px 32px rgba(15, 10, 4, 0.08);
}

.site-header__brand-row {
  display: grid;
  grid-template-columns: minmax(52px, 1fr) auto minmax(52px, 1fr);
  align-items: center;
  gap: 24px;
  min-height: 92px;
}

.site-header__left {
  display: flex;
  align-items: center;
  min-width: 0;
}

.logo--wordmark {
  justify-self: center;
  justify-content: center;
}

.logo__text--brand {
  display: inline-block;
  padding-left: 0.34em;
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.2vw, 3rem);
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.34em;
  color: var(--ink);
  text-transform: uppercase;
}

.site-header__nav-row {
  border-top: 1px solid rgba(15, 10, 4, 0.06);
}

.site-header__nav-row .container {
  display: flex;
  justify-content: center;
}

.main-nav {
  width: 100%;
}

.nav-list {
  gap: 22px;
  justify-content: center;
}

.nav-item--secondary {
  margin-left: 2px;
  padding-left: 18px;
  border-left: 1px solid var(--border);
}

.nav-link {
  padding: 16px 2px 15px;
  border-radius: 0;
  font-size: 0.71rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  color: var(--ink-soft);
  background: transparent;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: var(--copper);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform var(--transition);
}

.nav-link:hover,
.nav-link.active {
  color: var(--ink);
  background: transparent;
}

.nav-link:hover::after,
.nav-link.active::after {
  transform: scaleX(1);
}

.nav-link--secondary {
  color: var(--copper);
}

.header-actions {
  margin-left: 0;
  justify-self: end;
  gap: 8px;
}

.header-btn {
  width: 40px;
  height: 40px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: transparent;
}

.header-btn svg {
  width: 18px;
  height: 18px;
}

.header-btn:hover,
.header-btn.is-active {
  background: rgba(196, 122, 62, 0.08);
  border-color: rgba(157, 94, 38, 0.14);
  color: var(--ink);
}

.basket-count {
  top: -1px;
  right: -2px;
}

.floating-actions {
  position: fixed;
  right: calc(24px + env(safe-area-inset-right, 0px));
  bottom: calc(24px + env(safe-area-inset-bottom, 0px));
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  z-index: 950;
}

.floating-action {
  position: relative;
  width: 58px;
  height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: white;
  box-shadow: 0 16px 34px rgba(15, 10, 4, 0.18);
  transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
}

.floating-action svg {
  width: 24px;
  height: 24px;
}

.floating-action--basket {
  background: linear-gradient(135deg, var(--ink) 0%, #4d301c 100%);
  border: 1px solid rgba(255,255,255,0.08);
}

.floating-action--whatsapp {
  background: linear-gradient(135deg, #25d366 0%, #128c4a 100%);
  border: 1px solid rgba(255,255,255,0.12);
}

.floating-action--disabled {
  pointer-events: none;
  cursor: default;
  opacity: 0.72;
  filter: saturate(0.72);
}

.floating-action__badge {
  top: -3px;
  right: -3px;
  min-width: 20px;
  height: 20px;
  padding: 0 5px;
  font-size: 0.68rem;
  border: 2px solid var(--white);
  box-shadow: 0 8px 18px rgba(15, 10, 4, 0.18);
}

@media (hover: hover) {
  .floating-action:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 20px 38px rgba(15, 10, 4, 0.22);
    filter: brightness(1.03);
  }
}

.search-overlay {
  padding-top: calc(var(--header-h) + 40px);
}

.mobile-menu {
  width: min(92vw, 380px);
}

.mobile-menu__header {
  padding: 20px 20px 16px;
}

.logo__text--mobile {
  display: inline-block;
  padding-left: 0.28em;
  font-family: var(--font-serif);
  font-size: 1.08rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ink);
}

.mobile-menu__body {
  padding: 0 20px 24px;
}

.mobile-menu__utility {
  display: grid;
  gap: 10px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}

.mobile-utility-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 48px;
  padding: 0 16px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--white);
  color: var(--ink-soft);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
}

.mobile-utility-btn svg {
  width: 17px;
  height: 17px;
  flex-shrink: 0;
}

.mobile-utility-btn:hover,
.mobile-utility-btn.is-active {
  color: var(--ink);
  background: rgba(196, 122, 62, 0.08);
  border-color: rgba(157, 94, 38, 0.18);
}

.mobile-nav-list {
  padding: 18px 0 0;
  display: grid;
  gap: 6px;
}

.mobile-nav-item {
  border-bottom: none;
}

.mobile-nav-link {
  min-height: 48px;
  justify-content: flex-start;
  padding: 0 18px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  color: var(--ink-soft);
}

.mobile-nav-link:hover,
.mobile-nav-link.nav-link--active {
  color: var(--ink);
  background: rgba(196, 122, 62, 0.08);
}

@media (max-width: 1080px) {
  .nav-list {
    gap: 16px;
  }

  .nav-link {
    font-size: 0.67rem;
    letter-spacing: 0.16em;
  }
}

@media (max-width: 768px) {
  :root {
    --header-h: 74px;
  }

  .announcement-bar {
    padding: 7px 0;
  }

  .announcement-bar__track {
    justify-content: flex-start;
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 12px;
    padding: 0 4px 1px;
    scrollbar-width: none;
  }

  .announcement-bar__track::-webkit-scrollbar {
    display: none;
  }

  .announcement-bar__item {
    font-size: 0.62rem;
    letter-spacing: 0.16em;
  }

  .site-header__brand-row {
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 10px;
    min-height: 74px;
  }

  .site-header__left {
    min-width: auto;
  }

  .site-header__nav-row {
    display: none;
  }

  .hamburger {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid var(--border);
    border-radius: 999px;
    background: var(--white);
  }

  .logo__text--brand {
    padding-left: 0.24em;
    font-size: 1rem;
    letter-spacing: 0.24em;
    white-space: nowrap;
  }

  .header-actions {
    gap: 6px;
  }

  .header-btn {
    width: 36px;
    height: 36px;
  }

  .header-btn svg {
    width: 16px;
    height: 16px;
  }

  .floating-actions {
    right: calc(18px + env(safe-area-inset-right, 0px));
    bottom: calc(18px + env(safe-area-inset-bottom, 0px));
    gap: 10px;
  }

  .floating-action {
    width: 54px;
    height: 54px;
  }

  .floating-action svg {
    width: 22px;
    height: 22px;
  }
}

@media (max-width: 480px) {
  :root {
    --header-h: 70px;
  }

  .logo__text--brand {
    padding-left: 0.18em;
    font-size: 0.88rem;
    letter-spacing: 0.18em;
  }

  .header-btn--account {
    display: none;
  }

  .mobile-menu__header {
    padding: 18px 16px 14px;
  }

  .mobile-menu__body {
    padding: 0 16px 20px;
  }

  .mobile-utility-btn,
  .mobile-nav-link {
    min-height: 46px;
  }

  .floating-actions {
    right: calc(14px + env(safe-area-inset-right, 0px));
    bottom: calc(14px + env(safe-area-inset-bottom, 0px));
    gap: 9px;
  }

  .floating-action {
    width: 50px;
    height: 50px;
  }

  .floating-action svg {
    width: 20px;
    height: 20px;
  }

  .floating-action__badge {
    min-width: 18px;
    height: 18px;
    font-size: 0.62rem;
  }
}

/* Final palette and branding pass */
body,
.scroll-section,
.products-page,
.basket-page,
.enquiry-page,
.about-section,
.about-intro,
.about-process,
.contact-section,
.enquiry-form-section {
  background: var(--cream);
}

.category-section,
.related-section,
.about-values,
.contact-faq {
  background: var(--cream-dark);
}

.site-footer {
  background: var(--ink-deep);
  color: rgba(243, 236, 228, 0.78);
}

.footer-grid {
  border-bottom-color: rgba(243, 236, 228, 0.12);
}

.footer-brand p,
.footer-contact-item,
.footer-col ul a {
  color: rgba(243, 236, 228, 0.7);
}

.footer-col ul a:hover,
.enquiry-info-card__link:hover {
  color: var(--text-on-dark);
}

.footer-bottom {
  color: rgba(243, 236, 228, 0.48);
}

.product-card,
.basket-empty,
.basket-item,
.basket-summary,
.enquiry-form-card,
.contact-form-card,
.enquiry-success,
.value-card,
.about-badge,
.about-process__step,
.faq-item,
.about-value-card,
.sidebar,
.search-box,
.mobile-utility-btn {
  background: var(--white);
}

.product-card__image-wrap,
.basket-item__image,
.contact-detail__icon,
.contact-info__icon,
.about-image,
.about-intro__img-wrap,
.about-intro__img-placeholder,
.contact-map-placeholder,
.enquiry-success__ref,
.search-box input {
  background: var(--cream-dark);
}

.faq-item,
.about-value-card,
.about-process__step,
.sidebar,
.basket-item,
.basket-summary,
.enquiry-form-card,
.contact-form-card,
.enquiry-success,
.value-card,
.about-badge,
.product-card,
.mobile-utility-btn,
.search-box {
  border-color: var(--border);
}

#search-results {
  background: var(--white) !important;
}

.announcement-bar {
  background: rgba(191, 179, 164, 0.92);
  color: var(--ink);
  border-bottom-color: rgba(23, 20, 18, 0.08);
}

.site-header {
  background: rgba(222, 214, 203, 0.94);
  border-bottom-color: rgba(23, 20, 18, 0.1);
}

.site-header.scrolled {
  box-shadow: 0 16px 34px rgba(27, 23, 20, 0.12);
}

.site-header__nav-row {
  border-top-color: rgba(23, 20, 18, 0.08);
}

.logo--brandmark {
  gap: 12px;
  justify-self: center;
  align-items: center;
}

.logo__mark-image-wrap {
  width: auto;
  min-width: 64px;
  height: 64px;
  overflow: visible;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.logo__mark-image {
  width: auto;
  height: 100%;
  max-width: 100%;
  object-fit: contain;
  object-position: center;
  mix-blend-mode: multiply;
  filter: saturate(1.04) contrast(1.03);
}

.logo__text--brand {
  padding-left: 0;
  font-size: clamp(1.45rem, 2.7vw, 2rem);
  letter-spacing: 0.28em;
  line-height: 1;
  color: var(--ink);
}

.logo__text--mobile {
  padding-left: 0;
  font-size: 0.94rem;
  letter-spacing: 0.18em;
  color: var(--ink);
}

.logo--fallback .logo__mark-image-wrap {
  display: none;
}

.header-btn:hover,
.header-btn.is-active,
.mobile-utility-btn:hover,
.mobile-utility-btn.is-active,
.mobile-nav-link:hover,
.mobile-nav-link.nav-link--active {
  background: rgba(181, 121, 50, 0.12);
  border-color: rgba(169, 156, 141, 0.58);
  color: var(--ink);
}

.section-tag {
  background: rgba(181, 121, 50, 0.12);
  border-color: rgba(181, 121, 50, 0.26);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  box-shadow: 0 0 0 3px rgba(181, 121, 50, 0.16);
}

@media (max-width: 768px) {
  .site-header__brand-row {
    min-height: 78px;
  }

  .logo--brandmark {
    gap: 10px;
  }

  .logo__mark-image-wrap {
    min-width: 52px;
    height: 52px;
  }

  .logo__text--brand {
    font-size: 0.98rem;
    letter-spacing: 0.2em;
  }

  .logo__text--mobile {
    font-size: 0.82rem;
    letter-spacing: 0.16em;
  }
}

@media (max-width: 480px) {
  .logo__mark-image-wrap {
    min-width: 44px;
    height: 44px;
  }

  .logo__text--brand {
    font-size: 0.84rem;
    letter-spacing: 0.16em;
  }

  .logo__text--mobile {
    font-size: 0.72rem;
    letter-spacing: 0.12em;
  }
}

/* Readability refinement */
:root {
  --ink-soft: #2c2621;
  --ink-muted: #4d453d;
  --text-on-dark: #fbf6ef;
}

body {
  color: var(--ink);
  line-height: 1.68;
}

.section-title {
  font-size: clamp(1.85rem, 4vw, 2.75rem);
}

.section-subtitle,
.page-hero__sub,
.cta-section p,
.about-intro__text p,
.about-text p,
.about-value-card p,
.about-process__step p,
.faq-item p,
.products-count,
.sidebar__item,
.product-card__desc,
.product-card__price,
.detail-info__desc,
.detail-specs__val,
.basket-empty__sub,
.basket-summary__item,
.contact-info__sub,
.contact-detail__val,
.contact-info__value,
.selected-products-placeholder,
.selected-product-name,
.selected-product-meta,
.selected-product-qty,
.enquiry-info-card p,
.enquiry-steps li,
.enquiry-steps li p {
  font-size: 0.96rem;
}

.section-subtitle,
.about-intro__text p,
.about-text p,
.about-value-card p,
.about-process__step p,
.faq-item p,
.products-count,
.sidebar__item,
.product-card__desc,
.detail-info__desc,
.detail-specs__val,
.basket-empty__sub,
.basket-summary__item,
.contact-info__sub,
.contact-detail__val,
.contact-info__value,
.selected-products-placeholder,
.selected-product-meta,
.selected-product-qty,
.enquiry-info-card p,
.enquiry-steps li p {
  color: var(--ink-muted);
}

.section-eyebrow,
.section-tag,
.product-card__category,
.detail-info__category,
.detail-features__title,
.basket-item__category,
.sidebar__heading,
.footer-col__heading,
.contact-detail__label,
.contact-info__label,
.form-group label {
  font-size: 0.8rem;
  letter-spacing: 0.11em;
}

.product-card__name {
  font-size: 1.12rem;
  line-height: 1.36;
}

.product-card__price,
.detail-info__price,
.basket-summary__total,
.contact-info__value,
.contact-detail__val,
.selected-product-name {
  color: var(--ink-soft);
}

.product-card__price,
.detail-info__price {
  font-size: 0.9rem;
}

.btn,
.btn-cta,
.btn-card-view,
.btn-card-enquiry,
.btn-submit-enquiry,
.btn-continue-browsing,
.btn-remove,
.btn-view-basket,
.newsletter-form button {
  font-size: 0.9rem;
}

.btn-card-view,
.btn-card-enquiry,
.btn-continue-browsing,
.newsletter-form button {
  font-weight: 600;
}

.footer-brand p,
.footer-col ul a,
.footer-contact-item {
  font-size: 0.92rem;
  color: rgba(243, 236, 228, 0.84);
}

.footer-col ul a:hover,
.enquiry-info-card__link:hover {
  color: var(--text-on-dark);
}

.footer-social-link {
  color: rgba(243, 236, 228, 0.84);
  font-size: 0.9rem;
}

.footer-contact-item > div > div:first-child {
  color: rgba(243, 236, 228, 0.72) !important;
  font-size: 0.78rem !important;
}

.footer-bottom {
  font-size: 0.84rem;
  color: rgba(243, 236, 228, 0.7);
}

.newsletter-form input {
  font-size: 0.9rem;
  color: var(--text-on-dark);
}

.newsletter-form input::placeholder {
  color: rgba(243, 236, 228, 0.62);
}

.newsletter-form button {
  font-size: 0.86rem;
}

.page-hero__sub {
  color: rgba(255,255,255,0.8);
}

.breadcrumb,
.page-hero__breadcrumb {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.72);
}

.breadcrumb a,
.page-hero__breadcrumb a {
  color: rgba(255,255,255,0.84);
}

.breadcrumb span:last-child,
.page-hero__breadcrumb span {
  color: rgba(255,255,255,0.58);
}

.detail-info__sku,
.basket-item__sku,
.basket-item__qty label,
.selected-product-meta {
  font-size: 0.84rem;
  color: var(--ink-muted);
}

.detail-features li,
.basket-summary__item,
.sidebar__item,
.sort-select,
.qty-input,
.btn-view-basket,
.btn-remove,
.contact-quick-link,
.contact-info__value,
.enquiry-info-card__link {
  font-size: 0.94rem;
}

.detail-specs__key,
.sort-select,
.contact-info__value,
.contact-detail__val {
  color: var(--ink-soft);
}

.form-group input,
.form-group select,
.form-group textarea {
  font-size: 0.98rem;
  color: var(--ink-soft);
}

.form-group label {
  color: var(--ink-soft);
}

.form-hint,
.form-error {
  font-size: 0.82rem;
}

.contact-info__title,
.enquiry-form-card__header h2,
.contact-form-card__header h2 {
  line-height: 1.2;
}

@media (max-width: 768px) {
  .section-title {
    font-size: clamp(1.7rem, 8vw, 2.25rem);
  }

  .section-subtitle,
  .page-hero__sub,
  .about-intro__text p,
  .about-text p,
  .about-value-card p,
  .about-process__step p,
  .faq-item p,
  .products-count,
  .sidebar__item,
  .product-card__desc,
  .product-card__price,
  .detail-info__desc,
  .detail-features li,
  .detail-specs__val,
  .contact-info__sub,
  .contact-detail__val,
  .contact-info__value,
  .footer-brand p,
  .footer-col ul a,
  .footer-contact-item,
  .selected-products-placeholder,
  .selected-product-name,
  .selected-product-meta,
  .selected-product-qty,
  .enquiry-info-card p,
  .enquiry-steps li,
  .enquiry-steps li p,
  .form-group input,
  .form-group select,
  .form-group textarea {
    font-size: 0.98rem;
  }

  .section-eyebrow,
  .section-tag,
  .product-card__category,
  .detail-info__category,
  .detail-features__title,
  .basket-item__category,
  .sidebar__heading,
  .footer-col__heading,
  .contact-detail__label,
  .contact-info__label,
  .form-group label {
    font-size: 0.78rem;
  }

  .product-card__name,
  .basket-item__name {
    font-size: 1.08rem;
  }

  .btn,
  .btn-cta,
  .btn-card-view,
  .btn-card-enquiry,
  .btn-submit-enquiry,
  .btn-continue-browsing,
  .btn-remove,
  .btn-view-basket {
    font-size: 0.9rem;
  }

  .footer-bottom {
    font-size: 0.82rem;
  }
}

/* Client-approved palette update */
:root {
  --color-header-bg: #FFFFFF;
  --color-header-text: #111111;
  --color-page-bg: #282828;
  --color-surface: #303030;
  --color-surface-alt: #333333;
  --color-accent: #CBA050;
  --color-accent-hover: #B79147;
  --color-accent-soft: #DFC17F;
  --color-text-main: #F5F2EA;
  --color-text-secondary: #D6D0C4;
  --color-border-dark: #444444;
  --color-footer-bg: #1A1A1A;
  --color-footer-text: #F5F2EA;
  --color-danger: #D96B5E;

  --cream: var(--color-page-bg);
  --cream-dark: var(--color-surface-alt);
  --copper: var(--color-accent);
  --copper-dark: var(--color-accent-hover);
  --copper-light: var(--color-accent-soft);
  --gold: var(--color-accent);
  --gold-light: var(--color-accent-soft);
  --white: var(--color-surface);
  --border: var(--color-border-dark);
  --ink-soft: var(--color-text-main);
  --ink-muted: var(--color-text-secondary);
  --text-on-dark: var(--color-footer-text);
}

body,
.scroll-section,
.products-page,
.basket-page,
.enquiry-page,
.about-section,
.about-intro,
.about-process,
.contact-section,
.enquiry-form-section,
.detail-section {
  background: var(--color-page-bg);
  color: var(--color-text-main);
}

.category-section,
.related-section,
.about-values,
.contact-faq,
.testimonials-section {
  background: var(--color-surface-alt);
}

.testimonials-section {
  border-top-color: var(--color-border-dark);
}

.trust-strip,
.cta-section,
.page-hero,
.page-hero--about,
.enquiry-info-card--hours,
.toast {
  background: linear-gradient(135deg, var(--color-footer-bg) 0%, var(--color-page-bg) 55%, var(--color-surface) 100%);
}

.toast {
  color: var(--color-text-main);
  border-left-color: var(--color-accent);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.28);
}

.announcement-bar,
.site-header {
  background: var(--color-header-bg) !important;
}

.announcement-bar {
  color: var(--color-header-text);
  border-bottom-color: rgba(17, 17, 17, 0.08);
}

.announcement-bar__item {
  color: var(--color-header-text);
}

.announcement-bar__sep {
  background: var(--color-accent);
  opacity: 1;
}

.site-header {
  border-bottom-color: rgba(17, 17, 17, 0.08);
}

.site-header.scrolled {
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.12);
}

.site-header__nav-row {
  border-top-color: rgba(17, 17, 17, 0.08);
}

.logo__text,
.logo__text--brand,
.logo__text--mobile,
.nav-link,
.mega-menu a,
.header-btn,
.hamburger,
.hamburger span {
  color: var(--color-header-text);
}

.logo__mark {
  background: linear-gradient(135deg, var(--color-accent), var(--color-accent-soft));
  color: var(--color-header-text);
}

.nav-link,
.nav-link:hover,
.nav-link.active {
  color: var(--color-header-text);
}

.nav-link::after {
  background: var(--color-accent);
}

.nav-link:hover,
.nav-link.active,
.nav-link--secondary,
.view-all-link,
.breadcrumb a:hover,
.page-hero__breadcrumb a:hover,
.sidebar__item:hover,
.sidebar__item.active,
.category-tab:hover,
.category-tab.active,
a.contact-info__value:hover,
.contact-info__value:hover {
  color: var(--color-accent);
}

.header-btn:hover,
.header-btn.is-active {
  background: rgba(203, 160, 80, 0.12);
  border-color: rgba(203, 160, 80, 0.3);
  color: var(--color-accent);
}

.basket-count,
.floating-action__badge {
  background: var(--color-accent);
  color: var(--color-header-text);
}

.mega-menu {
  background: var(--color-header-bg);
  border-color: rgba(17, 17, 17, 0.1);
}

.mega-menu a:hover {
  background: rgba(203, 160, 80, 0.08);
  color: var(--color-accent);
}

.mobile-menu,
.mobile-menu__header,
.mobile-sub {
  background: var(--color-surface);
}

.mobile-menu__header,
.mobile-utility-btn,
.mobile-menu__utility {
  border-color: var(--color-border-dark);
}

.mobile-nav-link,
.mobile-sub a,
.mobile-utility-btn,
.mobile-utility-btn span {
  color: var(--color-text-main);
}

.mobile-nav-link:hover,
.mobile-nav-link.nav-link--active,
.mobile-utility-btn:hover,
.mobile-utility-btn.is-active {
  background: rgba(203, 160, 80, 0.12);
  border-color: rgba(203, 160, 80, 0.28);
  color: var(--color-accent);
}

.search-overlay {
  background: rgba(8, 8, 8, 0.76);
}

.search-box,
#search-results,
.product-card,
.basket-empty,
.basket-item,
.basket-summary,
.enquiry-form-card,
.contact-form-card,
.enquiry-success,
.value-card,
.about-badge,
.about-process__step,
.faq-item,
.about-value-card,
.sidebar,
.mobile-utility-btn,
.testimonials-trust__item,
.testimonial-card,
.contact-map-placeholder,
.selected-products-list {
  background: var(--color-surface);
  border-color: var(--color-border-dark);
  color: var(--color-text-main);
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.18);
}

.enquiry-info-card,
.scroll-section--showcase .scroll-track-wrap--showcase,
.testimonials-shell,
.faq-item,
.about-value-card,
.about-process__step,
.search-box input,
.product-card__image-wrap,
.basket-item__image,
.contact-detail__icon,
.contact-info__icon,
.about-image,
.about-intro__img-wrap,
.about-intro__img-placeholder,
.contact-map-placeholder__inner,
.enquiry-success__ref,
.detail-main-image,
.detail-thumb,
.selected-products-list,
.enquiry-info-card--steps {
  background: var(--color-surface-alt);
  border-color: var(--color-border-dark);
}

.scroll-section--showcase .scroll-track-wrap--showcase {
  box-shadow: none;
}

.product-card__placeholder {
  background:
    radial-gradient(circle at 28% 18%, rgba(255, 255, 255, 0.08), transparent 34%),
    linear-gradient(150deg, var(--placeholder-top, #40382f) 0%, var(--placeholder-bottom, #241f1a) 100%);
  color: var(--color-text-main);
}

.product-card__placeholder::after {
  border-color: rgba(203, 160, 80, 0.26);
}

.product-card__placeholder-halo {
  background: radial-gradient(circle, rgba(203, 160, 80, 0.22) 0%, rgba(203, 160, 80, 0.05) 58%, transparent 72%);
}

.product-card__placeholder-arch {
  border-color: rgba(245, 242, 234, 0.14);
}

.product-card__placeholder-plinth {
  background: linear-gradient(90deg, transparent, rgba(203, 160, 80, 0.38), transparent);
}

.product-card__placeholder-series {
  color: rgba(245, 242, 234, 0.72);
}

.product-card__placeholder-code {
  color: var(--color-accent-soft);
  text-shadow: 0 10px 18px rgba(0, 0, 0, 0.24);
}

.product-card__placeholder-sku {
  color: rgba(214, 208, 196, 0.74);
}

.product-card__placeholder--all,
.product-card__placeholder--divine,
.product-card__placeholder--monuments,
.product-card__placeholder--leaders,
.product-card__placeholder--float,
.product-card__placeholder--car-dash,
.product-card__placeholder--pride,
.product-card__placeholder--movie,
.product-card__placeholder--life-size {
  --placeholder-top: #3E372E;
  --placeholder-bottom: #231F1A;
}

.testimonial-card__text,
.basket-item__name,
.product-card__name,
.detail-info__title,
.about-value-card h3,
.about-process__step h4,
.faq-item h4,
.contact-form-card__header h2,
.enquiry-form-card__header h2,
.contact-info__title,
.testimonial-card__name {
  color: var(--color-text-main);
}

.section-title,
.section-title--light,
.page-hero__title,
.about-intro__heading,
.basket-summary__title,
.basket-empty__title,
.enquiry-success h2,
.contact-success h3,
.detail-features__title,
.detail-info__price,
.product-card__price,
.testimonials-trust__value,
.stat-number,
.stat-num,
.about-badge__num {
  color: var(--color-accent);
}

.section-eyebrow,
.section-tag,
.product-card__category,
.detail-info__category,
.basket-item__category,
.sidebar__heading,
.footer-col__heading,
.contact-detail__label,
.contact-info__label,
.form-group label,
.testimonial-card__product,
.testimonials-trust__label,
.trust-item__label,
.enquiry-info-item__label,
.enquiry-step__num {
  color: var(--color-accent);
}

.section-subtitle,
.page-hero__sub,
.cta-section p,
.about-intro__text p,
.about-text p,
.about-value-card p,
.about-process__step p,
.faq-item p,
.products-count,
.product-card__desc,
.detail-info__desc,
.detail-specs__val,
.basket-empty__sub,
.basket-summary__item,
.contact-info__sub,
.contact-map-placeholder__inner,
.selected-products-placeholder,
.selected-product-meta,
.selected-product-qty,
.enquiry-info-card p,
.enquiry-steps li p,
.footer-brand p,
.footer-col ul a,
.footer-contact-item,
.testimonial-card__city,
.trust-item__sub,
.newsletter-form input::placeholder,
.form-hint {
  color: var(--color-text-secondary);
}

.detail-info__sku,
.basket-item__sku,
.basket-item__qty label,
.selected-products-placeholder a,
.detail-specs__key,
.products-count strong,
.enquiry-info-card__link,
.testimonial-card__stars,
.contact-quick-link,
.view-all-link,
.page-hero__breadcrumb a,
.breadcrumb a {
  color: var(--color-accent);
}

.breadcrumb,
.page-hero__breadcrumb,
.breadcrumb span:last-child,
.page-hero__breadcrumb span {
  color: var(--color-text-secondary);
}

.trust-strip,
.trust-item,
.footer-grid,
.footer-bottom,
.product-card,
.basket-item,
.basket-summary,
.enquiry-form-card,
.contact-form-card,
.enquiry-success,
.faq-item,
.about-value-card,
.about-process__step,
.sidebar,
.testimonials-trust__item,
.testimonial-card,
.contact-info__block,
.contact-form-card__header,
.enquiry-form-card__header,
.selected-product-row,
.detail-specs__row {
  border-color: var(--color-border-dark);
}

.sidebar__item,
.sort-select,
.qty-input,
.form-group input,
.form-group select,
.form-group textarea,
#products-search-input,
.search-box input,
.newsletter-form input {
  background: var(--color-surface-alt) !important;
  color: var(--color-text-main);
  border-color: var(--color-border-dark);
}

.sidebar__item,
.sort-select,
.qty-input,
.form-group input,
.form-group select,
.form-group textarea,
#products-search-input,
.search-box input {
  box-shadow: none;
}

.sort-select::placeholder,
.qty-input::placeholder,
.form-group input::placeholder,
.form-group select::placeholder,
.form-group textarea::placeholder,
#products-search-input::placeholder,
.search-box input::placeholder {
  color: var(--color-text-secondary);
}

.selected-product-name,
.contact-info__value,
.contact-detail__val {
  color: var(--color-text-main);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus,
#products-search-input:focus,
.search-box input:focus,
.sort-select:focus,
.qty-input:focus,
.newsletter-form input:focus {
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(203, 160, 80, 0.14);
}

.detail-thumb.active,
.category-tab,
.category-tab.active,
.category-tab:hover {
  border-color: var(--color-accent);
}

.category-tabs {
  border-bottom-color: var(--color-border-dark);
}

.category-tab,
.sidebar__item,
.testimonials-trust__label {
  color: var(--color-text-secondary);
}

.btn-cta,
.btn-card-enquiry,
.btn-add-enquiry,
.btn-submit-enquiry,
.btn--primary,
.btn-search-submit,
.contact-quick-link--enquiry,
.newsletter-form button,
.floating-action--basket {
  background: var(--color-accent);
  color: var(--color-header-text);
  border: 1px solid transparent;
  box-shadow: 0 10px 24px rgba(203, 160, 80, 0.22);
}

.btn-cta:hover,
.btn-card-enquiry:hover,
.btn-add-enquiry:hover,
.btn-submit-enquiry:hover,
.btn--primary:hover,
.btn-search-submit:hover,
.contact-quick-link--enquiry:hover,
.newsletter-form button:hover,
.floating-action--basket:hover {
  background: var(--color-accent-hover);
  color: var(--color-header-text);
}

.btn-card-enquiry.added,
.btn-add-enquiry.added {
  background: rgba(203, 160, 80, 0.12);
  color: var(--color-accent);
  border: 1px solid var(--color-accent);
  box-shadow: none;
}

.btn-card-view,
.btn-view-basket,
.btn-continue-browsing,
.btn-remove,
.btn--outline {
  background: transparent;
  color: var(--color-accent);
  border-color: var(--color-accent);
}

.btn-card-view:hover,
.btn-view-basket:hover,
.btn-continue-browsing:hover,
.btn-remove:hover,
.btn--outline:hover {
  background: rgba(203, 160, 80, 0.1);
  color: var(--color-accent);
  border-color: var(--color-accent);
}

.contact-quick-link--wa,
.floating-action--whatsapp {
  color: #FFFFFF;
}

.footer-brand .logo__text,
.site-footer .logo__text {
  color: var(--color-footer-text) !important;
}

.site-footer {
  background: var(--color-footer-bg);
  color: var(--color-footer-text);
}

.footer-grid {
  border-bottom-color: var(--color-border-dark);
}

.footer-bottom {
  color: rgba(245, 242, 234, 0.72);
}

.footer-col ul a:hover,
.footer-social-link:hover,
.enquiry-info-card__link:hover {
  color: var(--color-accent);
}

.footer-social-link {
  color: rgba(245, 242, 234, 0.84);
  border-color: rgba(245, 242, 234, 0.14);
}

.footer-link--disabled {
  font-size: 0.92rem;
  color: var(--color-text-secondary);
}

.footer-social-link:hover {
  background: rgba(203, 160, 80, 0.12);
  border-color: var(--color-accent);
}

.newsletter-form input {
  color: var(--color-footer-text);
}

.selected-products-list.is-invalid,
.form-group.has-error input,
.form-group.has-error select,
.form-group.has-error textarea,
.form-group input.is-invalid,
.form-group select.is-invalid,
.form-group textarea.is-invalid {
  border-color: var(--color-danger);
}

.form-error {
  color: var(--color-danger);
}

.form-status {
  background: rgba(217, 107, 94, 0.1);
  color: var(--color-text-main);
  border: 1px solid rgba(217, 107, 94, 0.32);
}

.basket-page button[onclick*='clearBasket'] {
  color: var(--color-accent) !important;
}

.contact-map-placeholder,
.about-intro__img-wrap,
.about-intro__img-placeholder,
.detail-main-image,
.detail-thumb,
.basket-item__image,
.contact-detail__icon,
.contact-info__icon,
.selected-product-icon {
  color: var(--color-accent-soft);
}

/* Ribbon and homepage long-scroll hero update */
.announcement-bar {
  background: #4A4A4A !important;
  color: #F5F2EA;
  border-bottom-color: rgba(245, 242, 234, 0.14);
}

.announcement-bar__item {
  color: #F5F2EA;
}

.announcement-bar__sep {
  background: var(--color-accent);
  opacity: 0.9;
}

/* Homepage lower light-theme override */
body > .testimonials-section {
  background: linear-gradient(180deg, #ffffff 0%, #f8f5ef 100%);
  border-top: 1px solid #e3d8c8;
}

body > .testimonials-section .testimonials-shell {
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid #e3d8c8;
  box-shadow: 0 28px 56px rgba(31, 31, 31, 0.08);
}

body > .testimonials-section .section-title,
body > .cta-section .section-title {
  color: #cba050;
}

body > .testimonials-section .section-subtitle,
body > .cta-section p {
  color: #555555;
}

body > .testimonials-section .testimonials-trust__item,
body > .testimonials-section .testimonial-card {
  background: #ffffff;
  border: 1px solid #e3d8c8;
  box-shadow: 0 18px 36px rgba(31, 31, 31, 0.06);
}

body > .testimonials-section .trust-point,
body > .testimonials-section .testimonial-card__text,
body > .testimonials-section .testimonial-card__name {
  color: #282828;
}

body > .testimonials-section .testimonial-card__city {
  color: #555555;
}

body > .cta-section {
  background: linear-gradient(180deg, #f8f5ef 0%, #ffffff 100%);
  border-top: 1px solid #e3d8c8;
}

body > .cta-section::before {
  background-image: radial-gradient(circle at 20% 28%, rgba(203, 160, 80, 0.12) 0%, transparent 42%),
                    radial-gradient(circle at 78% 68%, rgba(203, 160, 80, 0.08) 0%, transparent 38%);
}

/* Products page layout refinement */
.products-page .products-layout {
  display: block;
}

.products-page .products-main {
  width: min(1320px, 100%);
  margin-inline: auto;
}

.products-page .products-toolbar {
  margin-bottom: 32px;
}

.products-page .product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
  max-width: none;
  align-items: stretch;
}

.products-page .product-card--catalogue {
  width: 100%;
  min-width: 0;
}

.products-page .product-card--catalogue .product-card__image-wrap {
  aspect-ratio: 0.9;
  min-height: 420px;
}

.products-page .product-card--catalogue .product-card__body {
  padding: 24px 24px 26px;
}

.products-page .product-card--catalogue .product-card__name {
  font-size: clamp(1.16rem, 1.4vw, 1.34rem);
}

.products-page .product-card--catalogue .product-card__footer {
  margin-top: auto;
}

@media (max-width: 1024px) {
  .products-page .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
  }

  .products-page .product-card--catalogue .product-card__image-wrap {
    min-height: 360px;
  }
}

@media (max-width: 640px) {
  .products-page .products-main {
    width: 100%;
  }

  .products-page .product-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .products-page .product-card--catalogue .product-card__image-wrap {
    min-height: 320px;
  }
}

/* Public footer light theme override */
.site-footer {
  background: #ffffff;
  color: #282828;
  border-top: 1px solid #e3d8c8;
}

.site-footer .logo__text,
.site-footer .logo__text--brand,
.site-footer .logo__text--mobile,
.footer-brand .logo__text {
  color: #282828 !important;
}

.site-footer .footer-grid {
  border-bottom: 1px solid #e3d8c8;
}

.site-footer .footer-col__heading {
  color: #cba050;
}

.site-footer .footer-contact--legacy {
  display: none !important;
}

.site-footer .footer-brand p,
.site-footer .footer-contact-item,
.site-footer .footer-contact-item > div,
.site-footer .footer-link--disabled {
  color: #555555;
}

.site-footer .footer-brand p,
.site-footer .footer-contact-item,
.site-footer .footer-bottom {
  color: #555555;
}

.site-footer .footer-col ul a {
  color: #282828;
}

.site-footer .footer-col ul a:hover {
  color: #cba050;
}

.site-footer .footer-contact-item svg {
  color: #cba050;
}

.site-footer .footer-contact-item > div > div:first-child {
  color: #555555 !important;
}

.site-footer .footer-contact-item > div > div:last-child {
  color: #282828;
}

.site-footer .footer-social-link {
  display: inline-flex;
  color: #282828;
  border-color: #e3d8c8;
  background: #f8f5ef;
}

.site-footer .footer-social-link--disabled {
  opacity: 1;
  pointer-events: none;
  cursor: default;
}

.site-footer .footer-social-link:hover {
  color: #111111;
  background: #cba050;
  border-color: #cba050;
}

.site-footer .footer-bottom {
  background: #ffffff;
  color: #555555;
  border-top: 1px solid #e3d8c8;
  box-shadow: none;
}

.site-footer .newsletter-form input {
  background: #ffffff;
  color: #282828;
  border: 1px solid #e3d8c8;
}

.site-footer .newsletter-form input::placeholder {
  color: #555555;
}

.site-footer .newsletter-form input:focus {
  border-color: #cba050;
  box-shadow: 0 0 0 3px rgba(203, 160, 80, 0.14);
}

/* Luxury product listing cards */
.product-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(24px, 2vw, 34px);
  max-width: none;
}

.scroll-section--showcase .scroll-track--showcase {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(24px, 2vw, 34px);
}

.product-card {
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  overflow: visible;
}

.product-card:hover {
  box-shadow: none;
  transform: none;
}

.product-card__image-link,
.product-card__name-link {
  display: block;
  color: inherit;
  text-decoration: none;
}

.product-card__image-wrap {
  aspect-ratio: 0.82;
  background: linear-gradient(180deg, rgba(248, 245, 239, 0.98) 0%, rgba(232, 220, 203, 0.98) 100%);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.18);
  transition: transform var(--transition), box-shadow var(--transition);
}

.product-card__image-link:hover .product-card__image-wrap,
.product-card__image-link:focus-visible .product-card__image-wrap {
  transform: translateY(-3px);
  box-shadow: 0 24px 42px rgba(0, 0, 0, 0.22);
}

.product-card__badge,
.product-card__category,
.product-card__desc,
.product-card__price,
.btn-card-view,
.product-card__placeholder-content {
  display: none !important;
}

.product-card__placeholder,
.product-card__image {
  inset: 0 !important;
  border-radius: 28px !important;
}

.product-card__placeholder::after {
  content: none;
}

.product-card__placeholder-halo {
  top: 18%;
  width: 68%;
  height: 68%;
}

.product-card__placeholder-arch {
  top: 18%;
  width: 58%;
  height: 56%;
  opacity: 0.42;
}

.product-card__placeholder-plinth {
  left: 18%;
  right: 18%;
  bottom: 21%;
}

.product-card__body {
  padding: 16px 0 0;
  gap: 8px;
}

.product-card__name {
  margin: 0;
  min-height: 0;
  font-size: clamp(1rem, 1.25vw, 1.18rem);
  line-height: 1.35;
}

.product-card__name-link:hover .product-card__name,
.product-card__name-link:focus-visible .product-card__name {
  color: var(--color-accent);
}

.product-card__footer {
  margin-top: 0;
  gap: 0;
}

.product-card .btn-card-enquiry {
  justify-content: flex-start;
  min-height: 0;
  padding: 0;
  background: none;
  border: 0;
  box-shadow: none;
  color: var(--color-accent);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: none;
}

.product-card .btn-card-enquiry:hover {
  background: none;
  color: var(--color-accent-soft);
}

.product-card .btn-card-enquiry.added {
  background: none;
  border: 0;
  box-shadow: none;
  color: var(--color-text-secondary);
}

.scroll-section--showcase .scroll-track--showcase .product-card--showcase,
.product-card--catalogue {
  border-radius: 0;
  box-shadow: none;
}

.scroll-section--showcase .scroll-track--showcase .product-card--showcase .product-card__image-wrap {
  aspect-ratio: 0.78;
}

.scroll-section--showcase .scroll-track--showcase .product-card--showcase .product-card__placeholder,
.scroll-section--showcase .scroll-track--showcase .product-card--showcase .product-card__image,
.product-card--catalogue .product-card__placeholder,
.product-card--catalogue .product-card__image {
  inset: 0;
  border-radius: 28px;
}

.scroll-section--showcase .scroll-track--showcase .product-card--showcase .product-card__placeholder::after,
.product-card--catalogue .product-card__placeholder::after {
  content: none;
}

.scroll-section--showcase .scroll-track--showcase .product-card--showcase .product-card__body,
.product-card--catalogue .product-card__body {
  padding: 16px 0 0;
  gap: 8px;
}

.product-card--catalogue .product-card__image-wrap,
.related-section .product-card__image-wrap,
.category-section .product-card__image-wrap {
  aspect-ratio: 0.84;
}

.scroll-section--showcase .scroll-track--showcase .product-card--showcase .product-card__footer,
.product-card--catalogue .product-card__footer {
  margin-top: 0;
  gap: 0;
}

.scroll-section--showcase .scroll-track--showcase .product-card--showcase .btn-card-enquiry {
  min-height: 0;
  padding: 0;
  border-radius: 0;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
}

.scroll-section--showcase .scroll-track--showcase .product-card--showcase .btn-card-view {
  border-radius: 0;
}

@media (max-width: 1024px) {
  .product-grid,
  .scroll-section--showcase .scroll-track--showcase,
  .products-page .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
  }

  .products-page .product-card--catalogue .product-card__image-wrap {
    min-height: 360px;
  }
}

@media (max-width: 768px) {
  .product-grid,
  .scroll-section--showcase .scroll-track--showcase {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .product-grid,
  .scroll-section--showcase .scroll-track--showcase,
  .products-page .product-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .product-card__image-wrap,
  .product-card--catalogue .product-card__image-wrap,
  .scroll-section--showcase .scroll-track--showcase .product-card--showcase .product-card__image-wrap {
    aspect-ratio: 0.92;
    min-height: 320px;
  }

  .product-card__body {
    padding-top: 14px;
  }
}

/* Homepage grey background unification */
body > .scroll-section.scroll-section--showcase,
body > .category-section {
  background: #282828;
}

body > .scroll-section.scroll-section--showcase .scroll-track-wrap--showcase {
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  padding: 0;
}

/* Public typography refresh */
:root {
  --font-serif: "Inter", "Montserrat", "Helvetica Neue", Arial, sans-serif;
  --font-sans: "Inter", "Montserrat", "Helvetica Neue", Arial, sans-serif;
}

body,
input,
select,
textarea,
button {
  font-family: var(--font-sans);
}

body {
  font-size: 16px;
  line-height: 1.65;
  letter-spacing: 0.01em;
}

.logo__text,
.logo__text--brand,
.logo__text--mobile,
.section-title,
.section-title--light,
.page-hero__title,
.detail-info__title,
.about-intro__heading,
.basket-summary__title,
.basket-empty__title,
.contact-info__title,
.contact-form-card__header h2,
.enquiry-form-card__header h2,
.enquiry-success h2,
.contact-success h3 {
  font-family: var(--font-sans);
}

.section-title,
.section-title--light,
.page-hero__title,
.detail-info__title,
.about-intro__heading,
.basket-summary__title,
.basket-empty__title,
.contact-info__title,
.contact-form-card__header h2,
.enquiry-form-card__header h2,
.enquiry-success h2,
.contact-success h3 {
  font-size: clamp(2.125rem, 4vw, 2.875rem);
  font-weight: 800;
  letter-spacing: 0.01em;
  line-height: 1.18;
}

.section-subtitle,
.page-hero__sub,
.about-intro__text p,
.about-text p,
.about-value-card p,
.about-process__step p,
.faq-item p,
.product-card__desc,
.detail-info__desc,
.detail-specs__val,
.products-count,
.footer-brand p,
.footer-col ul a,
.footer-contact-item,
.testimonial-card__text,
.testimonial-card__city,
.contact-info__sub,
.contact-detail__val,
.selected-product-meta,
.selected-product-qty,
.enquiry-info-card p,
.enquiry-steps li p,
.basket-summary__item,
.basket-empty__sub {
  font-size: 1rem;
  line-height: 1.72;
}

.section-eyebrow,
.section-tag,
.detail-info__category,
.detail-features__title,
.sidebar__heading,
.footer-col__heading,
.contact-detail__label,
.contact-info__label,
.form-group label,
.testimonial-card__product,
.testimonials-trust__label,
.trust-item__label,
.enquiry-info-item__label,
.enquiry-step__num,
.detail-info__sku,
.basket-item__sku,
.products-count,
.breadcrumb,
.page-hero__breadcrumb {
  font-size: 0.8125rem;
  font-weight: 700;
}

.main-nav a,
.nav-link,
.site-nav a,
.header-menu a {
  font-size: clamp(0.9rem, 0.84rem + 0.18vw, 0.96rem);
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-list {
  gap: 14px;
}

.nav-link {
  padding: 15px 0 14px;
}

.mega-menu a {
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.mobile-nav-link {
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-card__name {
  font-family: var(--font-sans);
  font-size: clamp(1.06rem, 1.2vw, 1.12rem);
  font-weight: 700;
  line-height: 1.4;
}

.product-card .btn-card-enquiry,
.btn-cta,
.btn-add-enquiry,
.btn-submit-enquiry,
.btn-view-basket,
.btn-continue-browsing,
.btn-remove,
.btn--primary,
.btn--outline,
.newsletter-form button {
  font-size: 0.93rem;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.footer-brand p,
.footer-col ul a,
.footer-contact-item,
.footer-bottom {
  font-size: 0.95rem;
}

@media (max-width: 1200px) {
  .nav-list {
    gap: 10px;
  }

  .nav-link {
    font-size: 0.88rem;
    letter-spacing: 0.06em;
  }
}

@media (max-width: 1080px) {
  .nav-list {
    gap: 8px;
  }

  .nav-link {
    font-size: 0.84rem;
    letter-spacing: 0.05em;
  }
}

@media (max-width: 768px) {
  .section-title,
  .section-title--light,
  .page-hero__title,
  .detail-info__title,
  .about-intro__heading,
  .basket-summary__title,
  .basket-empty__title,
  .contact-info__title,
  .contact-form-card__header h2,
  .enquiry-form-card__header h2,
  .enquiry-success h2,
  .contact-success h3 {
    font-size: clamp(1.75rem, 8vw, 2.125rem);
  }

  .mobile-nav-link {
    font-size: 0.92rem;
    letter-spacing: 0.07em;
  }
}

/* Product catalogue image containment */
.product-card__placeholder.is-hidden {
  display: none;
}

.product-card,
.product-card--catalogue,
.scroll-section--showcase .scroll-track--showcase .product-card--showcase {
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  overflow: visible;
}

.product-card__image-wrap,
.product-card--catalogue .product-card__image-wrap,
.related-section .product-card__image-wrap,
.category-section .product-card__image-wrap,
.scroll-section--showcase .scroll-track--showcase .product-card--showcase .product-card__image-wrap,
.products-page .product-card--catalogue .product-card__image-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: auto;
  height: clamp(320px, 32vw, 420px);
  min-height: 320px;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  overflow: visible;
}

.product-card__image-link:hover .product-card__image-wrap,
.product-card__image-link:focus-visible .product-card__image-wrap {
  transform: none;
  box-shadow: none;
}

.product-card__image,
.product-card--catalogue .product-card__image,
.related-section .product-card__image,
.category-section .product-card__image,
.scroll-section--showcase .scroll-track--showcase .product-card--showcase .product-card__image {
  position: relative;
  inset: auto !important;
  display: block;
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: center center;
  background: transparent;
  border-radius: 0 !important;
  transform: none !important;
  filter: none !important;
}

.product-card:hover .product-card__image,
.scroll-section--showcase .scroll-track--showcase .product-card--showcase:hover .product-card__image {
  transform: none !important;
  filter: none !important;
}

.product-card__placeholder,
.product-card--catalogue .product-card__placeholder,
.scroll-section--showcase .scroll-track--showcase .product-card--showcase .product-card__placeholder {
  border-radius: 0 !important;
}

@media (max-width: 1024px) {
  .product-card__image-wrap,
  .product-card--catalogue .product-card__image-wrap,
  .related-section .product-card__image-wrap,
  .category-section .product-card__image-wrap,
  .scroll-section--showcase .scroll-track--showcase .product-card--showcase .product-card__image-wrap,
  .products-page .product-card--catalogue .product-card__image-wrap {
    height: clamp(280px, 40vw, 360px);
    min-height: 280px;
  }
}

@media (max-width: 640px) {
  .product-card__image-wrap,
  .product-card--catalogue .product-card__image-wrap,
  .related-section .product-card__image-wrap,
  .category-section .product-card__image-wrap,
  .scroll-section--showcase .scroll-track--showcase .product-card--showcase .product-card__image-wrap,
  .products-page .product-card--catalogue .product-card__image-wrap {
    height: clamp(260px, 78vw, 360px);
    min-height: 260px;
  }
}

/* Product detail gallery cleanup */
.detail-gallery {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.detail-main-image {
  aspect-ratio: auto;
  min-height: clamp(360px, 48vw, 620px);
  margin-bottom: 0;
  padding: 0;
  background: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  overflow: visible !important;
}

.detail-main-image img {
  display: block;
  width: 100%;
  height: clamp(360px, 48vw, 620px);
  max-width: 100%;
  max-height: 620px;
  object-fit: contain;
  object-position: center center;
  background: transparent;
}

.detail-thumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 0;
  overflow-x: auto;
  overflow-y: visible;
  padding-bottom: 4px;
  scrollbar-width: thin;
}

.detail-thumbs:empty {
  display: none;
}

.detail-thumb {
  flex: 0 0 88px;
  width: 88px;
  height: 88px;
  padding: 6px;
  background: transparent !important;
  border: 1px solid #e3d8c8;
  border-radius: 16px;
  box-shadow: none !important;
  color: var(--color-accent);
  opacity: 1;
  overflow: visible;
}

.detail-thumb:hover,
.detail-thumb:focus-visible {
  border-color: #cba050;
}

.detail-thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  background: transparent;
}

.detail-thumb.active {
  border-color: #cba050;
  box-shadow: 0 0 0 1px rgba(203, 160, 80, 0.22) !important;
}

@media (max-width: 768px) {
  .detail-main-image {
    min-height: clamp(300px, 74vw, 520px);
  }

  .detail-main-image img {
    height: clamp(300px, 74vw, 520px);
  }

  .detail-thumbs {
    flex-wrap: nowrap;
  }

  .detail-thumb {
    flex-basis: 78px;
    width: 78px;
    height: 78px;
  }
}

/* Frontend white theme conversion */
:root {
  --color-header-bg: #ffffff;
  --color-header-text: #000000;
  --color-page-bg: #ffffff;
  --color-surface: #ffffff;
  --color-surface-alt: #fafafa;
  --color-accent: #111111;
  --color-accent-hover: #2a2a2a;
  --color-accent-soft: #444444;
  --color-text-main: #000000;
  --color-text-secondary: #333333;
  --color-border-dark: #e7e7e7;
  --color-footer-bg: #ffffff;
  --color-footer-text: #000000;
  --cream: #ffffff;
  --cream-dark: #f7f7f7;
  --ink: #000000;
  --ink-soft: #333333;
  --ink-muted: #555555;
  --copper: #111111;
  --copper-dark: #2a2a2a;
  --copper-light: #444444;
  --gold: #111111;
  --gold-light: #444444;
  --white: #ffffff;
  --border: #e7e7e7;
  --shadow: rgba(15, 15, 15, 0.04);
  --shadow-md: rgba(15, 15, 15, 0.08);
  --ink-deep: #000000;
  --text-on-dark: #000000;
}

body {
  background: #ffffff;
  color: #000000;
  color-scheme: light;
}

body,
.scroll-section,
.scroll-section--showcase,
.products-page,
.basket-page,
.enquiry-page,
.about-section,
.about-intro,
.about-values,
.about-process,
.contact-section,
.contact-faq,
.enquiry-form-section,
.detail-section,
.related-section,
.category-section,
.testimonials-section,
.trust-strip,
.cta-section,
.page-hero,
.page-hero--about,
.page-hero--catalogue,
.site-footer,
.stats,
.stats-section,
.home-promo-banner,
body > .scroll-section.scroll-section--showcase,
body > .category-section,
body > .testimonials-section,
body > .cta-section {
  background: #ffffff !important;
}

.trust-strip,
.page-hero,
.testimonials-section,
.cta-section,
.site-footer,
.stats,
.stats-section {
  border-top: 1px solid #f1f1f1;
}

.page-hero,
.site-footer,
.site-footer .footer-bottom {
  border-bottom: 1px solid #e7e7e7;
}

.cta-section::before {
  background-image: none !important;
}

body > .cta-section.cta-section--custom-orders {
  background: #000000 !important;
  border-top: 1px solid #242424 !important;
  text-align: center !important;
}

body > .cta-section.cta-section--custom-orders::before {
  background-image: none !important;
}

body > .cta-section.cta-section--custom-orders .container {
  background: transparent !important;
}

body > .cta-section.cta-section--custom-orders .section-eyebrow {
  color: #D8D8D8 !important;
}

body > .cta-section.cta-section--custom-orders .section-title {
  display: block !important;
  opacity: 1 !important;
  visibility: visible !important;
  color: #FFFFFF !important;
}

body > .cta-section.cta-section--custom-orders p {
  color: #F1F1F1 !important;
}

body > .cta-section.cta-section--custom-orders .btn-cta {
  background: #FFFFFF !important;
  color: #111111 !important;
  border: none !important;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18) !important;
}

body > .cta-section.cta-section--custom-orders .btn-cta:hover {
  background: #F7F7F7 !important;
  color: #111111 !important;
  border: none !important;
}

.product-card__placeholder::after {
  content: none !important;
}

.announcement-bar__track,
.site-header,
.mobile-menu,
.mobile-menu__header,
.mobile-sub,
.mega-menu {
  background: #ffffff !important;
}

.announcement-bar {
  background: #000000 !important;
  color: #ffffff !important;
  border-bottom-color: rgba(255, 255, 255, 0.14) !important;
}

.announcement-bar__track {
  background: transparent !important;
}

.announcement-bar__track span {
  color: #ffffff !important;
}

.announcement-bar__track span:nth-child(even) {
  color: #d0d0d0 !important;
}

.announcement-bar__item {
  color: #ffffff !important;
}

.announcement-bar__sep {
  background: #d6d6d6 !important;
  opacity: 1;
}

.site-header {
  border-bottom-color: #ececec !important;
}

.site-header.scrolled {
  box-shadow: 0 12px 24px rgba(17, 17, 17, 0.06);
}

.site-header__nav-row,
.mobile-menu__header,
.mobile-utility-btn,
.mobile-menu__utility,
.mobile-nav-item,
.mobile-sub a,
.footer-grid,
.footer-bottom,
.trust-item,
.selected-product-row,
.detail-specs__row,
.category-tabs {
  border-color: #e7e7e7 !important;
}

.mobile-overlay,
.search-overlay {
  background: rgba(255, 255, 255, 0.78) !important;
  backdrop-filter: blur(12px);
}

.logo__text,
.logo__text--brand,
.logo__text--mobile,
.logo__text span,
.nav-link,
.mega-menu a,
.header-btn,
.hamburger,
.hamburger span,
.mobile-nav-link,
.mobile-sub a,
.mobile-utility-btn,
.mobile-utility-btn span,
.section-title,
.section-title--light,
.page-hero__title,
.about-intro__heading,
.basket-summary__title,
.basket-empty__title,
.enquiry-success h2,
.contact-success h3,
.detail-info__title,
.detail-features__title,
.detail-info__price,
.product-card__price,
.stat-number,
.stat-num,
.about-badge__num,
.section-eyebrow,
.section-tag,
.product-card__category,
.detail-info__category,
.basket-item__category,
.sidebar__heading,
.footer-col__heading,
.contact-detail__label,
.contact-info__label,
.form-group label,
.testimonial-card__product,
.testimonials-trust__label,
.trust-item__label,
.trust-point,
.stat-item__label,
.stat-label,
.enquiry-info-item__label,
.enquiry-step__num,
.detail-info__sku,
.detail-specs__key,
.basket-item__sku,
.view-all-link,
.page-hero__breadcrumb a,
.breadcrumb a,
.selected-product-name,
.contact-info__value,
.contact-detail__val,
.site-footer .footer-col ul a,
.site-footer .footer-contact-item svg,
.site-footer .footer-contact-item > div > div:first-child,
.section-subtitle,
.page-hero__sub,
.breadcrumb,
.page-hero__breadcrumb,
.breadcrumb span:last-child,
.page-hero__breadcrumb span,
.cta-section p,
.about-intro__text p,
.about-text p,
.about-value-card p,
.about-process__step p,
.faq-item p,
.products-count,
.product-card__desc,
.detail-info__desc,
.detail-specs__val,
.basket-empty__sub,
.basket-summary__item,
.contact-info__sub,
.contact-map-placeholder__inner,
.selected-products-placeholder,
.selected-product-meta,
.selected-product-qty,
.enquiry-info-card p,
.enquiry-steps li p,
.footer-brand p,
.footer-contact-item,
.footer-bottom,
.testimonial-card__city,
.trust-item__sub,
.newsletter-form input::placeholder,
.form-hint,
.site-footer .footer-contact-item > div > div:last-child,
.site-footer .footer-link--disabled,
.site-footer .newsletter-form input::placeholder {
  color: #333333 !important;
}

.header-btn:hover,
.header-btn.is-active,
.mobile-nav-link:hover,
.mobile-nav-link.nav-link--active,
.mobile-utility-btn:hover,
.mobile-utility-btn.is-active,
.sidebar__item:hover,
.sidebar__item.active,
.category-tab:hover,
.category-tab.active,
.mega-menu a:hover {
  background: rgba(17, 17, 17, 0.04) !important;
  color: #000000 !important;
}

.nav-item--all-products {
  margin-left: 8px;
  padding-left: 0;
  border-left: 0;
}

.main-nav .nav-link.nav-link--all-products,
.main-nav .nav-link.nav-link--all-products:hover,
.main-nav .nav-link.nav-link--all-products.active {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  background: #111111;
  color: #ffffff !important;
  border-radius: 4px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.main-nav .nav-link.nav-link--all-products::after {
  content: none;
}

.main-nav .nav-link.nav-link--all-products:hover,
.main-nav .nav-link.nav-link--all-products.active {
  background: #2B2B2B;
}

.mobile-nav-item--all-products {
  border-bottom: 0;
  padding-top: 8px;
}

.mobile-nav-link.mobile-nav-link--all-products,
.mobile-nav-link.mobile-nav-link--all-products:hover,
.mobile-nav-link.mobile-nav-link--all-products.nav-link--active {
  justify-content: center;
  min-height: 46px;
  padding: 0 16px;
  background: #111111 !important;
  color: #ffffff !important;
  border-radius: 6px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

@media (max-width: 1080px) {
  .main-nav .nav-link.nav-link--all-products,
  .main-nav .nav-link.nav-link--all-products:hover,
  .main-nav .nav-link.nav-link--all-products.active {
    padding: 11px 16px;
  }
}

@media (max-width: 768px) {
  .mobile-nav-link.mobile-nav-link--all-products,
  .mobile-nav-link.mobile-nav-link--all-products:hover,
  .mobile-nav-link.mobile-nav-link--all-products.nav-link--active {
    min-height: 44px;
    padding: 0 14px;
    border-radius: 4px;
  }
}

.logo__mark,
.basket-count,
.floating-action__badge {
  background: #111111 !important;
  color: #ffffff !important;
}

.trust-item__icon {
  background: #f5f5f5 !important;
  border-color: #e7e7e7 !important;
  color: #000000 !important;
}

.search-box,
#search-results,
.basket-empty,
.basket-item,
.basket-summary,
.enquiry-form-card,
.contact-form-card,
.enquiry-success,
.value-card,
.about-badge,
.about-process__step,
.faq-item,
.about-value-card,
.sidebar,
.testimonials-shell,
.testimonials-trust__item,
.testimonial-card,
.contact-map-placeholder,
.selected-products-list,
.enquiry-info-card,
.enquiry-info-card--steps,
.mega-menu {
  background: #ffffff !important;
  border-color: #e7e7e7 !important;
  box-shadow: 0 16px 32px rgba(17, 17, 17, 0.06);
  color: #000000;
}

#search-results {
  box-shadow: 0 16px 32px rgba(17, 17, 17, 0.08) !important;
}

.search-box input,
.form-group input,
.form-group select,
.form-group textarea,
#products-search-input,
.newsletter-form input,
.sort-select,
.qty-input,
.sidebar__item,
.contact-detail__icon,
.contact-info__icon,
.about-intro__img-wrap,
.about-intro__img-placeholder,
.contact-map-placeholder__inner,
.selected-products-list,
.enquiry-info-card--hours {
  background: #fafafa !important;
  border-color: #e7e7e7 !important;
  color: #000000 !important;
}

.product-card__image-wrap,
.products-page .product-card--catalogue .product-card__image-wrap,
.related-section .product-card__image-wrap,
.category-section .product-card__image-wrap,
.scroll-section--showcase .scroll-track--showcase .product-card--showcase .product-card__image-wrap,
.detail-main-image,
.detail-thumb,
.basket-item__image {
  background: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  padding: 0 !important;
}

.detail-main-image {
  min-height: 0 !important;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  overflow: visible !important;
}

.detail-main-image img {
  width: 100%;
  height: auto !important;
  max-width: 100%;
  max-height: 620px;
  object-fit: contain;
  object-position: center center;
  background: transparent !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}

.detail-thumb {
  opacity: 0.72;
  transition: opacity var(--transition), transform var(--transition);
}

.detail-thumb:hover,
.detail-thumb:focus-visible {
  opacity: 1;
  transform: translateY(-1px);
}

.product-card__placeholder {
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  color: #000000 !important;
}

.product-card__placeholder-halo {
  display: none !important;
}

.product-card__placeholder-arch {
  border: 0 !important;
}

.product-card__placeholder-plinth {
  display: none !important;
}

.product-card__placeholder-series,
.product-card__placeholder-sku {
  color: #555555 !important;
}

.product-card__placeholder-code {
  color: #000000 !important;
  text-shadow: none !important;
}

.btn-cta,
.btn-add-enquiry,
.btn-submit-enquiry,
.btn--primary,
.btn-search-submit,
.contact-quick-link--enquiry,
.newsletter-form button,
.floating-action--basket {
  background: #111111 !important;
  color: #ffffff !important;
  border-color: #111111 !important;
  box-shadow: 0 10px 22px rgba(17, 17, 17, 0.12) !important;
}

.btn-cta:hover,
.btn-add-enquiry:hover,
.btn-submit-enquiry:hover,
.btn--primary:hover,
.btn-search-submit:hover,
.contact-quick-link--enquiry:hover,
.newsletter-form button:hover,
.floating-action--basket:hover {
  background: #2a2a2a !important;
  color: #ffffff !important;
}

.btn-card-view,
.btn-view-basket,
.btn-continue-browsing,
.btn-remove,
.btn--outline {
  background: #ffffff !important;
  color: #000000 !important;
  border: 1px solid #dddddd !important;
}

.btn-card-view:hover,
.btn-view-basket:hover,
.btn-continue-browsing:hover,
.btn-remove:hover,
.btn--outline:hover {
  background: #f5f5f5 !important;
  color: #000000 !important;
  border-color: #cfcfcf !important;
}

.btn-add-enquiry.added {
  background: #f5f5f5 !important;
  color: #000000 !important;
  border: 1px solid #e7e7e7 !important;
  box-shadow: none !important;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus,
#products-search-input:focus,
.search-box input:focus,
.sort-select:focus,
.qty-input:focus,
.newsletter-form input:focus {
  border-color: #bbbbbb !important;
  box-shadow: 0 0 0 3px rgba(17, 17, 17, 0.06) !important;
}

.detail-thumb.active,
.category-tab,
.category-tab.active,
.category-tab:hover {
  border-color: #111111 !important;
  color: #000000 !important;
}

.detail-thumb.active {
  border-color: transparent !important;
  box-shadow: none !important;
  opacity: 1;
}

.site-footer,
.site-footer .footer-bottom {
  background: #ffffff !important;
  color: #333333 !important;
  box-shadow: none;
}

.footer-social-link {
  background: #ffffff !important;
  color: #000000 !important;
  border-color: #e7e7e7 !important;
}

.footer-social-link:hover {
  background: #f5f5f5 !important;
  color: #000000 !important;
  border-color: #d8d8d8 !important;
}

.stats,
.stats[style] {
  background: #ffffff !important;
}

.trust-strip {
  background: #2b2b2b !important;
  border-top: 0 !important;
}

.trust-item {
  border-right-color: rgba(255, 255, 255, 0.18) !important;
}

.trust-item__label {
  color: #ffffff !important;
}

.trust-item__sub {
  color: #d6d6d6 !important;
}

.trust-item__icon {
  background: #f5f5f5 !important;
  border-color: rgba(255, 255, 255, 0.14) !important;
  color: #111111 !important;
}

.basket-item__image,
.selected-product-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
}

.basket-item__image img,
.selected-product-icon img {
  display: block;
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: center center;
}

.basket-item__image span,
.selected-product-icon span {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #000000;
}

.selected-product-icon {
  width: 52px;
  height: 52px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  opacity: 1 !important;
  color: #000000 !important;
}

/* Homepage trust/testimonials split */
body > .why-choose-section {
  background: #000000 !important;
  border-top: 1px solid #1f1f1f !important;
  padding: 64px 0 44px;
}

body > .why-choose-section .testimonials-shell,
body > .testimonials-section .testimonials-shell {
  background: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;
  padding: 0 !important;
  box-shadow: none !important;
}

body > .why-choose-section .section-title {
  color: #FFFFFF !important;
}

body > .why-choose-section .section-subtitle {
  color: #D6D6D6 !important;
  max-width: 720px;
  margin: 12px auto 0;
}

body > .why-choose-section .testimonials-trust__header {
  margin: 0 auto 22px;
}

body > .why-choose-section .testimonials-trust {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin: 0;
  border-top: 1px solid #2A2A2A;
  border-bottom: 1px solid #2A2A2A;
}

body > .why-choose-section .testimonials-trust__item {
  background: transparent !important;
  border: 0 !important;
  border-right: 1px solid #2A2A2A !important;
  border-radius: 0 !important;
  padding: 18px 14px !important;
  box-shadow: none !important;
  text-align: center;
}

body > .why-choose-section .testimonials-trust__item:last-child {
  border-right: 0 !important;
}

body > .why-choose-section .trust-point {
  max-width: none;
  margin: 0;
  font-family: var(--font-sans);
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.02em;
  text-align: center;
  color: #F4F4F4 !important;
}

body > .testimonials-section {
  background: #FFFFFF !important;
  border-top: 0 !important;
  padding: 56px 0 56px;
}

body > .testimonials-section .section-title {
  color: #111111 !important;
}

body > .testimonials-section .section-subtitle {
  color: #444444 !important;
  max-width: 720px;
  margin: 12px auto 0;
}

body > .testimonials-section .section-eyebrow {
  color: #444444 !important;
}

body > .testimonials-section .testimonials-section__header {
  margin-bottom: 28px;
}

body > .testimonials-section .testimonials-track {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 24px;
  overflow: visible;
  padding: 0;
}

body > .testimonials-section .testimonial-card {
  position: relative;
  min-width: 0;
  grid-column: span 2;
  background: #FAFAFA !important;
  border: 1px solid #E5E5E5 !important;
  border-radius: 16px !important;
  padding: 24px !important;
  box-shadow: 0 1px 2px rgba(17, 17, 17, 0.03);
}

body > .testimonials-section .testimonial-card:nth-child(4) {
  grid-column: 2 / span 2;
}

body > .testimonials-section .testimonial-card:nth-child(5) {
  grid-column: 4 / span 2;
}

body > .testimonials-section .testimonial-card__stars {
  display: none;
}

body > .testimonials-section .testimonial-card::before {
  content: "\201C";
  display: block;
  margin-bottom: 12px;
  font-size: 2rem;
  line-height: 1;
  color: #CFCFCF;
  font-family: Georgia, "Times New Roman", serif;
}

body > .testimonials-section .testimonial-card__text {
  margin-bottom: 18px;
  font-size: 1.03rem;
  font-style: normal;
  line-height: 1.78;
  color: #111111 !important;
}

body > .testimonials-section .testimonial-card__product {
  margin-bottom: 14px;
  color: #333333 !important;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

body > .testimonials-section .testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
}

body > .testimonials-section .testimonial-card__avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #F1F1F1 !important;
  border: 1px solid #E3E3E3;
  color: #111111 !important;
  font-size: 0.84rem;
  font-weight: 700;
}

body > .testimonials-section .testimonial-card__name {
  margin-bottom: 2px;
  font-size: 0.95rem;
  font-weight: 700;
  color: #111111 !important;
}

body > .testimonials-section .testimonial-card__city {
  font-size: 0.82rem;
  color: #666666 !important;
}

@media (max-width: 1024px) {
  body > .why-choose-section .testimonials-trust {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body > .why-choose-section .testimonials-trust__item {
    border-right: 1px solid #2A2A2A !important;
    border-bottom: 1px solid #2A2A2A !important;
  }

  body > .why-choose-section .testimonials-trust__item:nth-child(2n) {
    border-right: 0 !important;
  }

  body > .why-choose-section .testimonials-trust__item:nth-last-child(-n + 2) {
    border-bottom: 0 !important;
  }

  body > .testimonials-section .testimonials-track {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
  }

  body > .testimonials-section .testimonial-card,
  body > .testimonials-section .testimonial-card:nth-child(4),
  body > .testimonials-section .testimonial-card:nth-child(5) {
    grid-column: auto;
  }
}

@media (max-width: 640px) {
  body > .why-choose-section {
    padding: 56px 0 40px;
  }

  body > .why-choose-section .testimonials-trust {
    grid-template-columns: 1fr;
  }

  body > .why-choose-section .testimonials-trust__item {
    border-right: 0 !important;
    border-bottom: 1px solid #2A2A2A !important;
    padding: 14px 6px !important;
  }

  body > .why-choose-section .testimonials-trust__item:last-child {
    border-bottom: 0 !important;
  }

  body > .testimonials-section {
    padding: 56px 0 48px;
  }

  body > .testimonials-section .testimonials-track {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  body > .testimonials-section .testimonial-card {
    padding: 22px !important;
  }

  body > .testimonials-section .testimonial-card__text {
    font-size: 1rem;
  }
}

/* Public product scaling refinement */
body > .scroll-section.scroll-section--showcase > .container.container--showcase-wide,
body > .category-section > .container,
.related-section > .container {
  width: min(1500px, 100%);
  padding-inline: clamp(20px, 2.8vw, 36px);
}

.products-page .products-main {
  width: min(1480px, 100%);
}

.product-grid,
.scroll-section--showcase .scroll-track--showcase,
.products-page .product-grid {
  gap: clamp(20px, 1.8vw, 30px);
}

.product-grid,
.products-page .product-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.scroll-section--showcase .scroll-track--showcase {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.product-card,
.product-card--catalogue,
.scroll-section--showcase .scroll-track--showcase .product-card--showcase {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: #ffffff;
  border: 1px solid #E5E5E5;
  border-radius: 12px;
  box-shadow: 0 8px 18px rgba(17, 17, 17, 0.04);
  overflow: hidden;
}

.product-card:hover,
.product-card--catalogue:hover,
.scroll-section--showcase .scroll-track--showcase .product-card--showcase:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(17, 17, 17, 0.06);
}

.product-card__image-wrap,
.product-card--catalogue .product-card__image-wrap,
.related-section .product-card__image-wrap,
.category-section .product-card__image-wrap,
.scroll-section--showcase .scroll-track--showcase .product-card--showcase .product-card__image-wrap,
.products-page .product-card--catalogue .product-card__image-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: clamp(240px, 25vw, 340px);
  min-height: clamp(240px, 25vw, 340px);
  aspect-ratio: auto;
  background: #F7F7F7;
  border: 0;
  border-bottom: 1px solid #ECECEC;
  border-radius: 0;
  box-shadow: none;
  overflow: hidden;
}

.product-card__image,
.product-card--catalogue .product-card__image,
.related-section .product-card__image,
.category-section .product-card__image,
.scroll-section--showcase .scroll-track--showcase .product-card--showcase .product-card__image,
.products-page .product-card--catalogue .product-card__image {
  position: relative;
  inset: auto !important;
  display: block;
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  padding: 22px;
  box-sizing: border-box;
  object-fit: contain;
  object-position: center center;
  background: transparent;
  border-radius: 0 !important;
  transform: none !important;
  filter: none !important;
}

.product-card__placeholder,
.product-card--catalogue .product-card__placeholder,
.scroll-section--showcase .scroll-track--showcase .product-card--showcase .product-card__placeholder {
  inset: 0;
  border-radius: 0 !important;
}

.product-card__body,
.scroll-section--showcase .scroll-track--showcase .product-card--showcase .product-card__body,
.product-card--catalogue .product-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 8px;
  padding: 16px 18px 18px;
}

.product-card__category,
.product-card__price,
.btn-card-view {
  display: flex !important;
}

.product-card__category {
  align-items: center;
  margin: 0;
  color: #666666 !important;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.product-card__name,
.product-card--catalogue .product-card__name,
.scroll-section--showcase .scroll-track--showcase .product-card--showcase .product-card__name {
  margin: 0;
  min-height: 2.7em;
  font-family: var(--font-sans);
  font-size: clamp(1.02rem, 0.98rem + 0.28vw, 1.18rem);
  font-weight: 700;
  line-height: 1.35;
  color: #111111;
  flex: 0;
}

.product-card__name-link:hover .product-card__name,
.product-card__name-link:focus-visible .product-card__name {
  color: #111111;
}

.product-card__price {
  margin: 0;
  color: #555555 !important;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.product-card__footer,
.scroll-section--showcase .scroll-track--showcase .product-card--showcase .product-card__footer,
.product-card--catalogue .product-card__footer {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px !important;
  align-items: stretch;
  margin-top: auto;
  flex-direction: row !important;
}

.btn-card-view,
.product-card .btn-card-enquiry {
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 12px 16px;
  border-radius: 6px;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  box-shadow: none;
}

.btn-card-view {
  background: #ffffff;
  color: #111111 !important;
  border: 1px solid #111111;
}

.btn-card-view:hover {
  background: #f5f5f5;
  color: #111111 !important;
  border-color: #111111;
}

.product-card .btn-card-enquiry {
  background: #111111;
  color: #ffffff !important;
  border: 1px solid #111111;
  justify-content: center;
  padding: 12px 16px;
}

.product-card .btn-card-enquiry:hover {
  background: #1f1f1f;
  border-color: #1f1f1f;
  color: #ffffff !important;
}

.product-card .btn-card-enquiry.added {
  background: #2a2a2a;
  border-color: #2a2a2a;
  color: #ffffff !important;
}

@media (max-width: 1360px) {
  .product-grid,
  .scroll-section--showcase .scroll-track--showcase,
  .products-page .product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 960px) {
  body > .scroll-section.scroll-section--showcase > .container.container--showcase-wide,
  body > .category-section > .container,
  .related-section > .container {
    padding-inline: clamp(18px, 3vw, 28px);
  }

  .product-grid,
  .scroll-section--showcase .scroll-track--showcase,
  .products-page .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
  }

  .product-card__image-wrap,
  .product-card--catalogue .product-card__image-wrap,
  .related-section .product-card__image-wrap,
  .category-section .product-card__image-wrap,
  .scroll-section--showcase .scroll-track--showcase .product-card--showcase .product-card__image-wrap,
  .products-page .product-card--catalogue .product-card__image-wrap {
    height: clamp(220px, 36vw, 300px);
    min-height: clamp(220px, 36vw, 300px);
  }
}

@media (max-width: 560px) {
  .product-grid,
  .scroll-section--showcase .scroll-track--showcase,
  .products-page .product-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .product-card__image-wrap,
  .product-card--catalogue .product-card__image-wrap,
  .related-section .product-card__image-wrap,
  .category-section .product-card__image-wrap,
  .scroll-section--showcase .scroll-track--showcase .product-card--showcase .product-card__image-wrap,
  .products-page .product-card--catalogue .product-card__image-wrap {
    height: clamp(240px, 72vw, 320px);
    min-height: clamp(240px, 72vw, 320px);
  }

  .product-card__body,
  .scroll-section--showcase .scroll-track--showcase .product-card--showcase .product-card__body,
  .product-card--catalogue .product-card__body {
    padding: 16px;
  }
}

/* Trust strip white restoration and gallery arrow click hardening */
.trust-strip {
  background: #ffffff !important;
  border-top: 1px solid #e5e5e5 !important;
}

.trust-item {
  border-right-color: #e5e5e5 !important;
}

.trust-item__label {
  color: #111111 !important;
}

.trust-item__sub {
  color: #555555 !important;
}

.trust-item__icon {
  background: #f7f7f7 !important;
  border-color: #e0e0e0 !important;
  color: #111111 !important;
}

.home-gallery-strip__arrow {
  z-index: 8;
  pointer-events: auto !important;
  cursor: pointer;
}

/* Public frontend heading alignment consistency */
.page-hero {
  text-align: center;
}

.page-hero__content,
.section-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.page-hero__breadcrumb,
.breadcrumb {
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.page-hero__title,
.page-hero__sub,
.section-eyebrow,
.section-tag,
.section-title,
.section-subtitle,
.about-intro__heading {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.section-line,
.scroll-section--showcase .section-line,
.related-section .section-line {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  text-align: center;
}

.section-line > div {
  display: grid;
  justify-items: center;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.view-all-link {
  margin-left: auto;
  margin-right: auto;
}

/* Footer cleanup and legal pages */
.site-footer {
  background: #ffffff !important;
  color: #555555 !important;
  padding: 36px 0 0;
  border-top: 1px solid #e7e7e7 !important;
  border-bottom: none !important;
}

.site-footer .footer-grid {
  grid-template-columns: minmax(0, 1.24fr) repeat(2, minmax(0, 0.92fr)) minmax(0, 1.08fr);
  align-items: start;
  column-gap: clamp(22px, 2.8vw, 36px);
  row-gap: 20px;
  padding-bottom: 24px;
  border-bottom: none !important;
}

.site-footer .footer-grid > * {
  min-width: 0;
  align-self: start;
  margin: 0;
}

.site-footer .footer-brand p {
  max-width: 34ch;
  margin: 14px 0 0;
  line-height: 1.55;
}

.site-footer .footer-col__heading,
.site-footer .logo__text,
.site-footer .footer-contact-item > div > div:first-child {
  color: #111111 !important;
}

.site-footer .footer-col__heading {
  margin-bottom: 14px;
}

.site-footer .footer-brand p,
.site-footer .footer-col ul a,
.site-footer .footer-contact-item,
.site-footer .footer-contact-item > div,
.site-footer .footer-contact-item > div > div:last-child,
.site-footer .footer-bottom {
  color: #555555 !important;
}

.site-footer .footer-col ul a:hover {
  color: #111111 !important;
}

.site-footer .footer-contact-item svg {
  color: #111111 !important;
}

.site-footer .footer-socials,
.site-footer .footer-newsletter,
.site-footer .footer-link--disabled,
.site-footer .footer-contact--legacy {
  display: none !important;
}

.site-footer .footer-col ul {
  gap: 8px;
}

.site-footer .footer-col ul a {
  line-height: 1.5;
}

.site-footer .footer-contact {
  gap: 8px;
}

.site-footer .footer-contact-item {
  gap: 8px;
  line-height: 1.5;
}

.site-footer .footer-contact-item > div {
  display: grid;
  gap: 2px;
}

.site-footer .footer-bottom {
  margin-top: 18px;
  padding: 16px 0;
  background: #ffffff !important;
  border-top: 1px solid #e7e7e7 !important;
}

@media (max-width: 1024px) {
  .site-footer {
    padding-top: 40px;
  }

  .site-footer .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 32px;
    row-gap: 24px;
    padding-bottom: 22px;
  }
}

@media (max-width: 768px) {
  .site-footer {
    padding-top: 34px;
  }

  .site-footer .footer-grid {
    grid-template-columns: 1fr;
    gap: 22px;
    padding-bottom: 18px;
  }

  .site-footer .footer-bottom {
    margin-top: 14px;
    padding: 14px 0;
    flex-direction: column;
    justify-content: center;
    text-align: center;
  }
}

.legal-page {
  padding: 54px 0 84px;
  background: #ffffff;
}

.legal-shell {
  width: min(920px, 100%);
  margin: 0 auto;
}

.legal-intro {
  max-width: 700px;
  margin: 0 auto 28px;
  text-align: center;
  color: #555555;
  font-size: 1rem;
  line-height: 1.76;
}

.legal-content {
  display: grid;
  gap: 24px;
}

.legal-block {
  padding-bottom: 24px;
  border-bottom: 1px solid #ececec;
}

.legal-block:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

.legal-block h2 {
  margin-bottom: 10px;
  font-family: var(--font-sans);
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  font-weight: 700;
  line-height: 1.3;
  color: #111111;
  text-align: left;
}

.legal-block p,
.legal-block li {
  color: #444444;
  font-size: 0.98rem;
  line-height: 1.78;
}

.legal-block ul {
  margin: 12px 0 0 20px;
  padding: 0;
  display: grid;
  gap: 8px;
}

.legal-contact {
  display: grid;
  gap: 8px;
  margin-top: 12px;
}

.legal-contact strong {
  color: #111111;
}
