/* =============================================================
   SPRYLO — Tech &amp; Gadgets Ecommerce HTML Template
   White surface · indigo primary · multi-color bento product cards
   ============================================================= */

/* ---------- Tokens ---------- */
:root {
  /* surfaces */
  --paper:        #FFFFFF;
  --bg:           #F8FAFC;
  --bg-soft:      #F1F5F9;
  --bg-deep:      #E2E8F0;

  /* ink */
  --ink:          #0F172A;
  --ink-soft:     #334155;
  --ink-mute:     #64748B;
  --ink-faint:    #94A3B8;

  /* primary indigo */
  --indigo:       #4F46E5;
  --indigo-deep:  #3730A3;
  --indigo-soft:  #EEF2FF;
  --indigo-line:  #C7D2FE;

  /* card colors (multi-color bento) */
  --card-blue:    #1E2A78;
  --card-blue-2:  #2B3FB7;
  --card-purple:  #7C3AED;
  --card-purple-2:#C026D3;
  --card-orange:  #F97316;
  --card-orange-2:#EA580C;
  --card-green:   #16A34A;
  --card-green-2: #15803D;
  --card-black:   #0A0A0A;

  /* support */
  --rose:         #E11D48;
  --emerald:      #10B981;
  --amber:        #F59E0B;
  --rule:         #E2E8F0;
  --rule-strong:  #CBD5E1;

  /* semantic */
  --accent:       var(--indigo);
  --accent-deep:  var(--indigo-deep);
  --accent-soft:  var(--indigo-soft);
  --fg:           var(--ink);
  --fg-soft:      var(--ink-soft);
  --fg-mute:      var(--ink-mute);

  /* type */
  --ff-display:   'Plus Jakarta Sans', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --ff-body:      'Outfit', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --ff-mono:      'Roboto Mono', ui-monospace, 'SF Mono', Menlo, monospace;

  --text-xs:      12px;
  --text-sm:      13px;
  --text-base:    15px;
  --text-md:      17px;
  --text-lg:      20px;
  --text-xl:      24px;
  --text-2xl:     32px;
  --text-3xl:     40px;
  --text-display: clamp(1.75rem, 1rem + 2.4vw, 3.25rem);
  --text-hero:    clamp(2rem, 1.2rem + 3vw, 3.75rem);

  /* spacing */
  --s1: 4px; --s2: 8px; --s3: 12px; --s4: 16px; --s5: 20px;
  --s6: 28px; --s7: 40px; --s8: 56px; --s9: 80px; --s10: 112px;

  /* layout */
  --container:    1280px;
  --container-pad: 24px;

  /* radii */
  --r-sm: 6px;
  --r:    14px;
  --r-lg: 22px;
  --r-xl: 28px;

  /* shadow */
  --shadow-sm:   0 1px 2px rgba(15,23,42,0.06);
  --shadow:      0 6px 18px -8px rgba(15,23,42,0.16), 0 2px 4px -2px rgba(15,23,42,0.06);
  --shadow-lg:   0 24px 60px -28px rgba(15,23,42,0.30), 0 8px 16px -10px rgba(15,23,42,0.08);
  --shadow-indigo: 0 12px 28px -10px rgba(79,70,229,0.35);

  /* motion */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; background: var(--paper); }
body {
  margin: 0;
  font-family: var(--ff-body);
  font-size: var(--text-base);
  line-height: 1.55;
  color: var(--fg);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
h1, h2, h3, h4, h5 {
  margin: 0;
  font-family: var(--ff-display);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--fg);
}
p { margin: 0; }
img, svg { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; text-decoration: none; transition: color 180ms var(--ease); }
a:hover { color: var(--indigo); }
button { font: inherit; border: 0; background: transparent; cursor: pointer; color: inherit; }
ul, ol { margin: 0; padding: 0; list-style: none; }
input, select, textarea { font: inherit; color: inherit; }
::selection { background: var(--indigo); color: var(--paper); }

.skip-link {
  position: absolute; top: -100px; left: var(--s4);
  background: var(--ink); color: var(--paper);
  padding: var(--s2) var(--s4); border-radius: var(--r-sm); z-index: 1000;
}
.skip-link:focus { top: var(--s4); }

/* ---------- Container ---------- */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--container-pad);
  width: 100%;
}

/* ---------- Utility bar (top thin strip) ---------- */
.utility {
  background: var(--ink);
  color: var(--paper);
  font-family: var(--ff-mono);
  font-size: var(--text-xs);
  letter-spacing: 0.04em;
}
.utility .container {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 10px; padding-bottom: 10px;
  flex-wrap: wrap; gap: var(--s3);
}
.utility .promo { display: inline-flex; align-items: center; gap: var(--s2); }
.utility .promo .tag {
  background: var(--rose); padding: 3px 8px; border-radius: 999px;
  font-weight: 500; font-size: 11px; letter-spacing: 0.06em;
}
.utility .links { display: inline-flex; gap: var(--s5); color: rgba(255,255,255,0.7); }
.utility .links a:hover { color: var(--paper); }

/* ---------- Top header (logo + search + icons) ---------- */
.site-header {
  background: var(--paper);
  border-bottom: 1px solid var(--rule);
  position: sticky; top: 0; z-index: 60;
}
.site-header .container {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: var(--s7);
  align-items: center;
  height: 84px;
}
.brand {
  display: inline-flex; align-items: center; gap: var(--s2);
  font-family: var(--ff-display);
  font-weight: 800; font-size: 24px;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.brand-mark {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--indigo), var(--card-purple) 70%);
  display: inline-grid; place-items: center;
  color: var(--paper); font-weight: 800; font-size: 18px;
  box-shadow: var(--shadow-indigo);
}
.brand-logo {
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  display: block;
  object-fit: contain;
}
.footer-brand .mark {
  display: flex;
  align-items: center;
  gap: var(--s2);
}
.footer-brand .brand-logo { width: 44px; height: 44px; flex-basis: 44px; }

.search {
  position: relative;
  max-width: 560px; width: 100%;
  margin: 0 auto;
}
.search input {
  width: 100%;
  padding: 14px 56px 14px 20px;
  border: 1px solid var(--rule-strong);
  border-radius: 999px;
  background: var(--bg);
  font-size: var(--text-base);
  transition: border-color 180ms var(--ease), background 180ms var(--ease);
}
.search input::placeholder { color: var(--ink-faint); }
.search input:focus {
  outline: 0;
  background: var(--paper);
  border-color: var(--indigo);
  box-shadow: 0 0 0 4px rgba(79,70,229,0.12);
}
.search button {
  position: absolute; right: 5px; top: 50%;
  transform: translateY(-50%);
  width: 42px; height: 42px;
  background: var(--indigo); color: var(--paper);
  border-radius: 999px;
  display: grid; place-items: center;
  transition: background 180ms var(--ease);
}
.search button:hover { background: var(--indigo-deep); }

.icon-row { display: inline-flex; gap: var(--s2); align-items: center; }
.icon-btn {
  position: relative;
  width: 44px; height: 44px;
  border-radius: 999px;
  display: grid; place-items: center;
  color: var(--ink);
  background: var(--bg);
  transition: background 180ms var(--ease), color 180ms var(--ease);
}
.icon-btn:hover { background: var(--indigo-soft); color: var(--indigo); }
.icon-btn .count {
  position: absolute; top: 4px; right: 4px;
  min-width: 18px; height: 18px; padding: 0 4px;
  background: var(--indigo); color: var(--paper);
  font-family: var(--ff-mono); font-size: 10px; font-weight: 600;
  border-radius: 999px; display: grid; place-items: center;
  border: 2px solid var(--paper);
}
.icon-btn--cart { background: var(--ink); color: var(--paper); }
.icon-btn--cart:hover { background: var(--indigo); color: var(--paper); }

/* ---------- Category nav bar ---------- */
.nav-bar {
  background: var(--paper);
  border-bottom: 1px solid var(--rule);
  position: sticky; top: 84px; z-index: 55;
}
.nav-bar .container {
  position: relative;
  display: flex; align-items: center; gap: var(--s7);
  height: 60px; flex-wrap: wrap;
  overflow: visible;
}
.all-cats-wrap {
  position: relative;
  display: inline-flex;
  align-items: center;
  align-self: stretch;
}
.all-cats-wrap::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  height: 10px;
}
.all-cats {
  display: inline-flex; align-items: center; gap: var(--s2);
  background: var(--indigo);
  color: var(--paper);
  padding: 10px 20px;
  border-radius: var(--r-sm);
  font-weight: 600; font-size: var(--text-sm);
  transition: background 180ms var(--ease);
}
.all-cats:hover { background: var(--indigo-deep); color: var(--paper); }
.all-cats-menu {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 260px;
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: var(--r-sm);
  box-shadow: var(--shadow);
  padding: var(--s2);
  z-index: 999;
}
.all-cats-wrap:hover > .all-cats-menu,
.all-cats-wrap:focus-within > .all-cats-menu,
.all-cats-wrap.is-open > .all-cats-menu {
  display: grid;
  gap: 2px;
}
.all-cats-menu a {
  display: flex;
  width: 100%;
  padding: 9px 10px;
  border-radius: var(--r-sm);
  color: var(--fg-soft);
  font-weight: 600;
  font-size: var(--text-sm);
  white-space: nowrap;
}
.all-cats-menu a:hover {
  background: var(--indigo-soft);
  color: var(--indigo);
}
.main-nav { display: flex; align-items: center; gap: var(--s7); margin-right: auto; }
.main-nav a {
  font-weight: 500; font-size: var(--text-sm);
  color: var(--fg-soft);
  display: inline-flex; align-items: center; gap: var(--s1);
  padding: 6px 0;
}
.main-nav a[aria-current="page"] { color: var(--indigo); }
.main-nav a:hover { color: var(--indigo); }
.nav-dropdown {
  position: static;
  display: inline-flex;
  align-items: center;
  align-self: stretch;
}
.nav-dropdown .nav-drop-toggle {
  height: 100%;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 6px 0;
  color: var(--fg-soft);
  font-size: var(--text-sm);
  font-weight: 500;
  cursor: pointer;
}
.nav-dropdown .nav-drop-toggle:hover,
.nav-dropdown .nav-drop-toggle[aria-current="page"],
.nav-dropdown.is-open .nav-drop-toggle {
  color: var(--artisan-saffron, var(--indigo));
}
.nav-drop-chevron {
  display: inline-block;
  font-size: 10px;
  transition: transform 180ms var(--ease);
}
.nav-dropdown.is-open .nav-drop-chevron,
.nav-dropdown:focus-within .nav-drop-chevron {
  transform: rotate(180deg);
}
.main-nav .nav-dropdown > .nav-drop-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  column-gap: 0;
  row-gap: 2px;
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: 0 0 12px 12px;
  box-shadow: 0 18px 38px rgba(11, 25, 51, .14);
  padding: 22px 28px 24px;
  z-index: 999;
}
.main-nav .nav-dropdown:hover > .nav-drop-menu,
.main-nav .nav-dropdown:focus-within > .nav-drop-menu,
.main-nav .nav-dropdown.is-open > .nav-drop-menu {
  display: grid;
}
.main-nav .nav-drop-menu a {
  display: flex;
  align-items: center;
  width: 100%;
  min-height: 38px;
  padding: 8px 16px;
  border-right: 1px solid var(--rule);
  color: var(--ink);
  line-height: 1.25;
  white-space: normal;
}
.main-nav .nav-drop-menu a:nth-child(5n),
.main-nav .nav-drop-menu a:last-child { border-right: 0; }
.main-nav .nav-drop-menu a:hover,
.main-nav .nav-drop-menu a:focus-visible,
.main-nav .nav-drop-menu a[aria-current="page"] {
  background: var(--artisan-saffron-soft, var(--indigo-soft));
  color: var(--artisan-saffron, var(--indigo));
}
.main-nav .nav-drop-menu .nav-drop-menu__all {
  grid-column: 1 / -1;
  justify-content: center;
  min-height: 42px;
  margin-top: 8px;
  padding-top: 12px;
  border-top: 1px solid var(--rule);
  border-right: 0;
  color: var(--artisan-saffron, var(--indigo));
  font-weight: 700;
}
.nav-cta {
  display: inline-flex; align-items: center; gap: var(--s2);
  font-family: var(--ff-mono); font-size: var(--text-xs);
  letter-spacing: 0.04em;
  color: var(--fg-mute);
}
.nav-cta strong { color: var(--rose); font-weight: 700; }
.nav-toggle {
  display: none; padding: 8px;
  font-size: 22px; color: var(--ink);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: var(--s2);
  padding: 12px 22px;
  border-radius: 999px;
  font-family: var(--ff-body); font-weight: 600;
  font-size: var(--text-sm); line-height: 1;
  transition: background 180ms var(--ease), color 180ms var(--ease), transform 180ms var(--ease), box-shadow 180ms var(--ease);
  white-space: nowrap;
  border: 1px solid transparent;
  cursor: pointer;
}
.btn--indigo { background: var(--indigo); color: var(--paper); box-shadow: var(--shadow-indigo); }
.btn--indigo:hover { background: var(--indigo-deep); color: var(--paper); transform: translateY(-1px); }
.btn--ink { background: var(--ink); color: var(--paper); }
.btn--ink:hover { background: var(--indigo); color: var(--paper); }
.btn--paper { background: var(--paper); color: var(--ink); }
.btn--paper:hover { background: var(--ink); color: var(--paper); }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--rule-strong); }
.btn--ghost:hover { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.btn--sm { padding: 8px 14px; font-size: var(--text-xs); }
.btn--block { width: 100%; }
.btn--pill-ghost-onDark {
  background: transparent; color: var(--paper);
  border-color: rgba(255,255,255,0.3);
}
.btn--pill-ghost-onDark:hover { background: var(--paper); color: var(--ink); border-color: var(--paper); }

/* ---------- Bento HERO ---------- */
.hero {
  padding: var(--s6) 0;
  background: var(--paper);
}
.bento {
  display: grid;
  grid-template-columns: 2.2fr 1fr;
  grid-template-rows: 1fr 1fr auto;
  gap: var(--s4);
}
.bento-card {
  position: relative;
  border-radius: var(--r-lg);
  padding: var(--s7);
  overflow: hidden;
  isolation: isolate;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 280px;
  transition: transform 300ms var(--ease), box-shadow 300ms var(--ease);
}
.bento-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.bento-card--image-only {
  display: block;
  padding: 0;
  cursor: pointer;
}
.bento-card.bento-card--image-only img.product,
.bento-card--lg.bento-card--image-only img.product {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: contain;
  object-position: center;
  background: #050505;
  filter: none;
  transition: transform 400ms var(--ease);
}
.bento-card--image-only:hover img.product {
  transform: scale(1.035);
}
.bento-card--image-only:focus-visible {
  outline: 3px solid var(--ink);
  outline-offset: 3px;
}
.bento-card .eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--ff-mono);
  font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  opacity: 0.82;
  position: relative; z-index: 2;
}
.bento-card h2, .bento-card h3, .bento-card p, .bento-card .shop-now, .bento-card .btn {
  position: relative; z-index: 2;
}
.bento-card h2, .bento-card h3 {
  color: inherit;
  margin: var(--s3) 0 var(--s4);
}
.bento-card p {
  font-size: var(--text-sm);
  line-height: 1.6;
  opacity: 0.86;
  max-width: 38ch;
  margin-bottom: var(--s5);
}
.bento-card .shop-now {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 600; font-size: var(--text-sm);
  padding-bottom: 4px;
  border-bottom: 1.5px solid currentColor;
  align-self: flex-start;
  transition: gap 180ms var(--ease);
}
.bento-card .shop-now:hover { gap: 14px; }
.bento-card img.product {
  position: absolute;
  pointer-events: none;
  filter: drop-shadow(0 20px 30px rgba(0,0,0,0.35));
}
.bento-card .sparkle {
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(255,255,255,0.18) 0, transparent 35%),
    radial-gradient(circle at 75% 70%, rgba(255,255,255,0.10) 0, transparent 40%);
  pointer-events: none;
}

.bento-card--lg {
  grid-row: 1 / span 2;
  grid-column: 1;
  background: linear-gradient(135deg, var(--card-blue), var(--card-blue-2));
  color: var(--paper);
  min-height: 540px;
  padding: var(--s8);
}
.bento-card--lg > div {
  position: relative;
  z-index: 2;
  max-width: 50%;
}
.bento-card--lg h2 {
  font-size: clamp(1.75rem, 1rem + 2vw, 2.75rem);
  line-height: 1.04;
  letter-spacing: -0.025em;
  font-weight: 800;
  max-width: 14ch;
}
.bento-card--lg p { max-width: 32ch; font-size: var(--text-sm); }
.bento-card--lg img.product {
  right: -30px; bottom: -20px; top: auto; transform: none;
  width: 50%; max-width: 440px;
  filter: drop-shadow(0 30px 50px rgba(0,0,0,0.45));
}
.bento-card--lg .dots {
  display: inline-flex; gap: 6px;
  margin-top: var(--s4);
}
.bento-card--lg .dots span {
  width: 22px; height: 4px; border-radius: 999px;
  background: rgba(255,255,255,0.3);
}
.bento-card--lg .dots span.active { background: var(--paper); width: 28px; }

.bento-card--purple {
  background: linear-gradient(135deg, var(--card-purple) 0%, var(--card-purple-2) 70%, #9333EA 100%);
  color: var(--paper);
  grid-column: 2;
  grid-row: 1;
  min-height: 260px;
}
.bento-card--purple img.product {
  right: -10px; bottom: -10px; width: 60%; max-width: 200px;
}

.bento-card--teal {
  background: linear-gradient(135deg, #0E7490 0%, #0891B2 60%, #06B6D4 100%);
  color: var(--paper);
  grid-column: 2;
  grid-row: 2;
  min-height: 260px;
}
.bento-card--teal img.product {
  right: -10px; bottom: -10px; width: 62%; max-width: 220px;
}

.bento-row {
  grid-column: 1 / -1;
  grid-row: 3;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s4);
}
.bento-card--orange {
  background: linear-gradient(135deg, var(--card-orange), var(--card-orange-2));
  color: var(--paper);
  min-height: 240px;
}
.bento-card--orange img.product {
  right: 0; bottom: 0; width: 55%; max-width: 180px;
}
.bento-card--green {
  background: linear-gradient(135deg, var(--card-green), var(--card-green-2));
  color: var(--paper);
  min-height: 240px;
}
.bento-card--green img.product {
  right: 0; bottom: 0; width: 56%; max-width: 200px;
}
.bento-card--black {
  background: linear-gradient(135deg, var(--card-black), #1F1F1F);
  color: var(--paper);
  min-height: 240px;
}
.bento-card--black img.product {
  right: 0; bottom: 0; width: 50%; max-width: 180px;
}

/* ---------- Section base ---------- */
.section {
  padding: var(--s6) 0;
}
.section-head {
  display: flex; justify-content: space-between; align-items: end;
  flex-wrap: wrap; gap: var(--s4);
  margin-bottom: var(--s6);
}
.section-head h2 {
  font-size: var(--text-2xl);
  letter-spacing: -0.02em;
}
.section-head .view-all {
  font-weight: 600; font-size: var(--text-sm);
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--indigo);
}
.section-head .view-all:hover { gap: 12px; }

/* ---------- Tabs (category filter) ---------- */
.tabs {
  display: flex; gap: var(--s6);
  margin-bottom: var(--s6);
  border-bottom: 1px solid var(--rule);
}
.tab {
  font-weight: 600; font-size: var(--text-sm);
  color: var(--fg-mute);
  padding: 12px 0;
  position: relative;
  cursor: pointer;
}
.tab.is-active { color: var(--indigo); }
.tab.is-active::after {
  content: '';
  position: absolute; left: 0; right: 0; bottom: -1px;
  height: 2px; background: var(--indigo); border-radius: 2px;
}

/* ---------- Product card ---------- */
.products {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: var(--s4);
}
.product-card {
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: var(--r);
  padding: var(--s4);
  display: flex; flex-direction: column;
  position: relative;
  transition: border-color 200ms var(--ease), box-shadow 200ms var(--ease), transform 200ms var(--ease);
}
.product-card.is-filter-hidden { display: none; }
.product-card:hover {
  border-color: var(--indigo-line);
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}
.product-card .img-wrap {
  position: relative;
  aspect-ratio: 1 / 1;
  background: var(--bg);
  border-radius: var(--r-sm);
  overflow: hidden;
  margin-bottom: var(--s4);
}
.product-card .img-wrap img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 500ms var(--ease);
}
.product-card:hover .img-wrap img { transform: scale(1.06); }
.product-card .badge {
  position: absolute; top: 10px; left: 10px;
  background: var(--card-green); color: var(--paper);
  font-family: var(--ff-mono); font-size: 10px;
  letter-spacing: 0.05em;
  padding: 4px 10px; border-radius: 4px;
  font-weight: 600;
}
.product-card .badge--sale { background: var(--rose); }
.product-card .stock {
  display: inline-flex; align-items: center; gap: 4px;
  font-family: var(--ff-mono); font-size: 11px;
  letter-spacing: 0.04em;
  color: var(--fg-mute);
  margin-bottom: 4px;
}
.product-card .stock .dot {
  width: 6px; height: 6px; border-radius: 999px;
  background: var(--emerald);
}
.product-card .name {
  font-family: var(--ff-display);
  font-weight: 600; font-size: var(--text-sm);
  color: var(--ink);
  margin-bottom: 4px;
  line-height: 1.3;
}
.product-card .price {
  display: flex; align-items: baseline; gap: 8px;
  margin-bottom: var(--s2);
}
.product-card .price .now {
  font-family: var(--ff-display);
  font-weight: 700; font-size: var(--text-md);
  color: var(--ink);
}
.product-card .price .was {
  font-family: var(--ff-mono); font-size: 12px;
  color: var(--ink-faint); text-decoration: line-through;
}
.product-card .stars {
  display: inline-flex; gap: 1px;
  color: var(--amber);
  font-size: 13px;
}
.product-card .stars .count {
  font-family: var(--ff-mono); font-size: 11px;
  color: var(--fg-mute); margin-left: 6px;
}
.product-card .btn {
  margin-top: var(--s3);
  width: 100%; justify-content: center;
  border-radius: var(--r-sm);
  padding: 10px;
  background: var(--bg); color: var(--ink);
}
.product-card .btn:hover { background: var(--indigo); color: var(--paper); }

/* ---------- Discount banner (2-up) ---------- */
.discount-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s4);
}
.discount-card {
  position: relative;
  border-radius: var(--r-lg);
  padding: clamp(28px, 3vw, 44px);
  min-height: 300px;
  display: flex; flex-direction: column; justify-content: center;
  overflow: hidden;
  color: var(--paper);
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: var(--shadow);
  isolation: isolate;
  transition: transform 250ms var(--ease), box-shadow 250ms var(--ease);
}
.discount-card::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 82% 20%, rgba(255,255,255,0.18), transparent 30%),
    linear-gradient(120deg, transparent 55%, rgba(255,255,255,0.06));
  pointer-events: none;
}
.discount-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.discount-card--watch {
  background: linear-gradient(135deg, #101827 0%, #17243b 100%);
}
.discount-card--airpods {
  background: linear-gradient(135deg, #5b21b6 0%, #8b3fe4 100%);
}
.discount-card h3 {
  position: relative;
  z-index: 2;
  color: inherit;
  width: 58%;
  font-size: clamp(1.75rem, 2.3vw, 2.4rem);
  line-height: 1.08;
  letter-spacing: -0.035em;
  margin-bottom: var(--s3);
}
.discount-card h3 .pct {
  display: block;
  font-size: 1.15em;
  color: var(--amber);
  font-weight: 800;
}
.discount-card .meta {
  position: relative;
  z-index: 2;
  font-family: var(--ff-mono); font-size: var(--text-xs);
  letter-spacing: 0.12em; opacity: 0.72; margin-bottom: var(--s5);
}
.discount-card .shop-now {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  min-height: 40px;
  padding: 9px 18px;
  border: 1px solid rgba(255,255,255,0.28);
  border-radius: 999px;
  background: rgba(255,255,255,0.1);
  color: var(--paper);
  font-size: var(--text-sm);
  font-weight: 600;
  backdrop-filter: blur(6px);
  transition: background 200ms var(--ease), color 200ms var(--ease), transform 200ms var(--ease);
}
.discount-card .shop-now:hover {
  background: var(--paper);
  color: var(--ink);
  transform: translateY(-2px);
}
.discount-card img.product {
  position: absolute;
  right: clamp(22px, 3vw, 42px);
  top: 50%;
  width: clamp(170px, 17vw, 220px);
  height: clamp(170px, 17vw, 220px);
  max-width: none;
  border: 8px solid rgba(255,255,255,0.14);
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  object-fit: cover;
  object-position: center;
  box-shadow: 0 24px 48px -24px rgba(0,0,0,0.65);
  filter: none;
  transform: translateY(-50%);
  transition: transform 400ms var(--ease);
}
.discount-card:hover img.product {
  transform: translateY(-50%) scale(1.035);
}

/* ---------- Categories grid (round tiles) ---------- */
.cats-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--s4);
}
.cat-tile {
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: var(--r);
  padding: var(--s5);
  text-align: center;
  transition: border-color 200ms var(--ease), transform 200ms var(--ease), background 200ms var(--ease);
}
.cat-tile:hover {
  border-color: var(--indigo-line);
  transform: translateY(-3px);
  background: var(--indigo-soft);
  color: var(--ink);
}
.cat-tile .pic {
  width: 80px; height: 80px;
  margin: 0 auto var(--s3);
  background: var(--bg);
  border-radius: 999px;
  overflow: hidden;
  display: grid; place-items: center;
}
.cat-tile .pic img { width: 100%; height: 100%; object-fit: cover; }
.cat-tile .name {
  font-family: var(--ff-display);
  font-weight: 700; font-size: var(--text-sm);
  color: var(--ink);
}
.cat-tile .count {
  font-family: var(--ff-mono); font-size: 11px;
  color: var(--fg-mute);
  margin-top: 4px;
}
.categories-listing .cat-tile {
  padding: var(--s6);
}
.categories-listing .cat-tile .pic {
  width: 180px;
  height: 180px;
  border-radius: var(--r);
  margin-bottom: var(--s4);
}
.categories-listing .cat-tile .name {
  font-size: var(--text-md);
}
.home-category-section .cat-tile {
  min-height: 260px;
  padding: var(--s7);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.home-category-section .cats-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--s5);
}
.home-category-section .cat-tile .pic {
  width: 150px;
  height: 150px;
  margin-bottom: var(--s5);
}
.home-category-section .cat-tile .name {
  font-size: var(--text-md);
}
.home-category-section .cat-tile .count {
  font-size: 12px;
  margin-top: var(--s2);
}

/* ---------- Compact product row (4-up small cards) ---------- */
.compact-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s4);
}
.compact-card {
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: var(--r);
  padding: var(--s4);
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: var(--s4);
  align-items: center;
  transition: border-color 200ms var(--ease);
}
.compact-card:hover { border-color: var(--indigo-line); }
.compact-card .pic {
  width: 76px; height: 76px;
  background: var(--bg);
  border-radius: var(--r-sm);
  overflow: hidden;
}
.compact-card .pic img { width: 100%; height: 100%; object-fit: cover; }
.compact-card .stock {
  font-family: var(--ff-mono); font-size: 10px;
  color: var(--fg-mute); display: inline-flex; align-items: center; gap: 4px;
  margin-bottom: 4px;
}
.compact-card .name {
  font-family: var(--ff-display); font-weight: 600; font-size: var(--text-sm);
  color: var(--ink); line-height: 1.2; margin-bottom: 4px;
}
.compact-card .price {
  font-family: var(--ff-display); font-weight: 700;
  color: var(--ink); font-size: var(--text-sm);
  margin-bottom: 6px;
}
.compact-card .btn {
  padding: 6px 10px; font-size: 11px;
  border-radius: var(--r-sm);
  background: var(--indigo); color: var(--paper);
  width: 100%;
}
.compact-card .btn:hover { background: var(--indigo-deep); }
.home-trending-section .compact-card {
  min-height: 190px;
  grid-template-columns: 140px 1fr;
  gap: var(--s6);
  padding: var(--s6);
}
.home-trending-section .compact-row {
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: var(--s5);
}
.home-trending-section .compact-card .pic {
  width: 140px;
  height: 140px;
}
.home-trending-section .compact-card .stock {
  display: flex;
  width: 100%;
  font-size: 11px;
  margin-bottom: 6px;
}
.home-trending-section .compact-card .name {
  display: block;
  width: 100%;
  font-size: var(--text-base);
  line-height: 1.25;
  margin-bottom: 6px;
}
.home-trending-section .compact-card .price {
  font-size: var(--text-base);
  margin-bottom: 8px;
}
.home-trending-section .compact-card .btn {
  padding: 9px 12px;
  font-size: 12px;
}

/* ---------- Brand strip ---------- */
.brands {
  background: var(--paper);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  padding: var(--s5) 0;
}
.brand-row {
  display: flex; justify-content: space-around; align-items: center;
  flex-wrap: wrap; gap: var(--s7);
}
.brand-row .brand-logo {
  font-family: var(--ff-display);
  font-weight: 800; font-size: var(--text-xl);
  letter-spacing: -0.02em;
  color: var(--ink-faint);
  transition: color 200ms var(--ease);
  text-transform: uppercase;
}
.brand-row .brand-logo:hover { color: var(--ink); }

/* ---------- Newsletter banner ---------- */
.newsletter {
  background: linear-gradient(135deg, var(--indigo) 0%, var(--card-purple) 100%);
  border-radius: var(--r-xl);
  padding: var(--s8) var(--s7);
  color: var(--paper);
  position: relative; overflow: hidden;
  margin: var(--s6) 0;
}
.newsletter::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 80% 20%, rgba(255,255,255,0.18) 0, transparent 40%),
    radial-gradient(circle at 10% 80%, rgba(255,255,255,0.10) 0, transparent 50%);
  pointer-events: none;
}
.newsletter-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s7);
  align-items: center;
  position: relative;
}
.newsletter h2 {
  color: var(--paper);
  font-size: var(--text-display);
  line-height: 1.05;
  letter-spacing: -0.025em;
  max-width: 16ch;
}
.newsletter h2 strong { color: var(--amber); font-weight: 800; }
.newsletter p {
  color: rgba(255,255,255,0.86);
  font-size: var(--text-md);
  margin-top: var(--s3);
  max-width: 38ch;
}
.newsletter-form {
  display: flex; gap: var(--s2);
  background: rgba(255,255,255,0.96);
  padding: 6px;
  border-radius: 999px;
  align-items: center;
}
.newsletter-form input {
  flex: 1; border: 0;
  background: transparent;
  padding: 12px 18px;
  font-size: var(--text-base);
  color: var(--ink);
  outline: 0;
}
.newsletter-form input::placeholder { color: var(--ink-faint); }
.newsletter-form .btn { background: var(--ink); color: var(--paper); border-radius: 999px; }
.newsletter-form .btn:hover { background: var(--indigo-deep); }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--ink);
  color: var(--paper);
  padding: var(--s9) 0 var(--s5);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr 1fr;
  gap: var(--s7);
  padding-bottom: var(--s8);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand .mark {
  display: inline-flex; align-items: center; gap: var(--s2);
  font-family: var(--ff-display);
  font-weight: 800; font-size: 24px;
  letter-spacing: -0.02em;
  color: var(--paper);
  margin-bottom: var(--s4);
}
.footer-brand p { color: rgba(255,255,255,0.7); max-width: 32ch; line-height: 1.6; font-size: var(--text-sm); }
.footer-col h4 {
  font-family: var(--ff-display);
  font-weight: 700; font-size: var(--text-sm);
  color: var(--paper);
  margin-bottom: var(--s4);
}
.footer-col ul { display: grid; gap: 10px; }
.footer-col a {
  color: rgba(255,255,255,0.7);
  font-size: var(--text-sm);
}
.footer-col a:hover { color: var(--paper); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: var(--s3);
  padding-top: var(--s5);
  font-family: var(--ff-mono); font-size: var(--text-xs);
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.5);
}
.socials { display: inline-flex; gap: var(--s2); }
.socials a {
  width: 36px; height: 36px;
  display: grid; place-items: center;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  color: var(--paper);
  transition: background 180ms var(--ease);
}
.socials a:hover { background: var(--indigo); }

/* ---------- Mobile drawer ---------- */
.drawer {
  position: fixed; inset: 0;
  background: var(--paper);
  z-index: 100;
  transform: translateX(100%);
  transition: transform 320ms var(--ease);
  display: flex; flex-direction: column;
  padding: var(--s7) var(--s5);
  gap: var(--s4);
  visibility: hidden;
  overflow-y: auto;
}
.drawer.is-open { transform: translateX(0); visibility: visible; }
.drawer .drawer-head {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: var(--s4);
}
.drawer a {
  font-family: var(--ff-display);
  font-weight: 700; font-size: var(--text-xl);
  color: var(--ink);
  padding: 12px 0;
  border-bottom: 1px solid var(--rule);
}
.drawer a:hover { color: var(--indigo); }
.drawer .drawer-close {
  font-family: var(--ff-mono);
  font-size: var(--text-xs);
  letter-spacing: 0.1em;
  color: var(--ink-mute);
  padding: var(--s2) var(--s3);
  border: 1px solid var(--rule);
  border-radius: var(--r-sm);
}

/* ---------- Page head (inner pages) ---------- */
.page-head {
  background: var(--paper);
  padding: var(--s7) 0 var(--s6);
  border-bottom: 1px solid var(--rule);
}
.crumbs {
  font-family: var(--ff-mono);
  font-size: var(--text-xs);
  color: var(--fg-mute);
  letter-spacing: 0.04em;
  display: inline-flex; align-items: center; gap: 8px;
  margin-bottom: var(--s3);
}
.crumbs a { color: var(--fg-mute); }
.crumbs a:hover { color: var(--indigo); }
.crumbs .sep { color: var(--ink-faint); }
.page-head h1 {
  font-size: var(--text-3xl);
  letter-spacing: -0.025em;
  max-width: 24ch;
}
.page-head p {
  font-size: var(--text-md);
  color: var(--fg-soft);
  max-width: 60ch;
  margin-top: var(--s3);
}

/* ---------- Shop layout (sidebar + grid) ---------- */
.shop-layout {
  display: grid;
  grid-template-columns: 230px minmax(0, 1fr);
  gap: var(--s6);
}
.shop-results { min-width: 0; }
.filters {
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: var(--r);
  padding: var(--s5);
  position: sticky;
  top: 160px;
  align-self: start;
  max-height: calc(100vh - 200px);
  overflow-y: auto;
}
.filters h3 {
  font-size: var(--text-sm);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--fg-mute);
  margin-bottom: var(--s3);
}
.filter-block {
  padding-bottom: var(--s5);
  margin-bottom: var(--s5);
  border-bottom: 1px solid var(--rule);
}
.filter-block:last-child { border-bottom: 0; margin-bottom: 0; padding-bottom: 0; }
.filter-block label {
  display: flex; align-items: center; gap: var(--s2);
  padding: 6px 0;
  font-size: var(--text-sm);
  color: var(--fg-soft);
  cursor: pointer;
}
.filter-block label:hover { color: var(--indigo); }
.filter-block label input { accent-color: var(--indigo); }
.filter-block label .ct {
  margin-left: auto;
  font-family: var(--ff-mono); font-size: 11px;
  color: var(--ink-faint);
}
.range-bar { height: 4px; background: var(--rule); border-radius: 999px; position: relative; margin: var(--s4) 0; }
.range-bar::after {
  content: ''; position: absolute; left: 10%; right: 30%; top: 0; bottom: 0;
  background: var(--indigo); border-radius: 999px;
}
.shop-toolbar {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: var(--s5);
  flex-wrap: wrap; gap: var(--s3);
}
.shop-toolbar .count {
  font-family: var(--ff-mono); font-size: var(--text-xs);
  color: var(--fg-mute);
  letter-spacing: 0.04em;
}
.shop-toolbar select {
  padding: 8px 14px;
  border: 1px solid var(--rule-strong);
  border-radius: var(--r-sm);
  background: var(--paper);
  font-size: var(--text-sm);
}
.shop-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--s4);
}
.shop-grid .product-card { min-width: 0; padding: 12px; }
.shop-grid .product-card .img-wrap {
  aspect-ratio: 4 / 5;
  background: #f7f3ed;
}
.shop-grid .product-card .img-wrap a {
  display: block;
  width: 100%;
  height: 100%;
}
.shop-grid .product-card .img-wrap img {
  object-fit: contain;
  object-position: center;
}
.shop-grid .product-card .name {
  display: -webkit-box;
  min-height: 2.6em;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.shop-grid .product-card .btn { margin-top: auto; }
.infinite-scroll {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: var(--s6);
  color: var(--fg-mute);
  font-size: var(--text-sm);
}
.infinite-scroll__spinner {
  display: none;
  width: 22px;
  height: 22px;
  border: 2px solid var(--rule-strong);
  border-top-color: var(--indigo);
  border-radius: 50%;
  animation: infinite-spin 700ms linear infinite;
}
.infinite-scroll.is-loading .infinite-scroll__spinner { display: block; }
.infinite-scroll__retry {
  padding: 8px 14px;
  border-radius: var(--r-sm);
  background: var(--artisan-navy);
  color: #fff;
  font-weight: 700;
}
@keyframes infinite-spin { to { transform: rotate(360deg); } }

/* ---------- Product detail ---------- */
.product-detail {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: var(--s8);
  padding: var(--s7) 0 var(--s9);
}
.gallery {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s3);
  align-self: start;
}
.gallery--has-thumbs {
  grid-template-columns: 92px minmax(0, 1fr);
  gap: var(--s5);
  align-items: start;
}
.gallery--single .gallery-main {
  grid-column: 1;
}
.gallery-thumbs {
  display: flex;
  flex-direction: column;
  gap: var(--s3);
  align-self: start;
  max-height: min(620px, calc(100vh - 180px));
  overflow-y: auto;
  padding-right: 2px;
}
.gallery-thumbs button {
  width: 92px;
  height: 92px;
  flex: 0 0 92px;
  border-radius: var(--r-sm);
  border: 1px solid var(--rule);
  overflow: hidden;
  background: var(--bg);
  padding: 0;
  cursor: pointer;
}
.gallery-thumbs button.is-active {
  border-color: var(--indigo);
  box-shadow: 0 0 0 1px var(--indigo);
}
.gallery-thumbs img { width: 100%; height: 100%; object-fit: cover; }
.gallery-main {
  border: 1px solid var(--rule);
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--bg);
  aspect-ratio: 1 / 1;
  margin: 0;
}
.gallery-main img { width: 100%; height: 100%; object-fit: cover; }

.pdp-info .pdp-cat {
  font-family: var(--ff-mono); font-size: var(--text-xs);
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--indigo);
  margin-bottom: var(--s2);
}
.pdp-info h1 {
  font-size: var(--text-3xl);
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin-bottom: var(--s3);
}
.pdp-info .rating-row {
  display: inline-flex; gap: var(--s3); align-items: center;
  font-size: var(--text-sm);
  color: var(--fg-mute);
  margin-bottom: var(--s4);
}
.pdp-info .price-row {
  display: flex; align-items: baseline; gap: var(--s4);
  margin: var(--s5) 0 var(--s4);
  padding-top: var(--s5);
  border-top: 1px solid var(--rule);
}
.pdp-info .price-row .now {
  font-family: var(--ff-display);
  font-size: var(--text-3xl);
  font-weight: 800;
  color: var(--ink);
}
.pdp-info .price-row .was { font-family: var(--ff-mono); color: var(--ink-faint); text-decoration: line-through; }
.pdp-info .price-row .save { background: var(--card-green); color: var(--paper); font-family: var(--ff-mono); font-size: var(--text-xs); padding: 4px 8px; border-radius: 4px; font-weight: 600; }
.pdp-info p.desc { font-size: var(--text-md); color: var(--fg-soft); line-height: 1.65; margin-bottom: var(--s5); }
.option-block { margin-bottom: var(--s5); }
.option-block .label {
  font-family: var(--ff-mono); font-size: var(--text-xs);
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--fg-mute); margin-bottom: var(--s3);
}
.color-swatches { display: flex; gap: var(--s2); }
.color-swatches button {
  width: 36px; height: 36px;
  border-radius: 999px;
  border: 2px solid transparent;
  outline: 1px solid var(--rule);
  cursor: pointer;
}
.color-swatches button.is-active { border-color: var(--indigo); outline-color: var(--indigo); }
.option-pills { display: flex; gap: var(--s2); flex-wrap: wrap; }
.option-pills button {
  padding: 8px 16px;
  border-radius: var(--r-sm);
  border: 1px solid var(--rule-strong);
  background: var(--paper);
  font-size: var(--text-sm); font-weight: 600;
  color: var(--fg-soft);
  cursor: pointer;
  transition: all 180ms var(--ease);
}
.option-pills button.is-active { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.qty {
  display: inline-flex; align-items: center;
  border: 1px solid var(--rule-strong);
  border-radius: var(--r-sm);
  overflow: hidden;
}
.qty button { padding: 10px 14px; font-weight: 700; }
.qty input { width: 50px; border: 0; text-align: center; font-family: var(--ff-mono); font-weight: 600; }
.pdp-cta { display: flex; gap: var(--s3); flex-wrap: wrap; align-items: center; margin-top: var(--s4); }
.pdp-cta .btn { padding: 14px 28px; font-size: var(--text-base); }
.pdp-quote-btn { flex: 1 1 190px; min-width: 0; }
.product-secondary {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: var(--s8);
}
.product-specs { min-width: 0; }
.product-specs table { table-layout: fixed; }
.product-specs td { overflow-wrap: anywhere; }
.product-inquiry-summary {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: var(--s5);
  align-items: center;
  padding: var(--s5);
  margin-bottom: var(--s5);
  border-radius: var(--r);
  background: var(--bg);
}
.pdp-features {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: var(--s3);
  margin-top: var(--s7);
  padding-top: var(--s5);
  border-top: 1px solid var(--rule);
}
.pdp-features .pf {
  display: flex; gap: var(--s3); align-items: center;
  font-size: var(--text-sm);
  color: var(--fg-soft);
}
.pdp-features .pf .ic {
  width: 32px; height: 32px; flex-shrink: 0;
  background: var(--indigo-soft);
  color: var(--indigo);
  border-radius: 999px;
  display: grid; place-items: center;
  font-size: 16px;
}

/* ---------- Quote modal ---------- */
.quote-alert {
  padding: 12px 16px;
  border-radius: var(--r-sm);
  margin-top: var(--s4);
  font-weight: 700;
  font-size: var(--text-sm);
}
.quote-alert--success { background: var(--indigo-soft); color: var(--indigo); }
.quote-alert--error { background: #FEF2F2; color: #B91C1C; margin: 0 0 var(--s4); }
.quote-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: var(--s5);
}
.quote-modal.is-open { display: flex; }
.quote-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.56);
}
.quote-modal__panel {
  position: relative;
  width: min(720px, 100%);
  max-height: calc(100vh - 48px);
  overflow: auto;
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
  padding: var(--s6);
}
.quote-modal__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--s4);
  margin-bottom: var(--s4);
}
.quote-modal__eyebrow {
  display: block;
  font-family: var(--ff-mono);
  font-size: var(--text-xs);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--indigo);
  margin-bottom: 4px;
}
.quote-modal__head h2 {
  font-size: var(--text-2xl);
  margin: 0;
}
.quote-modal__close {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--bg);
  color: var(--ink);
  font-weight: 800;
}
.quote-modal__close:hover {
  background: var(--indigo-soft);
  color: var(--indigo);
}
.quote-product {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: var(--s3);
  align-items: center;
  padding: var(--s3);
  border: 1px solid var(--rule);
  border-radius: var(--r);
  background: var(--bg);
  margin-bottom: var(--s5);
}
.quote-product img {
  width: 64px;
  height: 64px;
  object-fit: cover;
  border-radius: var(--r-sm);
}
.quote-product strong {
  display: block;
  font-family: var(--ff-display);
  font-size: var(--text-md);
  color: var(--ink);
}
.quote-product span {
  display: block;
  margin-top: 3px;
  color: var(--fg-mute);
  font-size: var(--text-sm);
}
.quote-form .btn { padding: 14px; }
.welcome-inquiry__panel { width: min(820px, 100%); }
.welcome-inquiry__intro {
  margin-top: 6px;
  color: var(--fg-mute);
  font-size: var(--text-sm);
  line-height: 1.5;
}
.welcome-inquiry .field-row--three {
  grid-template-columns: 1.2fr 0.65fr 1fr;
}
.welcome-inquiry .field label span:not(.optional) { color: var(--rose); }
.welcome-inquiry .field label .optional {
  color: var(--fg-mute);
  font-family: var(--ff-body);
  letter-spacing: 0;
  text-transform: none;
}
.field-error {
  color: #B91C1C;
  font-size: 12px;
  line-height: 1.35;
}
.welcome-inquiry .field:has(.field-error) input,
.welcome-inquiry .field:has(.field-error) select,
.welcome-inquiry .field:has(.field-error) textarea {
  border-color: #DC2626;
}
.welcome-inquiry__privacy {
  margin-top: var(--s3);
  color: var(--fg-mute);
  font-size: 12px;
  text-align: center;
}
.inquiry-toast {
  position: fixed;
  right: var(--s5);
  bottom: var(--s5);
  z-index: 1100;
  max-width: min(420px, calc(100vw - 40px));
  padding: 14px 18px;
  border-radius: var(--r);
  background: #065F46;
  color: var(--paper);
  box-shadow: var(--shadow-lg);
  font-size: var(--text-sm);
  font-weight: 700;
}

/* ---------- Cart ---------- */
.cart-layout {
  display: grid; grid-template-columns: 1.5fr 1fr;
  gap: var(--s7);
  padding: var(--s7) 0 var(--s9);
}
.cart-list {
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: var(--r);
  padding: var(--s5);
}
.cart-row {
  display: grid;
  grid-template-columns: 88px 1fr auto auto auto;
  gap: var(--s4);
  align-items: center;
  padding: var(--s4) 0;
  border-bottom: 1px solid var(--rule);
}
.cart-row:last-child { border-bottom: 0; }
.cart-row .pic {
  width: 88px; height: 88px;
  background: var(--bg); border-radius: var(--r-sm); overflow: hidden;
}
.cart-row .pic img { width: 100%; height: 100%; object-fit: cover; }
.cart-row .info .name { font-family: var(--ff-display); font-weight: 600; font-size: var(--text-base); color: var(--ink); margin-bottom: 4px; }
.cart-row .info .variant { font-family: var(--ff-mono); font-size: var(--text-xs); color: var(--fg-mute); letter-spacing: 0.04em; }
.cart-row .qty button { padding: 6px 10px; }
.cart-row .qty input { width: 36px; }
.cart-row .subtotal { font-family: var(--ff-display); font-weight: 700; color: var(--ink); }
.cart-row .remove { color: var(--ink-faint); font-size: 18px; padding: 6px; }
.cart-row .remove:hover { color: var(--rose); }

.cart-summary {
  background: var(--bg);
  border: 1px solid var(--rule);
  border-radius: var(--r);
  padding: var(--s6);
  align-self: start;
  position: sticky; top: 160px;
}
.cart-summary h3 { font-size: var(--text-lg); margin-bottom: var(--s4); }
.cart-line { display: flex; justify-content: space-between; padding: 8px 0; font-size: var(--text-sm); color: var(--fg-soft); }
.cart-line.is-total { font-family: var(--ff-display); font-weight: 800; font-size: var(--text-lg); color: var(--ink); padding-top: var(--s4); border-top: 1px solid var(--rule); margin-top: var(--s3); }
.cart-summary .btn { width: 100%; margin-top: var(--s5); padding: 14px; }
.promo-input { display: flex; gap: var(--s2); margin: var(--s4) 0; }
.promo-input input { flex: 1; padding: 10px 14px; border: 1px solid var(--rule-strong); border-radius: var(--r-sm); background: var(--paper); font-size: var(--text-sm); }
.promo-input button { padding: 10px 16px; background: var(--ink); color: var(--paper); border-radius: var(--r-sm); font-weight: 600; font-size: var(--text-sm); }

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--s8);
  padding: var(--s7) 0 var(--s9);
}
.contact-info .info-block {
  padding: var(--s4) 0;
  border-bottom: 1px solid var(--rule);
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: var(--s4);
  align-items: center;
}
.contact-info .info-block:first-child { padding-top: 0; }
.contact-info .ic {
  width: 48px; height: 48px;
  background: var(--indigo-soft);
  color: var(--indigo);
  border-radius: 999px;
  display: grid; place-items: center;
  font-size: 20px;
}
.contact-info .info-block .label {
  font-family: var(--ff-mono); font-size: var(--text-xs);
  letter-spacing: 0.08em; text-transform: uppercase; color: var(--fg-mute);
  margin-bottom: 2px;
}
.contact-info .info-block .value {
  font-family: var(--ff-display); font-weight: 600; font-size: var(--text-md);
  color: var(--ink);
  min-width: 0;
  overflow-wrap: anywhere;
}
.contact-form {
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: var(--r);
  padding: var(--s7);
}
.field { display: grid; gap: var(--s2); margin-bottom: var(--s4); }
.field label { font-family: var(--ff-mono); font-size: var(--text-xs); letter-spacing: 0.08em; text-transform: uppercase; color: var(--fg-soft); }
.field input, .field select, .field textarea {
  padding: 12px 16px;
  border: 1px solid var(--rule-strong);
  border-radius: var(--r-sm);
  background: var(--paper); color: var(--ink); font-size: var(--text-base);
  transition: border-color 180ms var(--ease), box-shadow 180ms var(--ease);
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: 0; border-color: var(--indigo); box-shadow: 0 0 0 3px rgba(79,70,229,0.15);
}
.field textarea { resize: vertical; min-height: 120px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s4); }
.quick-answer-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--s5);
}
.quick-answer-card {
  min-width: 0;
  padding: var(--s5);
  border: 1px solid var(--rule);
  border-radius: var(--r);
  background: var(--paper);
}

/* ---------- About page ---------- */
.about-head {
  padding-bottom: var(--s7);
}
.about-kicker {
  display: inline-block;
  margin-bottom: var(--s3);
  color: var(--indigo);
  font-family: var(--ff-mono);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.about-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
  gap: var(--s8);
  align-items: center;
  margin-top: var(--s5);
}
.about-hero__copy h1 {
  max-width: 12ch;
  margin: 0;
  font-size: var(--text-hero);
  line-height: 1.03;
  letter-spacing: -0.045em;
}
.about-hero__copy p {
  max-width: 58ch;
  margin-top: var(--s5);
  color: var(--fg-soft);
  font-size: var(--text-md);
  line-height: 1.7;
}
.about-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s3);
  margin-top: var(--s6);
}
.about-collage {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(190px, 0.75fr);
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: var(--s4);
  min-height: 500px;
}
.about-collage__item {
  position: relative;
  min-width: 0;
  min-height: 0;
  overflow: hidden;
  border: 1px solid var(--rule);
  border-radius: var(--r-lg);
  background: var(--bg);
  box-shadow: var(--shadow);
}
.about-collage__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 450ms var(--ease);
}
.about-collage__item:hover img { transform: scale(1.035); }
.about-collage__item span {
  position: absolute;
  right: 12px;
  bottom: 12px;
  left: 12px;
  overflow: hidden;
  padding: 10px 12px;
  border-radius: var(--r-sm);
  background: rgba(15,23,42,0.78);
  color: var(--paper);
  font-size: 12px;
  font-weight: 600;
  text-overflow: ellipsis;
  white-space: nowrap;
  backdrop-filter: blur(8px);
}
.about-collage__item--1 {
  grid-column: 1;
  grid-row: 1 / span 2;
}
.about-collage__item--2 {
  grid-column: 2;
  grid-row: 1;
}
.about-collage__item--3 {
  grid-column: 2;
  grid-row: 2;
}
.about-collage__empty {
  min-height: 500px;
  display: grid;
  place-items: center;
  border-radius: var(--r-lg);
  background: var(--indigo-soft);
  color: var(--indigo);
  font-family: var(--ff-display);
  font-weight: 700;
}
.about-intro {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: var(--s8);
  align-items: start;
}
.about-intro h2,
.about-process__lead h2,
.about-quality__panel h2,
.about-cta__panel h2 {
  font-size: var(--text-2xl);
  line-height: 1.15;
  letter-spacing: -0.03em;
}
.about-intro__text {
  display: grid;
  gap: var(--s4);
  color: var(--fg-soft);
  font-size: var(--text-md);
  line-height: 1.75;
}
.about-location-link {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 10px;
  margin-top: var(--s2);
  color: var(--indigo);
  font-size: var(--text-sm);
  font-weight: 700;
}
.about-location-link span {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 999px;
  background: var(--indigo-soft);
  font-size: 18px;
}
.about-location-link:hover { text-decoration: underline; }
.about-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: var(--s7);
  overflow: hidden;
  border: 1px solid var(--rule);
  border-radius: var(--r-lg);
  background: var(--paper);
}
.about-stats > div {
  padding: var(--s6);
  border-right: 1px solid var(--rule);
}
.about-stats > div:last-child { border-right: 0; }
.about-stats strong {
  display: block;
  color: var(--indigo);
  font-family: var(--ff-display);
  font-size: var(--text-2xl);
  line-height: 1;
}
.about-stats span {
  display: block;
  margin-top: var(--s2);
  color: var(--fg-mute);
  font-size: var(--text-sm);
}
.about-speciality { background: var(--bg); }
.about-speciality .section-head {
  max-width: 760px;
}
.about-speciality .section-head p {
  max-width: 60ch;
  margin-top: var(--s3);
  color: var(--fg-soft);
  line-height: 1.7;
}
.about-speciality__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s4);
}
.about-speciality__grid article {
  position: relative;
  overflow: hidden;
  min-height: 230px;
  padding: var(--s6);
  border: 1px solid var(--rule);
  border-radius: var(--r-lg);
  background: var(--paper);
}
.about-speciality__grid article::after {
  position: absolute;
  right: -28px;
  bottom: -44px;
  width: 130px;
  height: 130px;
  border-radius: 999px;
  background: var(--indigo-soft);
  content: '';
}
.about-speciality__grid span {
  color: var(--indigo);
  font-family: var(--ff-mono);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.12em;
}
.about-speciality__grid h3 {
  margin: var(--s6) 0 var(--s3);
  font-size: var(--text-lg);
}
.about-speciality__grid p {
  position: relative;
  z-index: 1;
  max-width: 34ch;
  color: var(--fg-soft);
  font-size: var(--text-sm);
  line-height: 1.7;
}
.about-values { background: var(--bg); }
.about-values .section-head { max-width: 760px; }
.about-value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s4);
}
.about-value-grid article {
  min-height: 260px;
  padding: var(--s6);
  border: 1px solid var(--rule);
  border-radius: var(--r-lg);
  background: var(--paper);
  transition: transform 250ms var(--ease), box-shadow 250ms var(--ease);
}
.about-value-grid article:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.about-value-grid__number {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  margin-bottom: var(--s6);
  border-radius: 999px;
  background: var(--indigo-soft);
  color: var(--indigo);
  font-family: var(--ff-mono);
  font-size: 12px;
  font-weight: 600;
}
.about-value-grid h3 {
  margin-bottom: var(--s3);
  font-size: var(--text-lg);
}
.about-value-grid p {
  color: var(--fg-soft);
  font-size: var(--text-sm);
  line-height: 1.7;
}
.about-process {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: var(--s8);
}
.about-process__lead {
  position: sticky;
  top: 110px;
  align-self: start;
}
.about-process__lead p {
  max-width: 46ch;
  margin: var(--s4) 0 var(--s5);
  color: var(--fg-soft);
  line-height: 1.7;
}
.about-process__steps {
  display: grid;
  gap: var(--s4);
  list-style: none;
}
.about-process__steps li {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: var(--s4);
  padding: var(--s5);
  border: 1px solid var(--rule);
  border-radius: var(--r);
  background: var(--paper);
}
.about-process__steps li > span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: var(--r-sm);
  background: var(--ink);
  color: var(--paper);
  font-family: var(--ff-mono);
  font-size: 12px;
}
.about-process__steps h3 {
  margin-bottom: 6px;
  font-size: var(--text-md);
}
.about-process__steps p {
  color: var(--fg-soft);
  font-size: var(--text-sm);
  line-height: 1.6;
}
.about-quality { background: var(--bg); }
.about-quality__panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s8);
  padding: var(--s7);
  border-radius: var(--r-xl);
  background: var(--ink);
  color: var(--paper);
}
.about-quality__panel h2 { color: var(--paper); }
.about-quality__panel p {
  max-width: 52ch;
  margin-top: var(--s4);
  color: rgba(255,255,255,0.72);
  line-height: 1.7;
}
.about-quality__panel ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s3);
  list-style: none;
}
.about-quality__panel li {
  position: relative;
  padding: 14px 14px 14px 42px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--r-sm);
  background: rgba(255,255,255,0.06);
  font-size: var(--text-sm);
}
.about-quality__panel li::before {
  content: '✓';
  position: absolute;
  left: 15px;
  color: #86EFAC;
  font-weight: 800;
}
.about-cta { padding-top: 0; }
.about-cta__panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s7);
  padding: var(--s7);
  border-radius: var(--r-xl);
  background: linear-gradient(135deg, var(--indigo), var(--card-purple));
  color: var(--paper);
}
.about-cta__panel h2 { color: var(--paper); }
.about-cta__panel p {
  margin-top: var(--s3);
  color: rgba(255,255,255,0.8);
}
.about-cta__panel .about-kicker { color: rgba(255,255,255,0.72); }
.about-cta__panel .btn { flex-shrink: 0; }

/* ---------- Responsive ---------- */
@media (max-width: 1180px) {
  .main-nav .nav-dropdown > .nav-drop-menu { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .main-nav .nav-drop-menu a:nth-child(5n) { border-right: 1px solid var(--rule); }
  .main-nav .nav-drop-menu a:nth-child(4n) { border-right: 0; }
  .products { grid-template-columns: repeat(4, 1fr); }
  .compact-row { grid-template-columns: repeat(2, 1fr); }
  .cats-grid { grid-template-columns: repeat(4, 1fr); }
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: var(--s5); }
  .shop-layout { grid-template-columns: 1fr; }
  .shop-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .filters { position: static; max-height: none; }
  .about-hero { grid-template-columns: minmax(0, 1fr) minmax(380px, 0.9fr); gap: var(--s6); }
}
@media (max-width: 960px) {
  .main-nav .nav-dropdown > .nav-drop-menu { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .main-nav .nav-drop-menu a:nth-child(4n) { border-right: 1px solid var(--rule); }
  .main-nav .nav-drop-menu a:nth-child(3n) { border-right: 0; }
  .bento { grid-template-columns: 1fr; grid-template-rows: auto; }
  .bento-card--lg { grid-row: auto; grid-column: 1; min-height: 420px; }
  .bento-card--lg img.product { width: 70%; max-width: 360px; }
  .bento-card--purple { grid-column: 1; grid-row: auto; }
  .bento-card--teal { grid-column: 1; grid-row: auto; }
  .bento-row { grid-column: 1; grid-row: auto; }
  .products { grid-template-columns: repeat(3, 1fr); }
  .cats-grid { grid-template-columns: repeat(3, 1fr); }
  .home-category-section .cats-grid { grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); }
  .home-category-section .cat-tile .pic { width: 130px; height: 130px; }
  .categories-listing .cat-tile .pic { width: 150px; height: 150px; }
  .home-trending-section .compact-row { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
  .home-trending-section .compact-card { grid-template-columns: 120px 1fr; }
  .home-trending-section .compact-card .pic { width: 120px; height: 120px; }
  .discount-row { grid-template-columns: 1fr; }
  .product-detail { grid-template-columns: 1fr; gap: var(--s6); }
  .cart-layout { grid-template-columns: 1fr; }
  .cart-summary { position: static; }
  .contact-grid { grid-template-columns: 1fr; gap: var(--s6); }
  .newsletter-grid { grid-template-columns: 1fr; gap: var(--s5); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .about-hero { grid-template-columns: 1fr; }
  .about-hero__copy h1 { max-width: 15ch; }
  .about-collage { min-height: 460px; }
  .about-intro,
  .about-process { grid-template-columns: 1fr; gap: var(--s6); }
  .about-process__lead { position: static; }
  .about-stats { grid-template-columns: 1fr 1fr; }
  .about-stats > div:nth-child(2) { border-right: 0; }
  .about-stats > div:nth-child(-n+2) { border-bottom: 1px solid var(--rule); }
  .about-value-grid { grid-template-columns: 1fr; }
  .about-speciality__grid { grid-template-columns: 1fr; }
  .about-speciality__grid article { min-height: 0; }
  .about-value-grid article { min-height: 0; }
  .about-quality__panel { grid-template-columns: 1fr; gap: var(--s6); }
}
@media (max-width: 760px) {
  :root { --container-pad: 16px; }
  .site-header .container { grid-template-columns: auto 1fr auto; gap: var(--s4); height: 72px; }
  .search { display: none; }
  .nav-bar .container { gap: var(--s4); height: 56px; overflow-x: auto; }
  .main-nav { display: none; }
  .nav-toggle { display: block; }
  .nav-cta { display: none; }
  .utility .links { display: none; }
  .products { grid-template-columns: repeat(2, 1fr); }
  .shop-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .compact-row { grid-template-columns: 1fr; }
  .cats-grid { grid-template-columns: repeat(2, 1fr); }
  .home-category-section .cats-grid { grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); }
  .home-category-section .cat-tile { min-height: 220px; }
  .home-category-section .cat-tile .pic { width: 120px; height: 120px; }
  .categories-listing .cat-tile .pic { width: 140px; height: 140px; }
  .home-trending-section .compact-row { grid-template-columns: 1fr; }
  .home-trending-section .compact-card { grid-template-columns: 110px 1fr; }
  .home-trending-section .compact-card .pic { width: 110px; height: 110px; }
  .discount-card {
    min-height: 420px;
    justify-content: flex-start;
    padding: var(--s6);
  }
  .discount-card h3 {
    width: 100%;
    max-width: 12ch;
  }
  .discount-card img.product {
    top: auto;
    right: var(--s6);
    bottom: var(--s6);
    width: 150px;
    height: 150px;
    transform: none;
  }
  .discount-card:hover img.product {
    transform: scale(1.035);
  }
  .gallery,
  .gallery--has-thumbs { grid-template-columns: 1fr; }
  .gallery-main { order: 1; }
  .gallery-thumbs {
    order: 2;
    flex-direction: row;
    max-height: none;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 0 0 4px;
  }
  .gallery-thumbs button {
    width: 78px;
    height: 78px;
    flex-basis: 78px;
  }
  .cart-row { grid-template-columns: 60px 1fr; gap: var(--s3); }
  .cart-row .qty, .cart-row .subtotal, .cart-row .remove { grid-column: 2; justify-self: start; }
  .field-row { grid-template-columns: 1fr; }
  .welcome-inquiry .field-row--three { grid-template-columns: 1fr; }
  .welcome-inquiry__panel { padding: var(--s5); }
  .pdp-features { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .section { padding: var(--s6) 0; }
  .newsletter { padding: var(--s7) var(--s5); }
  .about-head { padding-bottom: var(--s6); }
  .about-hero { margin-top: var(--s4); }
  .about-hero__actions { display: grid; }
  .about-hero__actions .btn { justify-content: center; }
  .about-collage { min-height: 350px; }
  .about-collage {
    grid-template-columns: minmax(0, 1.25fr) minmax(120px, 0.75fr);
    gap: var(--s3);
  }
  .about-stats > div { padding: var(--s5); }
  .about-stats strong { font-size: var(--text-xl); }
  .about-quality__panel,
  .about-cta__panel { padding: var(--s6); }
  .about-quality__panel ul { grid-template-columns: 1fr; }
  .about-cta__panel { align-items: stretch; flex-direction: column; }
  .about-cta__panel .btn { justify-content: center; }
}

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

/* =============================================================
   BHURA MURTI ART — premium artisan storefront system
   ============================================================= */
:root {
  --artisan-navy: #0b1933;
  --artisan-navy-soft: #162744;
  --artisan-saffron: #c96a12;
  --artisan-saffron-soft: #fff4e8;
  --artisan-ivory: #fbf8f2;
  --artisan-sand: #eee4d7;
  --artisan-line: #e7dfd4;
  --ink: var(--artisan-navy);
  --ink-soft: #34425a;
  --indigo: var(--artisan-navy);
  --indigo-deep: #061126;
  --indigo-soft: #f2f5f8;
  --indigo-line: #b7c2cf;
  --rule: #e8e3dc;
  --rule-strong: #d8d1c7;
  --container: 1320px;
  --shadow: 0 12px 34px -24px rgba(11, 25, 51, .38);
}

body { background: #fff; }
::selection { background: var(--artisan-saffron); }
.utility { background: var(--artisan-navy); }
.utility .promo .tag { background: var(--artisan-saffron); }
.site-header { box-shadow: 0 4px 24px rgba(11, 25, 51, .04); }
.site-header .container { height: 76px; }
.brand { color: var(--artisan-navy); }
.search input { background: #fbfcfd; }
.search input:focus { border-color: var(--artisan-saffron); box-shadow: 0 0 0 4px rgba(201, 106, 18, .1); }
.search button { background: var(--artisan-navy); }
.search button:hover { background: var(--artisan-saffron); }
.header-inquiry {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid var(--artisan-saffron);
  border-radius: 10px;
  color: var(--artisan-saffron);
  font-weight: 700;
  white-space: nowrap;
}
.header-inquiry:hover { background: var(--artisan-saffron); color: #fff; }
.nav-bar { top: 76px; }
.all-cats { background: var(--artisan-navy); border-radius: 9px; }
.all-cats:hover { background: var(--artisan-navy-soft); }
.main-nav a[aria-current="page"], .main-nav a:hover { color: var(--artisan-saffron); }
.nav-cta strong { color: var(--artisan-saffron); }
.btn--indigo { background: var(--artisan-navy); }
.btn--indigo:hover { background: var(--artisan-saffron); }
.site-footer { background: var(--artisan-navy); }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.seo-faq-list { display: grid; gap: 12px; max-width: 920px; }
.seo-faq-item { border: 1px solid var(--rule); border-radius: 12px; background: var(--surface); padding: 0 18px; }
.seo-faq-item summary { cursor: pointer; color: var(--ink); font-weight: 700; padding: 16px 28px 16px 0; }
.seo-faq-item p { color: var(--fg-soft); line-height: 1.7; padding: 0 0 18px; }
.category-seo-copy, .seo-copy { max-width: 850px; color: var(--fg-soft); line-height: 1.75; }
.home-seo-intro { display:grid; grid-template-columns:minmax(0,1.15fr) minmax(320px,.85fr); gap:clamp(24px,5vw,70px); align-items:end; margin-bottom:28px; }
.home-seo-intro h1 { max-width:780px; margin-top:8px; color:var(--ink); font-size:clamp(2.15rem,4.8vw,4.5rem); line-height:1.02; letter-spacing:-.045em; }
.home-seo-intro p { color:var(--fg-soft); font-size:1.05rem; line-height:1.75; }
.seo-eyebrow { color:var(--amber); font-family:var(--ff-mono); font-size:.75rem; font-weight:700; letter-spacing:.12em; text-transform:uppercase; }
.home-seo-actions { display:flex; flex-wrap:wrap; gap:10px; margin-top:20px; }
.seo-feature-grid { display:grid; grid-template-columns:repeat(4,minmax(0,1fr)); gap:14px; }
.seo-feature-grid article { padding:24px; border:1px solid var(--rule); border-radius:14px; background:var(--surface); }
.seo-feature-grid article > span { color:var(--amber); font-family:var(--ff-mono); font-size:.75rem; font-weight:700; }
.seo-feature-grid h3 { margin:12px 0 8px; color:var(--ink); font-size:1.05rem; }
.seo-feature-grid p { color:var(--fg-soft); font-size:.9rem; line-height:1.65; }
.material-link-grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(180px,1fr)); gap:12px; }
.material-link-grid a,.related-category-links a { display:flex; flex-direction:column; gap:5px; padding:18px; border:1px solid var(--rule); border-radius:12px; background:var(--surface); color:var(--ink); }
.material-link-grid span,.related-category-links span { color:var(--fg-mute); font-size:.82rem; }
.category-material-links { margin-top:18px; }
.trust-strip { display:grid; grid-template-columns:repeat(4,1fr); overflow:hidden; border:1px solid var(--rule); border-radius:16px; background:var(--surface); }
.trust-strip > div { display:flex; flex-direction:column; gap:5px; padding:25px; border-right:1px solid var(--rule); }
.trust-strip > div:last-child { border-right:0; }
.trust-strip strong { color:var(--ink); font-size:1.25rem; }.trust-strip span { color:var(--fg-mute); font-size:.84rem; }
.related-category-links { display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:12px; }
@media (max-width:900px){.home-seo-intro{grid-template-columns:1fr}.seo-feature-grid{grid-template-columns:repeat(2,1fr)}.trust-strip{grid-template-columns:repeat(2,1fr)}.trust-strip>div:nth-child(2){border-right:0}.related-category-links{grid-template-columns:repeat(2,1fr)}}
@media (max-width:560px){.home-seo-intro h1{font-size:2.25rem}.home-seo-actions{display:grid}.seo-feature-grid,.trust-strip,.related-category-links{grid-template-columns:1fr}.trust-strip>div{border-right:0;border-bottom:1px solid var(--rule)}.trust-strip>div:last-child{border-bottom:0}}

.category-hero {
  position: relative;
  overflow: hidden;
  padding: 28px 0 30px;
  background:
    radial-gradient(circle at 88% 48%, rgba(201, 106, 18, .08), transparent 22%),
    linear-gradient(110deg, #fffdf9, var(--artisan-ivory));
  border-bottom: 1px solid var(--artisan-line);
}
.category-hero::after {
  content: '';
  position: absolute;
  width: 280px;
  height: 280px;
  right: 5%;
  top: -82px;
  border: 1px solid rgba(201, 106, 18, .1);
  border-radius: 50%;
  box-shadow: 0 0 0 24px rgba(201, 106, 18, .025), 0 0 0 52px rgba(201, 106, 18, .02);
  pointer-events: none;
}
.category-hero .container { position: relative; z-index: 1; }
.category-hero .crumbs { margin-bottom: 12px; color: var(--ink-mute); }
.category-hero h1 { max-width: 800px; font-size: clamp(2rem, 4vw, 3.25rem); line-height: 1.08; }
.category-hero p { max-width: 650px; margin-top: 12px; color: var(--ink-soft); font-size: 17px; }
.category-catalog { padding: 0 0 72px; background: #fff; }
.category-toolbar {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin: -1px 0 24px;
  padding: 16px 18px;
  background: rgba(255, 255, 255, .96);
  border: 1px solid var(--artisan-line);
  border-radius: 0 0 16px 16px;
  box-shadow: var(--shadow);
}
.category-groups { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.category-pill {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 18px;
  border: 1px solid var(--artisan-line);
  border-radius: 999px;
  background: #fff;
  color: var(--ink-soft);
  font-weight: 600;
}
.category-pill:hover { border-color: var(--artisan-saffron); color: var(--artisan-saffron); }
.category-pill.is-active { border-color: var(--artisan-navy); background: var(--artisan-navy); color: #fff; }
.category-tools { display: flex; align-items: center; gap: 8px; }
.category-search input,
.category-tools select {
  height: 40px;
  border: 1px solid var(--artisan-line);
  border-radius: 10px;
  background: #fff;
  padding: 0 12px;
  outline: none;
}
.category-search input { width: 190px; }
.category-search input:focus,
.category-tools select:focus { border-color: var(--artisan-saffron); box-shadow: 0 0 0 3px rgba(201, 106, 18, .09); }
.category-tools button {
  height: 40px;
  padding: 0 14px;
  border-radius: 10px;
  background: var(--artisan-saffron);
  color: #fff;
  font-weight: 700;
}
.category-showcase {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}
.collection-card {
  min-width: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--artisan-line);
  border-radius: 16px;
  background: #fffdf9;
  color: var(--artisan-navy);
  transition: transform 220ms var(--ease), box-shadow 220ms var(--ease), border-color 220ms var(--ease);
}
.collection-card:hover { transform: translateY(-4px); border-color: #d7b48d; box-shadow: 0 22px 44px -28px rgba(11, 25, 51, .42); color: var(--artisan-navy); }
.collection-card__image {
  aspect-ratio: 1 / 1.12;
  overflow: hidden;
  background: linear-gradient(145deg, #fbf7f0, #f2eadf);
}
.collection-card__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 450ms var(--ease);
}
.collection-card:hover .collection-card__image img { transform: scale(1.025); }
.collection-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 94px;
  padding: 14px 12px 16px;
  text-align: center;
  border-top: 1px solid rgba(225, 215, 201, .8);
}
.collection-card__body h2 { font-size: 17px; line-height: 1.25; }
.collection-card__body span { margin-top: 8px; color: var(--artisan-saffron); font-size: 13px; font-weight: 700; }
.collection-card__body b { margin-left: 6px; font-size: 16px; }
.category-empty { grid-column: 1 / -1; padding: 70px 24px; text-align: center; background: var(--artisan-ivory); border-radius: 16px; }
.category-empty p { margin: 8px 0 20px; color: var(--ink-mute); }
.catalog-pagination { display: flex; align-items: center; justify-content: center; gap: 7px; margin-top: 28px; }
.catalog-pagination > a,
.catalog-pagination > span {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid var(--artisan-line);
  border-radius: 9px;
  background: #fff;
  font-weight: 700;
}
.catalog-pagination > a:hover,
.catalog-pagination > a.is-current { background: var(--artisan-navy); border-color: var(--artisan-navy); color: #fff; }
.catalog-pagination > .is-disabled { color: #b7b1a9; }
.catalog-pagination small { margin-left: 14px; color: var(--ink-mute); }

@media (max-width: 1100px) {
  .header-inquiry { display: none; }
  .category-toolbar { align-items: stretch; flex-direction: column; }
  .category-tools { justify-content: flex-end; }
  .category-showcase { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 760px) {
  .site-header .container { height: 68px; }
  .nav-bar { top: 68px; }
  .category-hero { padding: 24px 0; }
  .category-hero p { font-size: 15px; }
  .category-toolbar { margin-top: 0; padding: 14px 0; border-width: 0 0 1px; border-radius: 0; box-shadow: none; }
  .category-groups { flex-wrap: nowrap; overflow-x: auto; padding-bottom: 4px; }
  .category-pill { flex: 0 0 auto; min-height: 38px; padding: 0 14px; }
  .category-tools { display: grid; grid-template-columns: 1fr auto auto; }
  .category-search input { width: 100%; }
  .category-showcase { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
  .collection-card__body { min-height: 86px; padding: 12px 10px 14px; }
  .collection-card__body h2 { font-size: 16px; }
  .catalog-pagination { flex-wrap: wrap; }
  .catalog-pagination small { width: 100%; margin: 8px 0 0; text-align: center; }
}
@media (max-width: 430px) {
  .category-tools { grid-template-columns: 1fr auto; }
  .category-tools button { grid-column: 1 / -1; }
  .category-showcase { grid-template-columns: 1fr; }
  .collection-card__image { aspect-ratio: 1 / .9; }
}

/* ---------- Complete mobile responsive pass ---------- */
@media (max-width: 960px) {
  .product-secondary { grid-template-columns: 1fr; gap: var(--s7); }
}

@media (max-width: 760px) {
  html, body { max-width: 100%; overflow-x: hidden; overflow-x: clip; }
  .container { min-width: 0; }
  .utility .container { justify-content: center; padding-top: 7px; padding-bottom: 7px; }
  .utility .promo { min-width: 0; text-align: center; line-height: 1.35; }
  .brand { min-width: 0; font-size: 20px; white-space: nowrap; }
  .brand-logo { width: 40px; height: 40px; flex-basis: 40px; }
  .site-header .container { gap: 10px; }
  .icon-row { justify-self: end; }
  .nav-bar .container { overflow: visible; }
  .all-cats-wrap { min-width: 0; }
  .all-cats { min-height: 42px; padding: 9px 14px; }
  .all-cats-menu {
    left: 0;
    width: min(320px, calc(100vw - 32px));
    min-width: 0;
    max-height: min(60vh, 420px);
    overflow-y: auto;
  }
  .drawer { width: 100%; max-width: 100vw; padding: var(--s6) var(--s4); overflow-x: hidden; }
  .drawer .brand { white-space: normal; }
  .drawer a { font-size: var(--text-md); padding: 10px 0; }
  .page-head { padding: var(--s6) 0 var(--s5); }
  .page-head h1 { max-width: 100%; font-size: clamp(1.75rem, 8vw, 2.35rem); overflow-wrap: anywhere; }
  .page-head p { font-size: var(--text-base); }
  .crumbs { max-width: 100%; flex-wrap: wrap; }
  .section-head { align-items: flex-start; margin-bottom: var(--s5); }
  .section-head h2 { font-size: clamp(1.5rem, 7vw, 2rem); }
  .bento-card--lg { min-height: 360px; }
  .discount-card { min-height: 350px; }
  .product-card { padding: 12px; }
  .product-card .name { overflow-wrap: anywhere; }
  .filters { padding: var(--s4); }
  .shop-toolbar { align-items: stretch; }
  .shop-toolbar form, .shop-toolbar select { width: 100%; }
  .product-detail { padding: var(--s5) 0 var(--s7); }
  .gallery-main img { object-fit: contain; }
  .pdp-info h1 { font-size: clamp(1.75rem, 8vw, 2.4rem); overflow-wrap: anywhere; }
  .pdp-info .rating-row { display: flex; flex-wrap: wrap; gap: 8px 12px; }
  .pdp-info .price-row { flex-wrap: wrap; }
  .pdp-info .price-row .now { font-size: var(--text-2xl); }
  .pdp-cta { display: grid; grid-template-columns: auto minmax(0, 1fr); align-items: stretch; }
  .pdp-cta .qty { min-height: 48px; }
  .pdp-cta .btn { min-width: 0; padding: 12px 14px; }
  .pdp-cta .btn--ink { grid-column: 1 / -1; }
  .product-secondary { gap: var(--s6); }
  .product-inquiry-summary { grid-template-columns: 1fr; text-align: left; }
  .product-inquiry-summary > div:first-child { text-align: left !important; }
  .quote-modal { padding: 10px; align-items: flex-end; }
  .quote-modal__panel {
    width: 100%;
    max-height: calc(100dvh - 20px);
    padding: var(--s5) var(--s4);
    border-radius: var(--r-lg) var(--r-lg) 0 0;
  }
  .quote-modal__head h2 { font-size: var(--text-xl); }
  .quote-product { grid-template-columns: 54px minmax(0, 1fr); }
  .quote-product img { width: 54px; height: 54px; }
  .contact-grid { padding: var(--s6) 0 var(--s7); }
  .contact-form { padding: var(--s5); }
  .quick-answer-grid { grid-template-columns: 1fr; gap: var(--s3); }
  .field input, .field select, .field textarea { width: 100%; min-width: 0; font-size: 16px; }
  .newsletter-grid input { min-width: 0; width: 100%; }
  .footer-bottom { align-items: flex-start; flex-direction: column; }
  .category-tools > * { min-width: 0; }
  .category-tools select { max-width: 100%; }
}

@media (max-width: 520px) {
  :root { --container-pad: 14px; }
  .utility { font-size: 10px; }
  .utility .promo .tag { padding: 2px 6px; font-size: 9px; }
  .brand { font-size: 17px; gap: 6px; }
  .brand-logo { width: 36px; height: 36px; flex-basis: 36px; }
  .products,
  .shop-grid,
  .cats-grid,
  .home-category-section .cats-grid { grid-template-columns: 1fr; }
  .product-card .img-wrap { aspect-ratio: 1 / 1; }
  .shop-grid .product-card .img-wrap { aspect-ratio: 1 / 1.08; }
  .home-category-section .cat-tile { min-height: 0; }
  .home-trending-section .compact-card { grid-template-columns: 90px minmax(0, 1fr); gap: var(--s3); padding: var(--s4); }
  .home-trending-section .compact-card .pic { width: 90px; height: 100px; }
  .bento-card--lg { min-height: 310px; }
  .discount-card { min-height: 320px; padding: var(--s5); }
  .discount-card img.product { right: var(--s4); bottom: var(--s4); width: 130px; height: 130px; }
  .pdp-cta { grid-template-columns: 1fr; }
  .pdp-cta .qty { width: 100%; justify-content: space-between; }
  .pdp-cta .qty input { flex: 1; }
  .pdp-cta .btn--ink { grid-column: auto; }
  .option-pills button { max-width: 100%; overflow-wrap: anywhere; }
  .gallery-thumbs button { width: 68px; height: 68px; flex-basis: 68px; }
  .product-inquiry-summary { padding: var(--s4); }
  .contact-info .info-block { grid-template-columns: 40px minmax(0, 1fr); gap: var(--s3); }
  .contact-info .ic { width: 40px; height: 40px; font-size: 16px; }
  .contact-form { padding: var(--s4); }
  .quick-answer-card { padding: var(--s4); }
  .about-collage { grid-template-columns: 1fr; grid-template-rows: none; min-height: 0; }
  .about-collage__item { min-height: 220px; }
  .about-stats { grid-template-columns: 1fr; }
  .about-stats > div { border-right: 0; border-bottom: 1px solid var(--rule); }
  .about-stats > div:last-child { border-bottom: 0; }
  .category-tools { grid-template-columns: 1fr; }
  .category-tools select, .category-tools button { width: 100%; grid-column: auto; }
  .category-search { width: 100%; }
  .category-showcase { grid-template-columns: 1fr; }
}

/* Floating WhatsApp and quick-message controls */
.floating-contact { position: relative; z-index: 1100; }
.floating-contact__whatsapp { position: fixed; left: 24px; bottom: 24px; display: flex; align-items: center; gap: 10px; color: #17324d; text-decoration: none; filter: drop-shadow(0 9px 18px rgba(10,31,61,.2)); }
.floating-contact__whatsapp-icon { display: grid; place-items: center; width: 58px; height: 58px; color: #fff; border: 4px solid #fff; border-radius: 50%; background: #20ba5a; box-shadow: 0 0 0 1px rgba(0,0,0,.06); transition: transform .2s ease, background .2s ease; }
.floating-contact__whatsapp-icon svg { width: 31px; height: 31px; }
.floating-contact__whatsapp-label { padding: 10px 14px; border: 1px solid #e5e7eb; border-radius: 10px; background: #fff; box-shadow: 0 8px 22px rgba(10,31,61,.13); font-size: .82rem; font-weight: 700; }
.floating-contact__whatsapp:hover .floating-contact__whatsapp-icon { transform: translateY(-2px) scale(1.04); background: #18a94e; }
.floating-contact__message-trigger { position: fixed; right: 0; bottom: 120px; display: flex; align-items: center; gap: 9px; padding: 15px 11px; color: #f4aa3d; border: 1px solid #d99129; border-right: 0; border-radius: 14px 0 0 14px; background: #09203d; box-shadow: 0 12px 30px rgba(10,31,61,.25); cursor: pointer; writing-mode: vertical-rl; transform: rotate(180deg); font: 700 .86rem var(--ff-body); letter-spacing: .03em; }
.floating-contact__message-trigger svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 1.7; transform: rotate(180deg); }
.floating-contact__message-trigger:hover { color: #fff; background: #12345d; }
.floating-message { position: fixed; right: 26px; bottom: 16px; z-index: 1101; width: min(360px, calc(100vw - 36px)); max-height: calc(100dvh - 32px); overflow-x: hidden; overflow-y: auto; border: 1px solid #e3bc7c; border-radius: 16px; background: #fff; box-shadow: 0 24px 70px rgba(6,24,48,.28); }
.floating-message[hidden] { display: none; }
.floating-message__head { display: flex; align-items: flex-start; justify-content: space-between; padding: 20px 20px 17px; color: #fff; background: linear-gradient(135deg, #0a203e, #12365f); }
.floating-message__head h2 { margin: 0; color: #fff; font-size: 1.25rem; }
.floating-message__head p { margin: 5px 0 0; color: #f3ad44; font-size: .78rem; }
.floating-message__close { padding: 0 3px; color: #f3ad44; border: 0; background: transparent; cursor: pointer; font-size: 1.8rem; line-height: 1; }
.floating-message__form { display: grid; padding: 18px; }
.floating-message__form label { margin: 0 0 5px; color: #18304f; font-size: .75rem; font-weight: 700; }
.floating-message__form input, .floating-message__form textarea { width: 100%; padding: 11px 12px; color: #0a1f3d; border: 1px solid #d8dde5; border-radius: 8px; background: #fff; font: inherit; outline: 0; }
.floating-message__form textarea { min-height: 92px; resize: vertical; }
.floating-message__form input:focus, .floating-message__form textarea:focus { border-color: #d58a20; box-shadow: 0 0 0 3px rgba(213,138,32,.14); }
.floating-message__form .is-invalid { border-color: #c53939; }
.floating-message__error { min-height: 16px; margin: 3px 0 4px; color: #b42318; font-size: .68rem; }
.floating-message__alert { margin-bottom: 12px; padding: 10px 12px; border-radius: 8px; font-size: .78rem; }
.floating-message__alert.is-success { color: #146c3c; background: #e9f9ef; }
.floating-message__alert.is-error { color: #9f2727; background: #fff0f0; }
.floating-message__submit { display: flex; align-items: center; justify-content: center; gap: 9px; min-height: 44px; margin-top: 2px; color: #fff; border: 0; border-radius: 8px; background: linear-gradient(135deg, #d98a16, #b96808); cursor: pointer; font-weight: 800; }
.floating-message__submit:disabled { cursor: wait; opacity: .72; }
.floating-message__spinner { display: none; width: 16px; height: 16px; border: 2px solid rgba(255,255,255,.45); border-top-color: #fff; border-radius: 50%; animation: floating-spin .7s linear infinite; }
.floating-message__form.is-loading .floating-message__spinner { display: block; }
.floating-message__privacy { margin: 10px 0 0; color: #657084; text-align: center; font-size: .68rem; }
@keyframes floating-spin { to { transform: rotate(360deg); } }

@media (max-width: 640px) {
  .floating-contact__whatsapp { left: 14px; bottom: 14px; }
  .floating-contact__whatsapp-icon { width: 52px; height: 52px; }
  .floating-contact__whatsapp-label { display: none; }
  .floating-contact__message-trigger { right: 14px; bottom: 14px; width: 52px; height: 52px; justify-content: center; padding: 0; border-right: 1px solid #d99129; border-radius: 50%; writing-mode: initial; transform: none; }
  .floating-contact__message-trigger svg { width: 22px; height: 22px; transform: none; }
  .floating-contact__message-trigger span { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }
  .floating-message { right: 10px; bottom: 78px; width: calc(100vw - 20px); max-height: calc(100dvh - 96px); overflow-y: auto; border-radius: 14px; }
  .floating-message__head { padding: 16px; }
  .floating-message__form { padding: 14px 16px 16px; }
  .floating-message__form input, .floating-message__form textarea { font-size: 16px; }
  .floating-message__form textarea { min-height: 74px; }
}

@media (prefers-reduced-motion: reduce) {
  .floating-contact__whatsapp-icon, .floating-message__spinner { transition: none; animation: none; }
}

/* Why choose us */
.policy-page { padding: clamp(46px, 7vw, 90px) 0; background: linear-gradient(180deg, #fffdf9, #fff); }
.policy-page__inner { max-width: 900px; }
.policy-page h1 { margin: 24px 0 14px; color: var(--artisan-navy); font-size: clamp(2.4rem, 6vw, 4.5rem); letter-spacing: -.045em; }
.policy-lead { margin: 0 0 42px; color: #536176; font-size: clamp(1.05rem, 2vw, 1.25rem); line-height: 1.7; }
.policy-page section { padding: 26px 0; border-top: 1px solid var(--rule); }
.policy-page section h2 { margin: 0 0 10px; color: var(--artisan-navy); font-size: 1.35rem; }
.policy-page section p, .policy-note { margin: 0; color: #647084; line-height: 1.75; }
.policy-note { padding: 18px 20px; border: 1px solid #eed8bd; border-radius: 12px; background: #fff8ef; }
.faq-list { display: grid; gap: 12px; margin-bottom: 30px; }
.faq-list details { border: 1px solid var(--rule); border-radius: 14px; background: #fff; }
.faq-list summary { padding: 20px; color: var(--artisan-navy); cursor: pointer; font-weight: 700; }
.faq-list details p { margin: 0; padding: 0 20px 20px; color: #647084; line-height: 1.7; }
.error-page { display: grid; min-height: 62vh; place-items: center; padding: clamp(60px, 10vw, 120px) 0; background: linear-gradient(145deg, #fffdf9, #f6eee3); text-align: center; }
.error-page__inner { max-width: 760px; }
.error-page__inner > span { color: #c8650b; font: 800 clamp(4rem, 12vw, 8rem)/1 var(--ff-mono); opacity: .28; }
.error-page h1 { margin: 8px 0 14px; color: var(--artisan-navy); font-size: clamp(2rem, 5vw, 3.8rem); }
.error-page p { max-width: 620px; margin: 0 auto; color: #657084; line-height: 1.7; }
.error-page__inner > div { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin-top: 28px; }
.why-page { overflow: hidden; background: #fff; }
.why-hero {
  position: relative;
  padding: clamp(52px, 7vw, 96px) 0;
  background:
    radial-gradient(circle at 82% 20%, rgba(217, 119, 6, .16), transparent 28%),
    linear-gradient(135deg, #fffdf9 0%, #f7f0e7 58%, #efe2d2 100%);
  border-bottom: 1px solid var(--rule);
}
.why-hero::after { content: ""; position: absolute; width: 420px; height: 420px; right: -160px; bottom: -240px; border: 1px solid rgba(217,119,6,.18); border-radius: 50%; }
.why-hero__grid { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(420px, .95fr); gap: clamp(40px, 7vw, 90px); align-items: center; }
.why-crumbs { margin-bottom: 34px; }
.why-kicker { display: inline-block; margin-bottom: 12px; color: #b85d08; font: 700 .76rem/1.2 var(--ff-mono); letter-spacing: .14em; text-transform: uppercase; }
.why-kicker--light { color: #ffbd69; }
.why-hero h1 { max-width: 760px; margin: 0 0 20px; color: var(--artisan-navy); font-size: clamp(2.55rem, 5.2vw, 5rem); line-height: .98; letter-spacing: -.055em; }
.why-hero__copy > p { max-width: 650px; margin: 0; color: #4d596c; font-size: clamp(1rem, 1.25vw, 1.15rem); line-height: 1.75; }
.why-hero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.why-hero__note { display: flex; gap: 16px; align-items: center; margin-top: 28px; color: #647084; font-size: .88rem; }
.why-hero__note strong { padding-right: 16px; color: var(--artisan-navy); border-right: 1px solid #cfc5b9; }
.why-showcase { display: grid; grid-template-columns: 1.08fr .92fr; grid-template-rows: repeat(2, 220px); gap: 14px; transform: rotate(1.2deg); }
.why-showcase__item { position: relative; min-width: 0; overflow: hidden; border: 1px solid rgba(10,31,61,.12); border-radius: 24px; background: #0a0f19; box-shadow: 0 22px 55px rgba(10,31,61,.13); }
.why-showcase__item:first-child { grid-row: 1 / 3; }
.why-showcase__item img { width: 100%; height: 100%; object-fit: contain; transition: transform .35s ease; }
.why-showcase__item:hover img { transform: scale(1.035); }
.why-showcase__item span { position: absolute; left: 12px; right: 12px; bottom: 12px; padding: 8px 10px; overflow: hidden; color: #fff; background: rgba(8,25,51,.82); border: 1px solid rgba(255,255,255,.16); border-radius: 9px; font-size: .75rem; white-space: nowrap; text-overflow: ellipsis; backdrop-filter: blur(8px); }
.why-showcase__empty { grid-column: 1 / -1; display: grid; place-items: center; min-height: 400px; color: var(--artisan-navy); border: 1px solid var(--rule); border-radius: 24px; background: rgba(255,255,255,.7); font-size: 1.2rem; }
.why-trust-wrap { position: relative; z-index: 2; margin-top: -20px; }
.why-trust-strip { display: grid; grid-template-columns: repeat(4, 1fr); padding: 0; overflow: hidden; border: 1px solid var(--rule); border-radius: 18px; background: #fff; box-shadow: 0 18px 50px rgba(10,31,61,.08); }
.why-trust-strip > div { position: relative; padding: 24px 24px 24px 50px; border-right: 1px solid var(--rule); }
.why-trust-strip > div:last-child { border-right: 0; }
.why-trust-strip span { position: absolute; left: 20px; top: 25px; color: #d76b08; font: 700 .72rem var(--ff-mono); }
.why-trust-strip strong, .why-trust-strip small { display: block; }
.why-trust-strip strong { color: var(--artisan-navy); font-size: .96rem; }
.why-trust-strip small { margin-top: 6px; color: #687386; line-height: 1.45; }
.why-heading { display: grid; grid-template-columns: minmax(0, 1fr) minmax(260px, 480px); gap: 44px; align-items: end; margin-bottom: 34px; }
.why-heading h2 { max-width: 740px; margin: 0; color: var(--artisan-navy); font-size: clamp(2rem, 4vw, 3.4rem); line-height: 1.04; letter-spacing: -.04em; }
.why-heading > p { margin: 0; color: #657084; line-height: 1.7; }
.why-heading > a { justify-self: end; color: #b85d08; font-weight: 700; }
.why-heading--center { display: block; text-align: center; }
.why-heading--center h2 { margin-inline: auto; }
.why-reasons-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.why-reason { position: relative; min-height: 230px; padding: 30px; overflow: hidden; border: 1px solid var(--rule); border-radius: 18px; background: linear-gradient(145deg, #fff, #fbf7f1); transition: transform .25s ease, box-shadow .25s ease; }
.why-reason:hover { transform: translateY(-4px); box-shadow: 0 18px 44px rgba(10,31,61,.08); }
.why-reason > span { display: grid; place-items: center; width: 42px; height: 42px; margin-bottom: 30px; color: #bd620d; border: 1px solid #e8caa9; border-radius: 50%; background: #fff6e9; font: 700 .78rem var(--ff-mono); }
.why-reason h3 { margin: 0 0 10px; color: var(--artisan-navy); font-size: 1.18rem; }
.why-reason p { margin: 0; color: #657084; line-height: 1.65; }
.why-promise-section { background: #f8fafc; }
.why-promise { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(38px, 7vw, 90px); align-items: center; padding: clamp(36px, 6vw, 72px); color: #fff; border-radius: 28px; background: radial-gradient(circle at 90% 0, #273e61, transparent 38%), var(--artisan-navy); box-shadow: 0 26px 70px rgba(8,25,51,.18); }
.why-promise h2 { margin: 0 0 16px; color: #fff; font-size: clamp(2rem, 4vw, 3.35rem); line-height: 1.06; letter-spacing: -.04em; }
.why-promise__copy p { color: #c4cede; line-height: 1.7; }
.why-promise__copy > a { display: inline-block; margin-top: 16px; color: #ffb55a; font-weight: 700; }
.why-checklist { display: grid; gap: 4px; margin: 0; padding: 0; list-style: none; }
.why-checklist li { display: grid; grid-template-columns: 42px 1fr; gap: 14px; align-items: start; padding: 17px 0; border-bottom: 1px solid rgba(255,255,255,.13); }
.why-checklist li:last-child { border-bottom: 0; }
.why-checklist li > span { display: grid; place-items: center; width: 34px; height: 34px; color: #09203d; border-radius: 50%; background: #ffb55a; font-weight: 900; }
.why-checklist strong, .why-checklist small { display: block; }
.why-checklist small { margin-top: 5px; color: #bec9da; line-height: 1.5; }
.why-process-grid { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.why-process-grid::before { content: ""; position: absolute; left: 12%; right: 12%; top: 27px; border-top: 1px dashed #d6b992; }
.why-process-grid article { position: relative; padding: 0 18px; text-align: center; }
.why-process-grid article > span { position: relative; z-index: 1; display: grid; place-items: center; width: 56px; height: 56px; margin: 0 auto 22px; color: #fff; border: 6px solid #fff; border-radius: 50%; background: #c8650b; box-shadow: 0 0 0 1px #e5c7a4; font-weight: 800; }
.why-process-grid h3 { margin: 0 0 8px; color: var(--artisan-navy); }
.why-process-grid p { margin: 0; color: #657084; line-height: 1.6; }
.why-work { background: #fbf8f3; }
.why-product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.why-product { min-width: 0; padding: 10px 10px 18px; border: 1px solid var(--rule); border-radius: 18px; background: #fff; transition: transform .25s ease, box-shadow .25s ease; }
.why-product:hover { transform: translateY(-4px); box-shadow: 0 18px 42px rgba(10,31,61,.09); }
.why-product > div { height: 270px; overflow: hidden; border-radius: 12px; background: #080d15; }
.why-product img { width: 100%; height: 100%; object-fit: contain; }
.why-product > span, .why-product > strong, .why-product > small { display: block; margin-inline: 8px; }
.why-product > span { margin-top: 14px; color: #a85a13; font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; }
.why-product > strong { margin-top: 6px; overflow: hidden; color: var(--artisan-navy); white-space: nowrap; text-overflow: ellipsis; }
.why-product > small { margin-top: 12px; color: #b85d08; font-weight: 700; }
.why-final { padding-top: 0; background: #fbf8f3; }
.why-cta { display: flex; gap: 40px; align-items: center; justify-content: space-between; padding: clamp(34px, 6vw, 64px); color: #fff; border-radius: 26px; background: linear-gradient(125deg, #172a48 0%, #0a1f3d 60%, #b85d08 140%); }
.why-cta h2 { margin: 0 0 10px; color: #fff; font-size: clamp(2rem, 4vw, 3.3rem); letter-spacing: -.04em; }
.why-cta p { max-width: 700px; margin: 0; color: #c8d2df; line-height: 1.65; }
.why-cta .btn { flex: 0 0 auto; color: var(--artisan-navy); background: #ffb55a; border-color: #ffb55a; }

@media (max-width: 960px) {
  .why-hero__grid { grid-template-columns: 1fr; }
  .why-showcase { max-width: 720px; width: 100%; margin-inline: auto; transform: none; }
  .why-trust-strip { grid-template-columns: repeat(2, 1fr); }
  .why-trust-strip > div:nth-child(2) { border-right: 0; }
  .why-trust-strip > div:nth-child(-n+2) { border-bottom: 1px solid var(--rule); }
  .why-heading { grid-template-columns: 1fr; gap: 14px; }
  .why-heading > a { justify-self: start; }
  .why-reasons-grid { grid-template-columns: repeat(2, 1fr); }
  .why-promise { grid-template-columns: 1fr; }
  .why-process-grid, .why-product-grid { grid-template-columns: repeat(2, 1fr); }
  .why-process-grid::before { display: none; }
}

@media (max-width: 760px) {
  .why-hero { padding: 36px 0 54px; }
  .why-crumbs { margin-bottom: 24px; }
  .why-hero h1 { font-size: clamp(2.35rem, 12vw, 3.55rem); }
  .why-showcase { grid-template-rows: repeat(2, 180px); }
  .why-trust-wrap { margin-top: -12px; }
  .why-reasons-grid { grid-template-columns: 1fr; }
  .why-reason { min-height: 0; }
  .why-promise { padding: 30px 22px; border-radius: 20px; }
  .why-cta { align-items: stretch; flex-direction: column; padding: 30px 22px; }
  .why-cta .btn { align-self: flex-start; }
}

@media (max-width: 520px) {
  .why-hero__actions { display: grid; }
  .why-hero__actions .btn { justify-content: center; width: 100%; }
  .why-hero__note { align-items: flex-start; flex-direction: column; gap: 6px; }
  .why-hero__note strong { padding-right: 0; border-right: 0; }
  .why-showcase { grid-template-columns: 1fr 1fr; grid-template-rows: 240px 150px; gap: 8px; }
  .why-showcase__item:first-child { grid-column: 1 / -1; grid-row: auto; }
  .why-showcase__item { border-radius: 16px; }
  .why-trust-strip { grid-template-columns: 1fr; }
  .why-trust-strip > div { border-right: 0; border-bottom: 1px solid var(--rule); }
  .why-trust-strip > div:last-child { border-bottom: 0; }
  .why-process-grid, .why-product-grid { grid-template-columns: 1fr; }
  .why-process-grid article { padding: 0; }
  .why-product > div { height: 320px; }
  .why-cta .btn { width: 100%; justify-content: center; }
}
