/* ==========================================================================
   CROWN OIL MAKER — Aarudra Enterprise
   Premium industrial / organic oil-machinery theme
   Author: production build
   ========================================================================== */

/* ---------- Design tokens ---------- */
:root {
  /* Brand */
  --maroon: #9b1b2f;
  --maroon-dark: #6f1322;
  --maroon-soft: #c14a5b;
  --gold: #cf9b1e;
  --gold-light: #f0c64b;
  --gold-deep: #a87a12;
  --amber: #e6a23c;

  /* Neutrals */
  --ink: #1b1714;
  --ink-soft: #524a43;
  --muted: #8a8079;
  --line: #ece5db;
  --cream: #fffaf2;
  --cream-2: #fff5e8;
  --paper: #ffffff;
  --steel: #eef1f4;
  --steel-deep: #d6dde3;

  /* Effects */
  --radius: 18px;
  --radius-sm: 12px;
  --radius-lg: 28px;
  --shadow-sm: 0 2px 10px rgba(27, 23, 20, 0.06);
  --shadow: 0 14px 40px rgba(27, 23, 20, 0.10);
  --shadow-lg: 0 30px 70px rgba(27, 23, 20, 0.18);
  --ring: 0 0 0 4px rgba(207, 155, 30, 0.22);

  --container: 1200px;
  --nav-h: 76px;

  --ff-display: "Fraunces", Georgia, "Times New Roman", serif;
  --ff-body: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ---------- Reset ---------- */
*,
*::before,
*::after { box-sizing: border-box; }

* { margin: 0; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-h) + 16px);
  -webkit-text-size-adjust: 100%;
}

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

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

h1, h2, h3, h4 {
  font-family: var(--ff-display);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--ink);
}

/* ---------- Layout helpers ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 48px);
}

.section { padding-block: clamp(64px, 9vw, 120px); }
.section--tight { padding-block: clamp(48px, 6vw, 80px); }
.bg-cream { background: var(--cream); }
.bg-paper { background: var(--paper); }
.bg-steel {
  background:
    radial-gradient(1200px 400px at 80% -10%, #fff 0%, transparent 60%),
    linear-gradient(180deg, var(--steel) 0%, #f7f9fb 100%);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--maroon);
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--maroon));
  border-radius: 2px;
}

.section-head { max-width: 680px; margin-bottom: clamp(36px, 5vw, 56px); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head.center .eyebrow::before { display: none; }
.section-head h2 { font-size: clamp(2rem, 4.4vw, 3.1rem); margin: 14px 0 14px; }
.section-head p { color: var(--ink-soft); font-size: 1.06rem; max-width: 56ch; }
.section-head.center p { margin-inline: auto; }

.text-gold { color: var(--gold-deep); }
.serif-em { font-family: var(--ff-display); font-style: italic; }

/* ---------- Buttons ---------- */
.btn {
  --bg: var(--maroon);
  --fg: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.96rem;
  background: var(--bg);
  color: var(--fg);
  position: relative;
  overflow: hidden;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), background 0.3s;
  box-shadow: 0 10px 24px rgba(155, 27, 47, 0.22);
  white-space: nowrap;
}
.btn svg { transition: transform 0.35s var(--ease); }
.btn:hover { transform: translateY(-3px); box-shadow: 0 18px 36px rgba(155, 27, 47, 0.32); }
.btn:hover svg { transform: translateX(4px); }
.btn:active { transform: translateY(-1px); }

.btn--gold {
  --bg: linear-gradient(135deg, var(--gold-light), var(--gold) 60%, var(--gold-deep));
  --fg: #2a1d05;
  box-shadow: 0 10px 24px rgba(207, 155, 30, 0.3);
}
.btn--gold:hover { box-shadow: 0 18px 38px rgba(207, 155, 30, 0.42); }

.btn--ghost {
  --bg: transparent;
  --fg: var(--ink);
  border: 1.5px solid var(--line);
  box-shadow: none;
}
.btn--ghost:hover { background: var(--paper); border-color: var(--gold); box-shadow: var(--shadow-sm); }

.btn--light {
  --bg: rgba(255,255,255,0.12);
  --fg: #fff;
  border: 1.5px solid rgba(255,255,255,0.25);
  box-shadow: none;
  backdrop-filter: blur(6px);
}
.btn--light:hover { background: rgba(255,255,255,0.2); }

.btn--sm { padding: 10px 18px; font-size: 0.88rem; }
.btn--block { width: 100%; }

/* ==========================================================================
   NAVBAR
   ========================================================================== */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  height: var(--nav-h);
  z-index: 100;
  display: flex;
  align-items: center;
  background: rgba(255, 250, 242, 0.72);
  backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: background 0.4s, box-shadow 0.4s, border-color 0.4s;
}
.nav.scrolled {
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-sm);
  border-bottom-color: var(--line);
}
.nav__inner {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 48px);
  display: flex;
  align-items: center;
  gap: 24px;
}
.brand { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.brand__logo { height: 42px; width: auto; }
.brand__txt { display: flex; flex-direction: column; line-height: 1; }
.brand__txt b {
  font-family: var(--ff-display);
  font-size: 1.16rem;
  letter-spacing: -0.01em;
  color: var(--maroon-dark);
}
.brand__txt span {
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-deep);
  font-weight: 600;
}

.nav__menu { display: flex; align-items: center; gap: 4px; margin-left: auto; }
.nav__menu a:not(.btn) {
  padding: 9px 15px;
  border-radius: 999px;
  font-size: 0.94rem;
  font-weight: 500;
  color: var(--ink-soft);
  position: relative;
  transition: color 0.25s, background 0.25s;
}
.nav__menu a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 15px; right: 15px; bottom: 4px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}
.nav__menu a:not(.btn):hover { color: var(--ink); }
.nav__menu a:not(.btn):hover::after { transform: scaleX(1); }
.nav__menu a:not(.btn).active { color: var(--maroon); font-weight: 600; }
.nav__menu a:not(.btn).active::after { transform: scaleX(1); }

.nav__cta { margin-left: 8px; }
.nav__toggle { display: none; width: 44px; height: 44px; border-radius: 12px; flex-direction: column; gap: 5px; align-items: center; justify-content: center; margin-left: auto; }
.nav__toggle span { width: 22px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform 0.3s, opacity 0.3s; }
.nav.open .nav__toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav.open .nav__toggle span:nth-child(2) { opacity: 0; }
.nav.open .nav__toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ==========================================================================
   HERO
   ========================================================================== */
.hero {
  position: relative;
  padding-top: calc(var(--nav-h) + clamp(40px, 7vw, 86px));
  padding-bottom: clamp(60px, 8vw, 110px);
  background:
    radial-gradient(900px 600px at 88% -5%, rgba(207,155,30,0.18), transparent 55%),
    radial-gradient(700px 500px at -5% 110%, rgba(155,27,47,0.12), transparent 55%),
    linear-gradient(180deg, #1c0d10 0%, #2a1217 55%, #34161b 100%);
  color: #fff;
  overflow: hidden;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(32px, 5vw, 70px);
  align-items: center;
}
.hero__badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 14px 7px 8px;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.16);
  font-size: 0.8rem; font-weight: 500; color: #ffe9c2;
  margin-bottom: 24px;
}
.hero__badge b { background: var(--gold); color: #2a1d05; padding: 3px 9px; border-radius: 999px; font-size: 0.72rem; font-weight: 700; }
.hero h1 {
  color: #fff;
  font-size: clamp(2.6rem, 6vw, 4.6rem);
  line-height: 1.02;
  letter-spacing: -0.02em;
}
.hero h1 em { font-style: italic; color: var(--gold-light); }
.hero__lead {
  margin: 22px 0 32px;
  font-size: clamp(1.05rem, 2vw, 1.22rem);
  color: rgba(255,255,255,0.82);
  max-width: 46ch;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; }
.hero__stats {
  display: flex; gap: clamp(20px, 4vw, 44px);
  margin-top: 46px; padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.14);
}
.hero__stats div b {
  display: block;
  font-family: var(--ff-display);
  font-size: clamp(1.7rem, 3.4vw, 2.4rem);
  color: var(--gold-light);
}
.hero__stats div span { font-size: 0.84rem; color: rgba(255,255,255,0.66); }

/* Hero visual */
.hero__visual { position: relative; }
.hero__card {
  position: relative;
  border-radius: var(--radius-lg);
  background: linear-gradient(160deg, #fff 0%, #f3f6f9 100%);
  padding: 28px;
  box-shadow: var(--shadow-lg);
  transform: rotate(-1.4deg);
  animation: floatY 6s ease-in-out infinite;
}
.hero__card img { border-radius: 16px; mix-blend-mode: multiply; }
.hero__chip {
  position: absolute;
  display: flex; align-items: center; gap: 10px;
  background: #fff; color: var(--ink);
  padding: 12px 16px; border-radius: 14px;
  box-shadow: var(--shadow);
  font-size: 0.85rem; font-weight: 600;
}
.hero__chip i { font-style: normal; font-size: 1.4rem; }
.hero__chip--1 { top: 18px; left: -22px; animation: floatY 5s ease-in-out infinite; }
.hero__chip--2 { bottom: 26px; right: -18px; animation: floatY 5.5s ease-in-out 0.6s infinite; }
.hero__chip small { display: block; color: var(--muted); font-weight: 500; font-size: 0.72rem; }

@keyframes floatY { 0%,100% { transform: translateY(0) rotate(-1.4deg); } 50% { transform: translateY(-14px) rotate(-1.4deg); } }

/* Marquee strip */
.marquee {
  background: var(--ink);
  color: #fff;
  overflow: hidden;
  padding-block: 16px;
  border-top: 3px solid var(--gold);
}
.marquee__track {
  display: flex; gap: 48px; width: max-content;
  animation: scrollX 26s linear infinite;
}
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__track span {
  display: inline-flex; align-items: center; gap: 14px;
  font-family: var(--ff-display); font-size: 1.1rem; color: rgba(255,255,255,0.85);
  white-space: nowrap;
}
.marquee__track span::after { content: "✦"; color: var(--gold); }
@keyframes scrollX { to { transform: translateX(-50%); } }

/* ==========================================================================
   FEATURE / VALUE CARDS
   ========================================================================== */
.features { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.feature {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s;
}
.feature:hover { transform: translateY(-8px); box-shadow: var(--shadow); border-color: transparent; }
.feature__ico {
  width: 52px; height: 52px; border-radius: 14px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, var(--cream-2), #fff);
  color: var(--maroon);
  border: 1px solid var(--line);
  margin-bottom: 18px;
}
.feature h3 { font-size: 1.16rem; margin-bottom: 8px; }
.feature p { color: var(--ink-soft); font-size: 0.95rem; }

/* ==========================================================================
   CATEGORIES
   ========================================================================== */
.cats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.cat {
  position: relative;
  border-radius: var(--radius);
  padding: 32px 28px 28px;
  min-height: 220px;
  display: flex; flex-direction: column; justify-content: flex-end;
  color: #fff;
  overflow: hidden;
  isolation: isolate;
  transition: transform 0.45s var(--ease);
}
.cat::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  transition: transform 0.6s var(--ease);
}
.cat:hover { transform: translateY(-6px); }
.cat:hover::after { transform: scale(1.08); }
.cat--machines::after { background: linear-gradient(160deg, #3a1a1f, #9b1b2f); }
.cat--seed::after { background: linear-gradient(160deg, #6b4e0f, #cf9b1e); }
.cat--oils::after { background: linear-gradient(160deg, #214a2c, #3f8a52); }
.cat__ico { font-size: 2rem; margin-bottom: auto; }
.cat h3 { color: #fff; font-size: 1.5rem; }
.cat p { color: rgba(255,255,255,0.82); font-size: 0.92rem; margin-top: 6px; }
.cat__link { margin-top: 14px; font-weight: 600; font-size: 0.9rem; display: inline-flex; gap: 8px; align-items: center; }
.cat__link svg { transition: transform 0.3s var(--ease); }
.cat:hover .cat__link svg { transform: translateX(5px); }

/* ==========================================================================
   PRODUCT TOOLBAR (search + filters)
   ========================================================================== */
.toolbar {
  display: flex; flex-wrap: wrap; gap: 16px; align-items: center; justify-content: space-between;
  margin-bottom: 18px;
}
.toolbar--sub {
  margin-bottom: 32px; padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
  align-items: flex-end;
}
.result-count { font-size: 0.88rem; color: var(--muted); white-space: nowrap; }
.toolbar__end { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; justify-content: flex-end; }

/* sort dropdown */
.sort { display: flex; align-items: center; gap: 10px; }
.sort label { font-size: 0.76rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-soft); }
.sort select {
  appearance: none; -webkit-appearance: none;
  padding: 11px 40px 11px 16px;
  border: 1.5px solid var(--line); border-radius: 999px;
  background-color: var(--paper);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%239b1b2f' stroke-width='2.5'><path d='m6 9 6 6 6-6'/></svg>");
  background-repeat: no-repeat; background-position: right 14px center; background-size: 14px;
  font-size: 0.9rem; font-weight: 500; color: var(--ink); cursor: pointer;
  transition: border-color 0.25s, box-shadow 0.25s;
}
.sort select:hover { border-color: var(--gold); }
.sort select:focus { outline: none; border-color: var(--gold); box-shadow: var(--ring); }

/* price range slider */
.price-filter { display: flex; flex-direction: column; gap: 12px; flex: 1 1 300px; max-width: 380px; }
.price-filter__head { display: flex; align-items: center; justify-content: space-between; }
.price-filter__head > span:first-child {
  font-size: 0.76rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-soft);
}
.price-filter__val { font-family: var(--ff-display); font-weight: 600; color: var(--maroon); }
.range { position: relative; height: 24px; }
.range__track { position: absolute; left: 0; right: 0; top: 50%; transform: translateY(-50%); height: 5px; border-radius: 999px; background: var(--steel-deep); }
.range__fill { position: absolute; top: 0; height: 100%; border-radius: 999px; background: linear-gradient(90deg, var(--gold), var(--maroon)); }
.range input[type="range"] {
  position: absolute; left: 0; top: 0; width: 100%; height: 24px; margin: 0;
  -webkit-appearance: none; appearance: none; background: transparent; pointer-events: none;
}
.range input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none; appearance: none; pointer-events: auto;
  width: 20px; height: 20px; border-radius: 50%;
  background: #fff; border: 3px solid var(--maroon);
  box-shadow: var(--shadow-sm); cursor: grab; transition: transform 0.15s var(--ease);
}
.range input[type="range"]::-webkit-slider-thumb:hover { transform: scale(1.15); }
.range input[type="range"]::-webkit-slider-thumb:active { cursor: grabbing; }
.range input[type="range"]::-moz-range-thumb {
  pointer-events: auto; width: 20px; height: 20px; border-radius: 50%;
  background: #fff; border: 3px solid var(--maroon); box-shadow: var(--shadow-sm); cursor: grab;
}
.range input[type="range"]::-moz-range-track { background: transparent; border: none; }
.search {
  position: relative; flex: 1 1 280px; max-width: 420px;
}
.search input {
  width: 100%;
  padding: 13px 16px 13px 46px;
  border-radius: 999px;
  border: 1.5px solid var(--line);
  background: var(--paper);
  color: var(--ink);
  transition: border-color 0.25s, box-shadow 0.25s;
}
.search input:focus { outline: none; border-color: var(--gold); box-shadow: var(--ring); }
.search svg { position: absolute; left: 16px; top: 50%; transform: translateY(-50%); color: var(--muted); }

.filters { display: flex; flex-wrap: wrap; gap: 8px; }
.chip {
  padding: 9px 18px;
  border-radius: 999px;
  border: 1.5px solid var(--line);
  background: var(--paper);
  color: var(--ink-soft);
  font-size: 0.9rem; font-weight: 500;
  transition: all 0.25s var(--ease);
}
.chip:hover { border-color: var(--gold); color: var(--ink); }
.chip.active {
  background: var(--ink); color: #fff; border-color: var(--ink);
}

/* ==========================================================================
   PRODUCT GRID + CARD
   ========================================================================== */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: 26px;
}
.card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease), border-color 0.45s;
}
.card:hover { transform: translateY(-10px); box-shadow: var(--shadow-lg); border-color: transparent; }
.card__media {
  position: relative;
  aspect-ratio: 4 / 3;
  background:
    radial-gradient(420px 200px at 70% 0%, #fff, transparent 70%),
    linear-gradient(160deg, var(--steel), #f6f8fa);
  display: grid; place-items: center;
  overflow: hidden;
}
.card__media img {
  width: 88%; height: 88%; object-fit: contain;
  mix-blend-mode: multiply;
  transition: transform 0.6s var(--ease);
}
.card:hover .card__media img { transform: scale(1.07) rotate(-1deg); }
.card__tag {
  position: absolute; top: 14px; left: 14px;
  background: var(--maroon); color: #fff;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.04em;
  padding: 5px 11px; border-radius: 999px;
}
.card__tag--sale { background: linear-gradient(135deg, var(--gold), var(--gold-deep)); color: #2a1d05; }
.card__fav {
  position: absolute; top: 12px; right: 12px;
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,0.9); color: var(--maroon);
  display: grid; place-items: center;
  opacity: 0; transform: translateY(-6px);
  transition: opacity 0.3s, transform 0.3s, background 0.3s;
}
.card:hover .card__fav { opacity: 1; transform: translateY(0); }
.card__fav:hover { background: var(--maroon); color: #fff; }

.card__body { padding: 22px 22px 24px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.card__cat { font-size: 0.74rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold-deep); }
.card__title { font-size: 1.2rem; line-height: 1.25; }
.card__desc { color: var(--ink-soft); font-size: 0.92rem; flex: 1; }
.card__specs { display: flex; flex-wrap: wrap; gap: 8px; }
.spec-pill {
  font-size: 0.76rem; font-weight: 600; color: var(--ink-soft);
  background: var(--cream-2); border: 1px solid var(--line);
  padding: 4px 10px; border-radius: 8px;
}
.card__foot { display: flex; align-items: center; justify-content: space-between; margin-top: 6px; gap: 12px; }
.price { display: flex; align-items: baseline; gap: 8px; }
.price b { font-family: var(--ff-display); font-size: 1.35rem; color: var(--maroon-dark); }
.price del { color: var(--muted); font-size: 0.9rem; }

.card__actions { display: flex; gap: 10px; margin-top: 4px; }
.card__actions .btn { flex: 1; }

.empty {
  grid-column: 1 / -1; text-align: center; padding: 60px 20px; color: var(--muted);
}
.empty svg { color: var(--steel-deep); margin-bottom: 14px; }

/* ==========================================================================
   OILS SHOWCASE
   ========================================================================== */
.oils { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.oil {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 22px 18px;
  text-align: center;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.oil:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.oil__drop {
  width: 56px; height: 56px; margin: 0 auto 12px;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  display: grid; place-items: center;
  box-shadow: inset 0 -6px 12px rgba(0,0,0,0.08);
}
.oil__drop span { transform: rotate(45deg); font-weight: 700; color: rgba(0,0,0,0.45); font-size: 0.9rem; }
.oil b { display: block; font-size: 1rem; color: var(--ink); }
.oil small { color: var(--muted); font-size: 0.8rem; }

/* ==========================================================================
   PROCESS / STEPS
   ========================================================================== */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; counter-reset: step; }
.step { position: relative; padding: 28px 22px; background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); }
.step__n {
  counter-increment: step;
  font-family: var(--ff-display);
  font-size: 2.4rem; color: var(--gold); line-height: 1;
}
.step__n::before { content: "0" counter(step); }
.step h3 { font-size: 1.12rem; margin: 14px 0 8px; }
.step p { color: var(--ink-soft); font-size: 0.92rem; }

/* ==========================================================================
   SPEC HIGHLIGHTS (split)
   ========================================================================== */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(30px, 5vw, 64px); align-items: center; }
.split__media {
  border-radius: var(--radius-lg);
  background: linear-gradient(160deg, #2a1217, #4a1d24);
  padding: 38px;
  position: relative;
  overflow: hidden;
}
.split__media::before {
  content: ""; position: absolute; width: 280px; height: 280px;
  background: radial-gradient(circle, rgba(207,155,30,0.4), transparent 70%);
  top: -60px; right: -60px;
}
.split__media img { position: relative; mix-blend-mode: screen; filter: drop-shadow(0 30px 40px rgba(0,0,0,0.4)); }
.specs-list { display: grid; gap: 2px; margin-top: 24px; }
.specs-list .row {
  display: flex; justify-content: space-between; gap: 16px;
  padding: 14px 4px;
  border-bottom: 1px solid var(--line);
}
.specs-list .row span { color: var(--ink-soft); }
.specs-list .row b { color: var(--ink); font-weight: 600; text-align: right; }

/* ==========================================================================
   CTA BANNER
   ========================================================================== */
.cta-banner {
  border-radius: var(--radius-lg);
  background:
    radial-gradient(600px 300px at 90% 10%, rgba(207,155,30,0.3), transparent 60%),
    linear-gradient(135deg, var(--maroon-dark), var(--maroon));
  color: #fff;
  padding: clamp(40px, 6vw, 70px);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner h2 { color: #fff; font-size: clamp(1.8rem, 4vw, 2.8rem); }
.cta-banner p { color: rgba(255,255,255,0.85); max-width: 52ch; margin: 14px auto 28px; }
.cta-banner .hero__actions { justify-content: center; }

/* ==========================================================================
   TESTIMONIALS
   ========================================================================== */
.quotes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.quote {
  background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 28px;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.quote:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.quote__stars { color: var(--gold); letter-spacing: 2px; margin-bottom: 12px; }
.quote p { color: var(--ink-soft); font-size: 0.98rem; }
.quote__who { display: flex; align-items: center; gap: 12px; margin-top: 18px; }
.quote__av {
  width: 44px; height: 44px; border-radius: 50%;
  display: grid; place-items: center; font-weight: 700; color: #fff;
  background: linear-gradient(135deg, var(--maroon), var(--gold-deep));
}
.quote__who b { font-size: 0.95rem; }
.quote__who small { display: block; color: var(--muted); }

/* ==========================================================================
   PAGE HEADER (inner pages)
   ========================================================================== */
.page-head {
  padding-top: calc(var(--nav-h) + clamp(48px, 7vw, 90px));
  padding-bottom: clamp(40px, 6vw, 72px);
  background:
    radial-gradient(700px 400px at 85% 0%, rgba(207,155,30,0.16), transparent 55%),
    linear-gradient(180deg, #1c0d10, #34161b);
  color: #fff;
  text-align: center;
}
.page-head h1 { color: #fff; font-size: clamp(2.2rem, 5vw, 3.6rem); }
.page-head p { color: rgba(255,255,255,0.8); max-width: 60ch; margin: 16px auto 0; }
.crumbs { font-size: 0.85rem; color: rgba(255,255,255,0.6); margin-bottom: 18px; }
.crumbs a:hover { color: var(--gold-light); }

/* ==========================================================================
   ABOUT
   ========================================================================== */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(30px, 5vw, 64px); align-items: center; }
.about-grid p { color: var(--ink-soft); margin-bottom: 16px; }
.about-img {
  border-radius: var(--radius-lg); overflow: hidden;
  background: linear-gradient(160deg, var(--steel), #f6f8fa);
  padding: 36px; box-shadow: var(--shadow);
}
.mv { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.mv__card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 30px; }
.mv__card .feature__ico { margin-bottom: 16px; }
.mv__card h3 { font-size: 1.3rem; margin-bottom: 10px; }
.mv__card p { color: var(--ink-soft); }

.founder {
  display: grid; grid-template-columns: auto 1fr; gap: 26px; align-items: center;
  background: linear-gradient(135deg, var(--cream-2), #fff);
  border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: clamp(28px, 4vw, 44px);
}
.founder__av {
  width: 110px; height: 110px; border-radius: 50%;
  background: linear-gradient(135deg, var(--maroon), var(--gold-deep));
  display: grid; place-items: center; color: #fff;
  font-family: var(--ff-display); font-size: 2.4rem;
}
.founder__photo {
  width: 160px; height: 190px; flex-shrink: 0;
  border-radius: 18px; object-fit: cover; object-position: top center;
  box-shadow: var(--shadow); border: 4px solid #fff;
}
.founder blockquote { font-family: var(--ff-display); font-size: 1.3rem; font-style: italic; color: var(--ink); line-height: 1.45; }
.founder cite { display: block; margin-top: 14px; font-style: normal; color: var(--maroon); font-weight: 700; }
.founder cite span { color: var(--muted); font-weight: 500; }

/* ==========================================================================
   CONTACT
   ========================================================================== */
.contact-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(28px, 4vw, 50px); align-items: start; }
.info-card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 30px; }
.info-item { display: flex; gap: 16px; padding: 16px 0; border-bottom: 1px solid var(--line); }
.info-item:last-child { border-bottom: none; }
.info-item .feature__ico { margin: 0; width: 46px; height: 46px; flex-shrink: 0; }
.info-item b { display: block; font-size: 0.78rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); }
.info-item a, .info-item span { color: var(--ink); font-weight: 500; }
.info-item a:hover { color: var(--maroon); }

.form-card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(26px, 4vw, 40px); box-shadow: var(--shadow-sm); }
.field { margin-bottom: 18px; }
.field label { display: block; font-size: 0.85rem; font-weight: 600; margin-bottom: 7px; color: var(--ink); }
.field input, .field select, .field textarea {
  width: 100%; padding: 13px 15px;
  border: 1.5px solid var(--line); border-radius: var(--radius-sm);
  background: var(--cream); color: var(--ink);
  transition: border-color 0.25s, box-shadow 0.25s, background 0.25s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--gold); box-shadow: var(--ring); background: #fff;
}
.field textarea { resize: vertical; min-height: 130px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-note { font-size: 0.85rem; color: var(--muted); margin-top: 14px; text-align: center; }
.form-ok {
  display: none; align-items: center; gap: 10px;
  background: #ecf8ef; border: 1px solid #bfe6c8; color: #1f7a3a;
  padding: 14px 16px; border-radius: var(--radius-sm); margin-bottom: 18px; font-weight: 500;
}
.form-ok.show { display: flex; }
.form-err {
  display: none; align-items: center; gap: 10px;
  background: #fdeceb; border: 1px solid #f3c2bf; color: #b3261e;
  padding: 14px 16px; border-radius: var(--radius-sm); margin-bottom: 18px; font-weight: 500;
}
.form-err.show { display: flex; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; pointer-events: none; }
.news-err { display: block; color: #ffb4ab; font-size: 0.85rem; margin-top: 8px; }

/* Google rating card */
.grating {
  display: flex; align-items: center; gap: 16px;
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 16px 18px; margin-bottom: 18px;
  transition: box-shadow 0.25s var(--ease), transform 0.25s var(--ease), border-color 0.25s;
}
.grating:hover { box-shadow: var(--shadow); transform: translateY(-2px); border-color: var(--gold); }
.grating__score { text-align: center; flex-shrink: 0; }
.grating__score b { font-family: var(--ff-display); font-size: 2rem; color: var(--ink); display: block; line-height: 1; }
.grating__score .stars { font-size: 0.85rem; margin-top: 3px; }
.grating__meta { flex: 1; min-width: 0; }
.grating__brand { display: inline-flex; align-items: center; gap: 7px; font-weight: 700; font-size: 0.95rem; color: var(--ink); }
.grating__meta small { display: block; color: var(--muted); font-size: 0.82rem; margin-top: 2px; }
.grating__arrow { color: var(--muted); flex-shrink: 0; transition: transform 0.25s var(--ease), color 0.25s; }
.grating:hover .grating__arrow { color: var(--maroon); transform: translate(2px, -2px); }

/* hours list + open badge */
.hours-block { width: 100%; }
.open-badge { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.03em; padding: 2px 9px; border-radius: 999px; margin-left: 6px; vertical-align: middle; }
.open-badge.is-open { color: #1f7a3a; background: #ecf8ef; border: 1px solid #bfe6c8; }
.open-badge.is-closed { color: #b3261e; background: #fdeceb; border: 1px solid #f3c2bf; }
.hours-list { margin-top: 10px; display: grid; gap: 1px; }
.hours-list li { display: flex; justify-content: space-between; gap: 16px; padding: 6px 8px; border-radius: 8px; font-size: 0.86rem; color: var(--ink-soft); }
.hours-list li span:last-child { font-weight: 600; color: var(--ink); white-space: nowrap; }
.hours-list li.today { background: var(--cream-2); color: var(--maroon); }
.hours-list li.today span:last-child { color: var(--maroon-dark); }

.map-head { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; margin-top: 30px; }
.map-head h3 { font-size: 1.3rem; }
.map-head p { color: var(--ink-soft); font-size: 0.92rem; margin-top: 2px; }
.map-wrap { margin-top: 16px; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); }
.map-wrap iframe { display: block; width: 100%; height: 360px; border: 0; }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer { background: #170a0d; color: rgba(255,255,255,0.72); padding-top: clamp(50px, 7vw, 80px); }
.footer__top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 36px; padding-bottom: 44px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.footer .brand__txt b { color: #fff; }

/* Newsletter */
.footer__about { margin: 18px 0; font-size: 0.92rem; max-width: 34ch; }
.footer__logo { background: #fff; padding: 8px 12px; border-radius: 10px; display: inline-block; }
.footer h4 { color: #fff; font-size: 1rem; margin-bottom: 16px; font-family: var(--ff-body); font-weight: 700; letter-spacing: 0.02em; }
.footer__col a { display: block; padding: 6px 0; font-size: 0.92rem; transition: color 0.25s, transform 0.25s; }
.footer__col a:hover { color: var(--gold-light); transform: translateX(4px); }
.footer__contact li { display: flex; gap: 10px; padding: 7px 0; font-size: 0.92rem; }
.footer__contact svg { flex-shrink: 0; color: var(--gold); margin-top: 3px; }
.footer__socials { display: flex; gap: 10px; margin-top: 18px; }
.footer__socials a { width: 40px; height: 40px; border-radius: 10px; background: rgba(255,255,255,0.08); display: grid; place-items: center; color: #fff; transition: background 0.25s, transform 0.25s; }
.footer__socials a:hover { background: var(--maroon); transform: translateY(-3px); }
.footer__bottom { display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between; padding: 22px 0; font-size: 0.85rem; }

/* ==========================================================================
   MODAL
   ========================================================================== */
.modal {
  position: fixed; inset: 0; z-index: 200;
  display: grid; place-items: center;
  padding: 20px;
  background: rgba(20, 9, 12, 0.55);
  backdrop-filter: blur(6px);
  opacity: 0; visibility: hidden;
  transition: opacity 0.35s, visibility 0.35s;
}
.modal.open { opacity: 1; visibility: visible; }
.modal__box {
  width: 100%; max-width: 920px; max-height: 90vh; min-height: 0; overflow: hidden;
  background: var(--paper); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  transform: translateY(24px) scale(0.97);
  transition: transform 0.4s var(--ease);
  display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: minmax(0, 1fr);
}
.modal__box > * { min-height: 0; }   /* allow grid children to shrink so the box caps at 90vh */
.modal.open .modal__box { transform: translateY(0) scale(1); }
.modal__media {
  background:
    radial-gradient(380px 200px at 60% 10%, #fff, transparent 70%),
    linear-gradient(160deg, var(--steel), #f1f4f7);
  display: flex; flex-direction: column; padding: 26px; position: relative;
}
.modal__media img { mix-blend-mode: multiply; }

/* Image gallery */
.gallery { display: flex; flex-direction: column; gap: 14px; width: 100%; height: 100%; }
.gallery__main {
  flex: 1; display: grid; place-items: center;
  min-height: 230px; overflow: hidden; border-radius: 14px;
  cursor: zoom-in; position: relative;
}
.gallery__main img {
  max-height: 320px; width: auto; max-width: 100%; object-fit: contain;
  transform-origin: center center;
  transition: opacity 0.3s var(--ease), transform 0.35s var(--ease);
  will-change: transform;
}
.gallery__main.zoomed img { transform: scale(2.4); transition: transform 0.18s ease-out; }
.gallery__main img.swapping { opacity: 0; }
/* zoom hint badge */
.gallery__hint {
  position: absolute; bottom: 10px; right: 10px;
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(27,23,20,0.72); color: #fff;
  font-size: 0.72rem; font-weight: 600;
  padding: 5px 10px; border-radius: 999px;
  pointer-events: none; opacity: 1;
  transition: opacity 0.25s;
}
.gallery__main.zoomed .gallery__hint { opacity: 0; }
.gallery__thumbs { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; }
.gallery__thumb {
  width: 58px; height: 58px; flex-shrink: 0;
  border-radius: 11px; border: 2px solid transparent;
  background: #fff; padding: 5px; cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: border-color 0.25s var(--ease), transform 0.25s var(--ease);
}
.gallery__thumb img { width: 100%; height: 100%; object-fit: contain; }
.gallery__thumb:hover { transform: translateY(-3px); border-color: var(--steel-deep); }
.gallery__thumb.active { border-color: var(--gold); box-shadow: var(--ring); }

/* Related products in modal */
.related { margin-top: 28px; padding-top: 22px; border-top: 1px solid var(--line); }
.related__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 12px; }
.related__card {
  display: flex; align-items: center; gap: 14px; text-align: left;
  width: 100%; padding: 10px 12px;
  border: 1px solid var(--line); border-radius: 14px;
  background: var(--paper); cursor: pointer;
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease), transform 0.25s var(--ease);
}
.related__card:hover { border-color: var(--gold); box-shadow: var(--shadow-sm); transform: translateY(-2px); }
.related__thumb {
  width: 62px; height: 62px; flex-shrink: 0;
  border-radius: 10px; display: grid; place-items: center;
  background: linear-gradient(160deg, var(--steel), #f6f8fa);
}
.related__thumb img { width: 86%; height: 86%; object-fit: contain; mix-blend-mode: multiply; }
.related__info { display: flex; flex-direction: column; gap: 2px; min-width: 0; flex: 1; }
.related__info b { font-size: 0.96rem; line-height: 1.2; color: var(--ink); }
.related__cat { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gold-deep); }
.related__info .price b { font-family: var(--ff-display); font-size: 1.05rem; color: var(--maroon-dark); }
.related__info .price del { color: var(--muted); font-size: 0.82rem; }
.related__arrow { color: var(--muted); flex-shrink: 0; transition: transform 0.25s var(--ease), color 0.25s; }
.related__card:hover .related__arrow { color: var(--maroon); transform: translateX(4px); }

.modal__close {
  position: absolute; top: 16px; right: 16px;
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255,255,255,0.9); color: var(--ink);
  display: grid; place-items: center; box-shadow: var(--shadow-sm);
  transition: transform 0.25s, background 0.25s;
  z-index: 2;
}
.modal__close:hover { background: var(--maroon); color: #fff; transform: rotate(90deg); }
.modal__content { padding: clamp(26px, 4vw, 40px); overflow: auto; }
.modal__content .card__cat { margin-bottom: 6px; }
.modal__content h2 { font-size: 1.7rem; margin-bottom: 12px; }
.modal__price { display: flex; align-items: baseline; gap: 10px; margin-bottom: 18px; }
.modal__price b { font-family: var(--ff-display); font-size: 1.8rem; color: var(--maroon-dark); }
.modal__price del { color: var(--muted); }
.modal__price .save { background: var(--cream-2); color: var(--gold-deep); font-size: 0.78rem; font-weight: 700; padding: 3px 10px; border-radius: 999px; }
.modal__content > p { color: var(--ink-soft); margin-bottom: 20px; }
.modal h4 { font-family: var(--ff-body); font-size: 0.82rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--maroon); margin: 22px 0 12px; }
.modal__specs { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--radius-sm); overflow: hidden; }
.modal__specs div { background: var(--paper); padding: 12px 14px; }
.modal__specs div span { display: block; font-size: 0.74rem; color: var(--muted); }
.modal__specs div b { font-size: 0.92rem; }
.modal__feats { display: grid; gap: 8px; }
.modal__feats li { display: flex; gap: 10px; align-items: flex-start; font-size: 0.94rem; color: var(--ink-soft); }
.modal__feats svg { color: var(--maroon); flex-shrink: 0; margin-top: 4px; }
.modal__cta { display: flex; gap: 12px; margin-top: 26px; }
.modal__cta .btn { flex: 1; }

/* ==========================================================================
   REVIEWS & RATINGS
   ========================================================================== */
.stars { position: relative; display: inline-block; font-family: Arial, sans-serif; line-height: 1; letter-spacing: 1px; white-space: nowrap; }
.stars__base { color: var(--steel-deep); }
.stars__fill { position: absolute; left: 0; top: 0; overflow: hidden; color: var(--gold); }

.card__rating { display: flex; align-items: center; gap: 8px; }
.card__rating .stars { font-size: 0.95rem; }
.card__rating span { font-size: 0.82rem; font-weight: 600; color: var(--muted); }

.modal__rating { display: inline-flex; align-items: center; gap: 8px; margin-bottom: 14px; }
.modal__rating .stars { font-size: 1rem; }
.modal__rating span { font-size: 0.86rem; font-weight: 600; color: var(--ink-soft); }
.modal__rating:hover span { color: var(--maroon); text-decoration: underline; }

.reviews { margin-top: 28px; padding-top: 22px; border-top: 1px solid var(--line); scroll-margin-top: 12px; }
.reviews__summary { display: flex; gap: 26px; align-items: center; flex-wrap: wrap; margin: 14px 0 18px; }
.reviews__avg { text-align: center; flex-shrink: 0; }
.reviews__avg b { font-family: var(--ff-display); font-size: 2.4rem; color: var(--ink); display: block; line-height: 1; }
.reviews__avg .stars { font-size: 1.05rem; margin: 6px 0 4px; }
.reviews__avg span { font-size: 0.78rem; color: var(--muted); display: block; }
.reviews__bars { flex: 1; min-width: 190px; display: grid; gap: 6px; }
.bar-row { display: flex; align-items: center; gap: 9px; font-size: 0.8rem; color: var(--ink-soft); }
.bar-row > span:first-child { width: 26px; }
.bar { flex: 1; height: 7px; border-radius: 999px; background: var(--steel); overflow: hidden; }
.bar i { display: block; height: 100%; border-radius: 999px; background: linear-gradient(90deg, var(--gold-light), var(--gold-deep)); transition: width 0.5s var(--ease); }
.bar-row > span:last-child { width: 20px; text-align: right; color: var(--muted); }

.reviews__write {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 600; font-size: 0.88rem; color: var(--maroon);
  border: 1.5px solid var(--line); padding: 9px 16px; border-radius: 999px;
  transition: border-color 0.25s, background 0.25s;
}
.reviews__write:hover { border-color: var(--gold); background: var(--cream-2); }

.review-form { margin: 16px 0; padding: 16px; border: 1px solid var(--line); border-radius: 14px; background: var(--cream); display: grid; gap: 12px; }
.review-form[hidden] { display: none; }
.review-form__stars { display: flex; gap: 4px; }
.review-form__stars.shake { animation: rfShake 0.35s; }
@keyframes rfShake { 0%,100%{transform:translateX(0);} 25%{transform:translateX(-5px);} 75%{transform:translateX(5px);} }
.rf-star { font-size: 1.7rem; line-height: 1; color: var(--steel-deep); transition: color 0.15s, transform 0.15s; }
.rf-star:hover, .rf-star.on { color: var(--gold); }
.rf-star:hover { transform: scale(1.15); }
.review-form input, .review-form textarea { width: 100%; padding: 11px 13px; border: 1.5px solid var(--line); border-radius: 10px; background: #fff; color: var(--ink); }
.review-form textarea { min-height: 84px; resize: vertical; }
.review-form input:focus, .review-form textarea:focus { outline: none; border-color: var(--gold); box-shadow: var(--ring); }
.review-form .btn { justify-self: start; }

.reviews__list { display: grid; gap: 16px; margin-top: 18px; }
.review { display: grid; gap: 7px; padding-bottom: 16px; border-bottom: 1px solid var(--line); }
.review:last-child { border-bottom: none; padding-bottom: 0; }
.review__top { display: flex; align-items: center; gap: 10px; }
.review__av { width: 36px; height: 36px; border-radius: 50%; flex-shrink: 0; display: grid; place-items: center; font-weight: 700; font-size: 0.85rem; color: #fff; background: linear-gradient(135deg, var(--maroon), var(--gold-deep)); }
.review__who { flex: 1; min-width: 0; }
.review__who b { font-size: 0.92rem; display: block; line-height: 1.3; }
.review__who .stars { font-size: 0.8rem; }
.review__meta { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
.review__verified { font-size: 0.66rem; font-weight: 700; color: #1f7a3a; background: #ecf8ef; border: 1px solid #bfe6c8; padding: 2px 7px; border-radius: 999px; white-space: nowrap; }
.review__date { font-size: 0.76rem; color: var(--muted); white-space: nowrap; }
.review p { font-size: 0.92rem; color: var(--ink-soft); }

/* ==========================================================================
   PRODUCT COMPARISON
   ========================================================================== */
/* card toggle */
.card__compare {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  width: 100%; margin-top: 4px; padding: 9px;
  border: 1px dashed var(--line); border-radius: 10px;
  font-size: 0.82rem; font-weight: 600; color: var(--ink-soft);
  transition: border-color 0.25s, color 0.25s, background 0.25s;
}
.card__compare svg { transition: transform 0.25s var(--ease); }
.card__compare:hover { border-color: var(--gold); color: var(--ink); }
.card__compare.active { border-style: solid; border-color: var(--maroon); color: var(--maroon); background: var(--cream-2); }

/* floating selection tray */
.compare-tray {
  position: fixed; left: 50%; bottom: 20px; z-index: 97;
  display: flex; align-items: center; gap: 16px;
  max-width: calc(100vw - 32px);
  padding: 10px 12px 10px 18px;
  background: var(--ink); color: #fff;
  border-radius: 999px; box-shadow: var(--shadow-lg);
  opacity: 0; visibility: hidden; pointer-events: none;
  transform: translateX(-50%) translateY(24px);
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease), visibility 0.3s;
}
.compare-tray.show { opacity: 1; visibility: visible; pointer-events: auto; transform: translateX(-50%) translateY(0); }
.compare-tray.nudge { animation: cmpNudge 0.4s; }
@keyframes cmpNudge { 0%,100%{transform:translateX(-50%) translateY(0);} 25%{transform:translateX(-53%) translateY(0);} 75%{transform:translateX(-47%) translateY(0);} }
.compare-tray__items { display: flex; gap: 8px; }
.compare-tray__thumb { position: relative; width: 42px; height: 42px; border-radius: 9px; background: #fff; padding: 4px; }
.compare-tray__thumb img { width: 100%; height: 100%; object-fit: contain; mix-blend-mode: multiply; }
.compare-tray__thumb button {
  position: absolute; top: -7px; right: -7px;
  width: 19px; height: 19px; border-radius: 50%;
  background: var(--maroon); color: #fff; font-size: 13px; line-height: 1;
  display: grid; place-items: center; box-shadow: 0 2px 6px rgba(0,0,0,0.3);
}
.compare-tray__thumb button:hover { background: var(--maroon-dark); }
.compare-tray__label { font-size: 0.88rem; font-weight: 600; white-space: nowrap; color: rgba(255,255,255,0.85); }
.compare-tray__actions { display: flex; align-items: center; gap: 10px; }
.compare-tray .btn--gold:disabled { opacity: 0.5; cursor: not-allowed; box-shadow: none; transform: none; }
.compare-clear { color: rgba(255,255,255,0.7); font-size: 0.85rem; font-weight: 500; }
.compare-clear:hover { color: #fff; text-decoration: underline; }
body.has-compare .wa-float { bottom: 92px; }
body.has-compare .totop { bottom: 158px; }

/* comparison modal */
.cmp-modal {
  position: fixed; inset: 0; z-index: 200;
  display: grid; place-items: center; padding: 20px;
  background: rgba(20, 9, 12, 0.55); backdrop-filter: blur(6px);
  opacity: 0; visibility: hidden; transition: opacity 0.35s, visibility 0.35s;
}
.cmp-modal.open { opacity: 1; visibility: visible; }
.cmp-box {
  width: 100%; max-width: 880px; max-height: 90vh;
  background: var(--paper); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg); overflow: hidden;
  display: flex; flex-direction: column;
  transform: translateY(20px) scale(0.97);
  transition: transform 0.4s var(--ease);
}
.cmp-modal.open .cmp-box { transform: none; }
.cmp-head { display: flex; align-items: center; justify-content: space-between; padding: 20px 24px; border-bottom: 1px solid var(--line); }
.cmp-head h3 { font-size: 1.3rem; }
.cmp-close { width: 40px; height: 40px; border-radius: 50%; background: var(--cream-2); color: var(--ink); display: grid; place-items: center; transition: transform 0.25s, background 0.25s; }
.cmp-close:hover { background: var(--maroon); color: #fff; transform: rotate(90deg); }
.cmp-scroll { overflow: auto; padding: 6px 10px 14px; }
.cmp-table { width: 100%; border-collapse: collapse; min-width: 460px; }
.cmp-table th, .cmp-table td { padding: 13px 16px; text-align: left; vertical-align: middle; border-bottom: 1px solid var(--line); font-size: 0.92rem; color: var(--ink); }
.cmp-table thead th { vertical-align: bottom; border-bottom: 2px solid var(--line); position: sticky; top: 0; background: var(--paper); z-index: 1; text-align: center; }
.cmp-table thead th:first-child { background: var(--paper); }
.cmp-table tbody th { width: 130px; white-space: nowrap; color: var(--ink-soft); font-weight: 600; background: var(--cream); }
.cmp-table tbody td { text-align: center; }
.cmp-thumb { display: grid; place-items: center; width: 100%; height: 84px; background: linear-gradient(160deg, var(--steel), #f6f8fa); border-radius: 12px; margin-bottom: 10px; }
.cmp-thumb img { max-height: 72px; max-width: 90%; object-fit: contain; mix-blend-mode: multiply; }
.cmp-table thead b { font-family: var(--ff-display); font-size: 1rem; display: block; }
.cmp-price { font-family: var(--ff-display); font-size: 1.12rem; color: var(--maroon-dark); font-weight: 600; }
.cmp-table del { color: var(--muted); font-size: 0.84rem; }
.cmp-price-row td { background: var(--cream-2); }
.cmp-table tr:hover td { background: rgba(207,155,30,0.06); }
.cmp-cta-row td { padding-top: 18px; }

/* ==========================================================================
   WISHLIST
   ========================================================================== */
/* nav heart button */
.nav__wish {
  position: relative; flex-shrink: 0;
  width: 42px; height: 42px; border-radius: 12px;
  display: grid; place-items: center;
  color: var(--maroon);
  transition: background 0.25s, transform 0.25s;
}
.nav__wish:hover { background: var(--cream-2); transform: translateY(-1px); }
.nav__wish-count {
  position: absolute; top: 2px; right: 2px;
  min-width: 17px; height: 17px; padding: 0 4px;
  border-radius: 999px; background: var(--gold); color: #2a1d05;
  font-size: 0.66rem; font-weight: 800; line-height: 17px; text-align: center;
  transform: scale(0); transition: transform 0.25s var(--ease);
}
.nav__wish-count.show { transform: scale(1); }

/* card heart — stays visible & filled when saved */
.card__fav.active { opacity: 1; transform: none; background: var(--maroon); color: #fff; }

/* modal save button */
.modal__cta .modal__wish { flex: 0 0 52px; padding: 0; }
.modal__wish.active { border-color: var(--maroon); background: var(--maroon); color: #fff; }

/* drawer */
.wish-drawer { position: fixed; inset: 0; z-index: 210; visibility: hidden; }
.wish-drawer.open { visibility: visible; }
.wish-drawer__scrim {
  position: absolute; inset: 0; background: rgba(20, 9, 12, 0.5);
  backdrop-filter: blur(4px); opacity: 0; transition: opacity 0.35s;
}
.wish-drawer.open .wish-drawer__scrim { opacity: 1; }
.wish-drawer__panel {
  position: absolute; top: 0; right: 0; height: 100%;
  width: min(420px, 100%);
  background: var(--cream); box-shadow: var(--shadow-lg);
  display: flex; flex-direction: column;
  transform: translateX(100%); transition: transform 0.4s var(--ease);
}
.wish-drawer.open .wish-drawer__panel { transform: none; }
.wish-drawer__head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 22px; border-bottom: 1px solid var(--line); background: var(--paper);
}
.wish-drawer__head h3 { font-size: 1.2rem; }
.wish-drawer__head span { color: var(--muted); font-family: var(--ff-body); font-weight: 600; font-size: 0.95rem; }
.wish-drawer__close { width: 40px; height: 40px; border-radius: 50%; background: var(--cream-2); color: var(--ink); display: grid; place-items: center; transition: transform 0.25s, background 0.25s; }
.wish-drawer__close:hover { background: var(--maroon); color: #fff; transform: rotate(90deg); }
.wish-drawer__body { flex: 1; overflow-y: auto; padding: 18px; display: grid; gap: 14px; align-content: start; }

.wish-item {
  position: relative; display: flex; gap: 14px; align-items: center;
  background: var(--paper); border: 1px solid var(--line); border-radius: 14px; padding: 12px;
  transition: box-shadow 0.25s, transform 0.25s;
}
.wish-item:hover { box-shadow: var(--shadow-sm); }
.wish-item__thumb { width: 76px; height: 76px; flex-shrink: 0; border-radius: 10px; display: grid; place-items: center; background: linear-gradient(160deg, var(--steel), #f6f8fa); }
.wish-item__thumb img { width: 88%; height: 88%; object-fit: contain; mix-blend-mode: multiply; }
.wish-item__info { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 6px; }
.wish-item__info > b { font-size: 0.95rem; line-height: 1.25; }
.wish-item__info .price b { font-family: var(--ff-display); font-size: 1.05rem; color: var(--maroon-dark); }
.wish-item__info .price del { color: var(--muted); font-size: 0.82rem; }
.wish-item__btns { display: flex; gap: 8px; margin-top: 2px; }
.wish-item__btns .btn { padding: 7px 12px; font-size: 0.82rem; }
.wish-item__remove { position: absolute; top: 8px; right: 8px; width: 28px; height: 28px; border-radius: 50%; color: var(--muted); display: grid; place-items: center; transition: background 0.2s, color 0.2s; }
.wish-item__remove:hover { background: #fdeaea; color: var(--maroon); }

.wish-empty { text-align: center; padding: 60px 20px; color: var(--ink-soft); display: grid; gap: 8px; justify-items: center; }
.wish-empty svg { color: var(--steel-deep); }
.wish-empty p { font-family: var(--ff-display); font-size: 1.2rem; color: var(--ink); }
.wish-empty span { font-size: 0.88rem; color: var(--muted); }
.wish-empty .btn { margin-top: 10px; }

/* ==========================================================================
   GALLERY (videos + photos) + LIGHTBOX
   ========================================================================== */
.video-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 26px; }
.vcard {
  display: flex; flex-direction: column; text-align: left;
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; cursor: pointer;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s;
}
.vcard:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: transparent; }
.vcard__thumb { position: relative; aspect-ratio: 16 / 9; overflow: hidden; background: #1c0d10; }
.vcard__thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease), opacity 0.3s; }
.vcard:hover .vcard__thumb img { transform: scale(1.06); opacity: 0.85; }
.vcard__play {
  position: absolute; inset: 0; margin: auto; width: 60px; height: 60px;
  display: grid; place-items: center; border-radius: 50%;
  background: rgba(155, 27, 47, 0.92); color: #fff;
  box-shadow: 0 8px 24px rgba(0,0,0,0.35);
  transition: transform 0.3s var(--ease), background 0.3s;
}
.vcard:hover .vcard__play { transform: scale(1.12); background: var(--maroon); }
.vcard__tag {
  position: absolute; top: 12px; left: 12px;
  background: rgba(27,23,20,0.78); color: #fff; backdrop-filter: blur(4px);
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.03em;
  padding: 5px 11px; border-radius: 999px;
}
.vcard__body { padding: 16px 18px 18px; display: flex; flex-direction: column; gap: 6px; }
.vcard__body b { font-size: 1.02rem; line-height: 1.3; color: var(--ink); }
.vcard__body small { display: inline-flex; align-items: center; gap: 6px; color: var(--muted); font-size: 0.84rem; font-weight: 600; }

/* photo gallery */
.photo-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 16px; }
.pcard {
  position: relative; aspect-ratio: 1 / 1; border-radius: var(--radius-sm); overflow: hidden;
  border: 1px solid var(--line); cursor: zoom-in;
  background: radial-gradient(300px 160px at 60% 0%, #fff, transparent 70%), linear-gradient(160deg, var(--steel), #f6f8fa);
}
.pcard img { width: 100%; height: 100%; object-fit: contain; padding: 14px; mix-blend-mode: multiply; transition: transform 0.5s var(--ease); }
.pcard:hover img { transform: scale(1.08); }
.pcard::after {
  content: ""; position: absolute; inset: 0; background: rgba(155,27,47,0); transition: background 0.3s;
}
.pcard:hover::after { background: rgba(155,27,47,0.06); }
.pcard--photo { background: var(--ink); }
.pcard--photo img { padding: 0; mix-blend-mode: normal; object-fit: cover; }

/* lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 220; display: grid; place-items: center; padding: 24px;
  background: rgba(15, 6, 8, 0.82); backdrop-filter: blur(8px);
  opacity: 0; visibility: hidden; transition: opacity 0.35s, visibility 0.35s;
}
.lightbox.open { opacity: 1; visibility: visible; }
.lightbox__scrim { position: absolute; inset: 0; }
.lightbox__inner { position: relative; width: 100%; max-width: 960px; z-index: 1; transform: scale(0.97); transition: transform 0.35s var(--ease); }
.lightbox.open .lightbox__inner { transform: scale(1); }
.lightbox__close {
  position: absolute; top: -48px; right: 0; width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255,255,255,0.14); color: #fff; display: grid; place-items: center;
  transition: background 0.25s, transform 0.25s;
}
.lightbox__close:hover { background: var(--maroon); transform: rotate(90deg); }
.lightbox__video { position: relative; width: 100%; aspect-ratio: 16 / 9; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg); background: #000; }
.lightbox__video iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.lightbox__img { display: block; max-width: 100%; max-height: 82vh; margin: 0 auto; border-radius: var(--radius); box-shadow: var(--shadow-lg); }
@media (max-width: 560px) { .lightbox__close { top: -44px; } }

/* ==========================================================================
   SCROLL REVEAL
   ========================================================================== */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: 0.08s; }
.reveal[data-delay="2"] { transition-delay: 0.16s; }
.reveal[data-delay="3"] { transition-delay: 0.24s; }
.reveal[data-delay="4"] { transition-delay: 0.32s; }

/* Scroll progress bar */
.scrollbar { position: fixed; top: 0; left: 0; height: 3px; width: 0; z-index: 110; background: linear-gradient(90deg, var(--gold), var(--maroon)); transition: width 0.1s linear; }

/* Back to top (sits above the WhatsApp float) */
.totop {
  position: fixed; right: 22px; bottom: 88px; z-index: 90;
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--maroon); color: #fff;
  display: grid; place-items: center;
  box-shadow: var(--shadow);
  opacity: 0; visibility: hidden; transform: translateY(12px);
  transition: opacity 0.3s, visibility 0.3s, transform 0.3s, background 0.3s;
}
.totop.show { opacity: 1; visibility: visible; transform: none; }
.totop:hover { background: var(--maroon-dark); transform: translateY(-3px); }

/* WhatsApp floating button */
.wa-float {
  position: fixed; right: 22px; bottom: 22px; z-index: 95;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25d366; color: #fff;
  display: grid; place-items: center;
  box-shadow: 0 10px 26px rgba(37, 211, 102, 0.45);
  transition: transform 0.3s var(--ease), box-shadow 0.3s;
}
.wa-float::before {
  content: ""; position: absolute; inset: 0; border-radius: 50%;
  background: #25d366; z-index: -1;
  animation: waPulse 2.4s ease-out infinite;
}
.wa-float:hover { transform: scale(1.08); box-shadow: 0 14px 32px rgba(37, 211, 102, 0.6); }
.wa-float__label {
  position: absolute; right: calc(100% + 12px); white-space: nowrap;
  background: var(--ink); color: #fff;
  font-size: 0.82rem; font-weight: 600;
  padding: 8px 13px; border-radius: 10px;
  box-shadow: var(--shadow-sm);
  opacity: 0; transform: translateX(8px); pointer-events: none;
  transition: opacity 0.25s, transform 0.25s;
}
.wa-float__label::after {
  content: ""; position: absolute; left: 100%; top: 50%; transform: translateY(-50%);
  border: 6px solid transparent; border-left-color: var(--ink);
}
.wa-float:hover .wa-float__label { opacity: 1; transform: translateX(0); }
@keyframes waPulse {
  0% { transform: scale(1); opacity: 0.55; }
  70%, 100% { transform: scale(1.7); opacity: 0; }
}
@media (max-width: 560px) {
  .wa-float { width: 52px; height: 52px; right: 16px; bottom: 16px; }
  .totop { right: 16px; bottom: 80px; }
  .wa-float__label { display: none; }
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 1024px) {
  .features { grid-template-columns: repeat(2, 1fr); }
  .oils { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .footer__top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 860px) {
  /* Mobile dropdown — single fixed panel holding links + CTA */
  .nav__menu {
    position: fixed; inset: var(--nav-h) 0 auto 0;
    flex-direction: column; align-items: stretch;
    background: #fff; padding: 14px clamp(20px,5vw,48px) 22px;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
    transform: translateY(-14px); opacity: 0; pointer-events: none;
    transition: transform 0.32s var(--ease), opacity 0.32s;
    margin: 0; gap: 2px;
    max-height: calc(100vh - var(--nav-h)); overflow-y: auto;
  }
  .nav.open .nav__menu { transform: none; opacity: 1; pointer-events: auto; }
  .nav__menu a:not(.btn) { padding: 13px 8px; font-size: 1.05rem; }
  .nav__menu a:not(.btn)::after { display: none; }
  .nav__cta { margin: 12px 0 0; width: 100%; }
  .nav__toggle { display: flex; margin-left: auto; flex-shrink: 0; }
  .nav__inner { gap: 12px; }
  .brand { margin-right: auto; min-width: 0; }
  .brand__logo { height: 36px; }

  .hero__grid { grid-template-columns: 1fr; }
  .hero__visual { max-width: 440px; margin-inline: auto; }
  .split { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .cats { grid-template-columns: 1fr; }
  .quotes { grid-template-columns: 1fr; }
  .mv { grid-template-columns: 1fr; }
  .founder { grid-template-columns: 1fr; text-align: center; }
  .founder__av, .founder__photo { margin-inline: auto; }
  .modal__box { display: block; overflow-y: auto; }   /* stack media + content, scroll the whole sheet */
  .modal__media { padding: 26px 26px 22px; }
  .modal__content { overflow: visible; }
  .gallery__main img { max-height: 240px; }
  .modal__specs { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  .features { grid-template-columns: 1fr; }
  .oils { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .hero__chip--1 { left: 6px; }
  .hero__chip--2 { right: 6px; }
  .hero__stats { flex-wrap: wrap; gap: 18px; }
  .brand__txt { display: none; }      /* logo already carries the wordmark — frees room for the toggle */
  .brand__logo { height: 40px; }
  .compare-tray { gap: 10px; padding: 9px 12px; left: 16px; right: 16px; transform: translateY(24px); max-width: none; }
  .compare-tray.show { transform: translateY(0); }
  .compare-tray.nudge { animation: none; }
  .compare-tray__label { display: none; }
  .cmp-head { padding: 16px 18px; }
  .toolbar__end { width: 100%; justify-content: space-between; }
  .sort select { flex: 1; }
}

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