/* ==========================================================================
   Green Plus Industries — Premium Industrial & Craft Tools
   Design System & Global Stylesheet
   ========================================================================== */

/* ---------- 1. Design Tokens ---------- */
:root {
  /* Brand — Dark red / oxblood */
  --brand-900: #240509;
  --brand-800: #38080f;
  --brand-700: #561018;
  --brand-600: #73141f;
  --brand-500: #8f1a26;  /* main dark red */
  --brand-400: #ad2a36;
  --brand-300: #cf5460;
  --brand-50:  #fbeaec;

  /* Accent — brass / gold (used sparingly for highlights) */
  --gold-600: #a8802f;
  --gold-500: #c79a3e;
  --gold-400: #d8b25c;
  --gold-50:  #f7eed8;

  /* Neutrals — warm paper / sand */
  --ink:    #1c1012;
  --ink-2:  #3a2326;
  --muted:  #6b5559;
  --muted-2:#9c878b;
  --line:   #e6dad2;
  --line-2: #efe7e0;
  --bg:     #fbf8f3;   /* warm paper */
  --bg-soft:#f4ece2;   /* warm sand */
  --bg-tint:#efe3d7;

  /* Feedback */
  --success: #2f8f5b;
  --danger:  #b3221f;
  --star:    #c79a3e;

  /* Typography */
  --font-display: "DM Serif Display", Georgia, "Times New Roman", serif;
  --font-body: "Manrope", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  /* Radius */
  --r-sm: 6px;
  --r-md: 10px;
  --r-lg: 16px;
  --r-xl: 24px;
  --r-pill: 999px;

  /* Shadow — softer for paper, plus a crisp hard offset for editorial cards */
  --sh-1: 0 1px 2px rgba(28,16,18,.04), 0 2px 8px rgba(28,16,18,.04);
  --sh-2: 0 6px 18px rgba(28,16,18,.08);
  --sh-3: 0 22px 50px rgba(45,8,12,.16);
  --sh-glow: 0 12px 34px rgba(143,26,38,.30);
  --sh-hard: 8px 8px 0 var(--brand-900);

  /* Layout */
  --container: 1240px;
  --gutter: clamp(16px, 4vw, 36px);
  --header-h: 84px;

  /* Motion */
  --ease: cubic-bezier(.22,.61,.36,1);
  --t-fast: .18s;
  --t: .3s;
}

/* ---------- 2. Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
html:focus-within { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  font-size: 16px;
  font-synthesis: weight;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg, video { display: block; max-width: 100%; height: auto; }
img { background: var(--bg-soft); }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; padding: 0; }
button, input, textarea, select { font: inherit; color: inherit; }
button { cursor: pointer; border: 0; background: none; }
:focus-visible { outline: 3px solid var(--brand-400); outline-offset: 2px; border-radius: 4px; }

h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: -.02em;
  color: var(--brand-900);
}
h1 { font-size: clamp(2.1rem, 5vw, 3.6rem); font-weight: 400; }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.6rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.6rem); }
p { color: var(--ink-2); }

::selection { background: var(--brand-500); color: #fff; }

/* ---------- 3. Layout Helpers ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.section { padding-block: clamp(56px, 8vw, 110px); }
.section--tight { padding-block: clamp(40px, 5vw, 70px); }
.bg-soft { background: var(--bg-soft); }
.bg-tint { background: var(--bg-tint); }
.bg-dark { background: var(--brand-900); color: #f4ebe0; }
.bg-dark h1,.bg-dark h2,.bg-dark h3 { color: #fff; }
.bg-dark p { color: #cdb8a6; }
.grid { display: grid; gap: clamp(20px, 3vw, 32px); }

.text-center { text-align: center; }
.mx-auto { margin-inline: auto; }
.mb-0 { margin-bottom: 0; }

.section-head { max-width: 720px; margin-bottom: clamp(32px, 5vw, 56px); }
.section-head.center { margin-inline: auto; text-align: center; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-display);
  font-weight: 600; font-size: .8rem; letter-spacing: .12em; text-transform: uppercase;
  color: var(--brand-600);
  background: var(--brand-50);
  padding: 7px 14px; border-radius: var(--r-pill);
  margin-bottom: 18px;
}
.eyebrow.on-dark { background: rgba(255,255,255,.08); color: var(--brand-300); }
.section-head p { font-size: clamp(1rem, 1.3vw, 1.12rem); color: var(--muted); margin-top: 14px; }
.lead { font-size: clamp(1.05rem, 1.4vw, 1.25rem); color: var(--muted); line-height: 1.7; }

/* ---------- 4. Buttons ---------- */
.btn {
  --b-bg: var(--brand-500);
  --b-fg: #fff;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-display);
  font-weight: 600; font-size: .98rem; letter-spacing: -.01em;
  padding: 14px 26px; border-radius: var(--r-pill);
  background: var(--b-bg); color: var(--b-fg);
  border: 1.5px solid transparent;
  transition: transform var(--t-fast) var(--ease), box-shadow var(--t) var(--ease),
              background var(--t) var(--ease), color var(--t) var(--ease);
  white-space: nowrap; line-height: 1;
  position: relative; overflow: hidden;
}
.btn svg { width: 18px; height: 18px; }
.btn:hover { transform: translateY(-2px); box-shadow: var(--sh-glow); }
.btn:active { transform: translateY(0); }
.btn--primary { --b-bg: var(--brand-500); }
.btn--primary:hover { --b-bg: var(--brand-600); }
.btn--gold { --b-bg: var(--gold-500); }
.btn--gold:hover { --b-bg: var(--gold-600); box-shadow: 0 12px 30px rgba(232,161,58,.4); }
.btn--outline { --b-bg: transparent; --b-fg: var(--brand-700); border-color: var(--line); }
.btn--outline:hover { --b-bg: var(--brand-700); --b-fg: #fff; border-color: var(--brand-700); box-shadow: var(--sh-2); }
.btn--ghost { --b-bg: rgba(255,255,255,.12); --b-fg: #fff; border-color: rgba(255,255,255,.25); }
.btn--ghost:hover { --b-bg: #fff; --b-fg: var(--brand-800); }
.btn--light { --b-bg: #fff; --b-fg: var(--brand-700); }
.btn--sm { padding: 10px 18px; font-size: .88rem; }
.btn--lg { padding: 17px 34px; font-size: 1.05rem; }
.btn--block { width: 100%; }
.btn:disabled { opacity: .55; cursor: not-allowed; transform: none; box-shadow: none; }

/* ---------- 5. Header ---------- */
.topbar {
  background: var(--brand-900);
  color: #e8d8c9;
  font-size: .82rem;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.topbar .container { display: flex; align-items: center; justify-content: space-between; gap: 16px; min-height: 42px; }
.topbar a:hover { color: #fff; }
.topbar ul { display: flex; gap: 22px; align-items: center; }
.topbar .tb-left { display: flex; gap: 22px; align-items: center; }
.topbar .tb-right { display: flex; gap: 18px; align-items: center; }
.topbar svg { display: inline-block; width: 15px; height: 15px; vertical-align: -2px; margin-right: 6px; color: var(--brand-300); }
.topbar .tb-left span { display: inline-flex; align-items: center; gap: 6px; white-space: nowrap; }
.topbar .tb-left span svg { margin-right: 0; }
.tb-social { display: flex; gap: 8px; align-items: center; }
.tb-follow { font-size: .72rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--brand-300); margin-right: 4px; }
.tb-soc {
  display: grid; place-items: center; width: 30px; height: 30px; border-radius: 50%;
  color: #f0e3d6; background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.08);
  transition: transform var(--t-fast) var(--ease), color var(--t-fast), background var(--t-fast), box-shadow var(--t-fast);
}
.tb-soc svg { width: 14px; height: 14px; }
.tb-soc:hover { transform: translateY(-2px) scale(1.06); color: #fff; }
.tb-soc--fb:hover  { background: #1877f2; box-shadow: 0 6px 14px rgba(24,119,242,.45); border-color: transparent; }
.tb-soc--ig:hover  { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); box-shadow: 0 6px 14px rgba(220,39,67,.45); border-color: transparent; }
.tb-soc--yt:hover  { background: #ff0000; box-shadow: 0 6px 14px rgba(255,0,0,.4); border-color: transparent; }
@media (max-width: 860px){ .topbar .tb-left { display: none; } }
@media (max-width: 600px){ .tb-follow { display: none; } }

.header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.86);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--line-2);
  transition: box-shadow var(--t) var(--ease), background var(--t) var(--ease);
}
.header.scrolled { box-shadow: var(--sh-2); background: rgba(255,255,255,.96); }
.nav { display: flex; align-items: center; gap: 24px; min-height: var(--header-h); position: relative; }
.logo { display: flex; align-items: center; gap: 12px; font-family: var(--font-display); font-weight: 800; font-size: 1.18rem; letter-spacing: -.02em; color: var(--brand-900); flex-shrink: 0; }
.logo-mark {
  width: 44px; height: 44px; border-radius: 13px;
  background: linear-gradient(145deg, var(--brand-500), var(--brand-700));
  display: grid; place-items: center; color: #fff; position: relative;
  box-shadow: var(--sh-glow); flex-shrink: 0;
}
.logo-mark svg { width: 24px; height: 24px; }
.logo-mark::after { content: "+"; position: absolute; right: -4px; top: -4px; width: 18px; height: 18px; background: var(--gold-500); border-radius: 50%; display: grid; place-items: center; font-size: 14px; font-weight: 800; color: var(--brand-900); border: 2px solid #fff; line-height: 1; }
.logo small { display: block; font-family: var(--font-body); font-weight: 500; font-size: .66rem; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); margin-top: 1px; }

.menu { display: flex; align-items: center; gap: 4px; position: absolute; left: 50%; top: 0; bottom: 0; transform: translateX(-50%); }
.menu > li > a {
  display: inline-flex; align-items: center; gap: 6px;
  font-weight: 600; font-size: .94rem; color: var(--ink-2);
  padding: 10px 14px; border-radius: var(--r-pill);
  transition: color var(--t-fast), background var(--t-fast);
}
.menu > li > a:hover, .menu > li > a.active { color: var(--brand-700); background: var(--brand-50); }
.menu .caret { width: 13px; height: 13px; opacity: .6; transition: transform var(--t-fast); }
.has-drop:hover .caret { transform: rotate(180deg); }

/* Dropdown */
.has-drop { position: relative; }
.mega {
  position: absolute; top: calc(100% + 10px); left: 50%; transform: translateX(-50%) translateY(8px);
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg);
  box-shadow: var(--sh-3); padding: 18px; min-width: 560px;
  display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 6px;
  opacity: 0; visibility: hidden; transition: all var(--t) var(--ease); z-index: 50;
}
.mega::before { content:""; position: absolute; top: -10px; left: 0; right: 0; height: 10px; }
.has-drop:hover .mega { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.mega a { display: flex; gap: 12px; align-items: flex-start; padding: 12px; border-radius: var(--r-md); }
.mega a:hover { background: var(--bg-soft); }
.mega .m-icon { width: 38px; height: 38px; border-radius: 10px; background: var(--brand-50); color: var(--brand-600); display: grid; place-items: center; flex-shrink: 0; }
.mega .m-icon svg { width: 20px; height: 20px; }
.mega strong { font-family: var(--font-display); font-size: .92rem; color: var(--brand-900); display: block; }
.mega span { font-size: .8rem; color: var(--muted); }

.nav-actions { display: flex; align-items: center; gap: 12px; margin-left: auto; }
.icon-btn {
  width: 46px; height: 46px; border-radius: 50%; display: grid; place-items: center;
  color: var(--ink-2); position: relative; transition: background var(--t-fast), color var(--t-fast);
}
.icon-btn:hover { background: var(--brand-50); color: var(--brand-700); }
.icon-btn svg { width: 22px; height: 22px; }

/* WhatsApp quick-contact pill */
.nav-wa {
  position: relative; display: inline-flex; align-items: center; gap: 9px;
  height: 44px; padding: 0 18px 0 13px; border-radius: var(--r-pill);
  font-weight: 700; font-size: .92rem; letter-spacing: -.01em; color: #fff;
  background: linear-gradient(135deg, #25d366 0%, #1fa653 60%, #178a45 100%);
  box-shadow: 0 6px 16px rgba(31,166,83,.32), inset 0 1px 0 rgba(255,255,255,.35);
  overflow: hidden;
  transition: transform var(--t-fast) var(--ease), box-shadow var(--t-fast) var(--ease), filter var(--t-fast);
}
.nav-wa::after {
  content: ""; position: absolute; top: 0; left: -60%;
  width: 45%; height: 100%; transform: skewX(-20deg);
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.45), transparent);
  pointer-events: none;
}
.nav-wa:hover { transform: translateY(-2px); box-shadow: 0 12px 26px rgba(31,166,83,.42), inset 0 1px 0 rgba(255,255,255,.4); filter: saturate(1.08); }
.nav-wa:active { transform: translateY(0); }
.nav-wa:hover::after { left: 130%; transition: left .65s var(--ease); }
.nav-wa svg { width: 21px; height: 21px; flex-shrink: 0; filter: drop-shadow(0 1px 1px rgba(0,0,0,.15)); }
.nav-wa span { white-space: nowrap; }
.nav-wa .wa-dot { position: absolute; top: 9px; right: 9px; width: 9px; height: 9px; border-radius: 50%; background: #fff; box-shadow: 0 0 0 2px #1fa653; }
@media (max-width: 1080px) {
  .nav { gap: 14px; }
  .logo { font-size: 1.05rem; gap: 10px; flex-shrink: 1; min-width: 0; }
  .logo > span:not(.logo-mark) { min-width: 0; overflow: hidden; }
  .logo-mark { width: 38px; height: 38px; border-radius: 11px; }
  .logo-mark svg { width: 21px; height: 21px; }
  .logo-mark::after { width: 15px; height: 15px; font-size: 11px; }
  .nav-wa span { display: none; }
  .nav-wa { width: 44px; height: 44px; padding: 0; justify-content: center; }
  .nav-wa::after { display: none; }
  .nav-actions { gap: 8px; }
}
@media (max-width: 480px) {
  .header { min-height: 0; }
  .nav { gap: 10px; min-height: 64px; }
  .logo { font-size: .98rem; gap: 8px; }
  .logo small { font-size: .58rem; }
  .logo-mark { width: 36px; height: 36px; border-radius: 10px; }
  .logo-mark svg { width: 20px; height: 20px; }
  .nav-wa, .burger { width: 42px; height: 42px; }
  .nav-wa svg { width: 19px; height: 19px; }
  .nav-actions { gap: 6px; }
  .burger span { width: 20px; }
}
.badge {
  position: absolute; top: 4px; right: 4px; min-width: 18px; height: 18px; padding: 0 5px;
  background: var(--gold-500); color: var(--brand-900); font-size: .7rem; font-weight: 800;
  border-radius: var(--r-pill); display: grid; place-items: center; border: 2px solid #fff; font-family: var(--font-display);
}
.badge.is-empty { display: none; }

/* Search */
.search-overlay { position: fixed; inset: 0; z-index: 200; background: rgba(45,8,12,.55); backdrop-filter: blur(6px); display: flex; justify-content: center; align-items: flex-start; padding-top: 12vh; opacity: 0; visibility: hidden; transition: opacity var(--t), visibility var(--t); }
.search-overlay.open { opacity: 1; visibility: visible; }
.search-box { width: min(640px, 92vw); background: #fff; border-radius: var(--r-lg); box-shadow: var(--sh-3); overflow: hidden; transform: translateY(-12px); transition: transform var(--t) var(--ease); }
.search-overlay.open .search-box { transform: translateY(0); }
.search-input { display: flex; align-items: center; gap: 12px; padding: 18px 22px; border-bottom: 1px solid var(--line); }
.search-input svg { width: 22px; height: 22px; color: var(--muted); }
.search-input input { border: 0; outline: 0; flex: 1; font-size: 1.05rem; }
.search-results { max-height: 50vh; overflow-y: auto; }
.sr-item { display: flex; gap: 14px; align-items: center; padding: 12px 22px; border-bottom: 1px solid var(--line-2); transition: background var(--t-fast); }
.sr-item:hover, .sr-item.active { background: var(--bg-soft); }
.sr-item img { width: 50px; height: 50px; border-radius: 10px; object-fit: cover; }
.sr-item .sr-t { font-weight: 600; font-size: .92rem; color: var(--ink); }
.sr-item .sr-p { font-size: .82rem; color: var(--brand-600); font-weight: 600; }
.search-empty { padding: 28px 22px; text-align: center; color: var(--muted); font-size: .92rem; }
.search-tags { padding: 16px 22px; display: flex; gap: 8px; flex-wrap: wrap; align-items: center; }
.search-tags span { font-size: .78rem; color: var(--muted); margin-right: 4px; }
.search-tag { font-size: .78rem; padding: 6px 12px; background: var(--bg-soft); border-radius: var(--r-pill); color: var(--ink-2); font-weight: 500; }
.search-tag:hover { background: var(--brand-50); color: var(--brand-700); }

/* Mobile menu toggle */
.burger {
  display: none; position: relative;
  width: 46px; height: 46px; border-radius: 50%;
  color: var(--ink-2);
  transition: background var(--t-fast), color var(--t-fast);
}
.burger:hover { background: var(--brand-50); color: var(--brand-700); }
.burger:active { background: var(--brand-100, #f7dade); }
.burger span {
  display: block; position: absolute; left: 50%; top: 50%;
  width: 20px; height: 2px; border-radius: 2px;
  background: currentColor;
  transform-origin: center;
  transition: transform var(--t) var(--ease), opacity var(--t-fast) var(--ease), width var(--t) var(--ease);
}
.burger span:nth-child(1) { transform: translate(-50%, -7px); }
.burger span:nth-child(2) { transform: translate(-50%, -50%); }
.burger span:nth-child(3) { transform: translate(-50%, 5px); }
.burger.active span:nth-child(1) { transform: translate(-50%, -50%) rotate(45deg); width: 22px; }
.burger.active span:nth-child(2) { opacity: 0; transform: translate(-50%, -50%) scaleX(0); }
.burger.active span:nth-child(3) { transform: translate(-50%, -50%) rotate(-45deg); width: 22px; }

@media (max-width: 1080px) {
  .menu { display: none; }
  .burger { display: grid; place-items: center; }
}

/* Mobile drawer */
.drawer-backdrop { position: fixed; inset: 0; background: rgba(45,8,12,.5); z-index: 150; opacity: 0; visibility: hidden; transition: opacity var(--t); }
.drawer-backdrop.open { opacity: 1; visibility: visible; }
.drawer {
  position: fixed; top: 0; right: 0; bottom: 0; width: min(380px, 86vw); background: #fff; z-index: 160;
  transform: translateX(100%); transition: transform var(--t) var(--ease);
  display: flex; flex-direction: column; box-shadow: -10px 0 40px rgba(45,8,12,.18);
}
.drawer.open { transform: translateX(0); }
.drawer-head { display: flex; align-items: center; justify-content: space-between; padding: 20px; border-bottom: 1px solid var(--line); }
.drawer-head .logo { font-size: 1rem; }
.drawer-close { width: 42px; height: 42px; border-radius: 50%; display: grid; place-items: center; background: var(--bg-soft); }
.drawer-nav { padding: 14px; overflow-y: auto; flex: 1; }
.drawer-nav a { display: flex; align-items: center; justify-content: space-between; padding: 14px 16px; border-radius: var(--r-md); font-weight: 600; color: var(--ink); }
.drawer-nav a:hover, .drawer-nav a.active { background: var(--brand-50); color: var(--brand-700); }
.drawer-nav .sub { padding-left: 28px; font-size: .9rem; font-weight: 500; color: var(--muted); }
.drawer-foot { padding: 20px; border-top: 1px solid var(--line); display: grid; gap: 12px; }

/* ---------- 6. Hero ---------- */
.hero { position: relative; overflow: hidden; background:
  radial-gradient(1200px 600px at 85% -10%, rgba(173,42,54,.14), transparent 60%),
  linear-gradient(180deg, var(--bg-tint), #fff 70%);
}
.hero::after { content:""; position: absolute; inset: 0; background-image: radial-gradient(rgba(143,26,38,.05) 1px, transparent 1px); background-size: 28px 28px; pointer-events: none; mask-image: linear-gradient(180deg, #000, transparent 75%); }
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(30px, 5vw, 70px); align-items: center; padding-block: clamp(50px, 7vw, 90px); position: relative; z-index: 2; }
.hero-badge { display: inline-flex; align-items: center; gap: 10px; padding: 8px 16px 8px 8px; border-radius: var(--r-pill); background: #fff; border: 1px solid var(--line); box-shadow: var(--sh-1); font-size: .84rem; font-weight: 600; color: var(--ink-2); margin-bottom: 26px; }
.hero-badge b { background: var(--brand-500); color: #fff; padding: 4px 11px; border-radius: var(--r-pill); font-size: .76rem; }
.hero-badge .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--success); box-shadow: 0 0 0 4px rgba(15,157,88,.18); }
.hero h1 { margin-bottom: 22px; }
.hero h1 .grad { background: linear-gradient(120deg, var(--brand-500), var(--brand-300)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero p { font-size: clamp(1.05rem, 1.4vw, 1.22rem); color: var(--muted); max-width: 540px; margin-bottom: 34px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 40px; }
.hero-stats { display: flex; gap: clamp(20px, 4vw, 44px); flex-wrap: wrap; }
.hero-stats .num { font-family: var(--font-display); font-weight: 800; font-size: clamp(1.6rem, 3vw, 2.2rem); color: var(--brand-700); line-height: 1; }
.hero-stats .lbl { font-size: .84rem; color: var(--muted); margin-top: 4px; }
.hero-stats > div + div { padding-left: clamp(20px, 4vw, 44px); border-left: 1px solid var(--line); }

.hero-visual { position: relative; }
.hero-img-card { position: relative; border-radius: var(--r-xl); overflow: hidden; box-shadow: var(--sh-3); aspect-ratio: 4/4.4; background: linear-gradient(160deg, var(--brand-700), var(--brand-900)); }
.hero-img-card img { width: 100%; height: 100%; object-fit: cover; mix-blend-mode: normal; opacity: .96; }
.hero-img-card::after { content:""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 40%, rgba(36,5,9,.6)); }
.hero-float { position: absolute; background: #fff; border-radius: var(--r-md); box-shadow: var(--sh-3); padding: 14px 16px; display: flex; align-items: center; gap: 12px; }
.hero-float .hf-icon { width: 42px; height: 42px; border-radius: 11px; display: grid; place-items: center; background: var(--brand-50); color: var(--brand-600); flex-shrink: 0; }
.hero-float strong { display: block; font-family: var(--font-display); font-size: .95rem; color: var(--brand-900); }
.hero-float small { color: var(--muted); font-size: .78rem; }
.hf-1 { top: 24px; left: -22px; animation: floaty 5s ease-in-out infinite; }
.hf-2 { bottom: 30px; right: -18px; animation: floaty 6s ease-in-out infinite reverse; }
@keyframes floaty { 0%,100%{ transform: translateY(0); } 50%{ transform: translateY(-12px); } }

/* Hero strip / marquee */
.marquee { background: var(--brand-900); color: #fff; overflow: hidden; padding: 14px 0; }
.marquee-track { display: flex; gap: 50px; width: max-content; animation: scrollx 28s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-track span { display: inline-flex; align-items: center; gap: 12px; font-family: var(--font-display); font-weight: 600; font-size: .92rem; letter-spacing: .02em; text-transform: uppercase; opacity: .9; }
.marquee-track span::before { content: "✦"; color: var(--gold-400); }
@keyframes scrollx { to { transform: translateX(-50%); } }

/* ---------- 7. Generic components ---------- */
.card { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: clamp(24px, 3vw, 36px); transition: box-shadow var(--t), transform var(--t), border-color var(--t); }
.card:hover { box-shadow: var(--sh-3); transform: translateY(-4px); border-color: transparent; }

.feature { padding: 30px 26px; border-radius: var(--r-lg); background: #fff; border: 1px solid var(--line); transition: all var(--t) var(--ease); position: relative; overflow: hidden; }
.feature::before { content:""; position: absolute; top: 0; left: 0; width: 100%; height: 3px; background: linear-gradient(90deg, var(--brand-500), var(--brand-300)); transform: scaleX(0); transform-origin: left; transition: transform var(--t) var(--ease); }
.feature:hover { transform: translateY(-6px); box-shadow: var(--sh-3); border-color: transparent; }
.feature:hover::before { transform: scaleX(1); }
.f-icon { width: 58px; height: 58px; border-radius: 15px; display: grid; place-items: center; background: var(--brand-50); color: var(--brand-600); }
.f-icon svg { width: 28px; height: 28px; }
.feature .f-icon { margin-bottom: 20px; }
.feature h3 { font-size: 1.18rem; margin-bottom: 10px; }
.feature p { font-size: .95rem; color: var(--muted); }

/* Certification cards */
.cert-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(18px, 2.5vw, 28px);
}
.cert {
  position: relative; text-align: center; padding: 40px 24px 30px;
  border-radius: var(--r-lg); background: #fff; border: 1px solid var(--line);
  transition: transform var(--t) var(--ease), box-shadow var(--t) var(--ease), border-color var(--t) var(--ease);
  overflow: hidden;
}
.cert::before {
  content: ""; position: absolute; inset: 0; z-index: 0;
  background: radial-gradient(circle at 50% 0%, var(--gold-50), transparent 60%);
  opacity: 0; transition: opacity var(--t) var(--ease);
}
.cert > * { position: relative; z-index: 1; }
.cert:hover { transform: translateY(-6px); box-shadow: var(--sh-3); border-color: transparent; }
.cert:hover::before { opacity: 1; }
.cert-seal {
  width: 76px; height: 76px; margin: 0 auto 18px; border-radius: 50%;
  display: grid; place-items: center; position: relative;
  background: radial-gradient(circle at 30% 25%, #fff, var(--gold-50));
  border: 2px solid var(--gold-400);
  box-shadow: 0 8px 20px rgba(168,128,47,.22), inset 0 0 0 4px rgba(255,255,255,.6);
  color: var(--gold-600);
  transition: transform var(--t) var(--ease), box-shadow var(--t) var(--ease);
}
.cert-seal svg { width: 34px; height: 34px; }
.cert:hover .cert-seal { transform: scale(1.08) rotate(-3deg); box-shadow: 0 12px 26px rgba(168,128,47,.32), inset 0 0 0 4px rgba(255,255,255,.7); }
.cert-ribbon {
  position: absolute; bottom: -7px; left: 50%; transform: translateX(-50%);
  width: 40px; height: 14px; background: var(--brand-600);
  clip-path: polygon(0 0, 100% 0, 85% 100%, 50% 70%, 15% 100%);
  opacity: .9;
}
.cert h3 { font-size: 1.12rem; margin-bottom: 8px; }
.cert p { font-size: .9rem; color: var(--muted); max-width: 26ch; margin-inline: auto; }
@media (max-width: 860px) { .cert-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .cert-grid { grid-template-columns: 1fr; } }

/* Value / check list */
.checklist { display: grid; gap: 12px; }
.checklist li { display: flex; gap: 12px; align-items: flex-start; font-size: .98rem; color: var(--ink-2); }
.checklist .ck { width: 24px; height: 24px; border-radius: 50%; background: var(--brand-50); color: var(--brand-600); display: grid; place-items: center; flex-shrink: 0; margin-top: 2px; }
.checklist .ck svg { width: 14px; height: 14px; }

/* Split media */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(30px, 5vw, 64px); align-items: center; }
.split-media { position: relative; border-radius: var(--r-xl); overflow: hidden; box-shadow: var(--sh-3); }
.split-media img { width: 100%; height: 100%; object-fit: cover; min-height: 340px; }
.split-media .badge-float { position: absolute; bottom: 22px; left: 22px; background: rgba(255,255,255,.96); padding: 16px 20px; border-radius: var(--r-md); box-shadow: var(--sh-2); backdrop-filter: blur(6px); }
.split-media .badge-float strong { font-family: var(--font-display); font-size: 1.8rem; color: var(--brand-700); display: block; line-height: 1; }
.split-media .badge-float small { color: var(--muted); font-size: .82rem; }

/* Stat band */
.stat-band { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line); border-radius: var(--r-lg); overflow: hidden; border: 1px solid var(--line); }
.stat-band .stat { background: #fff; padding: 34px 22px; text-align: center; }
.stat-band .num { font-family: var(--font-display); font-weight: 800; font-size: clamp(1.8rem, 3.4vw, 2.6rem); color: var(--brand-600); line-height: 1; }
.stat-band .num small { font-size: 1.3rem; color: var(--gold-500); }
.stat-band .lbl { margin-top: 8px; color: var(--muted); font-size: .9rem; }

/* ---------- 8. Categories ---------- */
.cat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.cat-card { position: relative; border-radius: var(--r-lg); overflow: hidden; min-height: 240px; display: flex; align-items: flex-end; padding: 24px; color: #fff; isolation: isolate; }
.cat-card::before { content:""; position: absolute; inset: 0; z-index: -2; background: var(--brand-700); }
.cat-card .cat-bg { position: absolute; inset: 0; z-index: -2; width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.cat-card::after { content:""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(86,16,24,.1), rgba(36,5,9,.85)); }
.cat-card:hover .cat-bg { transform: scale(1.08); }
.cat-card .cat-ico { width: 50px; height: 50px; border-radius: 13px; background: rgba(255,255,255,.16); backdrop-filter: blur(6px); display: grid; place-items: center; margin-bottom: auto; position: absolute; top: 22px; left: 22px; }
.cat-card .cat-ico svg { width: 26px; height: 26px; color: #fff; }
.cat-card h3 { color: #fff; font-size: 1.18rem; }
.cat-card span { font-size: .82rem; opacity: .85; }
.cat-card .cat-arrow { position: absolute; top: 22px; right: 22px; width: 38px; height: 38px; border-radius: 50%; background: rgba(255,255,255,.16); backdrop-filter: blur(6px); display: grid; place-items: center; transform: translateY(-6px); opacity: 0; transition: all var(--t) var(--ease); }
.cat-card:hover .cat-arrow { opacity: 1; transform: translateY(0); }
.cat-card .cat-arrow svg { width: 18px; height: 18px; color: #fff; }

/* ---------- 9. Product cards ---------- */
.product-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(18px, 2vw, 28px); }
.pcard { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; transition: box-shadow var(--t), transform var(--t), border-color var(--t); display: flex; flex-direction: column; position: relative; }
.pcard:hover { box-shadow: var(--sh-3); transform: translateY(-5px); border-color: transparent; }
.pcard-media { position: relative; aspect-ratio: 1/1; overflow: hidden; background: var(--bg-soft); }
.pcard-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.pcard:hover .pcard-media img { transform: scale(1.06); }
.pcard-tags { position: absolute; top: 14px; left: 14px; display: flex; flex-direction: column; gap: 6px; z-index: 2; }
.tag { font-family: var(--font-display); font-weight: 700; font-size: .68rem; letter-spacing: .04em; text-transform: uppercase; padding: 5px 10px; border-radius: var(--r-pill); }
.tag--sale { background: var(--gold-500); color: var(--brand-900); }
.tag--new { background: var(--brand-500); color: #fff; }
.tag--hot { background: var(--danger); color: #fff; }
.pcard-disc { position: absolute; top: 14px; right: 14px; background: var(--brand-900); color: #fff; font-family: var(--font-display); font-weight: 700; font-size: .76rem; padding: 5px 10px; border-radius: var(--r-pill); z-index: 2; }
.pcard-actions { position: absolute; bottom: 14px; left: 14px; right: 14px; display: flex; gap: 8px; justify-content: center; transform: translateY(12px); opacity: 0; transition: all var(--t) var(--ease); z-index: 2; }
.pcard:hover .pcard-actions { transform: translateY(0); opacity: 1; }
.pact { width: 42px; height: 42px; border-radius: 50%; background: #fff; box-shadow: var(--sh-2); display: grid; place-items: center; color: var(--ink-2); transition: all var(--t-fast); }
.pact:hover { background: var(--brand-600); color: #fff; transform: translateY(-3px); }
.pact.is-active { background: var(--brand-600); color: #fff; }
.pact svg { width: 18px; height: 18px; }
.pact--cart { flex: 1; max-width: 150px; border-radius: var(--r-pill); padding: 0 16px; gap: 7px; font-family: var(--font-display); font-weight: 600; font-size: .85rem; }
.pact--cart svg { width: 17px; height: 17px; }
.pcard-body { padding: 18px 18px 20px; display: flex; flex-direction: column; flex: 1; }
.pcard-cat { font-size: .76rem; font-weight: 600; letter-spacing: .04em; text-transform: uppercase; color: var(--brand-500); margin-bottom: 7px; }
.pcard-title { font-family: var(--font-display); font-weight: 600; font-size: 1rem; color: var(--ink); line-height: 1.35; margin-bottom: 10px; }
.pcard-title a:hover { color: var(--brand-600); }
.pcard-rating { display: flex; align-items: center; gap: 8px; margin-bottom: 12px; font-size: .82rem; color: var(--muted); }
.stars { display: inline-flex; gap: 2px; color: var(--star); }
.stars svg { width: 14px; height: 14px; }
.pcard-foot { margin-top: auto; display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.pcard-price { display: flex; align-items: baseline; gap: 8px; font-family: var(--font-display); }
.pcard-price .now { font-weight: 800; font-size: 1.18rem; color: var(--brand-700); }
.pcard-price .was { font-size: .88rem; color: var(--muted-2); text-decoration: line-through; }
.pcard-price .cur { font-weight: 700; color: var(--brand-600); font-size: .85rem; }

/* ---------- 10. CTA Band ---------- */
.cta-band { position: relative; border-radius: var(--r-xl); overflow: hidden; padding: clamp(44px, 6vw, 76px); background: linear-gradient(135deg, var(--brand-800), var(--brand-600)); color: #fff; text-align: center; isolation: isolate; }
.cta-band::before { content:""; position: absolute; inset: 0; z-index: -1; background-image: radial-gradient(rgba(255,255,255,.12) 1px, transparent 1px); background-size: 26px 26px; opacity: .5; }
.cta-band::after { content:""; position: absolute; right: -60px; top: -60px; width: 280px; height: 280px; border-radius: 50%; background: radial-gradient(circle, rgba(232,161,58,.35), transparent 70%); z-index: -1; }
.cta-band h2 { color: #fff; max-width: 16ch; margin-inline: auto; }
.cta-band p { color: #ecdcc9; max-width: 56ch; margin: 16px auto 30px; font-size: 1.08rem; }
.cta-band .btn-row { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ---------- 11. Testimonials ---------- */
.tcard { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: 30px; display: flex; flex-direction: column; gap: 16px; transition: all var(--t); }
.tcard:hover { box-shadow: var(--sh-3); transform: translateY(-4px); border-color: transparent; }
.tcard .quote-mark { font-family: var(--font-display); font-size: 3rem; line-height: .6; color: var(--brand-300); height: 26px; }
.tcard p { color: var(--ink-2); font-size: 1rem; line-height: 1.7; flex: 1; }
.tcard .t-foot { display: flex; align-items: center; gap: 12px; }
.tcard .avatar { width: 46px; height: 46px; border-radius: 50%; background: var(--brand-500); color: #fff; display: grid; place-items: center; font-family: var(--font-display); font-weight: 700; flex-shrink: 0; }
.tcard .who strong { display: block; font-family: var(--font-display); color: var(--brand-900); font-size: .95rem; }
.tcard .who span { font-size: .82rem; color: var(--muted); }

/* ---------- 12. Newsletter ---------- */
.newsletter { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(30px, 5vw, 60px); align-items: center; }
.newsletter-form { display: flex; gap: 10px; background: #fff; border: 1px solid var(--line); border-radius: var(--r-pill); padding: 7px; box-shadow: var(--sh-1); }
.newsletter-form input { flex: 1; border: 0; outline: 0; padding: 10px 18px; background: transparent; font-size: .98rem; }
.news-note { font-size: .84rem; color: var(--muted); margin-top: 12px; }

/* ---------- 13. Footer ---------- */
.footer { background: var(--brand-900); color: #cdb8a6; padding-top: clamp(50px, 6vw, 80px); }
.footer a { color: #cdb8a6; transition: color var(--t-fast), padding var(--t-fast); }
.footer a:hover { color: #fff; padding-left: 5px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.5fr; gap: clamp(28px, 4vw, 48px); padding-bottom: 50px; border-bottom: 1px solid rgba(255,255,255,.08); }
.footer .logo { color: #fff; margin-bottom: 18px; }
.footer-about p { color: #b29c89; font-size: .92rem; line-height: 1.7; margin-bottom: 20px; max-width: 320px; }
.footer h4 { color: #fff; font-size: 1rem; margin-bottom: 20px; font-family: var(--font-display); }
.footer-links { display: grid; gap: 11px; }
.footer-links a { font-size: .92rem; display: inline-flex; align-items: center; gap: 8px; }
.footer-contact li { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 16px; font-size: .92rem; }
.footer-contact svg { width: 18px; height: 18px; color: var(--brand-300); flex-shrink: 0; margin-top: 3px; }
.footer-contact strong { color: #fff; display: block; font-size: .86rem; font-family: var(--font-display); }
.f-social { display: flex; gap: 10px; margin-top: 6px; }
.f-social a { width: 40px; height: 40px; border-radius: 11px; background: rgba(255,255,255,.07); display: grid; place-items: center; }
.f-social a:hover { background: var(--brand-500); padding: 0; }
.f-social svg { width: 18px; height: 18px; }
.footer-bottom { display: flex; align-items: center; justify-content: center; gap: 16px; padding: 24px 0; font-size: .86rem; flex-wrap: wrap; text-align: center; }

/* ---------- 14. Page hero (interior) ---------- */
.page-hero { background:
  radial-gradient(900px 400px at 90% -30%, rgba(173,42,54,.12), transparent 60%),
  linear-gradient(180deg, var(--bg-tint), #fff);
  padding-block: clamp(46px, 6vw, 76px);
  border-bottom: 1px solid var(--line-2);
  position: relative; overflow: hidden;
}
.page-hero::after { content:""; position:absolute; inset:0; background-image: radial-gradient(rgba(143,26,38,.05) 1px, transparent 1px); background-size: 26px 26px; mask-image: linear-gradient(180deg,#000,transparent); }
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 { margin-bottom: 14px; }
.page-hero p { color: var(--muted); max-width: 620px; font-size: 1.08rem; }

/* Breadcrumb */
.crumbs { display: flex; align-items: center; gap: 8px; font-size: .84rem; color: var(--muted); margin-bottom: 22px; flex-wrap: wrap; }
.crumbs a:hover { color: var(--brand-600); }
.crumbs svg { width: 13px; height: 13px; opacity: .5; }
.crumbs .current { color: var(--brand-700); font-weight: 600; }

/* ---------- 15. Forms ---------- */
.field { margin-bottom: 18px; }
.field label { display: block; font-weight: 600; font-size: .9rem; margin-bottom: 8px; color: var(--ink); font-family: var(--font-display); }
.field label .req { color: var(--danger); }
.input, .textarea, .select {
  width: 100%; padding: 13px 16px; border: 1.5px solid var(--line); border-radius: var(--r-md);
  background: #fff; font-size: .96rem; transition: border-color var(--t-fast), box-shadow var(--t-fast);
  font-family: var(--font-body);
}
.input:focus, .textarea:focus, .select:focus { outline: 0; border-color: var(--brand-400); box-shadow: 0 0 0 4px rgba(173,42,54,.12); }
.textarea { resize: vertical; min-height: 130px; }
.select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%235a6b65' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; background-size: 18px; padding-right: 42px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-card { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: clamp(24px, 3vw, 38px); box-shadow: var(--sh-1); }
.input-grp { position: relative; }
.input-grp .lead-icon { position: absolute; left: 16px; top: 50%; transform: translateY(-50%); width: 18px; height: 18px; color: var(--muted); }
.input-grp .input { padding-left: 44px; }
.note { font-size: .82rem; color: var(--muted); margin-top: 6px; }
.field-error { font-size: .8rem; color: var(--danger); margin-top: 6px; display: none; }
.field.has-error .input, .field.has-error .textarea, .field.has-error .select { border-color: var(--danger); }
.field.has-error .field-error { display: block; }
.form-success { display: none; align-items: center; gap: 12px; padding: 14px 18px; border-radius: var(--r-md); background: var(--brand-50); color: var(--brand-700); border: 1px solid var(--brand-300); margin-bottom: 20px; font-weight: 500; }
.form-success.show { display: flex; }
.form-success svg { width: 22px; height: 22px; color: var(--success); flex-shrink: 0; }

/* FAQ accordion */
.faq-item { border: 1px solid var(--line); border-radius: var(--r-md); margin-bottom: 14px; overflow: hidden; background: #fff; transition: box-shadow var(--t); }
.faq-item.open { box-shadow: var(--sh-2); }
.faq-q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 20px 24px; text-align: left; font-family: var(--font-display); font-weight: 600; font-size: 1.02rem; color: var(--brand-900); }
.faq-q .faq-ico { width: 30px; height: 30px; border-radius: 50%; background: var(--brand-50); color: var(--brand-600); display: grid; place-items: center; flex-shrink: 0; transition: all var(--t); }
.faq-item.open .faq-ico { background: var(--brand-500); color: #fff; transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height var(--t) var(--ease); }
.faq-a .inner { padding: 0 24px 22px; color: var(--muted); line-height: 1.7; }

/* ---------- 16. Shop layout ---------- */
.shop-layout { display: grid; grid-template-columns: 1fr; gap: clamp(24px, 3vw, 40px); align-items: start; }
.shop-topbar { display: flex; align-items: center; justify-content: space-between; gap: 14px; flex-wrap: wrap; margin-bottom: 24px; padding: 14px 18px; background: #fff; border: 1px solid var(--line); border-radius: var(--r-md); }
.shop-count { font-size: .9rem; color: var(--muted); }
.shop-count b { color: var(--brand-700); }
.shop-sort { display: flex; align-items: center; gap: 8px; }
.shop-sort .select { padding: 9px 38px 9px 14px; min-width: 180px; }
.filter-toggle { display: none; }

.filter-block { border-bottom: 1px solid var(--line); padding-bottom: 22px; margin-bottom: 22px; }
.filter-block:last-child { border-bottom: 0; margin-bottom: 0; padding-bottom: 0; }
.filter-block h4 { font-size: .82rem; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); margin-bottom: 14px; font-family: var(--font-display); }
.check-row { display: flex; align-items: center; gap: 10px; margin-bottom: 11px; cursor: pointer; font-size: .92rem; color: var(--ink-2); }
.check-row input { appearance: none; width: 19px; height: 19px; border: 1.5px solid var(--line); border-radius: 6px; display: grid; place-items: center; transition: all var(--t-fast); flex-shrink: 0; }
.check-row input:checked { background: var(--brand-500); border-color: var(--brand-500); }
.check-row input:checked::after { content:"✓"; color: #fff; font-size: 12px; font-weight: 800; }
.check-row .cnt { margin-left: auto; color: var(--muted-2); font-size: .8rem; }

.price-range { display: flex; align-items: center; gap: 10px; }
.price-range .input { padding: 9px 12px; font-size: .86rem; }

.chips { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 22px; }
.chip { display: inline-flex; align-items: center; gap: 8px; padding: 7px 8px 7px 14px; background: var(--brand-50); color: var(--brand-700); border-radius: var(--r-pill); font-size: .84rem; font-weight: 600; }
.chip button { width: 20px; height: 20px; border-radius: 50%; background: rgba(143,26,38,.16); display: grid; place-items: center; color: var(--brand-700); }
.chip button:hover { background: var(--brand-700); color: #fff; }
.chip-clear { color: var(--brand-600); font-weight: 600; font-size: .84rem; text-decoration: underline; }

.pagination { display: flex; justify-content: center; gap: 8px; margin-top: 48px; }
.pagination a, .pagination span { min-width: 44px; height: 44px; padding: 0 12px; border-radius: var(--r-md); border: 1px solid var(--line); display: grid; place-items: center; font-weight: 600; font-family: var(--font-display); color: var(--ink-2); transition: all var(--t-fast); }
.pagination a:hover { border-color: var(--brand-400); color: var(--brand-700); }
.pagination .active { background: var(--brand-500); color: #fff; border-color: var(--brand-500); }

.empty-state { text-align: center; padding: 70px 20px; }
.empty-state svg { width: 70px; height: 70px; color: var(--brand-300); margin: 0 auto 18px; }
.empty-state h3 { margin-bottom: 10px; }
.empty-state p { color: var(--muted); margin-bottom: 24px; }

/* ---------- 17. Product detail ---------- */
.pd-grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(30px, 4vw, 60px); }
.gallery-main { border-radius: var(--r-lg); overflow: hidden; border: 1px solid var(--line); aspect-ratio: 1; background: var(--bg-soft); position: relative; }
.gallery-main img { width: 100%; height: 100%; object-fit: cover; }
.gallery-thumbs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-top: 14px; }
.gallery-thumb { border-radius: var(--r-md); overflow: hidden; border: 2px solid transparent; aspect-ratio: 1; cursor: pointer; background: var(--bg-soft); }
.gallery-thumb img { width: 100%; height: 100%; object-fit: cover; }
.gallery-thumb.active { border-color: var(--brand-500); }
.pd-cat { font-size: .82rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--brand-500); margin-bottom: 12px; }
.pd-title { font-size: clamp(1.6rem, 3vw, 2.2rem); margin-bottom: 14px; }
.pd-meta { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; margin-bottom: 22px; padding-bottom: 22px; border-bottom: 1px solid var(--line); }
.pd-meta .stars svg { width: 18px; height: 18px; }
.pd-meta .sku { font-size: .86rem; color: var(--muted); margin-left: auto; }
.pd-price-row { display: flex; align-items: baseline; gap: 14px; margin-bottom: 20px; font-family: var(--font-display); }
.pd-price-row .now { font-size: 2rem; font-weight: 800; color: var(--brand-700); }
.pd-price-row .was { font-size: 1.2rem; color: var(--muted-2); text-decoration: line-through; }
.pd-price-row .save { background: var(--gold-50); color: var(--gold-600); font-size: .82rem; font-weight: 700; padding: 4px 12px; border-radius: var(--r-pill); }
.pd-desc { color: var(--muted); line-height: 1.8; margin-bottom: 26px; }
.pd-stock { display: inline-flex; align-items: center; gap: 8px; font-size: .9rem; font-weight: 600; color: var(--success); margin-bottom: 22px; }
.pd-stock .dot { width: 9px; height: 9px; border-radius: 50%; background: var(--success); box-shadow: 0 0 0 4px rgba(15,157,88,.18); }
.pd-stock.low { color: var(--gold-600); }
.pd-stock.low .dot { background: var(--gold-500); box-shadow: 0 0 0 4px rgba(232,161,58,.2); }
.pd-opts { margin-bottom: 22px; }
.pd-opts .lbl { font-weight: 600; font-size: .9rem; margin-bottom: 10px; display: block; font-family: var(--font-display); }
.opt-pills { display: flex; gap: 10px; flex-wrap: wrap; }
.opt-pill { padding: 9px 18px; border: 1.5px solid var(--line); border-radius: var(--r-pill); font-weight: 600; font-size: .88rem; cursor: pointer; transition: all var(--t-fast); }
.opt-pill:hover { border-color: var(--brand-400); }
.opt-pill.active { background: var(--brand-500); color: #fff; border-color: var(--brand-500); }
.pd-qty { display: flex; align-items: center; gap: 14px; margin-bottom: 22px; }
.qty { display: inline-flex; align-items: center; border: 1.5px solid var(--line); border-radius: var(--r-pill); overflow: hidden; }
.qty button { width: 44px; height: 48px; display: grid; place-items: center; font-size: 1.2rem; color: var(--brand-700); transition: background var(--t-fast); }
.qty button:hover { background: var(--brand-50); }
.qty input { width: 54px; height: 48px; text-align: center; border: 0; border-inline: 1.5px solid var(--line); font-weight: 700; font-family: var(--font-display); outline: 0; }
.pd-actions { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; margin-bottom: 26px; }
.pd-actions .btn { flex: 1; min-width: 160px; }
/* "Get Quote on WhatsApp" gets its own full-width row so its long label
   never clips in the narrow product-info column (desktop 2-col layout). */
#pd-add { flex: 1 1 100%; }
.pd-icon-btn { width: 52px; height: 52px; border-radius: 50%; border: 1.5px solid var(--line); display: grid; place-items: center; color: var(--ink-2); transition: all var(--t-fast); flex-shrink: 0; }
.pd-icon-btn:hover, .pd-icon-btn.is-active { background: var(--brand-50); border-color: var(--brand-400); color: var(--brand-600); }
.pd-icon-btn svg { width: 22px; height: 22px; }
.pd-assurance { display: grid; gap: 12px; padding-top: 22px; border-top: 1px solid var(--line); }
.pd-assurance li { display: flex; gap: 12px; align-items: center; font-size: .9rem; color: var(--ink-2); }
.pd-assurance svg { width: 20px; height: 20px; color: var(--brand-500); }

.pd-tabs { margin-top: clamp(40px, 5vw, 64px); }
.tab-head { display: flex; gap: 8px; border-bottom: 1px solid var(--line); margin-bottom: 30px; flex-wrap: wrap; }
.tab-head button { padding: 14px 22px; font-family: var(--font-display); font-weight: 600; color: var(--muted); position: relative; transition: color var(--t-fast); }
.tab-head button::after { content:""; position: absolute; bottom: -1px; left: 0; right: 0; height: 2px; background: var(--brand-500); transform: scaleX(0); transition: transform var(--t); }
.tab-head button.active { color: var(--brand-700); }
.tab-head button.active::after { transform: scaleX(1); }
.tab-panel { display: none; animation: fadeUp .4s var(--ease); }
.tab-panel.active { display: block; }

/* ---------- 18. Cart / Checkout ---------- */
.cart-layout { display: grid; grid-template-columns: 1fr 380px; gap: clamp(24px, 3vw, 40px); align-items: start; }
.cart-item { display: grid; grid-template-columns: 90px 1fr auto; gap: 18px; padding: 22px; border: 1px solid var(--line); border-radius: var(--r-md); margin-bottom: 14px; align-items: center; }
.cart-item img { width: 90px; height: 90px; border-radius: var(--r-md); object-fit: cover; }
.cart-item .ci-title { font-family: var(--font-display); font-weight: 600; font-size: 1rem; color: var(--ink); margin-bottom: 4px; }
.cart-item .ci-cat { font-size: .8rem; color: var(--brand-500); font-weight: 600; text-transform: uppercase; letter-spacing: .04em; }
.cart-item .ci-price { font-family: var(--font-display); font-weight: 700; color: var(--brand-700); }
.cart-item .ci-right { display: flex; flex-direction: column; align-items: flex-end; gap: 10px; }
.cart-item .qty { transform: scale(.85); transform-origin: center; }
.cart-item .ci-remove { font-size: .82rem; color: var(--danger); display: inline-flex; align-items: center; gap: 6px; }
.cart-item .ci-remove svg { width: 15px; height: 15px; }

.summary-card { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: 26px; position: sticky; top: calc(var(--header-h) + 20px); }
.summary-card h3 { margin-bottom: 20px; padding-bottom: 16px; border-bottom: 1px solid var(--line); }
.summary-row { display: flex; justify-content: space-between; padding: 8px 0; font-size: .94rem; color: var(--ink-2); }
.summary-row.total { font-family: var(--font-display); font-size: 1.3rem; font-weight: 800; color: var(--brand-900); border-top: 1px solid var(--line); margin-top: 10px; padding-top: 16px; }
.summary-row .free { color: var(--success); font-weight: 600; }
.coupon-row { display: flex; gap: 8px; margin: 16px 0; }
.coupon-row .input { padding: 11px 14px; font-size: .88rem; }

/* Checkout steps */
.steps { display: flex; align-items: center; justify-content: center; gap: clamp(8px, 3vw, 40px); margin-bottom: 40px; flex-wrap: wrap; }
.step { display: flex; align-items: center; gap: 12px; }
.step .step-num { width: 40px; height: 40px; border-radius: 50%; background: #fff; border: 2px solid var(--line); display: grid; place-items: center; font-family: var(--font-display); font-weight: 700; color: var(--muted); }
.step.active .step-num { background: var(--brand-500); color: #fff; border-color: var(--brand-500); box-shadow: var(--sh-glow); }
.step.done .step-num { background: var(--brand-700); color: #fff; border-color: var(--brand-700); }
.step .step-num svg { width: 18px; height: 18px; }
.step .step-lbl { font-family: var(--font-display); font-weight: 600; font-size: .92rem; color: var(--muted); }
.step.active .step-lbl, .step.done .step-lbl { color: var(--brand-900); }
.step-line { width: 50px; height: 2px; background: var(--line); }
.step-line.done { background: var(--brand-500); }
.checkout-layout { display: grid; grid-template-columns: 1.4fr 1fr; gap: clamp(24px, 3vw, 40px); align-items: start; }
.pay-method { display: flex; align-items: center; gap: 14px; padding: 16px 18px; border: 1.5px solid var(--line); border-radius: var(--r-md); margin-bottom: 12px; cursor: pointer; transition: all var(--t-fast); }
.pay-method:hover { border-color: var(--brand-300); }
.pay-method.selected { border-color: var(--brand-500); background: var(--brand-50); }
.pay-method input { accent-color: var(--brand-500); width: 18px; height: 18px; }
.pay-method .pm-icon { margin-left: auto; display: flex; gap: 6px; }
.pay-method .pm-icon span { background: var(--bg-soft); border-radius: 6px; padding: 4px 9px; font-size: .68rem; font-weight: 700; font-family: var(--font-display); }

/* ---------- 19. Blog ---------- */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(20px, 3vw, 32px); }
.bcard { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; transition: all var(--t); display: flex; flex-direction: column; }
.bcard:hover { box-shadow: var(--sh-3); transform: translateY(-5px); border-color: transparent; }
.bcard-media { aspect-ratio: 16/10; overflow: hidden; position: relative; }
.bcard-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.bcard:hover .bcard-media img { transform: scale(1.06); }
.bcard-cat { position: absolute; top: 14px; left: 14px; background: var(--brand-500); color: #fff; font-family: var(--font-display); font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .04em; padding: 5px 12px; border-radius: var(--r-pill); }
.bcard-body { padding: 24px; display: flex; flex-direction: column; flex: 1; }
.bcard-meta { display: flex; gap: 16px; font-size: .82rem; color: var(--muted); margin-bottom: 12px; }
.bcard-meta span { display: inline-flex; align-items: center; gap: 6px; }
.bcard-meta svg { width: 14px; height: 14px; }
.bcard h3 { font-size: 1.15rem; line-height: 1.3; margin-bottom: 10px; }
.bcard h3 a:hover { color: var(--brand-600); }
.bcard p { font-size: .92rem; color: var(--muted); margin-bottom: 18px; flex: 1; }
.read-more { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-display); font-weight: 600; font-size: .9rem; color: var(--brand-600); }
.read-more svg { width: 16px; height: 16px; transition: transform var(--t-fast); }
.read-more:hover svg { transform: translateX(4px); }

.blog-post { display: grid; grid-template-columns: 1fr 320px; gap: clamp(36px, 5vw, 70px); align-items: start; }
.post-hero { border-radius: var(--r-lg); overflow: hidden; margin: 24px 0 36px; aspect-ratio: 21/9; }
.post-hero img { width: 100%; height: 100%; object-fit: cover; }
.post-body { font-size: 1.04rem; line-height: 1.85; color: var(--ink-2); }
.post-body h2 { font-size: 1.5rem; margin: 36px 0 14px; }
.post-body h3 { font-size: 1.2rem; margin: 28px 0 12px; }
.post-body p { margin-bottom: 18px; }
.post-body ul { margin: 18px 0; padding-left: 4px; }
.post-body ul li { display: flex; gap: 12px; margin-bottom: 10px; }
.post-body ul li::before { content:"✦"; color: var(--brand-500); flex-shrink: 0; }
.post-body blockquote { border-left: 4px solid var(--brand-500); padding: 16px 24px; margin: 24px 0; background: var(--bg-soft); border-radius: 0 var(--r-md) var(--r-md) 0; font-style: italic; color: var(--ink-2); font-size: 1.1rem; }
.post-author { display: flex; align-items: center; gap: 14px; padding: 20px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); margin: 36px 0; }
.post-author .avatar { width: 54px; height: 54px; border-radius: 50%; background: var(--brand-500); color: #fff; display: grid; place-items: center; font-family: var(--font-display); font-weight: 700; font-size: 1.2rem; }
.post-author strong { font-family: var(--font-display); display: block; }
.post-author span { font-size: .84rem; color: var(--muted); }
.post-side { position: sticky; top: calc(var(--header-h) + 20px); display: grid; gap: 24px; }
.side-card { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: 24px; }
.side-card h4 { font-family: var(--font-display); margin-bottom: 18px; padding-bottom: 12px; border-bottom: 1px solid var(--line); }
.side-post { display: flex; gap: 12px; margin-bottom: 16px; }
.side-post:last-child { margin-bottom: 0; }
.side-post img { width: 70px; height: 70px; border-radius: var(--r-md); object-fit: cover; flex-shrink: 0; }
.side-post .sp-t { font-family: var(--font-display); font-weight: 600; font-size: .9rem; line-height: 1.35; color: var(--ink); margin-bottom: 4px; }
.side-post .sp-t:hover { color: var(--brand-600); }
.side-post .sp-d { font-size: .78rem; color: var(--muted); }
.tag-cloud { display: flex; flex-wrap: wrap; gap: 8px; }
.tag-cloud a { padding: 7px 14px; background: var(--bg-soft); border-radius: var(--r-pill); font-size: .82rem; font-weight: 500; color: var(--ink-2); }
.tag-cloud a:hover { background: var(--brand-50); color: var(--brand-700); }

/* ---------- 20. WhatsApp & floating ---------- */
.fab { position: fixed; right: 22px; bottom: 22px; z-index: 90; display: flex; flex-direction: column; gap: 12px; }
.fab-btn { width: 56px; height: 56px; border-radius: 50%; display: grid; place-items: center; color: #fff; box-shadow: var(--sh-3); transition: transform var(--t); position: relative; }
.fab-btn:hover { transform: scale(1.08); }
.fab-wa { background: #25d366; }
.fab-wa::after { content:""; position: absolute; inset: 0; border-radius: 50%; background: #25d366; opacity: .5; animation: pulse 2s ease-out infinite; z-index: -1; }
.fab-top { background: var(--brand-700); opacity: 0; visibility: hidden; transform: translateY(10px); transition: all var(--t); }
.fab-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.fab-btn svg { width: 26px; height: 26px; }
@keyframes pulse { 0%{ transform: scale(1); opacity:.5; } 100%{ transform: scale(1.7); opacity:0; } }

/* Toast */
.toast-wrap { position: fixed; top: calc(var(--header-h) + 16px); right: 22px; z-index: 300; display: flex; flex-direction: column; gap: 10px; pointer-events: none; }
.toast { background: #fff; border: 1px solid var(--line); border-left: 4px solid var(--brand-500); border-radius: var(--r-md); padding: 14px 18px; box-shadow: var(--sh-3); display: flex; align-items: center; gap: 12px; min-width: 280px; max-width: 360px; transform: translateX(120%); transition: transform .4s var(--ease); pointer-events: auto; }
.toast.show { transform: translateX(0); }
.toast svg { width: 22px; height: 22px; color: var(--brand-500); flex-shrink: 0; }
.toast strong { font-family: var(--font-display); display: block; font-size: .92rem; }
.toast small { color: var(--muted); font-size: .8rem; }

/* Quick view modal */
.modal-backdrop { position: fixed; inset: 0; background: rgba(45,8,12,.6); backdrop-filter: blur(6px); z-index: 250; display: grid; place-items: center; padding: 20px; opacity: 0; visibility: hidden; transition: opacity var(--t); }
.modal-backdrop.open { opacity: 1; visibility: visible; }
.modal { background: #fff; border-radius: var(--r-lg); width: min(900px, 96vw); max-height: 90vh; overflow-y: auto; transform: translateY(20px) scale(.98); transition: transform var(--t) var(--ease); }
.modal-backdrop.open .modal { transform: translateY(0) scale(1); }
.modal-close { position: absolute; top: 16px; right: 16px; width: 42px; height: 42px; border-radius: 50%; background: rgba(255,255,255,.9); display: grid; place-items: center; z-index: 5; box-shadow: var(--sh-1); }
.qv-grid { display: grid; grid-template-columns: 1fr 1fr; }
.qv-grid img { width: 100%; height: 100%; object-fit: cover; min-height: 360px; }
.qv-body { padding: 32px; }
.qv-body .pcard-title { font-size: 1.4rem; }

/* ---------- 21. Animations / utilities ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; }
.reveal.d4 { transition-delay: .32s; }

@keyframes fadeUp { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: none; } }
.spin { animation: spin 1s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

.divider { height: 1px; background: var(--line); margin-block: clamp(30px, 4vw, 50px); }
.kicker-line { display: flex; align-items: center; gap: 14px; color: var(--brand-600); font-family: var(--font-display); font-weight: 600; font-size: .82rem; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 18px; }
.kicker-line::before, .kicker-line::after { content:""; flex: 1; height: 1px; background: var(--line); max-width: 40px; }
.kicker-line.left::after { display: none; }

/* Trust strip */
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.trust-item { display: flex; gap: 16px; align-items: center; }
.trust-item .ti-ico { width: 52px; height: 52px; border-radius: 13px; background: var(--brand-50); color: var(--brand-600); display: grid; place-items: center; flex-shrink: 0; }
.trust-item .ti-ico svg { width: 26px; height: 26px; }
.trust-item strong { font-family: var(--font-display); display: block; font-size: 1rem; }
.trust-item span { font-size: .85rem; color: var(--muted); }

/* Process steps */
.proc-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; counter-reset: step; }
.proc { position: relative; padding-top: 30px; }
.proc .proc-num { font-family: var(--font-display); font-weight: 800; font-size: 3rem; color: var(--brand-50); line-height: 1; position: absolute; top: -10px; left: 0; z-index: 0; }
.proc .proc-ico { width: 56px; height: 56px; border-radius: 14px; background: #fff; border: 1px solid var(--line); color: var(--brand-600); display: grid; place-items: center; margin-bottom: 18px; position: relative; z-index: 1; box-shadow: var(--sh-1); }
.proc .proc-ico svg { width: 26px; height: 26px; }
.proc h3 { font-size: 1.1rem; margin-bottom: 8px; }
.proc p { font-size: .92rem; color: var(--muted); }

/* Team */
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; }
.member { text-align: center; }
.member .m-photo { aspect-ratio: 1; border-radius: var(--r-lg); overflow: hidden; margin-bottom: 16px; background: var(--bg-soft); position: relative; }
.member .m-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.member:hover .m-photo img { transform: scale(1.05); }
.member h3 { font-size: 1.1rem; margin-bottom: 2px; }
.member .role { color: var(--brand-500); font-weight: 600; font-size: .88rem; }

/* Logo cloud */
.logo-cloud { display: grid; grid-template-columns: repeat(6, 1fr); gap: 30px; align-items: center; opacity: .65; }
.logo-cloud .ll { text-align: center; font-family: var(--font-display); font-weight: 700; font-size: 1.1rem; color: var(--muted); letter-spacing: -.02em; }
.logo-cloud .ll svg { width: 40px; height: 40px; color: var(--muted); margin: 0 auto; }

/* info list */
.info-list { display: grid; gap: 16px; }
.info-list li { display: flex; gap: 16px; align-items: flex-start; }
.info-list .il-ico { width: 50px; height: 50px; border-radius: 13px; background: var(--brand-50); color: var(--brand-600); display: grid; place-items: center; flex-shrink: 0; }
.info-list .il-ico svg { width: 22px; height: 22px; }
.info-list strong { font-family: var(--font-display); display: block; color: var(--brand-900); }
.info-list span { font-size: .9rem; color: var(--muted); }

/* content prose (legal, about) */
.prose h2 { font-size: 1.4rem; margin: 32px 0 12px; }
.prose h3 { font-size: 1.15rem; margin: 24px 0 10px; }
.prose p { margin-bottom: 16px; color: var(--ink-2); line-height: 1.8; }
.prose ul { margin: 14px 0; display: grid; gap: 8px; }
.prose ul li { display: flex; gap: 10px; color: var(--ink-2); }
.prose ul li::before { content:"•"; color: var(--brand-500); font-weight: 700; }
.toc { background: var(--bg-soft); border-radius: var(--r-md); padding: 22px 26px; margin-bottom: 30px; border-left: 3px solid var(--brand-500); }
.toc h4 { margin-bottom: 12px; font-size: .82rem; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); }
.toc ol { counter-reset: toc; display: grid; gap: 6px; }
.toc li { counter-increment: toc; padding-left: 28px; position: relative; }
.toc li::before { content: counter(toc); position: absolute; left: 0; font-family: var(--font-display); font-weight: 700; color: var(--brand-500); }

/* ---------- 22. Responsive ---------- */
@media (max-width: 1100px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-about { grid-column: 1 / -1; }
}
@media (max-width: 520px) {
  .footer-grid { text-align: center; justify-items: center; }
  .footer-about { text-align: center; }
  .footer-about p { margin-inline: auto; }
  .footer .logo { justify-content: center; }
  .footer h4 { text-align: center; }
  .footer-links { justify-items: center; }
  .footer-contact { display: inline-grid; text-align: left; justify-items: center; }
  .footer-contact li { flex-direction: column; align-items: center; text-align: center; gap: 6px; }
  .footer-contact svg { margin-top: 0; }
  .footer-contact strong { text-align: center; }
  .f-social { justify-content: center; }
}
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { order: -1; max-width: 480px; }
  .cat-grid { grid-template-columns: repeat(2, 1fr); }
  .product-grid { grid-template-columns: repeat(3, 1fr); }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .proc-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .pd-grid { grid-template-columns: 1fr; }
  .cart-layout, .checkout-layout, .split, .newsletter, .blog-post, .shop-layout { grid-template-columns: 1fr; }
  .shop-layout { gap: 28px; }
  .filters-aside { position: fixed; top: 0; right: 0; bottom: 0; width: min(340px, 88vw); background: #fff; z-index: 170; transform: translateX(100%); transition: transform var(--t); padding: 24px; overflow-y: auto; box-shadow: -10px 0 40px rgba(45,8,12,.18); }
  .filters-aside.open { transform: translateX(0); }
  .filter-toggle { display: inline-flex; }
  .qv-grid { grid-template-columns: 1fr; }
  .qv-grid img { min-height: 240px; }
  .summary-card { position: static; }
}
@media (max-width: 760px) {
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-band { grid-template-columns: repeat(2, 1fr); }
  .logo-cloud { grid-template-columns: repeat(3, 1fr); gap: 18px; }
  .field-row { grid-template-columns: 1fr; }
  .mega { display: none; }
  .cart-item { grid-template-columns: 70px 1fr; }
  .cart-item img { width: 70px; height: 70px; }
  .cart-item .ci-right { grid-column: 1 / -1; flex-direction: row; align-items: center; justify-content: space-between; }
  .hero-stats > div + div { padding-left: 0; border-left: 0; }
}
@media (max-width: 520px) {
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .blog-grid, .team-grid, .proc-grid, .cat-grid, .trust-grid { grid-template-columns: 1fr; }
  .pcard-actions { position: static; opacity: 1; transform: none; margin: 0 10px 10px; }
  .pact--cart { display: inline-flex; }
  .footer-grid { grid-template-columns: 1fr; }
  .pd-actions .btn { flex: 1 1 100%; }
}
@media (max-width: 380px) {
  .product-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 10px !important; }
}
/* Compact product cards for 2-up mobile layouts */
@media (max-width: 520px) {
  .pcard-body { padding: 12px 12px 14px; }
  .pcard-cat { font-size: .66rem; margin-bottom: 5px; }
  .pcard-title { font-size: .85rem; line-height: 1.3; margin-bottom: 7px; }
  .pcard-rating { gap: 5px; margin-bottom: 9px; font-size: .72rem; }
  .pcard-rating .stars svg { width: 12px; height: 12px; }
  .pcard-price .now { font-size: 1rem; }
  .pcard-price .was { font-size: .76rem; }
  .pcard-disc { font-size: .64rem; padding: 3px 7px; top: 8px; right: 8px; }
  .pcard-tags { top: 8px; left: 8px; }
  .pcard-actions { gap: 6px; }
  .pact { width: 36px; height: 36px; }
  .pact svg { width: 17px; height: 17px; }
}

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

/* Print */
@media print {
  .header, .footer, .fab, .toast-wrap, .topbar { display: none !important; }
  body { color: #000; }
}

/* ==========================================================================
   v2 — Editorial homepage (dark-red, crafted, deliberately non-generic)
   ========================================================================== */

/* Eyebrows use the clean grotesk, not the serif */
.eyebrow { font-family: var(--font-body); font-weight: 700; font-size: .76rem; letter-spacing: .16em; }

/* Full-bleed, full-screen-touch CTA section (content constrained by container) */
.cta-full {
  position: relative; overflow: hidden; color: #fff; text-align: center; isolation: isolate;
  background: linear-gradient(135deg, var(--brand-800) 0%, var(--brand-700) 55%, var(--brand-600) 100%);
  min-height: clamp(380px, 56vh, 600px);
  display: grid; place-items: center;
  padding-block: clamp(64px, 10vw, 120px);
}
.cta-full::before { content: ""; position: absolute; inset: 0; z-index: -2; background-image: radial-gradient(rgba(255,255,255,.06) 1px, transparent 1px); background-size: 26px 26px; opacity: .6; }
.cta-full::after { content: ""; position: absolute; right: -80px; top: -80px; width: 340px; height: 340px; border-radius: 50%; background: radial-gradient(circle, rgba(199,154,62,.32), transparent 70%); z-index: -1; }
.cta-full .cta-glow { position: absolute; left: -100px; bottom: -120px; width: 360px; height: 360px; border-radius: 50%; background: radial-gradient(circle, rgba(143,26,38,.5), transparent 70%); z-index: -1; }
.cta-full h2 { color: #fff; max-width: 20ch; margin-inline: auto; font-weight: 600; }
.cta-full h2 em { font-style: italic; color: var(--gold-400); font-weight: 600; }
.cta-full p { color: #ecdcc9; max-width: 58ch; margin: 18px auto 32px; font-size: clamp(1.02rem, 1.3vw, 1.18rem); }
.cta-full .btn-row { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
@media (max-width: 520px) { .cta-full { min-height: auto; padding-block: 70px; } }

/* Header quote CTA shows on desktop only */
@media (min-width: 1080px) { .nav-quote { display: inline-flex !important; } }

/* WhatsApp product action */
.pact--wa { background: #1fa653; color: #fff; }
.pact--wa:hover { background: #178a45; color: #fff; }
.btn--wa { background: #1fa653; color: #fff; }
.btn--wa:hover { background: #178a45; box-shadow: 0 12px 30px rgba(31,166,83,.32); transform: translateY(-2px); }
@media (max-width: 520px) { .pact--wa { display: inline-flex; } }

/* Sharper product card */
.pcard { border-radius: var(--r-md); overflow: hidden; }
.pcard-media { border-radius: 0; }
.pcard-title { font-family: var(--font-body); font-weight: 700; letter-spacing: -.01em; }

.section-head h2, .cta-band h2 { font-weight: 600; letter-spacing: -.02em; }
.section-head h2 em, .hero2 h1 em { font-style: italic; color: var(--brand-500); font-weight: 600; }

/* ---------- Hero ---------- */
.hero2 { position: relative; background: var(--bg); overflow: hidden; }
.hero2::before { content: ""; position: absolute; right: -8%; top: -12%; width: 60%; height: 120%; background: radial-gradient(circle at center, rgba(143,26,38,.08), transparent 65%); pointer-events: none; }
.hero2-grid { display: grid; grid-template-columns: 1.12fr .88fr; gap: clamp(32px, 5vw, 72px); align-items: center; padding-block: clamp(48px, 7vw, 96px); position: relative; z-index: 2; }
.hero2-kicker { display: inline-flex; align-items: center; gap: 14px; font-size: .74rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--brand-600); margin-bottom: 26px; }
.hero2-kicker::before { content: ""; width: 40px; height: 1.5px; background: var(--brand-500); }
.hero2 h1 { font-size: clamp(2.4rem, 6vw, 4.6rem); line-height: 1.02; letter-spacing: -.028em; margin-bottom: 24px; font-weight: 600; }
.hero2-sub { font-size: clamp(1.05rem, 1.4vw, 1.2rem); color: var(--muted); max-width: 50ch; margin-bottom: 34px; line-height: 1.7; }
.hero2-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 40px; align-items: center; }
.hero2-trust { display: flex; align-items: center; gap: 16px; }
.hero2-avs { display: flex; }
.hero2-avs .av { width: 40px; height: 40px; border-radius: 50%; border: 3px solid var(--bg); margin-left: -12px; background: var(--brand-600); color: #fff; display: grid; place-items: center; font-family: var(--font-display); font-weight: 600; font-size: .82rem; }
.hero2-avs .av:first-child { margin-left: 0; }
.hero2-avs .av:nth-child(2) { background: var(--brand-800); }
.hero2-avs .av:nth-child(3) { background: var(--gold-600); }
.hero2-avs .av:nth-child(4) { background: var(--brand-700); }
.hero2-trust .tx { font-size: .86rem; color: var(--muted); line-height: 1.4; }
.hero2-trust .tx b { color: var(--ink); font-family: var(--font-display); }
.hero2-trust .stars { color: var(--star); display: inline-flex; gap: 1px; }
.hero2-trust .stars svg { width: 14px; height: 14px; }

.hero2-visual { position: relative; }
.hero2-frame { position: relative; border-radius: var(--r-md); overflow: hidden; box-shadow: var(--sh-hard); border: 1.5px solid var(--brand-900); aspect-ratio: 4/4.5; background: var(--brand-800); }
.hero2-frame img { width: 100%; height: 100%; object-fit: cover; }
.hero2-frame::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgba(36,5,9,.5)); }
.hero2-tag { position: absolute; left: -20px; bottom: 28px; background: var(--bg); border: 1.5px solid var(--brand-900); border-radius: var(--r-sm); padding: 13px 18px; box-shadow: 5px 5px 0 var(--brand-900); max-width: 210px; z-index: 2; }
.hero2-tag .t-l { font-size: .66rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--brand-500); }
.hero2-tag .t-v { font-family: var(--font-display); font-weight: 700; font-size: 1.05rem; color: var(--ink); margin-top: 3px; line-height: 1.2; }
.hero2-tag .t-v small { display: block; font-family: var(--font-body); font-weight: 500; color: var(--muted); font-size: .76rem; margin-top: 2px; }
.hero2-vlabel { position: absolute; right: 6px; top: 30px; writing-mode: vertical-rl; transform: rotate(180deg); font-size: .64rem; font-weight: 700; letter-spacing: .26em; text-transform: uppercase; color: var(--muted-2); z-index: 3; }

/* ---------- Ticker ---------- */
.ticker { background: var(--brand-900); color: var(--gold-400); overflow: hidden; border-top: 3px solid var(--brand-700); }
.ticker-track { display: flex; width: max-content; animation: scrollx 32s linear infinite; padding: 13px 0; }
.ticker:hover .ticker-track { animation-play-state: paused; }
.ticker-track span { font-family: var(--font-display); font-style: italic; font-weight: 500; font-size: 1.02rem; padding: 0 30px; border-right: 1px solid rgba(255,255,255,.12); white-space: nowrap; }
.ticker-track span b { color: #fff; font-style: normal; font-weight: 700; }

/* ---------- Bento categories ---------- */
.bento { display: grid; grid-template-columns: repeat(12, 1fr); grid-auto-rows: 190px; gap: 16px; }
.bento .bt { position: relative; border-radius: var(--r-md); overflow: hidden; display: flex; align-items: flex-end; padding: 22px; color: #fff; isolation: isolate; }
.bento .bt img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; transition: transform .6s var(--ease); }
.bento .bt::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(36,5,9,.12), rgba(36,5,9,.84)); }
.bento .bt::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--gold-500); z-index: 1; transform: scaleX(0); transform-origin: left; transition: transform .4s var(--ease); }
.bento .bt:hover img { transform: scale(1.07); }
.bento .bt:hover::before { transform: scaleX(1); }
.bento .bt .bt-c { position: relative; z-index: 1; }
.bento .bt .bt-num { font-family: var(--font-display); font-style: italic; font-size: .82rem; color: var(--gold-400); }
.bento .bt h3 { color: #fff; font-size: 1.3rem; margin: 2px 0 4px; font-weight: 600; }
.bento .bt .bt-s { font-size: .82rem; opacity: .82; }
.bento .bt .bt-arrow { position: absolute; top: 18px; right: 18px; width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,.14); display: grid; place-items: center; transform: translateY(-6px) rotate(-30deg); opacity: 0; transition: all .35s var(--ease); z-index: 1; }
.bento .bt:hover .bt-arrow { opacity: 1; transform: translateY(0) rotate(0); }
.bento .bt .bt-arrow svg { width: 16px; height: 16px; }
.bento .bt--lg { grid-column: span 7; grid-row: span 2; }
.bento .bt--lg h3 { font-size: 2rem; }
.bento .bt--md { grid-column: span 5; }
.bento .bt--sm { grid-column: span 4; }
.bento .bt--all { grid-column: span 4; background: var(--brand-700); align-items: center; justify-content: center; text-align: center; flex-direction: column; gap: 8px; }
.bento .bt--all::after { background: linear-gradient(180deg, var(--brand-600), var(--brand-800)); }
.bento .bt--all h3 { font-size: 1.15rem; }
.bento .bt--all .bt-arrow { position: static; opacity: 1; transform: none; background: var(--gold-500); color: var(--brand-900); margin-top: 6px; }
.bento .bt--all .bt-arrow svg { width: 18px; height: 18px; }
@media (max-width: 860px) {
  .bento { grid-template-columns: repeat(6,1fr); grid-auto-rows: 160px; }
  .bento .bt--lg { grid-column: span 6; }
  .bento .bt--md { grid-column: span 3; }
  .bento .bt--sm, .bento .bt--all { grid-column: span 3; }
  .bento .bt--lg h3 { font-size: 1.5rem; }
}
@media (max-width: 520px) {
  .bento { grid-template-columns: 1fr 1fr; }
  .bento .bt--lg, .bento .bt--md, .bento .bt--sm, .bento .bt--all { grid-column: span 2; grid-row: span 1; }
  .bento .bt--lg { grid-row: span 1; }
}

/* ---------- Magazine story ---------- */
.mag { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 70px); align-items: center; }
.mag-media { position: relative; }
.mag-media .frame { border-radius: var(--r-md); overflow: hidden; box-shadow: var(--sh-hard); border: 1.5px solid var(--brand-900); aspect-ratio: 4/4.4; position: relative; }
.mag-media .frame img { width: 100%; height: 100%; object-fit: cover; }
.mag-media .cap { position: absolute; bottom: -16px; right: -12px; background: var(--gold-500); color: var(--brand-900); padding: 12px 18px; border-radius: var(--r-sm); font-family: var(--font-display); font-weight: 700; box-shadow: 4px 4px 0 var(--brand-900); border: 1.5px solid var(--brand-900); font-size: .92rem; }
.mag-num { font-family: var(--font-display); font-style: italic; font-size: 4.5rem; color: var(--brand-50); line-height: 1; position: absolute; top: -44px; left: -8px; z-index: 0; }
.mag-body { position: relative; z-index: 1; }
.mag-body h2 { font-size: clamp(1.8rem, 3vw, 2.7rem); line-height: 1.08; margin-bottom: 20px; font-weight: 600; }
.mag-body p { color: var(--muted); margin-bottom: 18px; line-height: 1.75; }
.mag-quote { border-left: 3px solid var(--gold-500); padding: 4px 0 4px 22px; margin: 26px 0; font-family: var(--font-display); font-style: italic; font-size: 1.25rem; line-height: 1.45; color: var(--brand-800); }
@media (max-width: 860px) {
  .mag { grid-template-columns: 1fr; gap: 50px; }
  .mag-media { max-width: 480px; }
}
@media (max-width: 520px) {
  .mag-media .cap { right: 0; bottom: -12px; font-size: .82rem; padding: 10px 14px; }
  .mag-num { font-size: 3rem; top: -28px; }
  .mag-quote { font-size: 1.08rem; }
}
.mag-stats { display: flex; gap: 36px; margin: 28px 0; }
.mag-stats .ms-n { font-family: var(--font-display); font-weight: 700; font-size: 2rem; color: var(--brand-600); line-height: 1; }
.mag-stats .ms-l { font-size: .82rem; color: var(--muted); margin-top: 4px; }
.mag-stats > div + div { border-left: 1px solid var(--line); padding-left: 36px; }

/* ---------- Dark stat band ---------- */
.sband { background: var(--brand-900); color: #fff; position: relative; overflow: hidden; }
.sband::before { content: ""; position: absolute; inset: 0; background-image: radial-gradient(rgba(255,255,255,.05) 1px, transparent 1px); background-size: 26px 26px; opacity: .6; }
.sband-grid { display: grid; grid-template-columns: repeat(4,1fr); position: relative; z-index: 1; }
.sband-grid .ss { padding: clamp(38px,4vw,58px) 24px; text-align: center; position: relative; }
.sband-grid .ss + .ss::before { content: ""; position: absolute; left: 0; top: 22%; bottom: 22%; width: 1px; background: rgba(255,255,255,.1); }
.sband-grid .n { font-family: var(--font-display); font-weight: 600; font-size: clamp(2.4rem,4.5vw,3.4rem); line-height: 1; color: #fff; letter-spacing: -.02em; }
.sband-grid .n em { font-style: italic; color: var(--gold-400); }
.sband-grid .l { margin-top: 10px; color: var(--gold-50); opacity: .8; font-size: .86rem; letter-spacing: .04em; }
@media (max-width: 600px) {
  .sband-grid { grid-template-columns: 1fr 1fr; }
  .sband-grid .ss::before { display: none; }
  .sband-grid .ss:nth-child(n+3) { border-top: 1px solid rgba(255,255,255,.1); }
}

/* ---------- Process ---------- */
.proc2 { display: grid; grid-template-columns: repeat(4,1fr); }
.proc2 .p { padding: 0 26px; position: relative; }
.proc2 .p + .p { border-left: 1px solid var(--line); }
.proc2 .p .pi { font-family: var(--font-display); font-style: italic; font-size: 2.4rem; color: var(--brand-500); line-height: 1; margin-bottom: 14px; }
.proc2 .p .pico { width: 46px; height: 46px; border-radius: 50%; background: var(--brand-50); color: var(--brand-600); display: grid; place-items: center; margin-bottom: 16px; }
.proc2 .p .pico svg { width: 22px; height: 22px; }
.proc2 .p h3 { font-size: 1.08rem; margin-bottom: 8px; font-weight: 600; }
.proc2 .p .pd { font-size: .9rem; color: var(--muted); line-height: 1.6; }
@media (max-width: 860px) { .proc2 { grid-template-columns: 1fr 1fr; gap: 28px 0; } .proc2 .p:nth-child(3) { border-left: 0; } }
@media (max-width: 520px) { .proc2 { grid-template-columns: 1fr; } .proc2 .p + .p { border-left: 0; border-top: 1px solid var(--line); padding-top: 24px; } .proc2 .p { padding: 24px 0 0; } }

/* ---------- Editorial testimonials ---------- */
.edt { display: grid; grid-template-columns: 1.25fr 1fr; gap: clamp(28px,4vw,56px); align-items: stretch; }
.edt-feat { background: var(--brand-900); color: #fff; border-radius: var(--r-md); padding: clamp(32px,4vw,54px); position: relative; overflow: hidden; display: flex; flex-direction: column; justify-content: space-between; }
.edt-feat::before { content: "\201C"; position: absolute; top: -14px; left: 22px; font-family: var(--font-display); font-size: 9rem; line-height: 1; color: var(--brand-700); }
.edt-feat .stars { color: var(--gold-400); display: inline-flex; gap: 2px; margin-bottom: 16px; position: relative; z-index: 1; }
.edt-feat .stars svg { width: 18px; height: 18px; }
.edt-feat .q { font-family: var(--font-display); font-style: italic; font-size: clamp(1.3rem,2vw,1.7rem); line-height: 1.4; position: relative; z-index: 1; color: #fff; font-weight: 500; }
.edt-feat .who { display: flex; align-items: center; gap: 14px; margin-top: 26px; position: relative; z-index: 1; }
.edt-feat .who .av { width: 48px; height: 48px; border-radius: 50%; background: var(--gold-500); color: var(--brand-900); display: grid; place-items: center; font-family: var(--font-display); font-weight: 700; }
.edt-feat .who b { display: block; font-family: var(--font-display); }
.edt-feat .who span { font-size: .82rem; color: var(--gold-50); opacity: .8; }
.edt-list { display: grid; gap: 16px; align-content: center; }
.edt-list .ec { background: var(--bg); border: 1px solid var(--line); border-radius: var(--r-md); padding: 22px; }
.edt-list .ec .q { font-size: .92rem; color: var(--ink-2); line-height: 1.6; margin-bottom: 12px; }
.edt-list .ec .who { display: flex; align-items: center; gap: 10px; }
.edt-list .ec .av { width: 34px; height: 34px; border-radius: 50%; background: var(--brand-50); color: var(--brand-600); display: grid; place-items: center; font-family: var(--font-display); font-weight: 700; font-size: .8rem; }
.edt-list .ec b { font-family: var(--font-display); font-size: .9rem; }
.edt-list .ec span { font-size: .76rem; color: var(--muted); }
@media (max-width: 860px) { .edt { grid-template-columns: 1fr; } }

/* ---------- Editorial blog teaser ---------- */
.edb { display: grid; grid-template-columns: 1.3fr 1fr; gap: clamp(28px,4vw,48px); }
.edb-feat { display: flex; flex-direction: column; }
.edb-feat .m { border-radius: var(--r-md); overflow: hidden; aspect-ratio: 16/10; margin-bottom: 20px; box-shadow: var(--sh-2); }
.edb-feat .m img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.edb-feat:hover .m img { transform: scale(1.04); }
.edb-feat .meta { font-size: .78rem; color: var(--muted); margin-bottom: 8px; letter-spacing: .06em; text-transform: uppercase; }
.edb-feat .meta b { color: var(--brand-500); }
.edb-feat h3 { font-size: clamp(1.4rem,2.4vw,1.9rem); line-height: 1.15; margin-bottom: 10px; font-weight: 600; }
.edb-feat h3 a:hover { color: var(--brand-600); }
.edb-feat p { color: var(--muted); }
.edb-list { display: flex; flex-direction: column; }
.edb-list .el { display: flex; gap: 16px; padding: 18px 0; border-top: 1px solid var(--line); align-items: flex-start; }
.edb-list .el:first-child { border-top: 0; padding-top: 0; }
.edb-list .el img { width: 84px; height: 84px; border-radius: var(--r-sm); object-fit: cover; flex-shrink: 0; }
.edb-list .el .meta { font-size: .72rem; color: var(--brand-500); font-weight: 700; letter-spacing: .08em; text-transform: uppercase; margin-bottom: 5px; }
.edb-list .el h4 { font-family: var(--font-body); font-weight: 700; font-size: .98rem; line-height: 1.35; color: var(--ink); letter-spacing: -.01em; }
.edb-list .el:hover h4 { color: var(--brand-600); }
@media (max-width: 860px) { .edb { grid-template-columns: 1fr; } }

/* ---------- Hero responsive ---------- */
@media (max-width: 1024px) {
  .hero2-grid { grid-template-columns: 1fr; }
  .hero2-visual { order: -1; max-width: 460px; }
}
@media (max-width: 600px) {
  .hero2 h1 { font-size: clamp(2rem, 9vw, 3rem); }
  .hero2-tag { left: -6px; }
  .mag-stats { flex-wrap: wrap; gap: 20px; }
  .mag-stats > div + div { border-left: 0; padding-left: 0; }
}

/* ==========================================================================
   Mobile hardening — collapse inline-styled grids, scroll wide tables,
   and tighten touch targets on small screens. Lives last in the cascade.
   ========================================================================== */

/* Inline-styled grids (e.g. about.html manual 4-col layouts) collapse
   before they squish. !important is required to override style="" attributes.
   3+ column grids step down 4 -> 2 -> 1; 2-column grids step 2 -> 1. */
@media (max-width: 980px) {
  [style*="grid-template-columns:repeat(4"] { grid-template-columns: repeat(2, 1fr) !important; }
  [style*="grid-template-columns:repeat(3"] { grid-template-columns: repeat(2, 1fr) !important; }
}
@media (max-width: 820px) {
  [style*="grid-template-columns"] { grid-template-columns: 1fr 1fr !important; gap: 16px !important; }
}
@media (max-width: 540px) {
  [style*="grid-template-columns"] { grid-template-columns: 1fr !important; }
}

/* Compact buttons, denser spacing and full-width hero CTAs on phones */
@media (max-width: 540px) {
  .btn--lg { padding: 14px 22px; font-size: 1rem; }
  .hero2-cta .btn, .cta-full .btn-row .btn { flex: 1 1 100%; }
  .pd-icon-btn { width: 48px; height: 48px; }
  .pd-actions { gap: 10px; }
  .section-head { margin-bottom: 30px; }
  .footer-bottom { justify-content: center; text-align: center; }
}
