/* ==========================================================================
   RELAXPRESS — Home & Lifestyle Manufacturer
   Design system + site styles
   ========================================================================== */

/* ---------- 1. Tokens --------------------------------------------------- */
:root {
  /* colour */
  --ink: #181713;
  --ink-80: #34322c;
  --ink-60: #5c5950;
  --ink-45: #86827a;
  --ink-25: #b8b4ab;
  --line: #e7e3da;
  --line-soft: #f1eee7;
  --bg: #ffffff;
  --cream: #faf8f4;
  --cream-2: #f3efe8;
  --dark: #171612;
  --dark-2: #22201b;
  --accent: #a97b4f;
  --accent-dark: #8a6339;
  --accent-soft: #f6efe6;
  --success: #3f7d5a;
  --danger: #b4483c;

  /* type */
  --font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Helvetica Neue", "PingFang SC", "Microsoft YaHei", "Noto Sans", sans-serif;
  --font-display: "Inter", var(--font);

  /* space */
  --gut: 24px;
  --container: 1240px;
  --sec: 96px;

  /* misc */
  --r-xs: 3px;
  --r-sm: 6px;
  --r: 10px;
  --r-lg: 16px;
  --shadow-sm: 0 1px 2px rgba(24, 23, 19, .05);
  --shadow: 0 4px 20px -6px rgba(24, 23, 19, .10);
  --shadow-lg: 0 24px 60px -20px rgba(24, 23, 19, .22);
  --t: .22s cubic-bezier(.4, 0, .2, 1);
  --header-h: 76px;
}

@media (max-width: 900px) {
  :root { --sec: 64px; --gut: 18px; --header-h: 62px; }
}

/* ---------- 2. Reset ---------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 16px); }
body {
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink-80);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img, svg, video { display: block; max-width: 100%; height: auto; }
button, input, select, textarea { font: inherit; color: inherit; }
button { background: none; border: 0; cursor: pointer; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; padding: 0; }
table { border-collapse: collapse; width: 100%; }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 2px; }
::selection { background: var(--ink); color: #fff; }

h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  color: var(--ink);
  font-weight: 600;
  line-height: 1.18;
  letter-spacing: -.021em;
}
h1 { font-size: clamp(2.2rem, 1.35rem + 3.1vw, 3.75rem); font-weight: 650; letter-spacing: -.032em; }
h2 { font-size: clamp(1.6rem, 1.1rem + 1.9vw, 2.5rem); letter-spacing: -.027em; }
h3 { font-size: clamp(1.12rem, .98rem + .55vw, 1.4rem); }
h4 { font-size: 1.0625rem; }
p { text-wrap: pretty; }

/* ---------- 3. Layout helpers ------------------------------------------ */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gut); }
.container-nar { max-width: 900px; }
.section { padding-block: var(--sec); }
.section--cream { background: var(--cream); }
.section--tight { padding-block: calc(var(--sec) * .62); }
.grid { display: grid; gap: 28px; }
.flex { display: flex; }
.center { text-align: center; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.skip-link {
  position: absolute; left: 12px; top: -60px; z-index: 999; background: var(--ink);
  color: #fff; padding: 10px 18px; border-radius: var(--r-sm); transition: top var(--t);
}
.skip-link:focus { top: 12px; }

/* ---------- 4. Typography utilities ------------------------------------ */
.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: .75rem; font-weight: 600; letter-spacing: .13em; text-transform: uppercase;
  color: var(--accent-dark);
}
.eyebrow::before { content: ""; width: 22px; height: 1px; background: currentColor; opacity: .55; }
.eyebrow--center { justify-content: center; }
.lede { font-size: clamp(1rem, .95rem + .28vw, 1.145rem); color: var(--ink-60); max-width: 62ch; }
.section-head { max-width: 720px; margin-bottom: 52px; }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head h2 { margin: 16px 0 14px; }
.muted { color: var(--ink-45); }
.small { font-size: .875rem; }
.xsmall { font-size: .78rem; }

/* ---------- 5. Buttons -------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  padding: 13px 26px; border-radius: var(--r-sm);
  font-size: .9375rem; font-weight: 550; letter-spacing: -.006em;
  border: 1px solid transparent; cursor: pointer; white-space: nowrap;
  transition: background var(--t), color var(--t), border-color var(--t), transform var(--t), box-shadow var(--t);
}
.btn:active { transform: translateY(1px); }
.btn svg { width: 17px; height: 17px; flex: none; }

.btn--primary { background: var(--ink); color: #fff; }
.btn--primary:hover { background: var(--dark-2); box-shadow: var(--shadow); }
.btn--accent { background: var(--accent); color: #fff; }
.btn--accent:hover { background: var(--accent-dark); }
.btn--outline { border-color: var(--line); color: var(--ink); background: #fff; }
.btn--outline:hover { border-color: var(--ink); background: var(--ink); color: #fff; }
.btn--ghost-light { border-color: rgba(255,255,255,.42); color: #fff; }
.btn--ghost-light:hover { background: #fff; color: var(--ink); border-color: #fff; }
.btn--light { background: #fff; color: var(--ink); }
.btn--light:hover { background: var(--cream-2); }
.btn--sm { padding: 9px 17px; font-size: .84rem; }
.btn--lg { padding: 16px 34px; font-size: 1rem; }
.btn--block { width: 100%; }
.btn--wa { background: #25d366; color: #fff; }
.btn--wa:hover { background: #1eb958; }

.link-arrow {
  display: inline-flex; align-items: center; gap: 7px; font-weight: 550;
  font-size: .9rem; color: var(--ink); border-bottom: 1px solid var(--ink-25);
  padding-bottom: 2px; transition: gap var(--t), border-color var(--t), color var(--t);
}
.link-arrow:hover { gap: 12px; border-color: var(--accent); color: var(--accent-dark); }

/* ---------- 6. Header --------------------------------------------------- */
.topbar {
  background: var(--dark); color: rgba(255,255,255,.74);
  font-size: .8125rem; letter-spacing: -.002em;
}
.topbar__in { display: flex; align-items: center; justify-content: space-between; gap: 18px; min-height: 38px; }
.topbar__list { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }
.topbar__list li { display: flex; align-items: center; gap: 7px; }
.topbar svg { width: 14px; height: 14px; opacity: .7; }
.topbar a:hover { color: #fff; }
.topbar__pill {
  display: inline-flex; align-items: center; gap: 7px;
  background: rgba(169,123,79,.22); color: #e8d3ba;
  border: 1px solid rgba(169,123,79,.4);
  padding: 3px 11px; border-radius: 100px; font-size: .74rem; font-weight: 550;
}
.topbar__pill i { width: 6px; height: 6px; border-radius: 50%; background: #6ede9b; animation: pulse 2s infinite; }
@keyframes pulse { 0%,100% { opacity: 1 } 50% { opacity: .35 } }
@media (max-width: 860px) { .topbar__hide-sm { display: none; } }

.header {
  position: sticky; top: 0; z-index: 90; background: rgba(255,255,255,.92);
  backdrop-filter: saturate(1.6) blur(14px); -webkit-backdrop-filter: saturate(1.6) blur(14px);
  border-bottom: 1px solid var(--line);
}
.header__in { display: flex; align-items: center; gap: 26px; min-height: var(--header-h); }
.logo { display: flex; align-items: center; gap: 11px; flex: none; }
.logo__mark {
  width: 34px; height: 34px; border-radius: 8px; background: var(--ink); color: #fff;
  display: grid; place-items: center; font-weight: 700; font-size: .95rem; letter-spacing: -.04em;
}
.logo__text { display: flex; flex-direction: column; line-height: 1.05; }
.logo__name { font-weight: 680; font-size: 1.075rem; letter-spacing: -.035em; color: var(--ink); }
.logo__sub { font-size: .625rem; letter-spacing: .17em; text-transform: uppercase; color: var(--ink-45); font-weight: 500; }

.nav { display: flex; align-items: center; gap: 4px; margin-inline-start: auto; }
.nav__link {
  position: relative; padding: 9px 14px; border-radius: var(--r-sm);
  font-size: .9165rem; font-weight: 500; color: var(--ink-80); transition: color var(--t), background var(--t);
}
.nav__link:hover { color: var(--ink); background: var(--cream-2); }
.nav__link.is-active { color: var(--ink); font-weight: 600; }
.nav__link.is-active::after {
  content: ""; position: absolute; left: 14px; right: 14px; bottom: 2px;
  height: 2px; background: var(--accent); border-radius: 2px;
}
.header__actions { display: flex; align-items: center; gap: 10px; flex: none; }

/* language switcher */
.lang { position: relative; }
.lang__btn {
  display: inline-flex; align-items: center; gap: 7px; padding: 8px 12px;
  border: 1px solid var(--line); border-radius: var(--r-sm);
  font-size: .84rem; font-weight: 550; color: var(--ink-80); background: #fff; transition: border-color var(--t);
}
.lang__btn:hover { border-color: var(--ink-25); }
.lang__btn svg { width: 15px; height: 15px; opacity: .6; }
.lang__menu {
  position: absolute; inset-inline-end: 0; top: calc(100% + 8px); z-index: 60;
  min-width: 208px; background: #fff; border: 1px solid var(--line);
  border-radius: var(--r); box-shadow: var(--shadow-lg); padding: 6px;
  opacity: 0; visibility: hidden; transform: translateY(-6px); transition: all var(--t);
  max-height: 60vh; overflow-y: auto;
}
.lang.is-open .lang__menu { opacity: 1; visibility: visible; transform: translateY(0); }
.lang__item {
  display: flex; align-items: center; gap: 10px; width: 100%; text-align: start;
  padding: 9px 12px; border-radius: var(--r-sm); font-size: .875rem; color: var(--ink-80);
}
.lang__item:hover { background: var(--cream); }
.lang__item.is-active { background: var(--accent-soft); color: var(--accent-dark); font-weight: 600; }
.lang__flag { font-size: 1.05rem; line-height: 1; }
.lang__native { margin-inline-start: auto; font-size: .74rem; color: var(--ink-45); }

.burger { display: none; width: 42px; height: 42px; border: 1px solid var(--line); border-radius: var(--r-sm); }
.burger span { display: block; width: 17px; height: 1.5px; background: var(--ink); margin: 3.5px auto; transition: var(--t); }
.mobile-nav { display: none; }

@media (max-width: 1080px) {
  .nav { display: none; }
  .burger { display: block; }
  .header__cta { display: none; }
  .mobile-nav {
    display: block; position: fixed; inset: 0; z-index: 200; background: #fff;
    transform: translateX(100%); transition: transform .3s cubic-bezier(.4,0,.2,1);
    overflow-y: auto; padding: 20px var(--gut) 40px;
  }
  .mobile-nav.is-open { transform: translateX(0); }
  .mobile-nav__top { display: flex; align-items: center; justify-content: space-between; padding-bottom: 22px; border-bottom: 1px solid var(--line); }
  .mobile-nav__close { width: 42px; height: 42px; border: 1px solid var(--line); border-radius: var(--r-sm); font-size: 1.3rem; color: var(--ink); }
  .mobile-nav__list { padding: 12px 0; }
  .mobile-nav__list a {
    display: block; padding: 15px 2px; font-size: 1.1rem; font-weight: 550;
    color: var(--ink); border-bottom: 1px solid var(--line-soft);
  }
  .mobile-nav__foot { padding-top: 26px; display: grid; gap: 10px; }
}

/* ---------- 7. Hero ----------------------------------------------------- */
.hero { position: relative; background: var(--dark); color: #fff; overflow: hidden; }
.hero__bg { position: absolute; inset: 0; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; opacity: .55; }
.hero__bg::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(20,19,15,.94) 0%, rgba(20,19,15,.76) 46%, rgba(20,19,15,.34) 100%);
}
.hero__in { position: relative; z-index: 2; padding-block: clamp(72px, 9vw, 132px); }
.hero__content { max-width: 660px; }
.hero .eyebrow { color: #d9bb96; }
.hero h1 { color: #fff; margin: 20px 0 22px; }
.hero__sub { font-size: clamp(1rem, .94rem + .38vw, 1.18rem); color: rgba(255,255,255,.8); max-width: 56ch; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 13px; margin-top: 36px; }
.hero__stats {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px;
  margin-top: 60px; padding-top: 34px; border-top: 1px solid rgba(255,255,255,.16); max-width: 800px;
}
.hero__stat b { display: block; font-size: clamp(1.35rem, 1.1rem + 1vw, 1.9rem); font-weight: 650; color: #fff; letter-spacing: -.03em; }
.hero__stat span { font-size: .78rem; color: rgba(255,255,255,.6); letter-spacing: .02em; }
@media (max-width: 640px) { .hero__stats { grid-template-columns: repeat(2, 1fr); row-gap: 26px; } }

/* ---------- 7a. Hero dynamic category ribbon ---------------------------- */
.hero__ribbon {
  position: relative;
  margin-top: 26px;
  max-width: 760px;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}
.hero__ribbon-track {
  display: flex;
  gap: 10px;
  width: max-content;
  animation: heroRibbonScroll 28s linear infinite;
  will-change: transform;
}
.hero__ribbon:hover .hero__ribbon-track { animation-play-state: paused; }
.hero__ribbon-item {
  flex: none;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 14px;
  border: 1px solid rgba(255,255,255,.24);
  border-radius: 100px;
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.86);
  font-size: .82rem;
  font-weight: 500;
  letter-spacing: .01em;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.hero__ribbon-item::before {
  content: "";
  width: 5px; height: 5px;
  border-radius: 50%;
  background: #46d17e;
  flex: none;
}
html[dir="rtl"] .hero__ribbon-track { animation-direction: reverse; }
@keyframes heroRibbonScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@media (max-width: 640px) {
  .hero__ribbon { margin-top: 22px; }
  .hero__ribbon-item { font-size: .78rem; padding: 6px 12px; }
  .hero__ribbon-track { animation-duration: 22s; }
}

/* ---------- 7b. Hero live counter --------------------------------------- */
.hero__live {
  display: inline-flex; align-items: center; gap: 9px; margin-top: 26px;
  font-size: .86rem; color: rgba(255,255,255,.82);
}
.hero__live b { color: #fff; font-weight: 700; font-variant-numeric: tabular-nums; letter-spacing: -.02em; }
.hero__live-dot {
  width: 9px; height: 9px; border-radius: 50%; background: #46d17e; position: relative; flex: none;
}
.hero__live-dot::after {
  content: ""; position: absolute; inset: -4px; border-radius: 50%;
  background: #46d17e; opacity: .4; animation: livePulse 1.8s ease-out infinite;
}

/* ---------- 7c. Floating live visitor badge (all pages) ---------------- */
.live-badge {
  position: fixed; left: 18px; bottom: 18px; z-index: 280;
  display: flex; align-items: center; gap: 11px;
  background: #fff; border: 1px solid var(--line); border-radius: 14px;
  padding: 10px 15px; box-shadow: var(--shadow-lg); max-width: 240px;
  font-family: inherit; animation: liveIn .5s ease both; pointer-events: none;
}
.live-badge .live-dot {
  width: 9px; height: 9px; border-radius: 50%; background: var(--success, #2e9e5b);
  position: relative; flex: none;
}
.live-badge .live-dot::after {
  content: ""; position: absolute; inset: -5px; border-radius: 50%;
  background: var(--success, #2e9e5b); opacity: .35; animation: livePulse 1.8s ease-out infinite;
}
.live-badge .live-body { display: flex; flex-direction: column; line-height: 1.18; }
.live-badge .live-count {
  font-size: 1.18rem; font-weight: 750; color: var(--accent); letter-spacing: -.02em;
  font-variant-numeric: tabular-nums;
}
.live-badge .live-label {
  font-size: .62rem; color: var(--muted); text-transform: uppercase; letter-spacing: .08em;
}
.live-badge .live-now { font-size: .72rem; color: var(--ink-60, #6b6660); margin-top: 1px; }
.live-badge .live-now span { font-weight: 650; color: var(--ink); font-variant-numeric: tabular-nums; }
@keyframes livePulse {
  0% { transform: scale(.6); opacity: .5; }
  70% { transform: scale(1.9); opacity: 0; }
  100% { opacity: 0; }
}
@keyframes liveIn { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: none; } }
@media (max-width: 560px) {
  .live-badge { left: 10px; bottom: 96px; padding: 8px 11px; max-width: 196px; }
  .live-badge .live-count { font-size: 1.02rem; }
}
@media (max-width: 380px) { .live-badge .live-label { display: none; } }

/* ---------- 8. Trust strip ---------------------------------------------- */
.trust { border-bottom: 1px solid var(--line); background: #fff; }
.trust__in { display: flex; align-items: center; flex-wrap: wrap; gap: 14px 42px; padding-block: 22px; }
.trust__label { font-size: .74rem; letter-spacing: .13em; text-transform: uppercase; color: var(--ink-45); font-weight: 600; }
.trust__items { display: flex; flex-wrap: wrap; gap: 12px 30px; align-items: center; }
.trust__item { display: flex; align-items: center; gap: 8px; font-size: .855rem; font-weight: 550; color: var(--ink-60); }
.trust__item svg { width: 16px; height: 16px; color: var(--accent); }

/* ---------- 9. Category grid -------------------------------------------- */
.cat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
@media (max-width: 940px) { .cat-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; } }
@media (max-width: 560px) { .cat-grid { grid-template-columns: 1fr; } }

.cat-card {
  position: relative; display: block; border-radius: var(--r); overflow: hidden;
  background: var(--cream-2); aspect-ratio: 4/3.35; isolation: isolate;
}
.cat-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s cubic-bezier(.2,.7,.3,1); }
.cat-card::after {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to top, rgba(18,17,13,.82) 0%, rgba(18,17,13,.34) 42%, rgba(18,17,13,0) 72%);
}
.cat-card:hover img { transform: scale(1.055); }
.cat-card__body { position: absolute; inset-inline: 0; bottom: 0; z-index: 2; padding: 24px; color: #fff; }
.cat-card__body h3 { color: #fff; font-size: 1.24rem; }
.cat-card__body p { font-size: .845rem; color: rgba(255,255,255,.76); margin-top: 5px; }
.cat-card__count {
  position: absolute; top: 16px; inset-inline-end: 16px; z-index: 2;
  background: rgba(255,255,255,.94); color: var(--ink); font-size: .72rem; font-weight: 600;
  padding: 5px 11px; border-radius: 100px; letter-spacing: .01em;
}
.cat-card__go {
  display: inline-flex; align-items: center; gap: 6px; margin-top: 13px;
  font-size: .82rem; font-weight: 600; color: #fff; opacity: .85;
}
.cat-card:hover .cat-card__go { opacity: 1; gap: 11px; }
.cat-card__go svg { width: 15px; height: 15px; transition: var(--t); }

/* ---------- 10. Product card -------------------------------------------- */
.prod-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
@media (max-width: 1080px) { .prod-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 820px) { .prod-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; } }
@media (max-width: 460px) { .prod-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; } }

.prod {
  position: relative; display: flex; flex-direction: column;
  background: #fff; border: 1px solid var(--line); border-radius: var(--r);
  overflow: hidden; transition: border-color var(--t), box-shadow var(--t), transform var(--t);
}
.prod:hover { border-color: var(--ink-25); box-shadow: var(--shadow); transform: translateY(-3px); }
.prod__media { position: relative; aspect-ratio: 1; background: var(--cream); overflow: hidden; }
.prod__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s cubic-bezier(.2,.7,.3,1); }
.prod:hover .prod__media img { transform: scale(1.05); }
.prod__tags { position: absolute; top: 10px; inset-inline-start: 10px; display: flex; flex-direction: column; gap: 5px; align-items: flex-start; }
.tag {
  font-size: .655rem; font-weight: 650; letter-spacing: .07em; text-transform: uppercase;
  padding: 4px 9px; border-radius: var(--r-xs); background: var(--ink); color: #fff;
}
.tag--new { background: var(--accent); }
.tag--eco { background: var(--success); }
.tag--oem { background: #fff; color: var(--ink); border: 1px solid var(--line); }
.prod__fav {
  position: absolute; top: 9px; inset-inline-end: 9px; width: 32px; height: 32px;
  border-radius: 50%; background: rgba(255,255,255,.93); display: grid; place-items: center;
  color: var(--ink-45); transition: var(--t); border: 1px solid var(--line-soft);
}
.prod__fav svg { width: 15px; height: 15px; }
.prod__fav:hover { color: var(--accent); }
.prod__fav.is-on { background: var(--accent); color: #fff; border-color: var(--accent); }
.prod__fav.is-on svg { fill: currentColor; }

.prod__body { padding: 15px 16px 16px; display: flex; flex-direction: column; flex: 1; gap: 9px; }
.prod__sku { font-size: .69rem; letter-spacing: .09em; color: var(--ink-45); font-weight: 600; text-transform: uppercase; }
.prod__name { font-size: .95rem; font-weight: 600; color: var(--ink); line-height: 1.35; letter-spacing: -.012em; }
.prod__spec { display: flex; flex-direction: column; gap: 4px; font-size: .78rem; color: var(--ink-45); }
.prod__spec div { display: flex; gap: 6px; }
.prod__spec dt { flex: none; min-width: 62px; color: var(--ink-25); }
.prod__spec dd { color: var(--ink-60); margin: 0; }
.prod__foot { margin-top: auto; padding-top: 12px; display: flex; align-items: center; gap: 8px; border-top: 1px solid var(--line-soft); }
.prod__moq { font-size: .74rem; color: var(--ink-45); }
.prod__moq b { color: var(--ink); font-weight: 650; }
.prod__btn {
  margin-inline-start: auto; display: inline-flex; align-items: center; gap: 6px;
  background: var(--ink); color: #fff; font-size: .78rem; font-weight: 600;
  padding: 8px 14px; border-radius: var(--r-sm); transition: background var(--t);
}
.prod__btn:hover { background: var(--accent-dark); }
.prod__btn.is-added { background: var(--success); }
.prod__btn svg { width: 14px; height: 14px; }
@media (max-width: 460px) {
  .prod__spec { display: none; }
  .prod__foot { flex-direction: column; align-items: stretch; }
  .prod__btn { margin: 0; justify-content: center; }
}

/* ---------- 11. Filter bar / catalogue ---------------------------------- */
.catalog { display: grid; grid-template-columns: 262px 1fr; gap: 40px; align-items: start; }
@media (max-width: 980px) { .catalog { grid-template-columns: 1fr; gap: 22px; } }

.filters { position: sticky; top: calc(var(--header-h) + 20px); }
.filters__group { border-bottom: 1px solid var(--line); padding-block: 20px; }
.filters__group:first-child { padding-top: 0; }
.filters__title {
  display: flex; align-items: center; justify-content: space-between; width: 100%;
  font-size: .8rem; font-weight: 650; letter-spacing: .09em; text-transform: uppercase; color: var(--ink);
  margin-bottom: 14px;
}
.filters__title svg { width: 14px; height: 14px; color: var(--ink-45); transition: transform var(--t); }
.filters__group.is-closed .filters__title svg { transform: rotate(-90deg); }
.filters__group.is-closed .filters__body { display: none; }
.filters__body { display: flex; flex-direction: column; gap: 3px; }

.check { display: flex; align-items: center; gap: 10px; padding: 6px 0; font-size: .875rem; color: var(--ink-60); cursor: pointer; }
.check:hover { color: var(--ink); }
.check input { appearance: none; width: 17px; height: 17px; flex: none; border: 1.5px solid var(--ink-25); border-radius: 4px; transition: var(--t); position: relative; cursor: pointer; }
.check input:checked { background: var(--ink); border-color: var(--ink); }
.check input:checked::after {
  content: ""; position: absolute; left: 5px; top: 1.5px; width: 4px; height: 9px;
  border: solid #fff; border-width: 0 1.8px 1.8px 0; transform: rotate(43deg);
}
.check__count { margin-inline-start: auto; font-size: .74rem; color: var(--ink-25); }

.toolbar {
  display: flex; align-items: center; gap: 12px; flex-wrap: wrap;
  padding-bottom: 20px; margin-bottom: 26px; border-bottom: 1px solid var(--line);
}
.search {
  position: relative; flex: 1 1 260px; min-width: 200px;
}
.search input {
  width: 100%; padding: 11px 14px 11px 40px; border: 1px solid var(--line);
  border-radius: var(--r-sm); background: #fff; font-size: .9rem; transition: border-color var(--t);
}
.search input:focus { outline: none; border-color: var(--ink); }
.search svg { position: absolute; inset-inline-start: 14px; top: 50%; transform: translateY(-50%); width: 16px; height: 16px; color: var(--ink-45); pointer-events: none; }
[dir="rtl"] .search input { padding: 11px 40px 11px 14px; }

.select-wrap { position: relative; }
.select-wrap select {
  appearance: none; padding: 11px 38px 11px 14px; border: 1px solid var(--line);
  border-radius: var(--r-sm); background: #fff; font-size: .875rem; cursor: pointer; color: var(--ink-80);
}
.select-wrap::after {
  content: ""; position: absolute; inset-inline-end: 14px; top: 47%; width: 7px; height: 7px;
  border: solid var(--ink-45); border-width: 0 1.5px 1.5px 0; transform: translateY(-50%) rotate(45deg); pointer-events: none;
}
.result-count { font-size: .875rem; color: var(--ink-45); margin-inline-start: auto; }
.result-count b { color: var(--ink); font-weight: 650; }

.chips { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 22px; }
.chip {
  display: inline-flex; align-items: center; gap: 7px; padding: 6px 8px 6px 13px;
  background: var(--cream-2); border-radius: 100px; font-size: .8rem; color: var(--ink-80);
}
.chip button { width: 17px; height: 17px; border-radius: 50%; background: rgba(24,23,19,.1); color: var(--ink-60); font-size: .72rem; line-height: 1; display: grid; place-items: center; }
.chip button:hover { background: var(--ink); color: #fff; }
.chip--clear { background: none; border: 1px dashed var(--ink-25); padding: 6px 13px; color: var(--ink-45); }
.chip--clear:hover { border-color: var(--ink); color: var(--ink); }

.filters-toggle { display: none; }
@media (max-width: 980px) {
  .filters-toggle { display: inline-flex; }
  .filters {
    position: fixed; inset: 0; z-index: 210; background: #fff; padding: 20px var(--gut) 100px;
    overflow-y: auto; transform: translateX(-100%); transition: transform .3s cubic-bezier(.4,0,.2,1);
  }
  .filters.is-open { transform: translateX(0); }
  .filters__head { display: flex; align-items: center; justify-content: space-between; padding-bottom: 18px; margin-bottom: 8px; border-bottom: 1px solid var(--line); }
  .filters__apply { position: fixed; inset-inline: var(--gut); bottom: 18px; }
}
@media (min-width: 981px) { .filters__head { display: none; } }

.empty { text-align: center; padding: 80px 20px; color: var(--ink-45); }
.empty svg { width: 46px; height: 46px; margin: 0 auto 18px; color: var(--ink-25); }

/* ---------- 12. Inquiry basket ------------------------------------------ */
.basket-fab {
  position: fixed; inset-inline-end: 22px; bottom: 96px; z-index: 120;
  display: inline-flex; align-items: center; gap: 10px; padding: 13px 20px;
  background: var(--ink); color: #fff; border-radius: 100px; box-shadow: var(--shadow-lg);
  font-size: .875rem; font-weight: 600; transform: translateY(120px); transition: transform .3s cubic-bezier(.4,0,.2,1);
}
.basket-fab.is-visible { transform: translateY(0); }
.basket-fab svg { width: 17px; height: 17px; }
.basket-fab b { background: var(--accent); border-radius: 100px; padding: 1px 8px; font-size: .78rem; }

.drawer-mask { position: fixed; inset: 0; z-index: 240; background: rgba(20,19,15,.5); opacity: 0; visibility: hidden; transition: var(--t); }
.drawer-mask.is-open { opacity: 1; visibility: visible; }
.drawer {
  position: fixed; inset-block: 0; inset-inline-end: 0; z-index: 250; width: min(440px, 100%);
  background: #fff; display: flex; flex-direction: column;
  transform: translateX(105%); transition: transform .32s cubic-bezier(.4,0,.2,1);
}
[dir="rtl"] .drawer { transform: translateX(-105%); }
.drawer.is-open { transform: translateX(0); }
.drawer__head { display: flex; align-items: center; justify-content: space-between; padding: 20px 22px; border-bottom: 1px solid var(--line); }
.drawer__head h3 { font-size: 1.05rem; }
.drawer__close { width: 36px; height: 36px; border-radius: var(--r-sm); border: 1px solid var(--line); color: var(--ink-60); font-size: 1.1rem; }
.drawer__close:hover { background: var(--cream); color: var(--ink); }
.drawer__body { flex: 1; overflow-y: auto; padding: 18px 22px; }
.drawer__foot { padding: 18px 22px; border-top: 1px solid var(--line); background: var(--cream); display: grid; gap: 10px; }
.basket-item { display: flex; gap: 12px; padding: 12px 0; border-bottom: 1px solid var(--line-soft); }
.basket-item img { width: 62px; height: 62px; border-radius: var(--r-sm); object-fit: cover; flex: none; background: var(--cream); }
.basket-item__info { flex: 1; min-width: 0; }
.basket-item__info b { display: block; font-size: .875rem; color: var(--ink); font-weight: 600; }
.basket-item__info span { font-size: .74rem; color: var(--ink-45); }
.qty { display: inline-flex; align-items: center; border: 1px solid var(--line); border-radius: var(--r-sm); margin-top: 7px; }
.qty button { width: 26px; height: 26px; color: var(--ink-60); font-size: .95rem; }
.qty button:hover { color: var(--ink); background: var(--cream); }
.qty input { width: 52px; height: 26px; text-align: center; border: 0; border-inline: 1px solid var(--line); font-size: .78rem; }
.basket-item__del { color: var(--ink-25); align-self: flex-start; font-size: 1.05rem; padding: 2px 4px; }
.basket-item__del:hover { color: var(--danger); }

/* ---------- 13. Feature / capability blocks ----------------------------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.split--reverse .split__media { order: -1; }
@media (max-width: 900px) { .split { grid-template-columns: 1fr; gap: 34px; } .split--reverse .split__media { order: 0; } }
.split__media { position: relative; border-radius: var(--r-lg); overflow: hidden; background: var(--cream-2); }
.split__media img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.split__badge {
  position: absolute; inset-inline-start: 20px; bottom: 20px; background: rgba(255,255,255,.96);
  border-radius: var(--r); padding: 14px 18px; box-shadow: var(--shadow);
}
.split__badge b { display: block; font-size: 1.35rem; font-weight: 650; color: var(--ink); letter-spacing: -.03em; }
.split__badge span { font-size: .755rem; color: var(--ink-45); }
.split h2 { margin: 16px 0 18px; }

.tick-list { display: grid; gap: 13px; margin-top: 26px; }
.tick-list li { display: flex; gap: 12px; align-items: flex-start; font-size: .93rem; color: var(--ink-60); }
.tick-list svg { width: 19px; height: 19px; flex: none; color: var(--accent); margin-top: 2px; }
.tick-list b { color: var(--ink); font-weight: 600; }

.icon-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
@media (max-width: 980px) { .icon-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .icon-grid { grid-template-columns: 1fr; } }
.icon-card { padding: 30px 26px; border: 1px solid var(--line); border-radius: var(--r); background: #fff; transition: var(--t); }
.icon-card:hover { border-color: var(--ink-25); box-shadow: var(--shadow); }
.icon-card__ic { width: 44px; height: 44px; border-radius: var(--r-sm); background: var(--accent-soft); color: var(--accent-dark); display: grid; place-items: center; margin-bottom: 18px; }
.icon-card__ic svg { width: 21px; height: 21px; }
.icon-card h3 { font-size: 1.05rem; margin-bottom: 9px; }
.icon-card p { font-size: .885rem; color: var(--ink-45); }

/* ---------- 14. Stats band ---------------------------------------------- */
.stats-band { background: var(--dark); color: #fff; }
.stats-band .grid { grid-template-columns: repeat(4, 1fr); gap: 30px; }
@media (max-width: 780px) { .stats-band .grid { grid-template-columns: repeat(2, 1fr); gap: 34px 20px; } }
.stat b { display: block; font-size: clamp(1.9rem, 1.4rem + 1.8vw, 2.8rem); font-weight: 650; letter-spacing: -.035em; color: #fff; }
.stat span { font-size: .85rem; color: rgba(255,255,255,.58); }
.stat i { display: block; width: 26px; height: 2px; background: var(--accent); margin-bottom: 16px; }

/* ---------- 15. Timeline ------------------------------------------------ */
.timeline { position: relative; padding-inline-start: 34px; }
.timeline::before { content: ""; position: absolute; inset-inline-start: 7px; top: 8px; bottom: 8px; width: 1px; background: var(--line); }
.timeline__item { position: relative; padding-bottom: 38px; }
.timeline__item:last-child { padding-bottom: 0; }
.timeline__item::before {
  content: ""; position: absolute; inset-inline-start: -34px; top: 6px; width: 15px; height: 15px;
  border-radius: 50%; background: #fff; border: 2px solid var(--accent);
}
.timeline__year { font-size: .78rem; font-weight: 700; letter-spacing: .1em; color: var(--accent-dark); }
.timeline__item h3 { font-size: 1.05rem; margin: 5px 0 7px; }
.timeline__item p { font-size: .9rem; color: var(--ink-45); }

/* process steps */
.steps { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; counter-reset: s; }
@media (max-width: 1000px) { .steps { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 620px) { .steps { grid-template-columns: 1fr; } }
.step { position: relative; padding: 26px 20px; background: #fff; border: 1px solid var(--line); border-radius: var(--r); }
.step::before {
  counter-increment: s; content: "0" counter(s);
  font-size: 1.7rem; font-weight: 700; color: var(--cream-2); letter-spacing: -.04em;
  position: absolute; top: 14px; inset-inline-end: 16px; line-height: 1;
}
.step h4 { font-size: .98rem; margin-bottom: 8px; position: relative; }
.step p { font-size: .83rem; color: var(--ink-45); }
.step__dot { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); margin-bottom: 15px; }

/* ---------- 16. Certificates -------------------------------------------- */
.cert-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 14px; }
@media (max-width: 1000px) { .cert-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 520px) { .cert-grid { grid-template-columns: repeat(2, 1fr); } }
.cert {
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 9px;
  padding: 26px 12px; border: 1px solid var(--line); border-radius: var(--r); background: #fff;
  text-align: center; transition: var(--t);
}
.cert:hover { border-color: var(--accent); background: var(--accent-soft); }
.cert__mark {
  width: 46px; height: 46px; border-radius: 50%; border: 1.5px solid var(--ink); color: var(--ink);
  display: grid; place-items: center; font-size: .66rem; font-weight: 750; letter-spacing: -.02em;
}
.cert b { font-size: .82rem; color: var(--ink); font-weight: 600; }
.cert span { font-size: .7rem; color: var(--ink-45); }

/* ---------- 17. Testimonials -------------------------------------------- */
.quote-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
@media (max-width: 900px) { .quote-grid { grid-template-columns: 1fr; } }
.quote { padding: 30px 28px; background: #fff; border: 1px solid var(--line); border-radius: var(--r); display: flex; flex-direction: column; gap: 18px; }
.quote__stars { display: flex; gap: 2px; color: var(--accent); }
.quote__stars svg { width: 15px; height: 15px; fill: currentColor; }
.quote p { font-size: .95rem; color: var(--ink-60); flex: 1; }
.quote__by { display: flex; align-items: center; gap: 12px; padding-top: 16px; border-top: 1px solid var(--line-soft); }
.quote__av { width: 38px; height: 38px; border-radius: 50%; background: var(--cream-2); display: grid; place-items: center; font-weight: 650; font-size: .82rem; color: var(--ink-60); flex: none; }
.quote__by b { display: block; font-size: .875rem; color: var(--ink); font-weight: 600; }
.quote__by span { font-size: .76rem; color: var(--ink-45); }

/* ---------- 18. Forms ---------------------------------------------------- */
.form-card { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: clamp(24px, 3.4vw, 42px); }
.field { margin-bottom: 18px; }
.field label { display: block; font-size: .82rem; font-weight: 600; color: var(--ink); margin-bottom: 7px; }
.field label .req { color: var(--danger); margin-inline-start: 2px; }
.field .hint { font-size: .755rem; color: var(--ink-45); margin-top: 6px; }
.input, .textarea, .field select {
  width: 100%; padding: 12px 14px; border: 1px solid var(--line); border-radius: var(--r-sm);
  background: #fff; font-size: .925rem; transition: border-color var(--t), box-shadow var(--t);
}
.field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2386827a' stroke-width='2.5'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-inline-end: 38px; }
[dir="rtl"] .field select { background-position: left 14px center; }
.input:focus, .textarea:focus, .field select:focus { outline: none; border-color: var(--ink); box-shadow: 0 0 0 3px rgba(24,23,19,.06); }
.input::placeholder, .textarea::placeholder { color: var(--ink-25); }
.textarea { min-height: 130px; resize: vertical; }
.field.has-error .input, .field.has-error .textarea, .field.has-error select { border-color: var(--danger); }
.field__err { display: none; font-size: .755rem; color: var(--danger); margin-top: 6px; }
.field.has-error .field__err { display: block; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
@media (max-width: 620px) { .form-row { grid-template-columns: 1fr; gap: 0; } }

.dropzone {
  border: 1.5px dashed var(--ink-25); border-radius: var(--r); padding: 26px 20px; text-align: center;
  background: var(--cream); transition: var(--t); cursor: pointer;
}
.dropzone:hover, .dropzone.is-over { border-color: var(--accent); background: var(--accent-soft); }
.dropzone svg { width: 26px; height: 26px; color: var(--ink-45); margin: 0 auto 10px; }
.dropzone b { display: block; font-size: .875rem; color: var(--ink); }
.dropzone span { font-size: .755rem; color: var(--ink-45); }
.file-list { margin-top: 12px; display: grid; gap: 7px; }
.file-item { display: flex; align-items: center; gap: 9px; font-size: .8rem; padding: 8px 12px; background: var(--cream); border-radius: var(--r-sm); }
.file-item svg { width: 15px; height: 15px; color: var(--ink-45); flex: none; }
.file-item span { flex: 1; min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.file-item button { color: var(--ink-25); }
.file-item button:hover { color: var(--danger); }

.consent { display: flex; gap: 11px; align-items: flex-start; font-size: .8rem; color: var(--ink-45); }
.consent input { margin-top: 3px; flex: none; width: 16px; height: 16px; accent-color: var(--ink); }
.consent a { color: var(--ink); text-decoration: underline; text-underline-offset: 2px; }

.form-note {
  display: flex; gap: 12px; align-items: flex-start; padding: 14px 16px;
  background: var(--accent-soft); border-radius: var(--r-sm); font-size: .82rem; color: var(--ink-60);
}
.form-note svg { width: 17px; height: 17px; color: var(--accent-dark); flex: none; margin-top: 2px; }

.form-success {
  display: none; text-align: center; padding: 40px 20px;
}
.form-success.is-on { display: block; }
.form-success__ic { width: 60px; height: 60px; border-radius: 50%; background: var(--success); color: #fff; display: grid; place-items: center; margin: 0 auto 20px; }
.form-success__ic svg { width: 28px; height: 28px; }

/* ---------- 19. Contact cards ------------------------------------------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }
.info-card { display: flex; gap: 15px; padding: 22px; border: 1px solid var(--line); border-radius: var(--r); background: #fff; }
.info-card__ic { width: 40px; height: 40px; border-radius: var(--r-sm); background: var(--cream-2); color: var(--ink); display: grid; place-items: center; flex: none; }
.info-card__ic svg { width: 18px; height: 18px; }
.info-card h4 { font-size: .9rem; margin-bottom: 4px; }
.info-card p, .info-card a { font-size: .875rem; color: var(--ink-60); word-break: break-word; }
.info-card a:hover { color: var(--accent-dark); }

.map-wrap { border-radius: var(--r); overflow: hidden; border: 1px solid var(--line); background: var(--cream-2); }
.map-wrap iframe { width: 100%; height: 100%; min-height: 380px; border: 0; display: block; }
.map-placeholder { min-height: 380px; display: grid; place-items: center; text-align: center; padding: 30px; }
.map-placeholder svg { width: 38px; height: 38px; color: var(--ink-25); margin: 0 auto 14px; }

/* response promise */
.promise {
  display: flex; align-items: center; gap: 18px; padding: 22px 26px;
  background: var(--dark); color: #fff; border-radius: var(--r);
}
.promise__ic { width: 48px; height: 48px; border-radius: 50%; background: rgba(169,123,79,.24); color: #e0be97; display: grid; place-items: center; flex: none; }
.promise__ic svg { width: 22px; height: 22px; }
.promise b { display: block; color: #fff; font-size: 1rem; font-weight: 600; }
.promise span { font-size: .84rem; color: rgba(255,255,255,.62); }

/* ---------- 20. CTA band ------------------------------------------------ */
.cta-band { background: var(--accent-soft); border-block: 1px solid #ecdfcd; }
.cta-band__in { display: flex; align-items: center; justify-content: space-between; gap: 34px; flex-wrap: wrap; padding-block: 54px; }
.cta-band h2 { max-width: 20ch; }
.cta-band p { color: var(--ink-60); margin-top: 12px; max-width: 46ch; }
.cta-band__actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* ---------- 21. Footer -------------------------------------------------- */
.footer { background: var(--dark); color: rgba(255,255,255,.62); font-size: .875rem; }
.footer__main { display: grid; grid-template-columns: 1.7fr 1fr 1fr 1fr 1.3fr; gap: 40px; padding-block: 64px 48px; }
@media (max-width: 1040px) { .footer__main { grid-template-columns: 1fr 1fr 1fr; gap: 36px 28px; } }
@media (max-width: 640px) { .footer__main { grid-template-columns: 1fr 1fr; padding-block: 46px 34px; } .footer__brand { grid-column: 1 / -1; } }
.footer .logo__name { color: #fff; }
.footer .logo__sub { color: rgba(255,255,255,.42); }
.footer .logo__mark { background: #fff; color: var(--ink); }
.footer__brand p { margin: 20px 0; max-width: 34ch; line-height: 1.7; }
.footer__social { display: flex; gap: 9px; }
.footer__social a {
  width: 36px; height: 36px; border-radius: var(--r-sm); border: 1px solid rgba(255,255,255,.16);
  display: grid; place-items: center; color: rgba(255,255,255,.72); transition: var(--t);
}
.footer__social a:hover { background: #fff; color: var(--ink); border-color: #fff; }
.footer__social svg { width: 16px; height: 16px; }
.footer h5 { color: #fff; font-size: .8rem; letter-spacing: .11em; text-transform: uppercase; margin-bottom: 18px; font-weight: 600; }
.footer__links { display: grid; gap: 11px; }
.footer__links a:hover { color: #fff; }
.footer__contact li { display: flex; gap: 10px; margin-bottom: 13px; line-height: 1.55; }
.footer__contact svg { width: 15px; height: 15px; flex: none; margin-top: 4px; opacity: .55; }
.footer__contact a:hover { color: #fff; }
.footer__bottom {
  display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  padding-block: 22px; border-top: 1px solid rgba(255,255,255,.1); font-size: .8rem;
}
.footer__legal { display: flex; gap: 20px; flex-wrap: wrap; }
.footer__legal a:hover { color: #fff; }

/* ---------- 22. Breadcrumb / page hero ---------------------------------- */
.page-hero { background: var(--cream); border-bottom: 1px solid var(--line); padding-block: 48px 54px; }
.page-hero h1 { font-size: clamp(1.8rem, 1.3rem + 2.2vw, 3rem); margin: 14px 0 16px; }
.page-hero .lede { max-width: 66ch; }
.crumbs { display: flex; align-items: center; gap: 8px; font-size: .8rem; color: var(--ink-45); flex-wrap: wrap; }
.crumbs a:hover { color: var(--ink); }
.crumbs svg { width: 12px; height: 12px; opacity: .5; }
[dir="rtl"] .crumbs svg { transform: scaleX(-1); }

/* ---------- 23. Product detail ------------------------------------------ */
.pd { display: grid; grid-template-columns: 1.05fr 1fr; gap: 56px; align-items: start; }
@media (max-width: 900px) { .pd { grid-template-columns: 1fr; gap: 30px; } }
.pd__main { border: 1px solid var(--line); border-radius: var(--r); overflow: hidden; background: var(--cream); }
.pd__main img { width: 100%; aspect-ratio: 1; object-fit: cover; }
.pd__thumbs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin-top: 10px; }
.pd__thumbs button { border: 1px solid var(--line); border-radius: var(--r-sm); overflow: hidden; aspect-ratio: 1; background: var(--cream); }
.pd__thumbs button.is-active { border-color: var(--ink); }
.pd__thumbs img { width: 100%; height: 100%; object-fit: cover; }
.pd h1 { font-size: clamp(1.5rem, 1.2rem + 1.3vw, 2.1rem); margin: 12px 0 14px; }
.spec-table { border: 1px solid var(--line); border-radius: var(--r); overflow: hidden; margin: 24px 0; }
.spec-table tr { border-bottom: 1px solid var(--line-soft); }
.spec-table tr:last-child { border-bottom: 0; }
.spec-table th, .spec-table td { padding: 12px 16px; text-align: start; font-size: .875rem; vertical-align: top; }
.spec-table th { width: 38%; background: var(--cream); font-weight: 550; color: var(--ink-60); }
.spec-table td { color: var(--ink); }
.pd__actions { display: flex; gap: 11px; flex-wrap: wrap; margin-top: 8px; }
.pill-row { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 4px; }
.pill { padding: 5px 12px; border: 1px solid var(--line); border-radius: 100px; font-size: .78rem; color: var(--ink-60); background: #fff; }

/* ---------- 24. Cookie banner ------------------------------------------- */
.cookie {
  position: fixed; inset-inline: 18px; bottom: 18px; z-index: 300; max-width: 620px;
  background: #fff; border: 1px solid var(--line); border-radius: var(--r);
  box-shadow: var(--shadow-lg); padding: 22px 24px;
  transform: translateY(140%); transition: transform .4s cubic-bezier(.4,0,.2,1);
}
.cookie.is-open { transform: translateY(0); }
.cookie h4 { font-size: .98rem; margin-bottom: 8px; display: flex; align-items: center; gap: 9px; }
.cookie h4 svg { width: 18px; height: 18px; color: var(--accent); }
.cookie p { font-size: .82rem; color: var(--ink-45); }
.cookie p a { color: var(--ink); text-decoration: underline; text-underline-offset: 2px; }
.cookie__actions { display: flex; gap: 9px; flex-wrap: wrap; margin-top: 18px; }
.cookie__prefs { display: none; margin-top: 18px; padding-top: 18px; border-top: 1px solid var(--line); gap: 12px; }
.cookie__prefs.is-open { display: grid; }
.switch-row { display: flex; align-items: flex-start; gap: 12px; }
.switch-row__txt { flex: 1; }
.switch-row b { font-size: .85rem; color: var(--ink); display: block; }
.switch-row span { font-size: .755rem; color: var(--ink-45); }
.switch { position: relative; width: 38px; height: 21px; flex: none; }
.switch input { opacity: 0; width: 0; height: 0; }
.switch i { position: absolute; inset: 0; background: var(--ink-25); border-radius: 100px; transition: var(--t); cursor: pointer; }
.switch i::after { content: ""; position: absolute; width: 15px; height: 15px; left: 3px; top: 3px; background: #fff; border-radius: 50%; transition: var(--t); }
.switch input:checked + i { background: var(--success); }
.switch input:checked + i::after { transform: translateX(17px); }
.switch input:disabled + i { opacity: .45; cursor: not-allowed; }
@media (max-width: 520px) { .cookie { inset-inline: 10px; bottom: 10px; padding: 18px; } }

/* ---------- 25. Live chat widget ---------------------------------------- */
.chat-fab {
  position: fixed; inset-inline-end: 22px; bottom: 22px; z-index: 130;
  width: 56px; height: 56px; border-radius: 50%; background: var(--ink); color: #fff;
  display: grid; place-items: center; box-shadow: var(--shadow-lg); transition: var(--t);
}
.chat-fab:hover { background: var(--accent-dark); transform: scale(1.05); }
.chat-fab svg { width: 23px; height: 23px; }
.chat-fab__dot { position: absolute; top: 2px; inset-inline-end: 2px; width: 12px; height: 12px; border-radius: 50%; background: #35d07f; border: 2px solid #fff; animation: livePulse 2s ease-out infinite; }

.chat-panel {
  position: fixed; inset-inline-end: 22px; bottom: 90px; z-index: 131; width: min(360px, calc(100vw - 36px));
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg); overflow: hidden; display: flex; flex-direction: column;
  opacity: 0; visibility: hidden; transform: translateY(14px) scale(.97); transform-origin: bottom right;
  transition: all .24s cubic-bezier(.4,0,.2,1); max-height: min(560px, calc(100vh - 130px));
}
.chat-panel.is-open { opacity: 1; visibility: visible; transform: translateY(0) scale(1); }
.chat-panel__head {
  background: var(--dark); color: #fff; padding: 14px 16px; display: flex; align-items: center; justify-content: space-between; gap: 12px;
}
.chat-panel__op { display: flex; align-items: center; gap: 11px; }
.chat-panel__op img { width: 38px; height: 38px; border-radius: 50%; object-fit: cover; background: var(--cream); flex: none; }
.chat-panel__op b { display: block; font-size: .96rem; }
.chat-panel__op span { display: flex; align-items: center; gap: 6px; font-size: .74rem; color: rgba(255,255,255,.6); margin-top: 2px; }
.chat-panel__op span::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: #35d07f; }
.chat-panel__close { width: 32px; height: 32px; border-radius: 50%; border: 0; background: rgba(255,255,255,.12); color: #fff; display: grid; place-items: center; cursor: pointer; transition: var(--t); }
.chat-panel__close:hover { background: rgba(255,255,255,.22); }
.chat-panel__close svg { width: 16px; height: 16px; }

.chat-panel__messages {
  flex: 1 1 auto; overflow-y: auto; padding: 16px 16px 8px; display: flex; flex-direction: column; gap: 10px; min-height: 180px; background: #f9f7f4;
}
.chat-msg { display: flex; align-items: flex-end; gap: 9px; max-width: 92%; }
.chat-msg--user { align-self: flex-end; flex-direction: row-reverse; }
.chat-msg__av { width: 28px; height: 28px; border-radius: 50%; object-fit: cover; flex: none; }
.chat-msg__wrap { display: flex; flex-direction: column; gap: 3px; }
.chat-msg__name { font-size: .65rem; color: var(--ink-45); margin-inline-start: 4px; }
.chat-msg__bubble {
  padding: 10px 13px; border-radius: 16px; font-size: .86rem; line-height: 1.45; color: var(--ink); white-space: pre-line;
  box-shadow: 0 1px 2px rgba(0,0,0,.04);
}
.chat-msg--bot .chat-msg__bubble { background: #fff; border-bottom-left-radius: 6px; border: 1px solid var(--line-soft); }
.chat-msg--user .chat-msg__bubble { background: var(--ink); color: #fff; border-bottom-right-radius: 6px; }
.chat-msg--typing .chat-msg__bubble { padding: 14px 12px 10px; }
.chat-typing { display: inline-flex; gap: 4px; align-items: center; height: 10px; }
.chat-typing i { width: 6px; height: 6px; border-radius: 50%; background: var(--ink-35); animation: typingBounce 1.2s infinite ease-in-out both; }
.chat-typing i:nth-child(1) { animation-delay: 0s; }
.chat-typing i:nth-child(2) { animation-delay: .16s; }
.chat-typing i:nth-child(3) { animation-delay: .32s; }
@keyframes typingBounce { 0%,80%,100% { transform: scale(.7); opacity: .4; } 40% { transform: scale(1.1); opacity: 1; } }

.chat-panel__quick {
  padding: 8px 14px 6px; display: flex; flex-wrap: wrap; gap: 6px; border-top: 1px solid var(--line-soft); background: #fff;
}
.chat-chip {
  border: 1px solid var(--line); background: #fff; color: var(--ink); border-radius: 999px;
  padding: 6px 12px; font-size: .78rem; cursor: pointer; transition: var(--t); white-space: nowrap;
}
.chat-chip:hover { border-color: var(--accent); background: var(--cream-2); color: var(--accent-dark); }
.chat-link { display: inline-block; border: 1px solid var(--line); border-radius: 999px; padding: 6px 12px; font-size: .78rem; text-decoration: none; transition: var(--t); }
.chat-link--wa { background: #25d366; color: #fff; border-color: #25d366; font-weight: 500; }
.chat-link--wa:hover { background: #1ebe57; color: #fff; }
.chat-panel__foot {
  padding: 10px 12px; background: #fff; border-top: 1px solid var(--line-soft); display: flex; gap: 8px; align-items: center;
}
.chat-panel__foot input {
  flex: 1; border: 1px solid var(--line); border-radius: 999px; padding: 9px 14px; font-size: .85rem;
  background: #fff; color: var(--ink);
}
.chat-panel__foot input:focus { outline: 0; border-color: var(--ink); }
.chat-panel__foot button {
  width: 38px; height: 38px; border-radius: 50%; border: 0; background: var(--ink); color: #fff; display: grid; place-items: center; cursor: pointer; transition: var(--t); flex: none;
}
.chat-panel__foot button:hover { background: var(--accent-dark); }
.chat-panel__foot button svg { width: 17px; height: 17px; }

@media (max-width: 520px) {
  .chat-fab { inset-inline-end: 14px; bottom: 14px; }
  .chat-panel { inset-inline-end: 14px; bottom: 80px; max-height: calc(100vh - 120px); }
  .basket-fab { inset-inline-end: 14px; bottom: 82px; }
  .live-badge { left: 10px; bottom: 96px; }
}
@media (max-width: 380px) { .chat-panel { width: calc(100vw - 28px); } .live-badge .live-label { display: none; } }

/* ---------- 26. Legal / prose ------------------------------------------- */
.prose { max-width: 78ch; }
.prose h2 { font-size: 1.45rem; margin: 44px 0 16px; }
.prose h3 { font-size: 1.1rem; margin: 30px 0 12px; }
.prose p { margin-bottom: 16px; color: var(--ink-60); }
.prose ul { margin: 0 0 18px; padding-inline-start: 22px; list-style: disc; color: var(--ink-60); }
.prose li { margin-bottom: 9px; }
.prose a { color: var(--accent-dark); text-decoration: underline; text-underline-offset: 2px; }
.prose table { margin-bottom: 22px; border: 1px solid var(--line); border-radius: var(--r); overflow: hidden; }
.prose th, .prose td { padding: 11px 15px; text-align: start; font-size: .875rem; border-bottom: 1px solid var(--line-soft); }
.prose th { background: var(--cream); font-weight: 600; color: var(--ink); }
.toc { background: var(--cream); border: 1px solid var(--line); border-radius: var(--r); padding: 22px 26px; margin-bottom: 34px; }
.toc h4 { font-size: .8rem; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-45); margin-bottom: 12px; }
.toc ol { list-style: decimal; padding-inline-start: 20px; display: grid; gap: 7px; font-size: .875rem; }
.toc a { color: var(--ink-60); }
.toc a:hover { color: var(--accent-dark); }

/* ---------- 27. FAQ ------------------------------------------------------ */
.faq { border-top: 1px solid var(--line); }
.faq__item { border-bottom: 1px solid var(--line); }
.faq__q {
  display: flex; align-items: center; justify-content: space-between; gap: 20px; width: 100%;
  padding: 22px 0; text-align: start; font-size: 1rem; font-weight: 600; color: var(--ink);
}
.faq__q svg { width: 18px; height: 18px; flex: none; color: var(--ink-45); transition: transform var(--t); }
.faq__item.is-open .faq__q svg { transform: rotate(45deg); }
.faq__a { display: none; padding-bottom: 24px; font-size: .925rem; color: var(--ink-60); max-width: 74ch; }
.faq__item.is-open .faq__a { display: block; }

/* ---------- 28. Misc ----------------------------------------------------- */
.divider { height: 1px; background: var(--line); border: 0; }
.badge-soft { display: inline-flex; align-items: center; gap: 6px; padding: 5px 11px; background: var(--cream-2); border-radius: 100px; font-size: .74rem; font-weight: 600; color: var(--ink-60); }
.pagination { display: flex; justify-content: center; gap: 7px; margin-top: 48px; }
.pagination button {
  min-width: 38px; height: 38px; padding: 0 12px; border: 1px solid var(--line);
  border-radius: var(--r-sm); font-size: .875rem; color: var(--ink-60); background: #fff;
}
.pagination button:hover:not(:disabled) { border-color: var(--ink); color: var(--ink); }
.pagination button.is-active { background: var(--ink); color: #fff; border-color: var(--ink); }
.pagination button:disabled { opacity: .38; cursor: not-allowed; }

.toast {
  position: fixed; inset-inline: 0; bottom: 26px; z-index: 400; margin-inline: auto; width: fit-content;
  max-width: calc(100vw - 40px);
  background: var(--ink); color: #fff; padding: 13px 22px; border-radius: 100px;
  font-size: .875rem; box-shadow: var(--shadow-lg);
  opacity: 0; transform: translateY(24px); transition: all .28s cubic-bezier(.4,0,.2,1); pointer-events: none;
}
.toast.is-on { opacity: 1; transform: translateY(0); }

/* ---------- 29. RTL ------------------------------------------------------ */
[dir="rtl"] { letter-spacing: 0; }
[dir="rtl"] h1, [dir="rtl"] h2, [dir="rtl"] h3 { letter-spacing: 0; }
[dir="rtl"] .eyebrow::before { order: 2; }
[dir="rtl"] .timeline { padding-inline-start: 34px; }
[dir="rtl"] .link-arrow svg, [dir="rtl"] .cat-card__go svg, [dir="rtl"] .btn svg.arrow { transform: scaleX(-1); }
[dir="rtl"] .chat-panel { transform-origin: bottom left; }

/* ---------- 30. Reveal animation ---------------------------------------- */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .7s ease, transform .7s cubic-bezier(.2,.7,.3,1); }
.reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  * { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}

/* ---------- 31. Print ---------------------------------------------------- */
@media print {
  .header, .topbar, .footer, .chat-fab, .chat-panel, .cookie, .basket-fab, .cta-band { display: none !important; }
  body { color: #000; }
  a[href^="http"]::after { content: " (" attr(href) ")"; font-size: .75em; }
}

/* ==========================================================================
   RELAXPRESS — Motion system (site-wide dynamic interface)
   All motion is neutralised automatically under prefers-reduced-motion by the
   global guard near the end of this file.
   ========================================================================== */

/* Reveal variants + stagger (base .reveal lives earlier in this sheet) */
.reveal { transition-delay: calc(var(--i, 0) * 70ms); }
.reveal--left  { transform: translateX(-30px); }
.reveal--right { transform: translateX(30px); }
.reveal--scale { transform: scale(.95); }
.reveal--blur  { filter: blur(10px); }
.reveal--blur.is-in { filter: none; }

/* Hero content load-in (plays on first paint, no JS needed) */
.hero__content > *:not(.hero__ribbon) {
  opacity: 0;
  animation: heroIn .8s cubic-bezier(.2,.7,.3,1) forwards;
}
.hero__content > *:nth-child(1) { animation-delay: .04s; }
.hero__content > *:nth-child(2) { animation-delay: .13s; }
.hero__content > *:nth-child(3) { animation-delay: .22s; }
.hero__content > *:nth-child(4) { animation-delay: .31s; }
.hero__content > *:nth-child(5) { animation-delay: .40s; }
.hero__content > *:nth-child(6) { animation-delay: .49s; }
@keyframes heroIn { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: none; } }

/* Animated aurora behind the hero */
.hero__aurora {
  position: absolute; inset: -25% -12% auto -12%; height: 85%; z-index: 1; pointer-events: none;
  background:
    radial-gradient(42% 60% at 18% 32%, rgba(169,123,79,.55), transparent 60%),
    radial-gradient(38% 55% at 84% 22%, rgba(70,180,170,.32), transparent 60%),
    radial-gradient(46% 66% at 62% 82%, rgba(184,120,200,.22), transparent 62%);
  filter: blur(36px); opacity: .55; mix-blend-mode: screen;
  animation: auroraDrift 16s ease-in-out infinite alternate;
}
@keyframes auroraDrift {
  0%   { transform: translate3d(-3%, -2%, 0) scale(1); }
  100% { transform: translate3d(4%, 3%, 0) scale(1.14); }
}

/* Header condensed / accented once the user scrolls */
.header.is-active { box-shadow: var(--shadow); }
.header.is-active .header__in { min-height: 62px; }
@media (max-width: 900px) { .header.is-active .header__in { min-height: 54px; } }

/* Scroll progress bar (injected by JS) */
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 3px; width: 100%; z-index: 120;
  transform: scaleX(0); transform-origin: 0 50%; background: linear-gradient(90deg, var(--accent), #46d17e);
  transition: transform .08s linear;
}

/* Button shine sweep + click ripple */
.btn { position: relative; overflow: hidden; }
.btn::after {
  content: ""; position: absolute; top: 0; left: -120%; width: 60%; height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,.35), transparent);
  transform: skewX(-18deg); pointer-events: none;
}
.btn:hover::after { animation: btnShine .9s ease; }
@keyframes btnShine { to { left: 140%; } }
.ripple {
  position: absolute; border-radius: 50%; transform: scale(0); pointer-events: none;
  background: rgba(255,255,255,.5); animation: rippleOut .6s ease-out forwards;
}
.btn--outline .ripple, .btn--ghost-light .ripple { background: rgba(24,23,19,.12); }
@keyframes rippleOut { to { transform: scale(2.6); opacity: 0; } }

/* Product card entrance — also replays on every filter re-render */
.prod-grid > .prod, .related-grid > .prod {
  animation: cardIn .5s cubic-bezier(.2,.7,.3,1) both;
}
.prod-grid > .prod:nth-child(2n) { animation-delay: .05s; }
.prod-grid > .prod:nth-child(3n) { animation-delay: .10s; }
.prod-grid > .prod:nth-child(4n) { animation-delay: .15s; }
@keyframes cardIn { from { opacity: 0; transform: translateY(18px) scale(.98); } to { opacity: 1; transform: none; } }

/* Feature / value cards lift on hover */
.icon-card:hover, .stat-card:hover, .value-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }

/* Count-up numbers */
.count { font-variant-numeric: tabular-nums; }

/* CTA band subtle moving sheen */
.cta-band { position: relative; overflow: hidden; }
.cta-band::before {
  content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background: radial-gradient(70% 130% at 82% 0%, rgba(255,255,255,.10), transparent 60%);
}
