/* ==========================================================================
   Majaako Crafts — stylesheet
   Palette: ink + paper-white + a single madder-red accent. No browns.
   ========================================================================== */

:root {
  /* colour */
  --ink:        #111417;
  --ink-soft:   #333A42;
  --muted:      #5E6771;
  --muted-2:    #8A939D;
  --paper:      #F5F5F2;
  --surface:    #FFFFFF;
  --line:       #E2E2DC;
  --line-soft:  #EDEDE8;
  --accent:     #B8332A;
  --accent-dk:  #94261F;
  --accent-tint:#F7EAE8;
  --slate:      #14181C;
  --slate-2:    #1D242A;
  --tint:       #E9EEEA;

  /* type: unified design system on Inter */
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --display: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --tamil: "Noto Sans Tamil", "Nirmala UI", sans-serif;
  --mono: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  /* layout */
  --shell: 100%;
  --shell-readable: 100%;
  --gutter: 8%;
  --r-sm: 4px;
  --r-md: 10px;
  --r-lg: 18px;

  --ease: cubic-bezier(.2, .7, .3, 1);
}

@media (max-width: 1440px) {
  :root {
    --gutter: 8%;
  }
}

@media (max-width: 1024px) {
  :root {
    --gutter: 8%;
  }
}

@media (max-width: 768px) {
  :root {
    --gutter: 8%;
  }
}

/* ── Common Design Token System: Dark Theme ───────────────────────────── */
[data-theme="dark"] {
  --ink:        #F0F2F5;
  --ink-soft:   #C4CCD6;
  --muted:      #919BA6;
  --muted-2:    #656F7C;
  --paper:      #0F1215;
  --surface:    #181C21;
  --line:       #272E37;
  --line-soft:  #1D232B;
  --accent:     #E05A4E;
  --accent-dk:  #EB7166;
  --accent-tint: rgba(224, 90, 78, 0.16);
  --slate:      #12161A;
  --slate-2:    #1B2026;
  --tint:       #19231E;

  --t1: rgba(224, 90, 78, 0.12);
  --t2: rgba(70, 160, 110, 0.12);
  --t3: rgba(70, 130, 200, 0.12);
  --t4: rgba(180, 160, 100, 0.12);
}

/* ── reset ─────────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: 90px; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg { max-width: 100%; display: block; }
a { color: inherit; }
h1, h2, h3, h4 { margin: 0; font-family: var(--display); font-weight: 600; line-height: 1.08; letter-spacing: -.02em; }
p, figure, blockquote { margin: 0; }
ul, ol, dl { margin: 0; padding: 0; list-style: none; }
button, input, select, textarea { font: inherit; color: inherit; }

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--ink); color: #fff; padding: 12px 18px; border-radius: 0 0 var(--r-sm) 0;
}
.skip-link:focus { left: 0; }

:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 2px; }

.shell { width: 100%; max-width: var(--shell); margin-inline: auto; padding-inline: var(--gutter); }
.shell-readable,
.hero-grid,
.craft-grid,
.story-grid,
.values-grid,
.faq-shell,
.enquiry-grid {
  width: 100%;
  max-width: 100%;
  margin-inline: auto;
}

/* ── shared type ───────────────────────────────────────────────────────── */
.eyebrow {
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}
.section-dark .eyebrow { color: #E08A80; }

.lede, .section-sub { color: var(--muted); font-size: 18px; line-height: 1.7; }
.section-dark .lede, .section-dark .section-sub { color: #A8B2BB; }

.accent-word { color: var(--accent); font-style: italic; }

.ta { font-family: var(--tamil); }

/* ── buttons ───────────────────────────────────────────────────────────── */
.btn {
  --btn-bg: var(--ink);
  --btn-fg: #fff;
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  background: var(--btn-bg); color: var(--btn-fg);
  border: 1px solid var(--btn-bg);
  padding: 14px 26px;
  border-radius: 999px;
  font-size: 15px; font-weight: 500; letter-spacing: -.005em;
  text-decoration: none; cursor: pointer;
  transition: transform .2s var(--ease), background-color .2s var(--ease), border-color .2s var(--ease), color .2s var(--ease);
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn-accent { --btn-bg: var(--accent); --btn-fg: #fff; }
.btn-accent:hover { --btn-bg: var(--accent-dk); }
.btn-ink { --btn-bg: var(--ink); }
.btn-ghost {
  --btn-bg: transparent; --btn-fg: var(--ink);
  border-color: var(--ink);
}
.btn-ghost:hover { --btn-bg: var(--ink); --btn-fg: #fff; }
.btn-sm { padding: 10px 20px; font-size: 14px; }
.btn-block { width: 100%; }

.link-arrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 500; text-decoration: none;
  border-bottom: 1px solid var(--accent);
  padding-bottom: 3px; color: var(--accent);
  transition: gap .2s var(--ease);
}
.link-arrow:hover { gap: 14px; }

/* ── header ────────────────────────────────────────────────────────────── */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: color-mix(in srgb, var(--paper) 86%, transparent);
  backdrop-filter: saturate(160%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color .25s var(--ease), background-color .25s var(--ease);
}
.site-header.is-stuck { border-bottom-color: var(--line); }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; height: 74px; }

.brand { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; }
.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: none;
  background: #f6f1ea;
  border: 1px solid rgba(184, 51, 42, 0.22);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
}
.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 50%;
}
.brand-text { display: flex; flex-direction: column; line-height: 1.02; }
.brand-text strong { font-family: var(--display); font-size: 19px; font-weight: 600; letter-spacing: -.02em; }
.brand-text em {
  font-style: normal; font-family: var(--mono);
  font-size: 9.5px; letter-spacing: .24em; text-transform: uppercase; color: var(--muted);
}

.nav { display: flex; align-items: center; gap: 30px; }
.nav a { text-decoration: none; font-size: 15px; color: var(--ink-soft); position: relative; transition: color .2s; }
.nav a:not(.btn)::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: -5px; height: 1.5px;
  background: var(--accent); transition: right .28s var(--ease);
}
.nav a:not(.btn):hover { color: var(--ink); }
.nav a:not(.btn):hover::after, .nav a.is-active:not(.btn)::after { right: 0; }
.nav a.is-active:not(.btn) { color: var(--ink); }
.nav a.btn { color: var(--btn-fg); }

.nav-toggle {
  display: none; width: 44px; height: 44px; border: 1px solid var(--line); border-radius: 50%;
  background: transparent; cursor: pointer; padding: 0;
  flex-direction: column; align-items: center; justify-content: center; gap: 4px;
}
.nav-toggle span { display: block; width: 16px; height: 1.5px; background: var(--ink); transition: transform .25s var(--ease), opacity .2s; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(5.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-5.5px) rotate(-45deg); }

/* theme toggle */
.theme-toggle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--ink-soft);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
  flex: none;
  transition: background-color .2s var(--ease), border-color .2s var(--ease), color .2s var(--ease), transform .2s var(--ease);
}
.theme-toggle:hover {
  border-color: var(--ink);
  color: var(--ink);
  transform: scale(1.06);
}
.theme-toggle svg {
  width: 18px;
  height: 18px;
  display: block;
  pointer-events: none;
}
.theme-toggle .sun-icon { display: none; }
.theme-toggle .moon-icon { display: block; }

[data-theme="dark"] .theme-toggle .sun-icon { display: block; }
[data-theme="dark"] .theme-toggle .moon-icon { display: none; }

.header-right-group {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* ── hero ──────────────────────────────────────────────────────────────── */
.hero { position: relative; padding-top: 56px; overflow: hidden; }
.hero::before {
  content: ""; position: absolute; inset: 0 0 auto 0; height: 420px;
  background: radial-gradient(900px 340px at 78% 10%, rgba(184,51,42,.07), transparent 70%);
  pointer-events: none;
}
.hero-grid {
  position: relative;
  display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center;
  padding-bottom: 64px;
}
.hero h1 { font-size: clamp(42px, 5.6vw, 72px); margin-bottom: 26px; }
.hero .lede { max-width: 30em; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin: 34px 0 0; }

.trust-row {
  display: flex; flex-wrap: wrap; gap: 10px 32px;
  margin-top: 40px; padding-top: 26px; border-top: 1px solid var(--line);
  font-size: 14.5px; color: var(--muted);
}
.trust-row strong { color: var(--ink); font-weight: 600; }

/* hero visual: layered paper with crop marks */
.hero-visual { position: relative; min-height: 460px; display: flex; align-items: center; justify-content: center; }
.crop-frame { position: relative; width: 100%; max-width: 420px; aspect-ratio: 1 / 1.08; }
.crop-frame::before, .crop-frame::after {
  content: ""; position: absolute; width: 26px; height: 26px; border: 1px solid var(--muted-2); opacity: .55;
}
.crop-frame::before { top: 0; left: 0; border-right: 0; border-bottom: 0; }
.crop-frame::after { bottom: 0; right: 0; border-left: 0; border-top: 0; }

.paper {
  position: absolute;
  background: var(--surface);
  border: 1px solid var(--line-soft);
  box-shadow: 0 1px 1px rgba(17,20,23,.03), 0 18px 40px -22px rgba(17,20,23,.38);
  animation: float 9s ease-in-out infinite;
}
.paper-invite {
  inset: 6% 16% 14% 6%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 16px; padding: 30px 22px; text-align: center;
  transform: rotate(-3.2deg);
}
.paper-invite .ta { font-size: 12.5px; color: var(--accent); letter-spacing: .02em; }
.paper-invite h3 { font-size: clamp(26px, 3.4vw, 36px); line-height: 1.12; }
.paper-invite h3 span { font-family: var(--display); font-style: italic; font-size: .58em; color: var(--accent); display: block; margin: 2px 0; }
.paper-invite .paper-meta { font-family: var(--mono); font-size: 10px; letter-spacing: .16em; color: var(--muted); text-transform: uppercase; }
.paper-rule { display: block; width: 46px; height: 1px; background: var(--line); }

.paper-card {
  width: 54%; aspect-ratio: 1.75 / 1; right: -7%; bottom: -1%;
  transform: rotate(4.5deg);
  padding: 16px 18px; display: flex; flex-direction: column; justify-content: flex-end; gap: 2px;
  animation-delay: -3s;
  background: var(--slate); border-color: var(--slate);
}
.paper-card .dot { position: absolute; top: 16px; left: 18px; width: 9px; height: 9px; border-radius: 50%; background: var(--accent); }
.paper-card .paper-name { font-family: var(--display); font-size: 16px; color: #fff; letter-spacing: -.01em; }
.paper-card .paper-role { font-family: var(--mono); font-size: 8.5px; letter-spacing: .2em; text-transform: uppercase; color: #8F98A1; }

.paper-sticker {
  width: 33%; aspect-ratio: 1; border-radius: 50%; top: -3%; right: 2%;
  display: grid; place-items: center; animation-delay: -6s;
  background: var(--accent); border-color: var(--accent);
  box-shadow: 0 14px 30px -14px rgba(184,51,42,.65);
}
.sticker-ring {
  width: 74%; height: 74%; border: 1px dashed rgba(255,255,255,.65); border-radius: 50%;
  display: grid; place-items: center;
}
.sticker-ring span {
  font-family: var(--mono); font-size: 10px; letter-spacing: .18em; color: #fff; text-align: center; line-height: 1.5;
}

@keyframes float {
  0%, 100% { translate: 0 0; }
  50% { translate: 0 -10px; }
}

/* ticker */
.ticker {
  border-block: 1px solid var(--line);
  background: var(--surface);
  overflow: hidden; padding: 15px 0; white-space: nowrap;
}
.ticker-track { display: inline-flex; align-items: center; gap: 22px; animation: slide 46s linear infinite; }
.ticker-track span { font-family: var(--mono); font-size: 12px; letter-spacing: .18em; text-transform: uppercase; color: var(--ink-soft); }
.ticker-track .sep { color: var(--accent); font-size: 8px; }
@keyframes slide { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ── sections ──────────────────────────────────────────────────────────── */
.section { padding: clamp(72px, 9vw, 118px) 0; }
.section-tint { background: var(--tint); }
.section-dark { background: var(--slate); color: #E8ECEF; }
.section-dark h2, .section-dark h3 { color: #fff; }

.section-head { max-width: 640px; margin-bottom: 58px; }
.section-head h2 { font-size: clamp(30px, 3.9vw, 46px); }
.section-head .section-sub { margin-top: 20px; }

/* work grid */
.work-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px;
  background: var(--line); border: 1px solid var(--line);
}
.work-card {
  background: var(--paper); padding: 30px 26px 34px;
  transition: background-color .3s var(--ease);
}
.work-card:hover { background: var(--surface); }
.work-art { color: var(--ink); margin-bottom: 22px; }
.work-art svg { width: 100%; height: auto; max-width: 120px; }
.work-card h3 { font-size: 19px; margin-bottom: 10px; letter-spacing: -.015em; }
.work-card p { font-size: 14.5px; line-height: 1.62; color: var(--muted); }

/* steps */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: rgba(255,255,255,.12); }
.steps li { background: var(--slate); padding: 34px 26px 38px; }
.steps .step-no {
  display: block; font-family: var(--mono); font-size: 12px; letter-spacing: .18em;
  color: var(--accent); margin-bottom: 26px;
}
.steps h3 { font-size: 20px; margin-bottom: 12px; }
.steps p { font-size: 14.5px; line-height: 1.66; color: #A8B2BB; }

/* craft */
.craft-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 64px; align-items: start; }
.craft-copy h2 { font-size: clamp(28px, 3.4vw, 40px); }
.craft-copy .section-sub { margin: 20px 0 26px; }
.spec-list { display: grid; gap: 0; border-top: 1px solid var(--line); }
.spec { display: grid; grid-template-columns: 160px 1fr; gap: 24px; padding: 22px 0; border-bottom: 1px solid var(--line); }
.spec dt { font-family: var(--mono); font-size: 11.5px; letter-spacing: .16em; text-transform: uppercase; color: var(--ink); padding-top: 4px; }
.spec dd { margin: 0; font-size: 15.5px; color: var(--muted); line-height: 1.66; }

/* why */
.why-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.why-card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-md);
  padding: 32px 30px 34px; position: relative;
}
.why-card::before {
  content: ""; position: absolute; top: 0; left: 30px; width: 34px; height: 3px; background: var(--accent);
}
.why-card h3 { font-size: 21px; margin-bottom: 12px; }
.why-card p { font-size: 15.5px; color: var(--muted); line-height: 1.68; }

/* gallery */
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.gallery-grid figure { margin: 0; }
.frame {
  aspect-ratio: 4 / 5; border-radius: var(--r-sm); overflow: hidden;
  background: var(--surface); border: 1px solid var(--line);
}
.frame img { width: 100%; height: 100%; object-fit: cover; }
.frame-placeholder {
  position: relative;
  background:
    repeating-linear-gradient(45deg, var(--line-soft) 0 1px, transparent 1px 9px),
    var(--surface);
}
.frame-placeholder::after {
  content: attr(data-label);
  position: absolute; inset: auto 0 50% 0; transform: translateY(50%);
  text-align: center; font-family: var(--mono); font-size: 10.5px;
  letter-spacing: .18em; text-transform: uppercase; color: var(--muted-2);
}
.gallery-grid figcaption { margin-top: 14px; display: flex; flex-direction: column; gap: 3px; }
.gallery-grid figcaption strong { font-size: 15px; font-weight: 600; }
.gallery-grid figcaption span { font-family: var(--mono); font-size: 11px; letter-spacing: .1em; color: var(--muted); text-transform: uppercase; }

/* faq */
.faq-shell { display: grid; grid-template-columns: .8fr 1.2fr; gap: 64px; align-items: start; }
.section-head-left { margin-bottom: 0; }
.faq-list { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item summary {
  list-style: none; cursor: pointer; padding: 22px 44px 22px 0; position: relative;
  font-family: var(--display); font-size: 19px; font-weight: 500; letter-spacing: -.015em;
  transition: color .2s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--accent); }
.faq-item summary::after,
.faq-item summary::before {
  content: ""; position: absolute; right: 6px; top: 50%; background: var(--ink); transition: transform .28s var(--ease), background-color .2s;
}
.faq-item summary::before { width: 15px; height: 1.5px; transform: translateY(-50%); }
.faq-item summary::after { width: 1.5px; height: 15px; right: 12.7px; transform: translateY(-50%); }
.faq-item[open] summary::after { transform: translateY(-50%) rotate(90deg); }
.faq-item[open] summary { color: var(--accent); }
.faq-item[open] summary::before, .faq-item[open] summary::after { background: var(--accent); }
.faq-body { padding-bottom: 24px; max-width: 58ch; }
.faq-body p { color: var(--muted); font-size: 15.5px; }

/* enquiry */
.enquiry-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.enquiry-copy h2 { font-size: clamp(30px, 3.8vw, 44px); }
.enquiry-copy .section-sub { margin: 20px 0 0; }
.contact-list { display: grid; gap: 0; border-top: 1px solid rgba(255,255,255,.14); }
.contact-list li {
  display: grid; grid-template-columns: 120px 1fr; gap: 18px; align-items: baseline;
  padding: 16px 0; border-bottom: 1px solid rgba(255,255,255,.14);
}
.c-label { font-family: var(--mono); font-size: 11px; letter-spacing: .16em; text-transform: uppercase; color: #8A939D; }
.contact-list a { text-decoration: none; border-bottom: 1px solid rgba(255,255,255,.28); padding-bottom: 2px; transition: border-color .2s, color .2s; }
.contact-list a:hover { color: #F0A49B; border-bottom-color: #F0A49B; }

.enquiry-form { background: var(--slate-2); border: 1px solid rgba(255,255,255,.1); border-radius: var(--r-lg); padding: 32px; }
.field { display: flex; flex-direction: column; gap: 8px; margin-bottom: 18px; }
.field-row { display: grid; grid-template-columns: 1.4fr 1fr; gap: 16px; }
.field label { font-family: var(--mono); font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: #9AA3AC; }
.field .optional { text-transform: none; letter-spacing: 0; font-family: var(--sans); font-size: 11.5px; color: #6E7780; }
.field input, .field select, .field textarea {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: var(--r-sm);
  padding: 13px 14px; color: #fff; font-size: 15px;
  transition: border-color .2s, background-color .2s;
  width: 100%;
}
.field textarea { resize: vertical; min-height: 96px; }
.field input::placeholder, .field textarea::placeholder { color: #6E7780; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--accent); background: rgba(255,255,255,.07);
}
.field select { appearance: none; background-image: linear-gradient(45deg, transparent 50%, #9AA3AC 50%), linear-gradient(135deg, #9AA3AC 50%, transparent 50%); background-position: calc(100% - 19px) 21px, calc(100% - 13px) 21px; background-size: 6px 6px, 6px 6px; background-repeat: no-repeat; }
.field select option { background: var(--slate-2); color: #fff; }
.field.has-error input, .field.has-error select { border-color: #E0685C; }
.enquiry-form .btn { margin-top: 10px; }
.form-note { margin-top: 14px; font-size: 13px; color: #8A939D; text-align: center; }
.form-note.is-error { color: #F0A49B; }

/* footer */
.site-footer { background: var(--paper); border-top: 1px solid var(--line); padding-top: 64px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 52px; }
.footer-brand p { margin-top: 18px; font-size: 14.5px; color: var(--muted); max-width: 34ch; line-height: 1.68; }
.footer-col { display: flex; flex-direction: column; gap: 11px; }
.footer-col h4 { font-family: var(--mono); font-size: 11px; font-weight: 500; letter-spacing: .16em; text-transform: uppercase; color: var(--ink); margin-bottom: 6px; }
.footer-col a { text-decoration: none; font-size: 14.5px; color: var(--muted); transition: color .2s; }
.footer-col a:hover { color: var(--accent); }
.site-footer .brand .brand-titles {
  display: inline-flex;
  align-items: center;
}
.site-footer .brand .brand-titles strong {
  font-family: var(--display);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -.02em;
  white-space: nowrap;
  color: var(--ink);
}
.footer-base {
  display: flex; justify-content: center; align-items: center; text-align: center;
  padding-block: 22px; border-top: 1px solid var(--line);
  font-size: 13px; color: var(--muted-2);
}
.colophon { font-family: var(--mono); font-size: 11px; letter-spacing: .08em; }

/* floating whatsapp FAB */
.wa-float {
  position: fixed; right: 24px; bottom: 24px; z-index: 999;
  width: 58px; height: 58px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: #25D366; color: #ffffff;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4), 0 4px 10px rgba(0, 0, 0, 0.15);
  transition: transform .25s var(--ease), box-shadow .25s, background-color .2s;
  text-decoration: none;
  opacity: 1; pointer-events: auto;
}
.wa-float:hover {
  transform: translateY(-3px) scale(1.05);
  background: #20BA5A;
  box-shadow: 0 12px 28px rgba(37, 211, 102, 0.5), 0 6px 14px rgba(0, 0, 0, 0.2);
  color: #ffffff;
}
.wa-float svg { width: 32px; height: 32px; fill: #ffffff; display: block; }
.wa-float .wa-tooltip {
  position: absolute;
  right: calc(100% + 12px);
  top: 50%;
  transform: translateY(-50%) translateX(6px);
  background: #111417;
  color: #ffffff;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  white-space: nowrap;
  padding: 6px 13px;
  border-radius: 20px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.wa-float .wa-tooltip::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -5px;
  transform: translateY(-50%);
  border-width: 5px 0 5px 6px;
  border-style: solid;
  border-color: transparent transparent transparent #111417;
}
.wa-float:hover .wa-tooltip {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}
@media (max-width: 600px) {
  .wa-float {
    right: 18px;
    bottom: 18px;
    width: 52px;
    height: 52px;
  }
  .wa-float svg {
    width: 28px;
    height: 28px;
  }
  .wa-float .wa-tooltip {
    display: none;
  }
}

/* reveal on scroll */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }

/* ── responsive ────────────────────────────────────────────────────────── */
@media (max-width: 1040px) {
  .work-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .craft-grid, .faq-shell, .enquiry-grid { grid-template-columns: 1fr; gap: 44px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 860px) {
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { min-height: 400px; order: 2; }
  .crop-frame { max-width: 340px; }

  .nav {
    position: fixed; inset: 74px 0 auto 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--paper); border-bottom: 1px solid var(--line);
    padding: 10px var(--gutter) 24px;
    transform: translateY(-120%); transition: transform .35s var(--ease);
    max-height: calc(100dvh - 74px); overflow-y: auto;
  }
  .nav.is-open { transform: translateY(0); }
  .nav a:not(.btn) { padding: 16px 0; border-bottom: 1px solid var(--line-soft); font-size: 17px; }
  .nav a:not(.btn)::after { display: none; }
  .nav .btn { margin-top: 18px; }
  .nav-toggle { display: flex; }
}

@media (max-width: 620px) {
  body { font-size: 16px; }
  .work-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .why-grid { grid-template-columns: 1fr; }
  .spec { grid-template-columns: 1fr; gap: 8px; }
  .field-row { grid-template-columns: 1fr; gap: 0; }
  .contact-list li { grid-template-columns: 96px 1fr; gap: 12px; }
  .enquiry-form { padding: 24px 20px; }
  .trust-row { flex-direction: column; gap: 8px; }
  .paper-card { right: 0; bottom: 0; width: 58%; }
  .paper-sticker { right: 4%; }
  .hero-actions .btn { flex: 1 1 100%; }
  .footer-grid { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

@media print {
  .site-header, .wa-float, .ticker, .enquiry-form { display: none; }
  body { background: #fff; }
}

/* ==========================================================================
   CATALOGUE PAGE  (products.html)
   ========================================================================== */

:root {
  --t1: #F7EAE8;   /* blush   */
  --t2: #E9EEEA;   /* sage    */
  --t3: #E7ECF1;   /* mist    */
  --t4: #EFEEEA;   /* bone    */
}

.sprite { position: absolute; width: 0; height: 0; overflow: hidden; }

/* ── page hero ─────────────────────────────────────────────────────────── */
.cat-hero { padding: 54px 0 44px; background: var(--surface); border-bottom: 1px solid var(--line); }
.crumbs { font-family: var(--mono); font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--muted-2); margin-bottom: 26px; }
.crumbs a { text-decoration: none; color: var(--muted); }
.crumbs a:hover { color: var(--accent); }
.crumbs span[aria-hidden] { margin: 0 8px; color: var(--line); }
.cat-hero h1 { font-size: clamp(34px, 4.6vw, 56px); margin-bottom: 22px; }
.cat-hero .lede { max-width: 46ch; }

.no-price {
  display: flex; gap: 16px; align-items: flex-start;
  margin-top: 32px; padding: 18px 22px;
  background: var(--accent-tint); border-left: 3px solid var(--accent);
  border-radius: 0 var(--r-md) var(--r-md) 0;
  font-size: 14.5px; line-height: 1.6; color: var(--ink-soft); max-width: 72ch;
}
.np-mark {
  flex: none; width: 30px; height: 30px; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--accent); color: #fff;
  font-family: var(--display); font-size: 15px;
}
.no-price strong { color: var(--ink); }

/* ── sticky toolbar ────────────────────────────────────────────────────── */
.cat-bar {
  position: sticky; top: 73px; z-index: 60;
  background: color-mix(in srgb, var(--paper) 92%, transparent);
  backdrop-filter: saturate(160%) blur(12px);
  border-bottom: 1px solid var(--line);
}
.cat-bar-inner { display: flex; align-items: flex-start; gap: 22px; padding-block: 14px; }

.chips { display: flex; flex-wrap: wrap; gap: 8px; flex: 1 1 auto; padding: 2px 0; }
.chips::-webkit-scrollbar { display: none; }
.chip {
  flex: none; cursor: pointer;
  display: inline-flex; align-items: center; gap: 7px;
  padding: 9px 16px; border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--surface); color: var(--ink-soft);
  font-size: 14px; white-space: nowrap;
  transition: background-color .18s var(--ease), color .18s var(--ease), border-color .18s var(--ease);
}
.chip:hover { border-color: var(--ink); color: var(--ink); }
.chip-n {
  font-family: var(--mono); font-size: 10.5px; letter-spacing: .04em;
  color: var(--muted-2); background: var(--paper);
  padding: 2px 6px; border-radius: 999px; min-width: 20px; text-align: center;
  transition: background-color .18s, color .18s;
}
.chip.is-on { background: var(--ink); border-color: var(--ink); color: #fff; }
.chip.is-on .chip-n { background: rgba(255,255,255,.16); color: #fff; }

.cat-search { position: relative; flex: 0 0 258px; }
.cat-search svg { position: absolute; left: 13px; top: 50%; transform: translateY(-50%); width: 17px; height: 17px; color: var(--muted-2); pointer-events: none; }
.cat-search input {
  width: 100%; padding: 10px 14px 10px 38px;
  border: 1px solid var(--line); border-radius: 999px;
  background: var(--surface); font-size: 14px;
}
.cat-search input::placeholder { color: var(--muted-2); }
.cat-search input:focus { outline: none; border-color: var(--ink); }
.cat-search input::-webkit-search-cancel-button { cursor: pointer; }

/* ── grid ──────────────────────────────────────────────────────────────── */
.cat-section { padding-top: 40px; }
.result-line {
  font-family: var(--mono); font-size: 11.5px; letter-spacing: .14em;
  text-transform: uppercase; color: var(--muted); margin-bottom: 26px;
}

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

.pcard {
  display: flex; flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: border-color .22s var(--ease), box-shadow .22s var(--ease), transform .22s var(--ease);
}
.pcard:hover { transform: translateY(-3px); border-color: var(--ink); box-shadow: 0 20px 40px -28px rgba(17,20,23,.55); }
.pcard[hidden] { display: none; }

.pc-art {
  position: relative; aspect-ratio: 16 / 9;
  display: grid; place-items: center;
  border-bottom: 1px solid var(--line);
  background-color: var(--t1);
  background-image: repeating-linear-gradient(45deg, rgba(17,20,23,.045) 0 1px, transparent 1px 10px);
}
.pcard[data-tint="2"] .pc-art { background-color: var(--t2); }
.pcard[data-tint="3"] .pc-art { background-color: var(--t3); }
.pcard[data-tint="4"] .pc-art { background-color: var(--t4); }
.pc-art svg { width: 108px; height: auto; color: var(--ink); }
.pc-art::before, .pc-art::after {
  content: ""; position: absolute; width: 14px; height: 14px; border: 1px solid rgba(17,20,23,.22);
}
.pc-art::before { top: 10px; left: 10px; border-right: 0; border-bottom: 0; }
.pc-art::after { bottom: 10px; right: 10px; border-left: 0; border-top: 0; }
.pc-art.has-photo { background-image: none; padding: 0; }
.pc-art.has-photo img { width: 100%; height: 100%; object-fit: cover; }
.pc-art.has-photo::before, .pc-art.has-photo::after { display: none; }

.pc-body { display: flex; flex-direction: column; flex: 1; padding: 22px 22px 20px; }
.pc-cat {
  font-family: var(--mono); font-size: 10.5px; letter-spacing: .16em;
  text-transform: uppercase; color: var(--accent); margin-bottom: 10px;
}
.pc-body h3 { font-size: 19px; margin-bottom: 9px; letter-spacing: -.015em; }
.pc-body > p { font-size: 14.5px; line-height: 1.6; color: var(--muted); }

.pc-tags { display: flex; flex-wrap: wrap; gap: 6px; margin: 16px 0 20px; }
.pc-tags li {
  font-family: var(--mono); font-size: 10px; letter-spacing: .08em; text-transform: uppercase;
  color: var(--ink-soft); background: var(--paper);
  border: 1px solid var(--line-soft); border-radius: var(--r-sm);
  padding: 5px 9px;
}

.pc-cta {
  margin-top: auto; align-self: flex-start;
  display: inline-flex; align-items: center; gap: 9px;
  padding: 11px 18px 11px 16px; border-radius: 999px;
  background: var(--paper); border: 1px solid var(--line);
  font-size: 14px; font-weight: 500; text-decoration: none; color: var(--ink);
  transition: background-color .2s var(--ease), color .2s var(--ease), border-color .2s var(--ease);
}
.pc-cta::before {
  content: ""; width: 16px; height: 16px; flex: none;
  background: currentColor;
  -webkit-mask: var(--wa-icon) center / contain no-repeat;
  mask: var(--wa-icon) center / contain no-repeat;
}
.pc-cta::after { content: "→"; font-size: 14px; transition: transform .2s var(--ease); }
.pcard:hover .pc-cta { background: #1E8A4C; border-color: #1E8A4C; color: #fff; }
.pc-cta:hover::after { transform: translateX(3px); }

:root {
  --wa-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12.04 2C6.58 2 2.13 6.45 2.13 11.91c0 1.75.46 3.45 1.32 4.95L2 22l5.25-1.38a9.87 9.87 0 0 0 4.79 1.22h.01c5.46 0 9.9-4.45 9.9-9.91 0-2.65-1.03-5.14-2.9-7.01A9.82 9.82 0 0 0 12.04 2Zm0 18.15h-.01a8.2 8.2 0 0 1-4.19-1.15l-.3-.18-3.12.82.83-3.04-.2-.31a8.2 8.2 0 0 1-1.26-4.38c0-4.54 3.7-8.24 8.25-8.24a8.2 8.2 0 0 1 5.83 2.42 8.17 8.17 0 0 1 2.41 5.83c0 4.54-3.7 8.23-8.24 8.23Zm4.52-6.16c-.25-.13-1.47-.72-1.69-.81-.23-.08-.39-.12-.56.13-.16.24-.64.8-.78.97-.15.16-.29.18-.54.06-.25-.13-1.05-.39-1.99-1.23-.74-.66-1.23-1.47-1.38-1.72-.14-.25-.01-.38.11-.5.11-.11.25-.29.37-.43.13-.15.17-.25.25-.41.08-.17.04-.31-.02-.43-.06-.13-.56-1.35-.76-1.84-.2-.48-.4-.42-.56-.43h-.48c-.17 0-.43.06-.66.31-.22.25-.87.85-.87 2.07s.89 2.4 1.02 2.57c.12.16 1.75 2.67 4.24 3.74.59.26 1.05.41 1.41.52.59.19 1.13.16 1.56.1.47-.07 1.47-.6 1.67-1.18.21-.58.21-1.07.15-1.18-.06-.1-.23-.16-.48-.29Z'/%3E%3C/svg%3E");
}

.pgrid-empty { margin-top: 40px; text-align: center; color: var(--muted); font-size: 16px; }
.pgrid-empty a { color: var(--accent); }
.linkish {
  background: none; border: 0; padding: 0; cursor: pointer;
  color: var(--accent); text-decoration: underline; text-underline-offset: 3px; font-size: inherit;
}

/* ── closing strip ─────────────────────────────────────────────────────── */
.cat-close { background: var(--slate); color: #E8ECEF; padding: clamp(48px, 6vw, 72px) 0; }
.cat-close-inner { display: flex; align-items: center; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
.cat-close h2 { color: #fff; font-size: clamp(26px, 3vw, 34px); margin-bottom: 12px; }
.cat-close p { color: #A8B2BB; font-size: 16px; max-width: 54ch; }
.cat-close-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.btn-ghost.btn-on-dark { --btn-fg: #fff; border-color: rgba(255,255,255,.35); }
.btn-ghost.btn-on-dark:hover { --btn-bg: #fff; --btn-fg: var(--ink); border-color: #fff; }

/* ── responsive ────────────────────────────────────────────────────────── */
@media (max-width: 1040px) {
  .pgrid { grid-template-columns: repeat(2, 1fr); }
  .cat-bar-inner { flex-direction: column; align-items: stretch; gap: 12px; }
  .cat-search { flex: 1 1 auto; }
}

@media (max-width: 860px) {
  .cat-bar { top: 73px; }
}

@media (max-width: 620px) {
  .pgrid { grid-template-columns: 1fr; gap: 18px; }
  .cat-hero { padding-top: 38px; }
  .no-price { padding: 16px; gap: 12px; }
  .pc-art svg { width: 88px; }
  .chips {
    flex-wrap: nowrap; overflow-x: auto; scrollbar-width: none;
    margin-inline: calc(var(--gutter) * -1); padding-inline: var(--gutter);
  }
  .chips::-webkit-scrollbar { display: none; }
  .cat-close-actions .btn { flex: 1 1 100%; }
}

/* home: link the category cards through to the catalogue */
.head-link { margin-top: 24px; }
.work-card h3 a { text-decoration: none; }
.work-card h3 a::after { content: ""; position: absolute; inset: 0; }
.work-card { position: relative; }
.work-card h3 a:hover { color: var(--accent); }

/* ==========================================================================
   REVIEWS
   ========================================================================== */

.section-surface { background: var(--surface); }

.sample-note {
  display: block; max-width: 72ch;
  margin: -26px 0 38px;
  padding: 14px 18px;
  border: 1px dashed var(--accent);
  border-radius: var(--r-md);
  background: var(--accent-tint);
  color: var(--ink-soft); font-size: 14px; line-height: 1.6;
}
.sample-note strong { color: var(--accent-dk); }

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

.review {
  display: flex; flex-direction: column; margin: 0;
  padding: 26px 26px 24px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  position: relative;
}
.review::before {
  content: "”";
  position: absolute; top: 6px; right: 20px;
  font-family: var(--display); font-size: 60px; line-height: 1;
  color: var(--line); pointer-events: none;
}

.stars { display: flex; gap: 3px; margin-bottom: 16px; }
.stars svg { width: 13px; height: 13px; fill: var(--accent); }

.review blockquote { margin: 0; flex: 1; }
.review blockquote p {
  font-family: var(--display); font-weight: 400;
  font-size: 17px; line-height: 1.5; letter-spacing: -.01em;
  color: var(--ink);
}

.review figcaption {
  display: flex; flex-direction: column; gap: 3px;
  margin-top: 22px; padding-top: 16px; border-top: 1px solid var(--line);
}
.r-name { font-size: 14.5px; font-weight: 600; }
.r-meta {
  font-family: var(--mono); font-size: 10.5px; letter-spacing: .12em;
  text-transform: uppercase; color: var(--muted);
}

/* featured quote */
.review-lead {
  grid-column: span 2;
  background: var(--slate); border-color: var(--slate);
  padding: 34px 34px 30px;
}
.review-lead::before { color: rgba(255,255,255,.14); font-size: 78px; }
.review-lead blockquote p { color: #fff; font-size: clamp(20px, 2.1vw, 26px); line-height: 1.38; }
.review-lead .stars svg { fill: #E9806F; }
.review-lead figcaption { border-top-color: rgba(255,255,255,.16); }
.review-lead .r-name { color: #fff; }
.review-lead .r-meta { color: #8A939D; }

.reviews-foot {
  margin-top: 34px; font-size: 14.5px; color: var(--muted);
}
.reviews-foot a { color: var(--accent); text-underline-offset: 3px; }

@media (max-width: 1040px) {
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .review-lead { grid-column: span 2; }
}

@media (max-width: 620px) {
  .reviews-grid { grid-template-columns: 1fr; }
  .review-lead { grid-column: span 1; padding: 26px 24px 24px; }
  .sample-note { margin-top: -14px; }
}

/* ── Dark Theme Component Refinements ──────────────────────────────────── */
[data-theme="dark"] .brand-mark {
  background: #20262E;
  border-color: rgba(224, 90, 78, 0.35);
}

[data-theme="dark"] .chip.is-on {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}
[data-theme="dark"] .chip.is-on .chip-n {
  background: rgba(0, 0, 0, 0.28);
  color: #fff;
}

[data-theme="dark"] .section-dark {
  background: #0B0E11;
  border-block: 1px solid var(--line);
}

[data-theme="dark"] .paper-invite {
  background: #191E24;
  color: #F0F2F5;
  border-color: #2D3642;
}

[data-theme="dark"] .paper-card {
  background: #14181D;
  border-color: #28303A;
}

[data-theme="dark"] .review-lead {
  background: #14181D;
  border-color: #272E37;
}

[data-theme="dark"] .field input,
[data-theme="dark"] .field select,
[data-theme="dark"] .field textarea {
  background: #14181D;
  border-color: var(--line);
}

@media (max-width: 820px) {
  [data-theme="dark"] .nav {
    background: var(--surface);
    border-bottom: 1px solid var(--line);
  }
}

/* ==========================================================================
   E-COMMERCE STOREFRONT & CLIENT EXPERIENCE SYSTEM
   ========================================================================== */

:root {
  --root-font-size: 16px;
}
html { font-size: var(--root-font-size); }
html.font-lg { --root-font-size: 18px; }
html.font-xl { --root-font-size: 20px; }

/* ── 2-Tier Header ──────────────────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--surface);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.topbar-utility,
div.shell.topbar-utility {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-block: 10px;
  padding-inline: 8% !important;
  border-bottom: 1px solid var(--line-soft);
  font-size: 13.5px;
}

.topbar-left {
  display: flex;
  align-items: center;
  gap: 14px;
}

.topbar-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--ink);
}

.topbar-brand .brand-mark {
  width: 38px;
  height: 38px;
}

.brand-titles {
  display: flex;
  align-items: center;
  line-height: 1.2;
}
.brand-titles strong {
  font-family: var(--display);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -.02em;
  white-space: nowrap;
  color: var(--ink);
}
.brand-titles em {
  display: none;
}

.topbar-right {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.topbar-right .theme-toggle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--paper);
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
  flex: none;
  transition: border-color .18s, background .18s, transform .15s;
}
.topbar-right .theme-toggle:hover {
  border-color: var(--ink);
  background: var(--surface);
  transform: scale(1.05);
}
.topbar-right .theme-toggle svg {
  width: 17px;
  height: 17px;
  pointer-events: none;
}

/* Language selector */
.lang-group {
  position: relative;
  display: inline-flex;
  align-items: center;
}
.lang-select {
  appearance: none;
  background: var(--paper) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath fill='none' stroke='%235E6771' stroke-width='1.5' stroke-linecap='round' d='M1 1l4 4 4-4'/%3E%3C/svg%3E") no-repeat right 9px center;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 6px 26px 6px 12px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--ink);
  cursor: pointer;
}
.lang-select:focus {
  outline: none;
  border-color: var(--accent);
}

/* Support link */
.support-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--ink-2);
  text-decoration: none;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: border-color .15s, color .15s;
}
.support-link:hover {
  border-color: var(--line);
  color: var(--accent);
}
.support-link svg {
  width: 14px;
  height: 14px;
}

/* Header "About Us" Link Button */
.btn-about-link {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  text-decoration: none;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--paper);
  transition: all .18s;
  white-space: nowrap;
}
.btn-about-link:hover {
  border-color: var(--ink);
  color: var(--ink);
  background: var(--surface);
}
.btn-about-link.is-active {
  background: var(--ink);
  color: var(--surface);
  border-color: var(--ink);
}

/* Header Enquiry CTA */
.btn-enquire-head {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  font-size: 13px;
  font-weight: 600;
  border-radius: 999px;
  background: var(--accent);
  border: 1px solid var(--accent);
  color: #fff !important;
  text-decoration: none;
  cursor: pointer;
  transition: background .18s, transform .15s;
}
.btn-enquire-head:hover {
  background: var(--accent-dk);
  border-color: var(--accent-dk);
  transform: translateY(-1px);
}

/* Secondary E-commerce Category Bar */
.cat-nav-bar {
  position: relative;
  background: var(--surface);
  border-bottom: 1px solid var(--line);
  padding: 6px 0;
  z-index: 95;
}
.cat-nav-inner,
div.shell.cat-nav-inner {
  display: flex;
  align-items: center;
  width: 100%;
  padding-inline: 8% !important;
}
.cat-nav-left {
  display: flex;
  align-items: center;
  min-width: 0;
  padding: 2px 0;
  position: relative;
  overflow: visible;
}
.cat-nav-left::-webkit-scrollbar { display: none; }
.cat-nav-list {
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 0;
  padding: 0;
  list-style: none;
  flex-shrink: 0;
}
.cat-nav-btn {
  background: transparent;
  border: 1px solid transparent;
  color: var(--ink-soft);
  font-size: 13.5px;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: 999px;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: background .18s, color .18s, border-color .18s;
  white-space: nowrap;
}
.cat-nav-btn:hover {
  background: var(--paper);
  color: var(--ink);
}
.cat-nav-btn.is-active {
  background: var(--ink);
  color: var(--surface);
  border-color: var(--ink);
  font-weight: 600;
}
.cat-nav-btn.is-about {
  color: var(--accent);
  background: var(--accent-tint);
  border-color: transparent;
  font-weight: 600;
  flex-shrink: 0;
  white-space: nowrap;
}
.cat-nav-btn.is-about:hover {
  background: var(--accent);
  color: #fff;
}

/* "More Categories" Trigger Button & Dropdown */
.cat-more-wrapper {
  position: relative;
  display: inline-flex;
  align-items: center;
}
.cat-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  border: 1px solid var(--line);
  background: var(--paper);
  color: var(--ink);
  padding: 6px 14px;
  border-radius: 999px;
  cursor: pointer;
  font-size: 13.5px;
  transition: background .18s, color .18s, border-color .18s, box-shadow .18s;
}
.cat-more-btn:hover {
  background: var(--surface);
  border-color: var(--ink-soft);
}
.cat-more-btn.is-active,
.cat-more-btn.has-selection {
  background: var(--accent-tint);
  color: var(--accent);
  border-color: var(--accent);
}
.cat-chevron {
  transition: transform .22s var(--ease);
  pointer-events: none;
}
.cat-more-btn[aria-expanded="true"] .cat-chevron,
.cat-more-btn.is-open .cat-chevron,
.cat-more-wrapper:hover .cat-chevron {
  transform: rotate(180deg);
}

/* Hover & Click Dropdown for "More Categories" */
.cat-more-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 260px;
  max-width: 340px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 16px 40px -8px rgba(0, 0, 0, 0.14), 0 2px 8px rgba(0, 0, 0, 0.04);
  padding: 8px;
  z-index: 250;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity .18s var(--ease), transform .18s var(--ease), visibility .18s;
  pointer-events: none;
}

/* Invisible bridge so mouse cursor doesn't lose hover across 8px gap */
.cat-more-dropdown::before {
  content: '';
  position: absolute;
  top: -12px;
  left: 0;
  right: 0;
  height: 12px;
}

/* Desktop hover */
@media (hover: hover) and (pointer: fine) {
  .cat-more-wrapper:hover .cat-more-dropdown,
  .cat-more-wrapper:focus-within .cat-more-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
  }
}

.cat-more-wrapper.is-open .cat-more-dropdown,
.cat-more-dropdown.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

[data-theme="dark"] .cat-more-dropdown {
  background: #181D24;
  border-color: #2D3540;
  box-shadow: 0 20px 48px -8px rgba(0, 0, 0, 0.7), 0 4px 14px rgba(0, 0, 0, 0.3);
}

.cat-drop-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.cat-drop-item {
  width: 100%;
  text-align: left;
  background: transparent;
  border: 1px solid transparent;
  border-radius: 10px;
  padding: 8px 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  cursor: pointer;
  transition: background .15s, border-color .15s;
  text-decoration: none;
  font-family: inherit;
}

.cat-drop-item:hover {
  background: var(--paper);
  border-color: var(--line-soft);
}

.cat-drop-item.is-active {
  background: var(--ink);
  color: var(--surface);
  border-color: var(--ink);
}

.cat-drop-item.is-active .cat-drop-title,
.cat-drop-item.is-active .cat-drop-count,
.cat-drop-item.is-active .cat-drop-arrow {
  color: var(--surface);
}

.cat-drop-content {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
  flex: 1;
}

.cat-drop-title {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.25;
}

.cat-drop-sub {
  font-size: 11px;
  color: var(--muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 180px;
  line-height: 1.2;
}

.cat-drop-right {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}

.cat-drop-count {
  font-size: 10.5px;
  font-weight: 600;
  color: var(--muted-2);
  background: var(--paper);
  padding: 2px 7px;
  border-radius: 999px;
  border: 1px solid var(--line-soft);
}

[data-theme="dark"] .cat-drop-count {
  background: rgba(255, 255, 255, 0.08);
  border-color: transparent;
}

.cat-drop-arrow {
  color: var(--muted);
  transition: transform .15s;
}

.cat-drop-item:hover .cat-drop-arrow {
  transform: translateX(2px);
  color: var(--ink);
}

/* ── Mega Menu Dropdown ─────────────────────────────────────────────────── */
.cat-mega-menu {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  width: 100%;
  background: var(--surface);
  border-top: 1px solid var(--line-soft);
  border-bottom: 2px solid var(--line);
  box-shadow: 0 24px 50px -10px rgba(0, 0, 0, 0.12), 0 4px 14px rgba(0, 0, 0, 0.04);
  z-index: 120;
  padding: 26px 0 30px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity .2s var(--ease), transform .2s var(--ease), visibility .2s;
  pointer-events: none;
}
.cat-mega-menu.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
  display: block !important;
}

[data-theme="dark"] .cat-mega-menu {
  background: #15191E;
  border-color: #272E37;
  box-shadow: 0 24px 50px -10px rgba(0, 0, 0, 0.65), 0 4px 16px rgba(0, 0, 0, 0.3);
}

.mega-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(140px, 1fr)) 250px;
  gap: 20px;
  align-items: stretch;
}

.mega-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 10px 14px;
  border-radius: 12px;
  transition: background .15s;
}
.mega-col:hover {
  background: var(--paper);
}
[data-theme="dark"] .mega-col:hover {
  background: rgba(255, 255, 255, 0.035);
}

.mega-col-head {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 4px;
}
.mega-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 9px;
  background: var(--accent-tint);
  color: var(--accent);
  flex-shrink: 0;
}
.mega-col-head-text {
  display: flex;
  flex-direction: column;
}
.mega-cat-btn {
  background: none;
  border: none;
  padding: 0;
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
  text-align: left;
  cursor: pointer;
  line-height: 1.25;
  transition: color .15s;
  text-decoration: none;
}
.mega-cat-btn:hover {
  color: var(--accent);
}
.mega-col-sub {
  font-size: 11.5px;
  color: var(--muted);
  line-height: 1.35;
  margin-top: 2px;
}

.mega-list {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.mega-link {
  background: none;
  border: none;
  padding: 5px 8px;
  border-radius: 6px;
  font-size: 13px;
  color: var(--ink-soft);
  text-align: left;
  cursor: pointer;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background .15s, color .15s, transform .15s;
}
.mega-link:hover {
  background: var(--surface);
  color: var(--accent);
  transform: translateX(3px);
}
[data-theme="dark"] .mega-link:hover {
  background: rgba(255, 255, 255, 0.06);
}

.mega-view-all {
  margin-top: auto;
  padding-top: 8px;
  border-top: 1px dashed var(--line);
  background: none;
  border-left: none;
  border-right: none;
  border-bottom: none;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--accent);
  text-align: left;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  text-decoration: none;
  transition: gap .18s;
}
.mega-view-all:hover {
  gap: 8px;
  text-decoration: underline;
}

/* Mega Menu Spotlight Banner */
.mega-spotlight {
  background: var(--tint);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 12px;
}
.spotlight-tag {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 700;
}
.mega-spotlight h4 {
  font-family: var(--display);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.3;
  margin: 0;
  color: var(--ink);
}
.mega-spotlight p {
  font-size: 12.5px;
  color: var(--muted);
  line-height: 1.5;
  margin: 0;
}
.spotlight-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 9px 14px;
  font-size: 12.5px;
  font-weight: 600;
  border-radius: 8px;
  background: var(--ink);
  color: var(--surface) !important;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background .18s, transform .15s;
}
.spotlight-btn:hover {
  background: var(--accent);
  transform: translateY(-1px);
}

@media (max-width: 1350px) {
  .mega-grid {
    grid-template-columns: repeat(2, 1fr) 250px;
    gap: 18px;
  }
}
@media (max-width: 860px) {
  .cat-mega-menu {
    max-height: 80vh;
    overflow-y: auto;
    padding: 18px 0;
  }
  .mega-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .mega-spotlight {
    margin-top: 10px;
  }
}

/* ── Storefront Layout ──────────────────────────────────────────────────── */
.store-section {
  padding: 30px 0 60px;
}
.store-container {
  display: grid;
  grid-template-columns: 270px 1fr;
  gap: 32px;
  align-items: start;
  width: 100%;
}

/* Store Sidebar Filters */
.store-sidebar {
  position: sticky;
  top: 128px;
  max-height: calc(100vh - 150px);
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.02);
  scrollbar-width: thin;
  scrollbar-color: var(--line) transparent;
}
.store-sidebar::-webkit-scrollbar {
  width: 5px;
}
.store-sidebar::-webkit-scrollbar-track {
  background: transparent;
}
.store-sidebar::-webkit-scrollbar-thumb {
  background: var(--line);
  border-radius: 6px;
}
.store-sidebar::-webkit-scrollbar-thumb:hover {
  background: var(--muted);
}

.sidebar-head {
  position: sticky;
  top: -20px;
  background: var(--surface);
  z-index: 2;
  margin: -20px -20px 0 -20px;
  padding: 16px 20px 12px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line-soft);
}
.sidebar-head h3 {
  font-size: 15px;
  font-weight: 700;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 8px;
}
.btn-reset-filters {
  background: none;
  border: none;
  font-size: 12px;
  color: var(--accent);
  font-weight: 600;
  cursor: pointer;
  padding: 0;
}
.btn-reset-filters:hover { text-decoration: underline; }

.filter-search-box {
  position: relative;
  width: 100%;
}
.filter-search-box svg {
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  width: 15px;
  height: 15px;
  color: var(--muted);
  pointer-events: none;
}
.filter-search-box input {
  width: 100%;
  height: 42px;
  padding: 10px 10px 10px 34px;
  font-size: 13.5px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  box-sizing: border-box;
}
.filter-search-box input:focus {
  outline: none;
  border-color: var(--ink);
  background: var(--surface);
}

.filter-block {
  border-top: 1px solid var(--line-soft);
  padding-top: 14px;
}
.filter-block-title {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--muted);
  margin-bottom: 10px;
}
.filter-list {
  display: flex;
  flex-direction: column;
  gap: 7px;
  max-height: none;
  overflow: visible;
  padding-right: 0;
}
.filter-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  color: var(--ink-2);
  cursor: pointer;
  padding: 4px 6px;
  border-radius: 6px;
  transition: background .12s, color .12s;
}
.filter-item:hover {
  background: var(--paper);
  color: var(--ink);
}
.filter-item input {
  accent-color: var(--accent);
  margin-right: 8px;
}
.filter-item span.filter-name {
  flex: 1;
}
.filter-item span.filter-n {
  font-size: 11px;
  color: var(--muted);
  background: var(--paper);
  padding: 1px 6px;
  border-radius: 999px;
}

/* Sort Select in sidebar */
.sort-select {
  width: 100%;
  height: 42px;
  padding: 10px 14px;
  font-size: 13.5px;
  font-weight: 500;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  color: var(--ink);
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%235E6771' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 34px;
  box-sizing: border-box;
  transition: border-color .15s, background-color .15s;
}
.sort-select:focus {
  outline: none;
  border-color: var(--ink);
  background-color: var(--surface);
}

/* Store Main Area */
.store-main {
  min-width: 0;
}
.store-header-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.store-header-title {
  margin: 0;
  font-size: 24px;
  font-weight: 700;
  font-family: var(--display);
  text-align: left;
  display: flex;
  align-items: center;
  gap: 10px;
}
.store-header-title span.count-pill {
  font-size: 13px;
  font-family: var(--sans);
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 999px;
  background: var(--accent-tint);
  color: var(--accent);
  vertical-align: middle;
}
.store-header-sub {
  display: none !important;
}

.mobile-filter-btn {
  display: none;
  align-items: center;
  gap: 7px;
  padding: 8px 14px;
  font-size: 13.5px;
  font-weight: 600;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
  color: var(--ink);
  cursor: pointer;
}

/* Product Cards Grid */
.store-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(330px, 1fr));
  gap: 28px;
}

.product-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease), border-color .2s;
  position: relative;
}
.product-card:hover {
  transform: translateY(-4px);
  border-color: var(--ink-2);
  box-shadow: 0 16px 32px -8px rgba(0, 0, 0, 0.08);
}

.pc-media {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 11;
  background: var(--paper);
  display: grid;
  place-items: center;
  overflow: hidden;
  border-bottom: 1px solid var(--line-soft);
}
.pc-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.pc-media svg {
  width: 64px;
  height: 64px;
  color: var(--ink-2);
  opacity: .75;
  transition: transform .25s var(--ease);
}
.product-card:hover .pc-media svg {
  transform: scale(1.08);
}

/* Tint background variations */
.pc-tint-1 { background: #fdfaf6; }
.pc-tint-2 { background: #f6f8fa; }
.pc-tint-3 { background: #faf6f6; }
.pc-tint-4 { background: #f6faf7; }

[data-theme="dark"] .pc-tint-1 { background: #161A20; }
[data-theme="dark"] .pc-tint-2 { background: #181E26; }
[data-theme="dark"] .pc-tint-3 { background: #1E191A; }
[data-theme="dark"] .pc-tint-4 { background: #16201B; }

.pc-top-tags {
  position: absolute;
  top: 12px;
  left: 12px;
  right: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  pointer-events: none;
}
.pc-cat-badge {
  font-size: 11.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--surface);
  border: 1px solid var(--line);
  color: var(--ink);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
}
.pc-min-badge {
  font-size: 11.5px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(17, 20, 23, 0.08);
  color: var(--ink);
  backdrop-filter: blur(4px);
}
[data-theme="dark"] .pc-min-badge {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.pc-info {
  padding: 20px 22px;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 8px;
}
.pc-material-tag {
  font-size: 12px;
  font-weight: 600;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.pc-name {
  font-size: 17.5px;
  font-weight: 700;
  color: var(--ink);
  margin: 0;
  line-height: 1.32;
}
.pc-summary {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.5;
  margin: 0;
  flex: 1;
}

.pc-footer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  margin-top: 10px;
  border-top: 1px solid var(--line-soft);
}
.pc-pricing-box {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}
.pc-price-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--muted);
}
.pc-price-number {
  font-size: 17px;
  font-weight: 800;
  color: var(--ink);
}
.btn-enquire-card {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 700;
  border-radius: 999px;
  background: var(--surface);
  border: 1px solid var(--ink);
  color: var(--ink);
  cursor: pointer;
  transition: background .15s, color .15s, border-color .15s, transform .15s;
}
.btn-enquire-card:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
  transform: translateY(-1px);
}

/* Empty state */
.store-empty {
  text-align: center;
  padding: 60px 20px;
  background: var(--surface);
  border: 1px dashed var(--line);
  border-radius: 14px;
}
.store-empty h4 {
  font-size: 18px;
  margin: 0 0 8px;
}
.store-empty p {
  color: var(--muted);
  margin-bottom: 16px;
}

/* ── Interactive Enquiry Modal ──────────────────────────────────────────── */
.enquiry-modal {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--surface);
  color: var(--ink);
  padding: 0;
  width: min(540px, 94vw);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
  margin: auto;
}
.enquiry-modal::backdrop {
  background: rgba(12, 16, 20, 0.65);
  backdrop-filter: blur(5px);
}
.modal-header {
  padding: 22px 24px 16px;
  border-bottom: 1px solid var(--line-soft);
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.modal-header-text h3 {
  margin: 0;
  font-size: 20px;
  font-family: var(--display);
}
.modal-header-text p {
  margin: 4px 0 0;
  font-size: 13px;
  color: var(--muted);
}
.modal-close-btn {
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 50%;
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  cursor: pointer;
  color: var(--ink);
  font-size: 16px;
  transition: background .15s;
}
.modal-close-btn:hover { background: var(--paper); }

.modal-body {
  padding: 20px 24px 24px;
  max-height: 80vh;
  overflow-y: auto;
}

.modal-product-chip {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 12px 14px;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.mp-details strong {
  display: block;
  font-size: 14.5px;
  color: var(--ink);
}
.mp-details span {
  font-size: 12px;
  color: var(--muted);
}
.mp-price {
  font-size: 15px;
  font-weight: 700;
  color: var(--accent);
  white-space: nowrap;
}

.modal-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.modal-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
@media (max-width: 520px) {
  .modal-row { grid-template-columns: 1fr; }
}

.modal-field label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: var(--muted);
  margin-bottom: 5px;
}
.modal-field label span.req {
  color: var(--accent);
}
.modal-field input,
.modal-field textarea,
.modal-field select {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  color: var(--ink);
  font-size: 14px;
}
.modal-field input:focus,
.modal-field textarea:focus {
  outline: none;
  border-color: var(--ink);
  background: var(--surface);
}

.modal-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 8px;
}
.btn-submit-enquiry {
  width: 100%;
  padding: 12px;
  font-size: 14.5px;
  font-weight: 700;
  border-radius: 999px;
  background: var(--accent);
  border: 1px solid var(--accent);
  color: #fff;
  cursor: pointer;
  transition: background .18s, transform .15s;
}
.btn-submit-enquiry:hover {
  background: var(--accent-dk);
  border-color: var(--accent-dk);
}
.btn-wa-fallback {
  width: 100%;
  padding: 10px;
  font-size: 13px;
  font-weight: 600;
  border-radius: 999px;
  background: transparent;
  border: 1px solid var(--line);
  color: var(--ink-2);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  transition: background .15s;
}
.btn-wa-fallback:hover {
  background: var(--paper);
  color: var(--ink);
}

/* Confirmation state */
.modal-success-state {
  text-align: center;
  padding: 30px 10px;
}
.modal-success-icon {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: rgba(30, 138, 76, 0.12);
  color: var(--ok);
  display: grid;
  place-items: center;
  margin: 0 auto 16px;
}
.modal-success-icon svg { width: 30px; height: 30px; }
.modal-success-state h3 {
  font-size: 21px;
  margin: 0 0 8px;
}
.modal-success-state p {
  font-size: 14.5px;
  color: var(--muted);
  max-width: 380px;
  margin: 0 auto 20px;
}

/* ── Animated Reviews Marquee / Carousel ────────────────────────────────── */
.reviews-section {
  padding: 60px 0;
  background: var(--paper);
  border-block: 1px solid var(--line-soft);
  overflow: hidden;
}
.reviews-head {
  text-align: center;
  margin-bottom: 40px;
}
.reviews-head .eyebrow {
  margin-bottom: 12px;
}
.reviews-head h2 {
  font-size: clamp(30px, 3.9vw, 46px);
  line-height: 1.15;
  margin-bottom: 16px;
}
.reviews-head .section-sub {
  margin: 0 auto;
  max-width: 560px;
  font-size: 16px;
  line-height: 1.55;
  color: var(--muted);
}
.reviews-marquee-wrap {
  position: relative;
  width: 100%;
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
}
.reviews-marquee-track {
  display: flex;
  gap: 16px;
  width: max-content;
  animation: reviewsMarquee 42s linear infinite;
}
.reviews-marquee-track:hover {
  animation-play-state: paused;
}
@keyframes reviewsMarquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.review-card-modern {
  width: 290px;
  margin: 0 !important;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 14px 18px;
  flex: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.02);
}
.reviews-marquee-track .review-lead,
.review-card-modern.review-lead {
  grid-column: auto;
  background: var(--surface);
  border-color: var(--line);
  padding: 14px 18px;
}
.reviews-marquee-track .review-lead::before,
.review-card-modern.review-lead::before {
  display: none;
}
.reviews-marquee-track .review-lead blockquote p,
.review-card-modern.review-lead blockquote p {
  color: var(--ink);
  font-size: 13.5px;
  line-height: 1.45;
}
.reviews-marquee-track .review-lead .r-name,
.review-card-modern.review-lead .r-name {
  color: var(--ink);
}
.reviews-marquee-track .review-lead .r-meta,
.review-card-modern.review-lead .r-meta {
  color: var(--muted);
}
.rc-stars {
  display: flex;
  gap: 3px;
  color: #E2A03F;
}
.rc-stars svg { width: 13px; height: 13px; fill: currentColor; }
.rc-quote {
  font-size: 13.5px;
  line-height: 1.45;
  color: var(--ink);
  margin: 0;
  padding: 0;
  font-style: italic;
  flex: none;
}
.rc-quote p {
  margin: 0;
  padding: 0;
}
.rc-author {
  display: flex;
  flex-direction: column;
  margin-top: auto;
  padding-top: 8px;
  border-top: 1px solid var(--line-soft);
}
.rc-author strong {
  font-size: 13px;
  color: var(--ink);
}
.rc-author span {
  font-size: 11.5px;
  color: var(--muted);
}

/* Responsive adjustments */
@media (max-width: 960px) {
  .store-container {
    grid-template-columns: 1fr;
  }
  .store-sidebar {
    display: none;
    position: fixed;
    inset: 0;
    top: 0;
    z-index: 200;
    border-radius: 0;
    overflow-y: auto;
    max-height: 100vh;
  }
  .store-sidebar.is-open {
    display: flex;
  }
  .mobile-filter-btn {
    display: inline-flex;
  }
}

@media (max-width: 680px) {
  .store-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

/* ── Hero Banner Carousel ───────────────────────────────────────────────── */
.hero-carousel-section {
  margin: 24px 0;
  padding: 0;
  position: relative;
}
.hero-carousel-wrap {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px -15px rgba(0,0,0,0.12);
  border: 1px solid var(--line);
}
.hero-carousel-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  width: 100%;
}
.hero-slide {
  flex: 0 0 100%;
  position: relative;
  min-height: 280px;
  display: flex;
  align-items: center;
  padding: 40px 48px;
  background-color: var(--slate);
  color: #FFFFFF;
  overflow: hidden;
}
.hero-slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.85;
  transition: transform 6s ease;
  z-index: 1;
}
.hero-slide.is-active .hero-slide-bg {
  transform: scale(1.04);
}
.hero-slide-content {
  position: relative;
  z-index: 2;
  max-width: 620px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.hero-slide-tag {
  display: inline-block;
  align-self: flex-start;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,0.22);
  backdrop-filter: blur(8px);
  color: #FFFFFF;
}
.hero-slide-title {
  font-size: clamp(24px, 3.5vw, 36px);
  font-weight: 800;
  line-height: 1.2;
  margin: 0;
  color: #FFFFFF;
  letter-spacing: -0.02em;
}
.hero-slide-sub {
  font-size: clamp(14px, 1.8vw, 16px);
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.88);
  margin: 0;
}
.hero-slide-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 6px;
}
.btn-hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 999px;
  background: var(--surface);
  color: var(--ink);
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  transition: transform 0.15s, background-color 0.15s, color 0.15s;
}
.btn-hero-cta:hover {
  transform: translateY(-1px);
  background: #FFFFFF;
  color: #000000;
}
.btn-hero-quiet {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.25);
  color: #FFFFFF;
  font-weight: 500;
  font-size: 14px;
  cursor: pointer;
  text-decoration: none;
  transition: background-color 0.15s;
}
.btn-hero-quiet:hover {
  background: rgba(255,255,255,0.25);
}

.hero-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(17, 20, 23, 0.65);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #FFFFFF;
  display: grid;
  place-items: center;
  cursor: pointer;
  z-index: 10;
  transition: background-color 0.2s, transform 0.2s;
  padding: 0;
}
.hero-nav-btn:hover {
  background: rgba(17, 20, 23, 0.9);
  transform: translateY(-50%) scale(1.08);
}
.hero-prev { left: 16px; }
.hero-next { right: 16px; }

.hero-dots {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}
.hero-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: width 0.25s, background-color 0.25s;
}
.hero-dot.is-active {
  width: 24px;
  border-radius: 999px;
  background: #FFFFFF;
}

@media (max-width: 680px) {
  .hero-slide {
    padding: 30px 20px 45px;
    min-height: 240px;
  }
  .hero-nav-btn { display: none; }
}

/* ── Product Card Enhancements (Out of Stock, Discount, Multiple Images) ── */
.product-card.is-out-of-stock {
  opacity: 0.85;
}
.pc-stock-badge {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 4px;
  letter-spacing: 0.04em;
}
.pc-stock-badge.badge-out {
  background: #B8332A;
  color: #FFFFFF;
}
.pc-discount-badge {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 4px;
  background: #E65100;
  color: #FFFFFF;
  letter-spacing: 0.04em;
}
.pc-price-orig {
  font-size: 12px;
  color: var(--muted-2);
  text-decoration: line-through;
  margin-right: 5px;
}
.pc-img-dots {
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 5px;
  z-index: 3;
}
.pc-img-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(0,0,0,0.25);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: transform 0.15s, background-color 0.15s;
}
.pc-img-dot.is-active {
  background: var(--ink);
  transform: scale(1.3);
}

.pc-spec-tags-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  margin-bottom: 2px;
}
.pc-size-tag {
  font-size: 11.5px;
  font-weight: 500;
  color: var(--muted);
  background: var(--paper, rgba(0, 0, 0, 0.04));
  border: 1px solid var(--line-soft, rgba(0, 0, 0, 0.08));
  padding: 2px 7px;
  border-radius: 4px;
}

/* ══════════════════════════════════════════════════════════════════════════
   POLICY & LEGAL PAGES MODULE
   ══════════════════════════════════════════════════════════════════════════ */
.policy-hero {
  padding: 48px 0 36px;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}
.policy-hero-inner {
  max-width: 960px;
}
.policy-breadcrumbs {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  color: var(--muted);
  margin-bottom: 14px;
}
.policy-breadcrumbs a {
  color: var(--ink-soft);
  text-decoration: none;
  transition: color .15s;
}
.policy-breadcrumbs a:hover {
  color: var(--accent);
}
.policy-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--accent);
  background: var(--accent-tint);
  padding: 4px 12px;
  border-radius: 999px;
  margin-bottom: 12px;
}
.policy-title {
  font-size: clamp(26px, 3.8vw, 40px);
  font-weight: 800;
  color: var(--ink);
  line-height: 1.2;
  margin: 0 0 10px;
  letter-spacing: -0.02em;
}
.policy-meta {
  font-size: 13px;
  color: var(--muted);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin: 0 0 14px;
}
.policy-lede {
  font-size: 16.5px;
  line-height: 1.62;
  color: var(--ink-soft);
  max-width: 72ch;
  margin: 0;
}

.policy-container {
  padding: 40px 0 80px;
}
.policy-grid {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 44px;
  align-items: start;
}
@media (max-width: 900px) {
  .policy-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

/* Sticky sidebar navigation */
.policy-sidebar {
  position: sticky;
  top: 86px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.policy-sidebar-title {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--muted);
  margin: 0 0 4px;
}
.policy-toc {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.policy-toc-link {
  display: block;
  font-size: 13px;
  color: var(--ink-soft);
  text-decoration: none;
  padding: 7px 10px;
  border-radius: 8px;
  transition: background .15s, color .15s;
  line-height: 1.35;
}
.policy-toc-link:hover {
  background: var(--paper);
  color: var(--ink);
}
.policy-toc-link.is-active {
  background: var(--accent-tint);
  color: var(--accent);
  font-weight: 600;
}

/* Policy Content Article */
.policy-content {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 36px 44px;
}
@media (max-width: 640px) {
  .policy-content {
    padding: 24px 20px;
  }
}
.policy-content h2 {
  font-size: 21px;
  font-weight: 800;
  color: var(--ink);
  margin: 34px 0 14px;
  padding-top: 22px;
  border-top: 1px solid var(--line-soft);
  letter-spacing: -0.01em;
}
.policy-content h2:first-of-type {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}
.policy-content h3 {
  font-size: 16.5px;
  font-weight: 700;
  color: var(--ink);
  margin: 22px 0 8px;
}
.policy-content p {
  font-size: 15px;
  line-height: 1.68;
  color: var(--ink-soft);
  margin: 0 0 16px;
}
.policy-content ul, .policy-content ol {
  margin: 0 0 18px;
  padding-left: 22px;
  color: var(--ink-soft);
  font-size: 14.5px;
  line-height: 1.65;
}
.policy-content li {
  margin-bottom: 8px;
}

/* Callout cards */
.policy-callout {
  background: var(--paper);
  border: 1px solid var(--line);
  border-left: 4px solid var(--accent);
  border-radius: 10px;
  padding: 16px 20px;
  margin: 20px 0;
}
.policy-callout p {
  margin: 0;
  font-size: 14.5px;
  color: var(--ink);
}
.policy-callout.alert {
  border-left-color: #B8332A;
  background: rgba(184, 51, 42, 0.04);
}
.policy-callout.alert p {
  color: #B8332A;
}

/* Acceptance workflow cards / steps */
.policy-steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 14px;
  margin: 22px 0;
}
.policy-step-card {
  background: var(--paper);
  border: 1px solid var(--line-soft);
  border-radius: 12px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.policy-step-num {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  display: grid;
  place-items: center;
}
.policy-step-card h4 {
  margin: 2px 0 0;
  font-size: 14.5px;
  font-weight: 700;
  color: var(--ink);
}
.policy-step-card p {
  margin: 0;
  font-size: 12.5px;
  color: var(--muted);
  line-height: 1.45;
}

/* Acceptance box */
.acceptance-box {
  background: var(--paper);
  border: 1.5px dashed var(--line);
  border-radius: 12px;
  padding: 20px;
  margin: 24px 0;
}
.acceptance-box-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.acceptance-text {
  font-size: 13.5px;
  color: var(--ink-soft);
  line-height: 1.55;
  margin: 0;
  font-style: italic;
}

/* Footer layout enhancements */
.footer-grid-5 {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr 1.2fr;
  gap: 36px;
  padding-bottom: 48px;
}
@media (max-width: 1040px) {
  .footer-grid-5 {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}
@media (max-width: 600px) {
  .footer-grid-5 {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}
.footer-gst-note {
  display: inline-block;
  font-size: 11.5px;
  font-weight: 600;
  color: var(--accent);
  background: var(--accent-tint);
  padding: 3px 9px;
  border-radius: 4px;
  margin-top: 10px;
}
.footer-loc {
  font-size: 13px;
  color: var(--muted);
  margin-top: 6px;
  line-height: 1.4;
  display: block;
}
.footer-link-btn {
  background: none;
  border: none;
  padding: 0;
  text-align: left;
  font-family: inherit;
  font-size: 14.5px;
  color: var(--muted);
  cursor: pointer;
  transition: color .2s;
}
.footer-link-btn:hover {
  color: var(--accent);
}

/* ── Embedded Studio Consultation Section ──────────────────────────────── */
.enquiry-form-card {
  background: var(--slate-2);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  padding: 28px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
}
.consultation-form .field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 14px;
}
.consultation-form .field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
@media (max-width: 600px) {
  .consultation-form .field-row {
    grid-template-columns: 1fr;
  }
}
.consultation-form label {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: #A8B2BB;
}
.consultation-form label .req { color: #E08A80; }
.consultation-form label .optional { text-transform: none; font-size: 11px; color: #6E7780; }
.consultation-form input,
.consultation-form select,
.consultation-form textarea {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  padding: 10px 14px;
  color: #fff;
  font-size: 14px;
  width: 100%;
  box-sizing: border-box;
  transition: border-color .2s, background .2s;
}
.consultation-form select {
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23A8B2BB' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 12px;
  padding-right: 36px;
}
.consultation-form select option {
  background: #1B2026;
  color: #fff;
}
.consultation-form input:focus,
.consultation-form select:focus,
.consultation-form textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: rgba(255, 255, 255, 0.08);
}
.consult-dynamic-fields {
  margin-bottom: 2px;
  animation: fadeIn 0.25s ease-out;
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-4px); }
  to { opacity: 1; transform: translateY(0); }
}
.consultation-actions {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  margin-top: 18px;
}
.consultation-actions .btn {
  flex: 1;
  width: auto;
  justify-content: center;
  text-align: center;
  white-space: nowrap;
}
@media (max-width: 600px) {
  .consultation-actions {
    flex-direction: column;
  }
  .consultation-actions .btn {
    width: 100%;
  }
}

/* In-Container Consultation Success State */
.consultation-success-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 36px 20px 28px;
  animation: fadeIn 0.3s ease-out;
}
.consultation-success-state .cs-badge-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: rgba(34, 197, 94, 0.14);
  color: #22c55e;
  margin-bottom: 16px;
}
.consultation-success-state .cs-title {
  font-size: 21px;
  font-weight: 700;
  color: #FFFFFF;
  margin: 0 0 10px;
}
.consultation-success-state .cs-desc {
  font-size: 14.5px;
  line-height: 1.6;
  color: #C4CCD6;
  max-width: 440px;
  margin: 0 0 24px;
}
.consultation-success-state .cs-actions {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  width: 100%;
  max-width: 440px;
}
.consultation-success-state .cs-actions .btn {
  flex: 1;
  justify-content: center;
  text-align: center;
  white-space: nowrap;
}
@media (max-width: 600px) {
  .consultation-success-state .cs-actions {
    flex-direction: column;
    gap: 10px;
  }
  .consultation-success-state .cs-actions .btn {
    width: 100%;
  }
}



