/*
Theme Name: Dreame Store
Theme URI: https://dreame-store.example
Author: Dreame Store
Author URI: https://dreame-store.example
Description: Dark-navy & gold storefront theme for Dreame home-cleaning products, converted from the static Dreame store. Full landing page, 56-product catalogue via WooCommerce, and on-brand product pages. Storefront only  - no checkout or payment processing.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.6
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: dreame-store
WC requires at least: 7.0
WC tested up to: 9.2
*/

/* ============================================================
   Dreame — X60 Pro Ultra Complete Store
   Design system
   ============================================================ */

:root {
  /* Accent — gold / copper */
  --gold: #c9a96e;
  --gold-soft: #e3cb9b;
  --gold-deep: #a8863f;
  --gold-grad: linear-gradient(135deg, #e6d0a3 0%, #c9a96e 52%, #a8863f 100%);

  /* Dark */
  --navy: #0a0a1a;
  --navy-2: #12121f;
  --navy-3: #1d1d2c;

  /* Neutrals — warm */
  --ink: #15171e;
  --body: #3a3f4c;
  --muted: #767c8a;
  --muted-2: #9aa0ad;
  --paper: #fbf9f5;
  --paper-2: #f4efe6;
  --line: #ebe5d9;
  --line-2: #e0d8c8;
  --white: #ffffff;

  /* Status */
  --green: #1e9e5a;
  --tp-green: #00b67a;

  /* Radii */
  --r-sm: 10px;
  --r: 16px;
  --r-lg: 24px;
  --r-xl: 34px;

  /* Shadows — soft & warm */
  --sh-sm: 0 2px 12px rgba(28, 24, 14, 0.06);
  --sh: 0 16px 40px rgba(28, 24, 14, 0.10);
  --sh-lg: 0 34px 80px rgba(20, 18, 10, 0.18);
  --sh-gold: 0 14px 34px rgba(168, 134, 63, 0.34);

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);

  --font-primary: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --font-display: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --serif: var(--font-display);
  --sans: var(--font-primary);

  --maxw: 1280px;
  --header-h: 72px;
  --gutter: clamp(18px, 4vw, 40px);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  font-family: var(--font-primary);
  font-weight: 400;
  color: var(--body);
  background: var(--paper);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

::selection { background: var(--gold); color: #221a06; }

h1, h2, h3, h4, h5, h6 { font-family: var(--font-display); color: var(--ink); font-weight: 700; line-height: 1.12; letter-spacing: -0.02em; }
.serif { font-family: var(--font-display); font-weight: 800; letter-spacing: -0.02em; }

/* ---------- Wordmark ---------- */
.wordmark {
  font-family: var(--sans);
  font-weight: 800;
  font-size: 1.55rem;
  letter-spacing: -0.045em;
  color: var(--ink);
  line-height: 1;
  display: inline-flex;
  align-items: flex-end;
}
.wordmark::after {
  content: "";
  width: 6px; height: 6px;
  margin: 0 0 3px 3px;
  border-radius: 50%;
  background: var(--gold-grad);
}
.wordmark--light { color: #fff; }

/* ---------- Buttons ---------- */
.btn {
  --py: 14px; --px: 26px;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 48px;
  padding: var(--py) var(--px);
  border-radius: 100px;
  font-weight: 600; font-size: 0.96rem; letter-spacing: 0.005em;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease),
              background 0.3s var(--ease), color 0.3s var(--ease), border-color 0.3s;
  white-space: nowrap;
}
.btn i { font-size: 0.92em; }
.btn--sm { --py: 10px; --px: 18px; min-height: 40px; font-size: 0.86rem; }
.btn--lg { --py: 17px; --px: 34px; min-height: 56px; font-size: 1.04rem; }
.btn--block { display: flex; width: 100%; }

.btn--gold { background: var(--gold-grad); color: #241a05; box-shadow: var(--sh-gold); }
.btn--gold:hover { transform: translateY(-3px); box-shadow: 0 20px 40px rgba(168, 134, 63, 0.44); }
.btn--dark { background: var(--navy); color: #fff; }
.btn--dark:hover { transform: translateY(-3px); background: var(--navy-2); box-shadow: var(--sh); }
.btn--outline { border: 1.5px solid rgba(255, 255, 255, 0.55); color: #fff; backdrop-filter: blur(6px); }
.btn--outline:hover { background: rgba(255, 255, 255, 0.12); border-color: #fff; transform: translateY(-3px); }
.btn--ghost { border: 1.5px solid var(--line-2); color: var(--ink); }
.btn--ghost:hover { border-color: var(--gold); color: var(--gold-deep); }
.btn--ink { background: var(--ink); color: #fff; }
.btn--ink:hover { transform: translateY(-3px); box-shadow: var(--sh); }

/* ---------- Loader ---------- */
.loader {
  position: fixed; inset: 0; z-index: 9999;
  background: radial-gradient(130% 120% at 50% 34%, #16203a, var(--navy) 70%);
  display: grid; place-items: center;
  transition: opacity 0.55s var(--ease), visibility 0.55s var(--ease);
}
.loader.is-hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.loader__logo { display: flex; align-items: flex-end; gap: 7px; animation: logoBounce 1.05s var(--ease) infinite; }
.loader__logo .wordmark { font-size: 2.8rem; color: #fff; }
.loader__logo .wordmark::after { display: none; }
.loader__dot { width: 13px; height: 13px; border-radius: 50%; background: var(--gold-grad); margin-bottom: 7px; }
.loader__bar { position: absolute; bottom: 18%; width: 132px; height: 3px; border-radius: 3px; background: rgba(255,255,255,0.12); overflow: hidden; }
.loader__bar::after { content: ""; position: absolute; inset: 0; width: 40%; border-radius: 3px; background: var(--gold-grad); animation: loadSlide 1.05s var(--ease) infinite; }
@keyframes logoBounce { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-24px); } }
@keyframes loadSlide { 0% { left: -40%; } 100% { left: 100%; } }

/* ---------- Announcement bar ---------- */
.announce {
  background: var(--navy); color: #d7ddec;
  font-size: 0.78rem; letter-spacing: 0.02em;
  overflow: hidden; white-space: nowrap;
}
.announce__track { display: inline-flex; gap: 46px; padding: 9px 0; animation: marquee 30s linear infinite; }
.announce__track span { display: inline-flex; align-items: center; gap: 8px; }
.announce__track i { color: var(--gold); }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---------- Header ---------- */
.header {
  position: sticky; top: 0; z-index: 800;
  background: rgba(251, 249, 245, 0.82);
  backdrop-filter: saturate(180%) blur(18px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s, box-shadow 0.3s, background 0.3s;
}
.header.is-stuck { border-color: var(--line); box-shadow: var(--sh-sm); }
.header__inner {
  max-width: var(--maxw); margin: 0 auto;
  height: var(--header-h); padding: 0 var(--gutter);
  display: flex; align-items: center; justify-content: space-between; gap: 22px;
}
.nav { display: flex; gap: 32px; }
.nav__link { font-size: 0.92rem; font-weight: 500; color: var(--muted); position: relative; padding: 4px 0; transition: color 0.25s; }
.nav__link::after {
  content: ""; position: absolute; left: 0; bottom: -2px; width: 0; height: 2px;
  background: var(--gold-grad); border-radius: 2px; transition: width 0.3s var(--ease);
}
.nav__link:hover, .nav__link.is-active { color: var(--ink); }
.nav__link:hover::after, .nav__link.is-active::after { width: 100%; }

.header__actions { display: flex; align-items: center; gap: 12px; }
.icon-btn {
  width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center;
  color: var(--ink); font-size: 1.05rem; transition: background 0.2s, color 0.2s, transform 0.2s;
}
.icon-btn:hover { background: var(--paper-2); }
.cart-toggle { position: relative; background: var(--paper-2); }
.cart-toggle:hover { transform: translateY(-1px); background: var(--line); }
.cart-toggle__count {
  position: absolute; top: -5px; right: -5px; min-width: 20px; height: 20px; padding: 0 5px;
  background: var(--gold-grad); color: #241a05; font-size: 0.7rem; font-weight: 800;
  border-radius: 100px; display: grid; place-items: center;
  border: 2px solid var(--paper); transform: scale(0); transition: transform 0.3s var(--ease);
}
.cart-toggle__count.is-visible { transform: scale(1); }
.menu-toggle { display: none; }

/* Mobile menu */
.mobile-menu {
  position: fixed; inset: 0; z-index: 850; background: var(--navy); color: #fff;
  display: flex; flex-direction: column; padding: 26px var(--gutter);
  transform: translateX(100%); transition: transform 0.45s var(--ease); visibility: hidden;
}
.mobile-menu.is-open { transform: translateX(0); visibility: visible; }
.mobile-menu__top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 40px; }
.mobile-menu__top .icon-btn { color: #fff; }
.mobile-menu a { font-family: var(--serif); font-size: 2rem; color: #fff; padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,0.08); transition: color 0.2s, padding-left 0.2s; }
.mobile-menu a:hover { color: var(--gold-soft); padding-left: 8px; }
.mobile-menu__cta { margin-top: auto; }

/* ---------- Section shell ---------- */
.section { max-width: var(--maxw); margin: 0 auto; padding: clamp(70px, 10vw, 140px) var(--gutter); }
.section--tight { padding-top: clamp(48px, 6vw, 80px); padding-bottom: clamp(48px, 6vw, 80px); }
.section--flush { max-width: none; }
.band { background: var(--paper-2); }
.band-dark { background: var(--navy); color: #c7cee0; }
.band-dark h2, .band-dark h3 { color: #fff; }

.head { max-width: 760px; margin: 0 auto clamp(40px, 5vw, 68px); text-align: center; }
.head--left { margin-left: 0; text-align: left; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: 0.76rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold-deep); font-weight: 700; margin-bottom: 18px;
}
.eyebrow::before { content: ""; width: 26px; height: 1.5px; background: var(--gold); display: inline-block; }
.eyebrow--center { justify-content: center; }
.eyebrow--light { color: var(--gold-soft); }
.title { font-family: var(--serif); font-size: clamp(2rem, 4.4vw, 3.4rem); font-weight: 800; letter-spacing: -0.02em; }
.title--sm { font-size: clamp(1.6rem, 3vw, 2.3rem); }
.lead { color: var(--muted); font-size: 1.1rem; margin-top: 18px; font-weight: 300; }

/* ---------- Hero ---------- */
.hero {
  position: relative; min-height: 94vh; display: flex; align-items: center;
  color: #fff; overflow: hidden; background: var(--navy);
}
.hero__video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero__scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(85deg, rgba(7,10,20,0.92) 0%, rgba(7,10,20,0.55) 42%, rgba(7,10,20,0.15) 72%, rgba(7,10,20,0.35) 100%),
    linear-gradient(0deg, rgba(7,10,20,0.75) 0%, rgba(7,10,20,0) 46%);
}
.hero__grain {
  position: absolute; inset: 0; opacity: 0.5; mix-blend-mode: overlay; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
}
.hero__glow { position: absolute; top: -10%; right: -6%; width: 60vw; height: 60vw; max-width: 780px; max-height: 780px; background: radial-gradient(circle, rgba(201,169,110,0.20), transparent 62%); pointer-events: none; }
.hero__content { position: relative; z-index: 3; max-width: var(--maxw); margin: 0 auto; padding: 0 var(--gutter); width: 100%; }
.hero__eyebrow { color: var(--gold-soft); }
.hero__pill { display: inline-flex; align-items: center; gap: 8px; background: var(--gold-grad); color: #241a05; font-size: 0.76rem; font-weight: 800; letter-spacing: 0.05em; text-transform: uppercase; padding: 8px 15px; border-radius: 100px; margin-top: 20px; margin-bottom: 22px; box-shadow: var(--sh-gold); }
.mobile-menu .search { display: flex; width: 100%; margin-bottom: 26px; }
.mobile-menu .search__input { width: 100%; background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.16); color: #fff; }
.mobile-menu .search__input::placeholder { color: #8b93aa; }
.mobile-menu .search__icon { color: #8b93aa; }
.hero__title { font-family: var(--serif); font-size: clamp(2.5rem, 6.4vw, 5rem); font-weight: 800; line-height: 1.05; letter-spacing: -0.02em; max-width: 16ch; color: #fff; }
.hero__title .grad { background: var(--gold-grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero__sub { font-size: clamp(1.02rem, 1.6vw, 1.28rem); color: #d6dcea; max-width: 46ch; margin: 22px 0 34px; font-weight: 300; }
.hero__cta { display: flex; gap: 14px; flex-wrap: wrap; }
.hero__badges { display: flex; gap: 30px; margin-top: 40px; padding: 30px 0; flex-wrap: wrap; }
.tbadge { display: flex; align-items: center; gap: 11px; font-size: 0.9rem; font-weight: 500; color: #e9edf6; }
.tbadge i { color: var(--gold-soft); font-size: 1.15rem; }
.hero__scroll { position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%); z-index: 3; color: rgba(255,255,255,0.65); font-size: 1.1rem; animation: bob 1.9s ease-in-out infinite; }
@keyframes bob { 0%, 100% { transform: translate(-50%, 0); } 50% { transform: translate(-50%, 9px); } }

/* ---------- Trust badge bar ---------- */
.trustbar { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--white); }
.trustbar__inner { max-width: var(--maxw); margin: 0 auto; padding: 22px var(--gutter); display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.trustbar__item { display: flex; align-items: center; gap: 13px; justify-content: center; }
.trustbar__item i { font-size: 1.5rem; color: var(--gold-deep); flex-shrink: 0; }
.trustbar__item b { display: block; font-size: 0.9rem; color: var(--ink); font-weight: 600; }
.trustbar__item span { font-size: 0.78rem; color: var(--muted); }

/* ---------- Trustpilot ---------- */
.tp-logo { display: inline-flex; align-items: center; gap: 8px; font-weight: 700; color: var(--ink); font-size: 1.05rem; }
.tp-logo .tp-star { width: 22px; height: 22px; background: var(--tp-green); display: grid; place-items: center; border-radius: 3px; }
.tp-logo .tp-star svg { width: 15px; height: 15px; fill: #fff; }
.tp-logo--light { color: #fff; }

.tp-stars { display: inline-flex; gap: 3px; }
.tp-stars .s { width: 26px; height: 26px; background: var(--tp-green); display: grid; place-items: center; border-radius: 3px; }
.tp-stars .s svg { width: 17px; height: 17px; fill: #fff; }
.tp-stars .s--half { background: linear-gradient(90deg, var(--tp-green) 50%, #dcdce6 50%); }
.tp-stars .s--empty { background: #dcdce6; }

/* Compact banner (below hero) */
.tp-banner { background: var(--white); border-bottom: 1px solid var(--line); }
.tp-banner__inner { max-width: var(--maxw); margin: 0 auto; padding: 20px var(--gutter); display: flex; align-items: center; justify-content: center; gap: 18px; flex-wrap: wrap; }
.tp-banner__rating { font-weight: 700; color: var(--ink); }
.tp-banner__txt { color: var(--muted); font-size: 0.92rem; }
.tp-banner__txt b { color: var(--ink); }

/* Reviews section */
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 8px; }
.review {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 30px 28px; box-shadow: var(--sh-sm);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.review:hover { transform: translateY(-5px); box-shadow: var(--sh); }
.review__top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }
.review__stars { display: inline-flex; gap: 2px; }
.review__stars .s { width: 20px; height: 20px; background: var(--tp-green); display: grid; place-items: center; border-radius: 3px; }
.review__stars .s svg { width: 13px; height: 13px; fill: #fff; }
.review__verified { font-size: 0.72rem; color: var(--green); font-weight: 600; display: inline-flex; align-items: center; gap: 5px; }
.review__title { font-weight: 700; color: var(--ink); margin-bottom: 8px; font-size: 1.02rem; }
.review__body { color: var(--body); font-size: 0.94rem; }
.review__verified::before { content: ""; display: inline-block; width: 14px; height: 14px; border-radius: 50%; background: var(--green); margin-right: 2px; position: relative; top: 2px; -webkit-mask: no-repeat center/9px url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='white' d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/%3E%3C/svg%3E"); mask: no-repeat center/9px url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='white' d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/%3E%3C/svg%3E"); }
.review__photo { display: block; margin: 16px 0 0; border-radius: var(--r); overflow: hidden; aspect-ratio: 16 / 11; background: var(--paper-2); }
.review__photo img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s var(--ease); }
.review__photo:hover img { transform: scale(1.04); }
.review__foot { display: flex; align-items: center; gap: 11px; margin-top: 20px; padding-top: 18px; border-top: 1px solid var(--line); }
.review__avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--gold-grad); color: #241a05; display: grid; place-items: center; font-weight: 800; font-size: 0.95rem; }
.review__who b { display: block; font-size: 0.88rem; color: var(--ink); }
.review__who span { font-size: 0.78rem; color: var(--muted-2); }
.reviews__cta { text-align: center; margin-top: 44px; }

/* Mini trustpilot (near add-to-cart) */
.tp-mini { display: flex; align-items: center; gap: 12px; padding: 14px 16px; background: var(--paper-2); border-radius: var(--r); margin: 22px 0; }
.tp-mini__rating { display: flex; flex-direction: column; }
.tp-mini__rating b { font-size: 0.92rem; color: var(--ink); line-height: 1.2; }
.tp-mini__rating span { font-size: 0.76rem; color: var(--muted); }

/* ---------- Brand intro (split) ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 6vw, 80px); align-items: center; }
.split__media { border-radius: var(--r-xl); overflow: hidden; box-shadow: var(--sh-lg); }
.split__media img { width: 100%; aspect-ratio: 4 / 3.4; object-fit: cover; transition: transform 0.7s var(--ease); }
.split__media:hover img { transform: scale(1.05); }
.split__body p { color: var(--muted); font-size: 1.05rem; margin-top: 18px; }
.split__stats { display: flex; gap: 40px; margin-top: 34px; }
.split__stat b { font-family: var(--serif); font-size: 2.2rem; color: var(--ink); display: block; line-height: 1; }
.split__stat span { font-size: 0.82rem; color: var(--muted); letter-spacing: 0.03em; }

/* ---------- Featured products ---------- */
.featured-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.pcard {
  position: relative; border-radius: var(--r-lg); overflow: hidden; background: var(--white);
  border: 1px solid var(--line); box-shadow: var(--sh-sm); display: flex; flex-direction: column;
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease);
}
.pcard:hover { transform: translateY(-6px); box-shadow: var(--sh-lg); }
.pcard__media { position: relative; overflow: hidden; background: var(--paper-2); }
.pcard__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease); }
.pcard:hover .pcard__media img { transform: scale(1.06); }
.pcard__tag { position: absolute; top: 16px; left: 16px; background: var(--ink); color: #fff; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; padding: 7px 13px; border-radius: 100px; }
.pcard__tag--gold { background: var(--gold-grad); color: #241a05; }
.pcard__body { padding: 24px 26px 28px; display: flex; flex-direction: column; flex: 1; }
.pcard__name { font-family: var(--serif); font-size: 1.35rem; font-weight: 700; color: var(--ink); }
.pcard--hero .pcard__name { font-size: clamp(1.6rem, 2.6vw, 2.1rem); }
.pcard__desc { color: var(--muted); font-size: 0.92rem; margin-top: 8px; }
.pcard__price { display: flex; align-items: baseline; gap: 10px; margin: 18px 0; }
.pcard__price .now { font-size: 1.5rem; font-weight: 800; color: var(--ink); }
.pcard__price .was { font-size: 0.95rem; color: var(--muted-2); text-decoration: line-through; }
.pcard__foot { margin-top: auto; display: flex; gap: 10px; }
.pcard--hero { grid-column: 1 / -1; flex-direction: row; align-items: stretch; }
.pcard--hero .pcard__media { flex: 1 1 54%; min-height: 380px; }
.pcard--hero .pcard__body { flex: 1 1 46%; justify-content: center; padding: clamp(30px, 4vw, 52px); }
.pcard--soon { opacity: 0.9; }
.pcard--soon .pcard__media { display: grid; place-items: center; aspect-ratio: 1; color: var(--muted-2); }
.pcard--soon .pcard__media i { font-size: 2.4rem; }

/* ---------- Feature cards (real imagery) ---------- */
.fgrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.fcard {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease), border-color 0.4s;
}
.fcard:hover { transform: translateY(-7px); box-shadow: var(--sh-lg); }
.fcard__media { position: relative; aspect-ratio: 16 / 10; overflow: hidden; background: var(--navy-2); }
.fcard__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease); }
.fcard:hover .fcard__media img { transform: scale(1.06); }
.fcard__stat {
  position: absolute; left: 14px; bottom: 14px; z-index: 2;
  background: rgba(10,10,26,0.72); backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
  color: var(--gold-soft); font-size: 0.76rem; font-weight: 700; letter-spacing: 0.02em;
  padding: 6px 12px; border-radius: 100px; border: 1px solid rgba(255,255,255,0.12);
}
.fcard__body { padding: 24px 26px 28px; }
.fcard h3 { font-size: 1.22rem; margin-bottom: 10px; }
.fcard p { color: var(--muted); font-size: 0.95rem; }

/* ---------- Problem -> Solution ---------- */
.ps-list { display: grid; gap: 24px; max-width: 1120px; margin: 0 auto; }
.ps { display: grid; grid-template-columns: 1fr 1.35fr; background: var(--white); border: 1px solid var(--line); border-radius: var(--r-xl); overflow: hidden; box-shadow: var(--sh-sm); }
.ps__problem { padding: clamp(28px, 4vw, 46px); display: flex; flex-direction: column; justify-content: center; background: var(--navy); color: #c7cee0; }
.ps__tag { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.08em; font-weight: 700; color: #8b93aa; margin-bottom: 14px; }
.ps__problem h3 { color: #fff; font-family: var(--serif); font-size: clamp(1.3rem, 2vw, 1.7rem); font-weight: 800; margin-bottom: 12px; letter-spacing: -0.02em; line-height: 1.15; }
.ps__problem p { font-size: 1rem; line-height: 1.6; color: #b9c1d4; }
.ps__solution { display: grid; grid-template-columns: 1fr 1fr; }
.ps__media { position: relative; overflow: hidden; }
.ps__media img { width: 100%; height: 100%; object-fit: cover; min-height: 240px; }
.ps__badge { position: absolute; left: 14px; bottom: 14px; background: rgba(10,10,26,0.72); backdrop-filter: blur(6px); color: var(--gold-soft); font-size: 0.75rem; font-weight: 700; padding: 6px 12px; border-radius: 100px; border: 1px solid rgba(255,255,255,0.12); }
.ps__fix { padding: clamp(24px, 3vw, 40px); display: flex; flex-direction: column; justify-content: center; }
.ps__tag--fix { color: var(--gold-deep); }
.ps__fix h3 { font-family: var(--serif); font-size: clamp(1.2rem, 1.8vw, 1.5rem); font-weight: 800; color: var(--ink); margin-bottom: 10px; letter-spacing: -0.02em; line-height: 1.2; }
.ps__fix p { color: var(--muted); font-size: 0.96rem; line-height: 1.6; }
@media (max-width: 980px) { .ps { grid-template-columns: 1fr; } }
@media (max-width: 640px) { .ps__solution { grid-template-columns: 1fr; } .ps__media img { min-height: 200px; } }

/* ---------- Value comparison (animated bars) ---------- */
.vs-grid { max-width: 860px; margin: 0 auto; display: grid; gap: 40px; }
.vs-label { font-family: var(--serif); font-weight: 800; font-size: 1.15rem; letter-spacing: -0.01em; color: var(--ink); margin-bottom: 16px; }
.vs-bar { margin-bottom: 14px; }
.vs-bar:last-child { margin-bottom: 0; }
.vs-bar__head { display: flex; justify-content: space-between; align-items: baseline; gap: 16px; margin-bottom: 8px; }
.vs-bar__name { font-size: 0.9rem; font-weight: 600; color: var(--body); }
.vs-bar__val { font-size: 0.98rem; font-weight: 800; color: var(--ink); font-variant-numeric: tabular-nums; white-space: nowrap; }
.vs-bar--them .vs-bar__name, .vs-bar--them .vs-bar__val { color: var(--muted-2); font-weight: 600; }
.vs-track { height: 16px; border-radius: 100px; background: var(--paper-2); overflow: hidden; box-shadow: inset 0 1px 2px rgba(28,24,14,0.05); }
.band .vs-track { background: var(--paper); }
.vs-fill { height: 100%; width: 0; border-radius: 100px; transition: width 1.25s var(--ease); }
.vs-bar--ours .vs-fill { background: var(--gold-grad); box-shadow: 0 0 20px rgba(201,169,110,0.35); }
.vs-bar--them .vs-fill { background: var(--line-2); }
.vs-grid.is-animated .vs-fill { width: var(--w); }
.vs-note { text-align: center; color: var(--muted-2); font-size: 0.78rem; margin-top: 34px; }
@media (prefers-reduced-motion: reduce) { .vs-fill { transition: none; } }

/* ---------- Spotlight ---------- */
.spotlight { position: relative; min-height: 82vh; display: flex; align-items: center; color: #fff; overflow: hidden; background: var(--navy); }
.spotlight__video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.spotlight__scrim { position: absolute; inset: 0; background: linear-gradient(88deg, rgba(7,10,20,0.9) 0%, rgba(7,10,20,0.4) 58%, transparent 100%); }
.spotlight__content { position: relative; z-index: 2; max-width: var(--maxw); margin: 0 auto; padding: 0 var(--gutter); width: 100%; }
.spotlight__content h2 { font-family: var(--serif); font-size: clamp(2.1rem, 4.6vw, 3.6rem); font-weight: 800; line-height: 1.06; margin: 16px 0 18px; color: #fff; }
.spotlight__content p { color: #d6dcea; font-size: 1.14rem; max-width: 42ch; font-weight: 300; }

/* ---------- Product page: breadcrumb ---------- */
.crumb { max-width: var(--maxw); margin: 0 auto; padding: 20px var(--gutter) 0; font-size: 0.84rem; color: var(--muted); }
.crumb a:hover { color: var(--gold-deep); }
.crumb span { color: var(--ink); }

/* ---------- Product main ---------- */
.product__grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(30px, 5vw, 64px); align-items: start; }
.gallery { position: sticky; top: calc(var(--header-h) + 22px); }
.gallery__stage { position: relative; border-radius: var(--r-lg); overflow: hidden; background: var(--paper-2); box-shadow: var(--sh); aspect-ratio: 1 / 1; }
.gallery__main { width: 100%; height: 100%; object-fit: cover; transition: opacity 0.35s ease, transform 0.6s var(--ease); }
.gallery__main.is-swapping { opacity: 0; }
.gallery__stage:hover .gallery__main { transform: scale(1.05); }
.gallery__nav { position: absolute; top: 50%; transform: translateY(-50%); z-index: 3; width: 46px; height: 46px; border-radius: 50%; background: rgba(255,255,255,0.92); color: var(--ink); display: grid; place-items: center; box-shadow: var(--sh-sm); opacity: 0; transition: opacity 0.3s, background 0.25s; }
.gallery__stage:hover .gallery__nav { opacity: 1; }
.gallery__nav:hover { background: #fff; }
.gallery__nav--prev { left: 15px; }
.gallery__nav--next { right: 15px; }
.gallery__badge { position: absolute; top: 16px; left: 16px; z-index: 3; background: var(--gold-grad); color: #241a05; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; padding: 7px 13px; border-radius: 100px; }
.gallery__thumbs { display: grid; grid-template-columns: repeat(6, 1fr); gap: 10px; margin-top: 14px; }
.gallery__thumb { aspect-ratio: 1; border-radius: 12px; overflow: hidden; background: var(--paper-2); border: 2px solid transparent; transition: border-color 0.25s, transform 0.25s; }
.gallery__thumb img { width: 100%; height: 100%; object-fit: cover; }
.gallery__thumb:hover { transform: translateY(-2px); }
.gallery__thumb.is-active { border-color: var(--gold); }

.pinfo__flags { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; margin-bottom: 16px; }
.pinfo__flag { display: inline-flex; align-items: center; gap: 7px; background: var(--navy); color: var(--gold-soft); font-size: 0.7rem; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; padding: 6px 12px; border-radius: 100px; }
.pinfo__title { font-family: var(--serif); font-size: clamp(1.9rem, 3.2vw, 2.7rem); font-weight: 800; }
.pinfo__rate { display: inline-flex; align-items: center; gap: 10px; margin: 12px 0 2px; }
.pinfo__rate .tp-stars .s { width: 20px; height: 20px; }
.pinfo__rate .tp-stars .s svg { width: 13px; height: 13px; }
.pinfo__rate-txt { font-size: 0.85rem; color: var(--muted); font-weight: 600; }
.pinfo__rate:hover .pinfo__rate-txt { color: var(--gold-deep); }
.pinfo__tag { color: var(--muted); margin-top: 14px; font-size: 1.04rem; }
.pinfo__price { display: flex; align-items: baseline; gap: 14px; margin: 26px 0 14px; flex-wrap: wrap; }
.price-now { font-size: 2.5rem; font-weight: 800; color: var(--ink); letter-spacing: -0.02em; }
.price-was { font-size: 1.2rem; color: var(--muted-2); text-decoration: line-through; }
.price-save { background: rgba(30,158,90,0.12); color: var(--green); font-size: 0.8rem; font-weight: 700; padding: 5px 12px; border-radius: 100px; }
.pinfo__reassure { font-size: 0.9rem; color: var(--muted); margin: 0 0 4px; }

/* Trust row + delivery ETA (shared by X60 section and product pages) */
.pdp__trust { display: flex; align-items: center; justify-content: space-between; gap: 14px; flex-wrap: wrap; margin-top: 16px; }
.pdp__trust-secure { display: inline-flex; align-items: center; gap: 7px; font-size: 0.85rem; font-weight: 600; color: var(--ink); }
.pdp__trust-secure i { color: var(--green); }
.pdp__cards { display: inline-flex; align-items: center; gap: 8px; font-size: 1.7rem; color: var(--muted-2); }
.pdp__eta { margin-top: 14px; font-size: 0.9rem; color: var(--body); font-weight: 500; }
.pinfo__stock { display: inline-flex; align-items: center; gap: 9px; font-weight: 600; color: var(--green); font-size: 0.95rem; margin-bottom: 26px; }
.pinfo__stock .dot { width: 9px; height: 9px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 4px rgba(30,158,90,0.16); animation: pulse 2s infinite; }
@keyframes pulse { 0%, 100% { box-shadow: 0 0 0 4px rgba(30,158,90,0.16); } 50% { box-shadow: 0 0 0 7px rgba(30,158,90,0.04); } }

.opt { margin-bottom: 24px; }
.opt__label { display: block; font-size: 0.9rem; color: var(--muted); margin-bottom: 12px; }
.opt__label b { color: var(--ink); }
.swatches { display: flex; gap: 12px; }
.swatch { width: 46px; height: 46px; border-radius: 50%; background: var(--sw); border: 2px solid var(--line-2); box-shadow: inset 0 0 0 3px var(--white); transition: transform 0.25s, box-shadow 0.25s; }
.swatch:hover { transform: scale(1.08); }
.swatch.is-active { box-shadow: inset 0 0 0 3px var(--white), 0 0 0 2px var(--gold); }

/* Trust badges above CTA (compact) */

.buybar { display: flex; gap: 12px; margin-bottom: 12px; }
#buyNow { margin-top: 20px; }
.qty { display: flex; align-items: center; border: 1.5px solid var(--line-2); border-radius: 100px; overflow: hidden; flex-shrink: 0; }
.qty__btn { width: 48px; height: 56px; font-size: 1.2rem; color: var(--ink); transition: background 0.2s; }
.qty__btn:hover { background: var(--paper-2); }
.qty__val { width: 42px; height: 56px; text-align: center; border: none; font-size: 1.05rem; font-weight: 700; background: transparent; color: var(--ink); }
.qty__val:focus { outline: none; }

.perks { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin: 26px 0; }
.perks li { display: flex; align-items: center; gap: 10px; font-size: 0.9rem; color: var(--muted); }
.perks i { color: var(--gold-deep); width: 18px; text-align: center; }

.quickspecs { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--r); overflow: hidden; margin-top: 28px; }
.quickspec { background: var(--white); padding: 18px 14px; text-align: center; }
.quickspec span { display: block; font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--muted-2); margin-bottom: 5px; }
.quickspec b { font-size: 1.05rem; color: var(--ink); }

/* ---------- Demos (unique thumbnails) ---------- */
/* Side-scrollable carousel */
.demo-carousel { position: relative; }
.demo-track {
  display: flex; gap: 22px; overflow-x: auto; scroll-behavior: smooth;
  scroll-snap-type: x mandatory; padding: 6px 2px 20px; margin: 0 -2px;
  scrollbar-width: thin; scrollbar-color: var(--line-2) transparent;
  -webkit-overflow-scrolling: touch;
}
.demo-track::-webkit-scrollbar { height: 7px; }
.demo-track::-webkit-scrollbar-thumb { background: var(--line-2); border-radius: 100px; }
.demo-track::-webkit-scrollbar-track { background: transparent; }
.demo-track.is-dragging { scroll-behavior: auto; scroll-snap-type: none; cursor: grabbing; }
.demo { cursor: pointer; flex: 0 0 calc((100% - 3 * 22px) / 4); scroll-snap-align: start; }
.demo-arrow {
  position: absolute; top: calc(50% - 20px); transform: translateY(-50%); z-index: 4;
  width: 52px; height: 52px; border-radius: 50%; background: var(--white);
  border: 1px solid var(--line); box-shadow: var(--sh); color: var(--ink);
  display: grid; place-items: center; font-size: 1rem;
  transition: transform 0.3s var(--ease), background 0.3s, color 0.3s, opacity 0.3s;
}
.demo-arrow:hover { background: var(--ink); color: #fff; transform: translateY(-50%) scale(1.06); }
.demo-arrow--prev { left: -18px; }
.demo-arrow--next { right: -18px; }
.demo-arrow[disabled] { opacity: 0; pointer-events: none; }
.demo__tag { position: absolute; top: 12px; left: 12px; background: rgba(7,10,20,0.62); backdrop-filter: blur(4px); color: #fff; font-size: 0.66rem; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; padding: 5px 10px; border-radius: 100px; }
.demo__frame { position: relative; border-radius: var(--r-lg); overflow: hidden; aspect-ratio: 16 / 10; background: var(--navy-2); box-shadow: var(--sh-sm); transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease); }
.demo:hover .demo__frame { transform: translateY(-6px); box-shadow: var(--sh-lg); }
.demo__media { width: 100%; height: 100%; object-fit: cover; background: var(--navy-2); }
.demo__grad { position: absolute; inset: 0; background: linear-gradient(0deg, rgba(7,10,20,0.55), transparent 55%); opacity: 0; transition: opacity 0.35s; }
.demo:hover .demo__grad { opacity: 1; }
.demo__play { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%) scale(0.92); width: 62px; height: 62px; border-radius: 50%; background: rgba(255,255,255,0.16); backdrop-filter: blur(6px); border: 1.5px solid rgba(255,255,255,0.55); color: #fff; display: grid; place-items: center; font-size: 1.15rem; transition: transform 0.4s var(--ease), background 0.3s, color 0.3s; }
.demo:hover .demo__play { transform: translate(-50%, -50%) scale(1); background: var(--gold-grad); color: #241a05; border-color: transparent; }
.demo__dur { position: absolute; bottom: 12px; right: 12px; background: rgba(7,10,20,0.7); color: #fff; font-size: 0.72rem; font-weight: 600; padding: 3px 9px; border-radius: 6px; backdrop-filter: blur(4px); }
.demo__title { margin-top: 14px; font-weight: 600; font-size: 0.98rem; color: var(--ink); }
.demo:hover .demo__title { color: var(--gold-deep); }

/* ---------- What's in the box ---------- */
/* Compact horizontal 'in the box' items — much shorter than square cards */
.box-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.box-item { display: flex; align-items: center; gap: 13px; text-align: left; background: var(--white); border: 1px solid var(--line); border-radius: var(--r); padding: 12px 14px; transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease); }
.box-item:hover { transform: translateY(-3px); box-shadow: var(--sh-sm); }
.box-item__media { width: 52px; height: 52px; flex-shrink: 0; border-radius: 10px; background: #fff; border: 1px solid var(--line); overflow: hidden; }
.box-item__media img { width: 100%; height: 100%; object-fit: contain; padding: 8%; }
.box-item b { display: block; color: var(--ink); font-size: 0.9rem; line-height: 1.25; }
.box-item span { font-size: 0.76rem; color: var(--muted); }

/* ---------- Spec table ---------- */
.spec-table { max-width: 900px; margin: 0 auto; border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; background: var(--white); }
.spec-row { display: grid; grid-template-columns: 260px 1fr; gap: 20px; padding: 20px 28px; transition: background 0.2s; }
.spec-row:nth-child(odd) { background: var(--paper); }
.spec-row:hover { background: var(--paper-2); }
.spec-row dt { font-weight: 600; color: var(--ink); display: flex; align-items: center; gap: 11px; }
.spec-row dt i { color: var(--gold-deep); width: 18px; text-align: center; }
.spec-row dd { color: var(--muted); }

/* ---------- Compare ---------- */
.compare-wrap { max-width: 940px; margin: 0 auto; overflow-x: auto; border-radius: var(--r-lg); border: 1px solid var(--line); }
.compare { width: 100%; border-collapse: collapse; min-width: 640px; background: var(--white); }
.compare th, .compare td { padding: 18px 20px; text-align: center; border-bottom: 1px solid var(--line); }
.compare thead th { font-size: 0.9rem; color: var(--muted); font-weight: 600; }
.compare thead th.is-ours { background: var(--navy); color: #fff; border-radius: 16px 16px 0 0; position: relative; }
.compare thead th.is-ours span { display: block; font-family: var(--serif); font-size: 1.05rem; margin-top: 3px; }
.compare tbody td.is-ours { background: rgba(201,169,110,0.08); font-weight: 600; color: var(--ink); }
.compare tbody th { text-align: left; font-weight: 600; color: var(--ink); font-size: 0.92rem; }
.compare .yes { color: var(--green); font-size: 1.1rem; }
.compare .no { color: #cfd2da; font-size: 1.1rem; }
.compare tr:last-child td { border-bottom: none; }

/* ---------- UGC ---------- */
.ugc-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.ugc { position: relative; border-radius: var(--r); overflow: hidden; aspect-ratio: 1; background: var(--paper-2); box-shadow: var(--sh-sm); transition: transform 0.4s var(--ease); }
.ugc:hover { transform: translateY(-4px) scale(1.02); }
.ugc img { width: 100%; height: 100%; object-fit: cover; }
.ugc__badge { position: absolute; top: 10px; left: 10px; width: 30px; height: 30px; border-radius: 9px; background: rgba(7,10,20,0.55); backdrop-filter: blur(4px); color: #fff; display: grid; place-items: center; font-size: 0.8rem; }
.ugc img { transition: transform 0.6s var(--ease); }
.ugc:hover img { transform: scale(1.05); }
.ugc__cap { position: absolute; left: 0; right: 0; bottom: 0; padding: 26px 14px 12px; background: linear-gradient(0deg, rgba(7,10,20,0.82), transparent); color: #eef1f7; font-size: 0.76rem; font-weight: 500; line-height: 1.4; }
.ugc__cap b { color: var(--gold-soft); font-weight: 700; margin-right: 5px; }
.ugc-cta { text-align: center; margin-top: 44px; }
.ugc--ph { background: linear-gradient(135deg, var(--paper-2), var(--line)); box-shadow: none; border: 1px dashed var(--line-2); }
.ugc--ph:hover { transform: none; }
.ugc__ph { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px; color: var(--muted-2); }
.ugc__ph i { font-size: 1.9rem; opacity: 0.55; }
.ugc__ph span { font-size: 0.8rem; font-weight: 600; letter-spacing: 0.04em; }

/* ---------- Quick view modal ---------- */
.modal--quick { max-width: 820px; }
.quickview { display: grid; grid-template-columns: 1fr 1fr; }
.quickview__media { background: #fff; display: grid; place-items: center; padding: 32px; border-radius: var(--r-xl) 0 0 var(--r-xl); }
.quickview__media img { max-height: 340px; width: 100%; object-fit: contain; }
.quickview__info { padding: 42px 38px; }
.quickview__info h3 { font-size: 1.55rem; margin: 6px 0 14px; }
.quickview__info .pinfo__price { margin: 0 0 16px; }
.quickview__info > p { color: var(--muted); margin-bottom: 24px; }
.quickview__link { display: inline-block; margin-top: 20px; font-size: 0.88rem; color: var(--gold-deep); font-weight: 600; }
.quickview__link:hover { text-decoration: underline; }

/* ---------- Newsletter ---------- */
.newsletter { position: relative; overflow: hidden; }
.newsletter__card { max-width: 860px; margin: 0 auto; text-align: center; background: radial-gradient(130% 130% at 50% 0%, var(--navy-3), var(--navy) 70%); color: #fff; border-radius: var(--r-xl); padding: clamp(44px, 7vw, 76px) var(--gutter); box-shadow: var(--sh-lg); position: relative; overflow: hidden; }
.newsletter__card::after { content: ""; position: absolute; top: -40%; right: -8%; width: 360px; height: 360px; background: radial-gradient(circle, rgba(201,169,110,0.22), transparent 68%); pointer-events: none; }
.newsletter h2 { font-family: var(--serif); font-size: clamp(1.7rem, 3.4vw, 2.6rem); color: #fff; position: relative; }
.newsletter p { color: #c1c9dd; margin-top: 12px; position: relative; }
.newsletter__form { display: flex; gap: 12px; max-width: 480px; margin: 30px auto 0; position: relative; }
.newsletter__form input { flex: 1; min-height: 54px; padding: 0 20px; border-radius: 100px; border: 1.5px solid rgba(255,255,255,0.18); background: rgba(255,255,255,0.06); color: #fff; font-size: 0.95rem; transition: border-color 0.25s, background 0.25s; }
.newsletter__form input::placeholder { color: #9aa2b8; }
.newsletter__form input:focus { outline: none; border-color: var(--gold); background: rgba(255,255,255,0.1); }
.newsletter__note { font-size: 0.78rem; color: #8b93aa; margin-top: 16px; position: relative; }

/* ---------- Final CTA ---------- */
.finalcta__card { max-width: 820px; margin: 0 auto; text-align: center; background: var(--gold-grad); color: #241a05; border-radius: var(--r-xl); padding: clamp(44px, 7vw, 76px) var(--gutter); box-shadow: var(--sh-lg); position: relative; overflow: hidden; }
.finalcta__card h2 { font-family: var(--serif); font-size: clamp(1.8rem, 3.6vw, 2.8rem); color: #241a05; }
.finalcta__card p { color: #4a3a12; margin-top: 12px; font-weight: 500; }
.finalcta__price { display: flex; align-items: baseline; justify-content: center; gap: 12px; margin: 24px 0 28px; }
.finalcta__price .price-now { color: #241a05; }
.finalcta__price .price-was { color: #6b5624; }

/* ---------- Footer ---------- */
.footer { background: var(--navy); color: #aab2c8; padding-top: 70px; }
.footer__inner { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--gutter) 52px; display: grid; grid-template-columns: 1.7fr 1fr 1fr 1fr; gap: 44px; }
.footer__brand p { font-size: 0.92rem; margin: 18px 0 22px; max-width: 34ch; }
.footer .tp-logo--light { margin-bottom: 14px; }
.social { display: flex; gap: 12px; }
.social a { width: 42px; height: 42px; border-radius: 12px; background: rgba(255,255,255,0.06); display: grid; place-items: center; color: #cfd6e8; transition: background 0.25s, color 0.25s, transform 0.25s; }
.social a:hover { background: var(--gold-grad); color: #241a05; transform: translateY(-3px); }
.footer__col h4 { color: #fff; font-size: 0.95rem; margin-bottom: 18px; }
.footer__col a { display: block; font-size: 0.9rem; padding: 6px 0; color: #939bb5; transition: color 0.2s, padding-left 0.2s; }
.footer__col a:hover { color: var(--gold-soft); padding-left: 4px; }
.footer__bar { border-top: 1px solid rgba(255,255,255,0.08); padding: 24px var(--gutter); max-width: var(--maxw); margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: 0.82rem; color: #767e97; }
.pay { display: flex; align-items: center; gap: 12px; font-size: 1.7rem; }
.pay i { color: #a7afc6; transition: color 0.2s; }
.pay i:hover { color: #fff; }
.pay__klarna { font-size: 0.8rem; font-weight: 700; background: #ffb3c7; color: #17120e; padding: 3px 8px; border-radius: 5px; }

/* ---------- Cart drawer ---------- */
.drawer-overlay { position: fixed; inset: 0; background: rgba(7,10,20,0.52); backdrop-filter: blur(3px); z-index: 900; opacity: 0; visibility: hidden; transition: opacity 0.35s, visibility 0.35s; }
.drawer-overlay.is-open { opacity: 1; visibility: visible; }
.drawer { position: fixed; top: 0; right: 0; height: 100%; width: min(430px, 92vw); z-index: 950; background: var(--paper); box-shadow: var(--sh-lg); transform: translateX(100%); transition: transform 0.45s var(--ease); display: flex; flex-direction: column; }
.drawer.is-open { transform: translateX(0); }
.drawer__head { display: flex; align-items: center; justify-content: space-between; padding: 22px 24px; border-bottom: 1px solid var(--line); }
.drawer__head h3 { font-size: 1.2rem; }
.drawer__body { flex: 1; overflow-y: auto; padding: 8px 24px; }
.cart-item { display: grid; grid-template-columns: 76px 1fr auto; gap: 14px; padding: 18px 0; border-bottom: 1px solid var(--line); animation: fadeUp 0.4s var(--ease); }
.cart-item__img { width: 76px; height: 76px; border-radius: 12px; object-fit: cover; background: var(--paper-2); }
.cart-item__name { font-weight: 600; font-size: 0.95rem; line-height: 1.3; color: var(--ink); }
.cart-item__meta { font-size: 0.8rem; color: var(--muted-2); margin-top: 3px; }
.cart-item__price { font-weight: 700; color: var(--ink); margin-top: 8px; font-size: 0.95rem; }
.cart-item__right { display: flex; flex-direction: column; align-items: flex-end; justify-content: space-between; }
.cart-item__remove { color: var(--muted-2); font-size: 0.9rem; width: 32px; height: 32px; border-radius: 8px; transition: color 0.2s, background 0.2s; }
.cart-item__remove:hover { color: #d9534f; background: rgba(217,83,79,0.08); }
.mini-qty { display: flex; align-items: center; border: 1px solid var(--line-2); border-radius: 100px; }
.mini-qty button { width: 32px; height: 32px; font-size: 1rem; color: var(--ink); }
.mini-qty button:hover { color: var(--gold-deep); }
.mini-qty span { min-width: 24px; text-align: center; font-weight: 700; font-size: 0.9rem; }

.drawer__empty { flex: 1; display: none; flex-direction: column; align-items: center; justify-content: center; gap: 16px; color: var(--muted-2); text-align: center; padding: 30px; }
.drawer__empty i { font-size: 2.8rem; opacity: 0.35; }
.drawer.is-empty .drawer__body, .drawer.is-empty .drawer__foot { display: none; }
.drawer.is-empty .drawer__empty { display: flex; }

.drawer__foot { padding: 22px 24px; border-top: 1px solid var(--line); background: var(--white); }
.drawer__row { display: flex; justify-content: space-between; align-items: center; padding: 6px 0; font-size: 0.95rem; }
.drawer__row--muted { color: var(--muted); }
.drawer__row--muted b { color: var(--green); }
.drawer__row--total { font-size: 1.2rem; font-weight: 800; color: var(--ink); padding-top: 12px; margin-top: 6px; border-top: 1px solid var(--line); }

/* Cart upsells (inside the scrollable body, below the items) */
.drawer__upsell:not(:empty) { margin-top: 6px; padding: 18px 0 8px; border-top: 1px solid var(--line); }
.upsell__head { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--muted-2); font-weight: 700; margin-bottom: 12px; }
.upsell { display: flex; align-items: center; gap: 12px; padding: 7px 0; }
.upsell__img { width: 46px; height: 46px; border-radius: 9px; object-fit: contain; background: var(--paper-2); padding: 5px; flex-shrink: 0; }
.upsell__info { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 2px; }
.upsell__name { font-size: 0.86rem; color: var(--ink); font-weight: 600; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.upsell__price { font-size: 0.82rem; color: var(--muted); }
.upsell__add { flex-shrink: 0; border: 1.5px solid var(--line-2); border-radius: 100px; padding: 7px 17px; font-size: 0.82rem; font-weight: 700; color: var(--ink); background: var(--white); transition: background 0.2s var(--ease), color 0.2s, border-color 0.2s; }
.upsell__add:hover { background: var(--ink); color: #fff; border-color: var(--ink); }

/* ---------- Cookie consent ---------- */
.cookie { position: fixed; left: 50%; bottom: 20px; transform: translateX(-50%); z-index: 1200; width: min(700px, calc(100vw - 32px)); background: var(--navy); color: #e9edf6; border-radius: var(--r-lg); box-shadow: var(--sh-lg); padding: 20px 24px; display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }
.cookie[hidden] { display: none; }
.cookie__body { flex: 1; min-width: 230px; }
.cookie__body b { color: #fff; font-size: 0.95rem; display: block; margin-bottom: 5px; }
.cookie__body p { font-size: 0.85rem; color: #b9c1d4; line-height: 1.5; }
.cookie__body a { color: var(--gold-soft); text-decoration: underline; }
.cookie__actions { display: flex; gap: 10px; flex-shrink: 0; }
.cookie__actions .btn { min-height: 44px; padding: 11px 20px; font-size: 0.88rem; }
.cookie .btn--ghost { color: #fff; border: 1px solid rgba(255,255,255,0.3); background: transparent; }
.cookie .btn--ghost:hover { background: rgba(255,255,255,0.1); }

/* ---------- Support bubble ---------- */
.support-fab { position: fixed; right: 22px; bottom: 22px; z-index: 1150; width: 58px; height: 58px; border-radius: 50%; background: var(--gold-grad); color: #241a05; box-shadow: var(--sh-gold), var(--sh); display: grid; place-items: center; font-size: 1.35rem; transition: transform 0.3s var(--ease); }
.support-fab:hover { transform: scale(1.08); }
.support-fab.is-active { transform: scale(0.9); }
.support-panel { position: fixed; right: 22px; bottom: 92px; z-index: 1150; width: min(340px, calc(100vw - 44px)); background: var(--white); border: 1px solid var(--line); border-radius: var(--r-lg); box-shadow: var(--sh-lg); overflow: hidden; opacity: 0; visibility: hidden; transform: translateY(12px) scale(0.98); transform-origin: bottom right; transition: opacity 0.3s var(--ease), transform 0.3s var(--ease), visibility 0.3s; }
.support-panel.is-open { opacity: 1; visibility: visible; transform: translateY(0) scale(1); }
.support-panel__head { display: flex; align-items: center; justify-content: space-between; gap: 10px; padding: 16px 18px; background: var(--navy); color: #fff; }
.support-panel__head b { font-size: 0.95rem; display: block; }
.support-panel__head span { font-size: 0.75rem; color: #a7afc6; }
.support-panel__x { color: #fff; font-size: 1.4rem; line-height: 1; width: 28px; height: 28px; }
.support-panel__body { padding: 16px 18px 18px; }
.support-msg { font-size: 0.9rem; color: var(--body); margin-bottom: 14px; line-height: 1.5; }
.support-link { display: block; padding: 12px 14px; margin-bottom: 8px; border: 1px solid var(--line); border-radius: var(--r); font-size: 0.88rem; font-weight: 600; color: var(--ink); transition: border-color 0.2s, background 0.2s; }
.support-link:hover { border-color: var(--gold); background: var(--paper-2); }
@media (max-width: 880px) { .support-fab { bottom: 84px; } .support-panel { bottom: 154px; } body[data-page="product"] .support-fab { bottom: 84px; } }

/* ---------- Legal / policy pages ---------- */
.legal { max-width: 760px; margin: 0 auto; padding: clamp(16px, 3vw, 30px) var(--gutter) clamp(70px, 9vw, 120px); }
.legal .crumbs { margin: 8px 0 40px; }
.legal__head { margin-bottom: 24px; }
.legal__head h1 { font-family: var(--serif); font-size: clamp(2rem, 4vw, 2.8rem); font-weight: 800; letter-spacing: -0.02em; color: var(--ink); }
.legal__updated { color: var(--muted-2); font-size: 0.85rem; margin-top: 10px; }
.legal__intro { font-size: 1.15rem; line-height: 1.7; color: var(--body); margin-bottom: 36px; }
.legal__body h2 { font-family: var(--serif); font-size: 1.35rem; font-weight: 800; color: var(--ink); margin: 36px 0 12px; }
.legal__body p { color: var(--body); line-height: 1.7; margin-bottom: 14px; }
.legal__body ul { margin: 0 0 18px; padding-left: 0; list-style: none; }
.legal__body li { position: relative; padding-left: 26px; margin-bottom: 10px; color: var(--body); line-height: 1.6; }
.legal__body li::before { content: ""; position: absolute; left: 2px; top: 9px; width: 6px; height: 6px; border-radius: 50%; background: var(--gold); }
.legal__body a, .legal__intro a, .legal__contact a { color: var(--gold-deep); font-weight: 600; border-bottom: 1px solid var(--gold); }
.legal__body a:hover, .legal__intro a:hover { color: var(--ink); }
.legal__contact { margin-top: 40px; padding-top: 24px; border-top: 1px solid var(--line); color: var(--muted); font-size: 0.95rem; }
.drawer__note { text-align: center; font-size: 0.76rem; color: var(--muted-2); margin-top: 12px; }
.drawer__note i { color: var(--green); }

/* ---------- Modals ---------- */
.modal-overlay { position: fixed; inset: 0; z-index: 1000; background: rgba(7,10,20,0.66); backdrop-filter: blur(5px); display: flex; align-items: center; justify-content: center; padding: 20px; opacity: 0; visibility: hidden; transition: opacity 0.3s, visibility 0.3s; }
.modal-overlay.is-open { opacity: 1; visibility: visible; }
.modal { background: var(--paper); border-radius: var(--r-xl); width: 100%; max-height: 92vh; overflow: auto; position: relative; transform: translateY(22px) scale(0.98); transition: transform 0.4s var(--ease); box-shadow: var(--sh-lg); }
.modal-overlay.is-open .modal { transform: none; }
.modal__close { position: absolute; top: 16px; right: 16px; z-index: 5; background: var(--paper-2); }
.modal--checkout { max-width: 960px; }
.modal--success { max-width: 460px; text-align: center; }
.modal--video { max-width: 1040px; background: #000; border-radius: var(--r-lg); overflow: hidden; }
.modal--video video { width: 100%; display: block; max-height: 84vh; }
.modal--video .modal__close { background: rgba(255,255,255,0.14); color: #fff; }

.checkout { display: grid; grid-template-columns: 1.3fr 1fr; }
.checkout__form { padding: 42px; }
.checkout__title { font-family: var(--serif); font-size: 1.8rem; font-weight: 800; }
.checkout__demo { display: inline-flex; align-items: center; gap: 8px; margin: 12px 0 26px; font-size: 0.82rem; color: var(--gold-deep); background: rgba(201,169,110,0.14); padding: 7px 13px; border-radius: 100px; }
.cfield { border: none; margin-bottom: 22px; }
.cfield legend { font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--muted); margin-bottom: 12px; display: flex; align-items: center; gap: 10px; }
.stripe-tag { text-transform: none; letter-spacing: 0; font-weight: 600; background: #635bff; color: #fff; padding: 3px 8px; border-radius: 6px; font-size: 0.72rem; }
.cfield label { display: block; font-size: 0.82rem; color: var(--muted); margin-bottom: 12px; }
.cgrid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.cfield input { width: 100%; margin-top: 6px; min-height: 48px; padding: 12px 15px; border: 1.5px solid var(--line-2); border-radius: 12px; font-size: 0.95rem; color: var(--ink); background: var(--white); transition: border-color 0.2s, box-shadow 0.2s; }
.cfield input:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201,169,110,0.2); }
.cfield input.is-invalid { border-color: #e05252; box-shadow: 0 0 0 3px rgba(224,82,82,0.14); }
.checkout__ssl { text-align: center; font-size: 0.78rem; color: var(--muted-2); margin-top: 14px; }
.checkout__ssl i { color: var(--green); }
.checkout__summary { background: var(--paper-2); padding: 42px 32px; border-left: 1px solid var(--line); }
.checkout__summary h4 { font-size: 1.05rem; margin-bottom: 20px; }
.checkout__items { display: flex; flex-direction: column; gap: 14px; margin-bottom: 20px; }
.co-item { display: grid; grid-template-columns: 56px 1fr auto; gap: 12px; align-items: center; }
.co-item img { width: 56px; height: 56px; border-radius: 10px; object-fit: cover; background: var(--white); }
.co-item__name { font-size: 0.85rem; font-weight: 600; line-height: 1.3; color: var(--ink); }
.co-item__meta { font-size: 0.76rem; color: var(--muted-2); }
.co-item__price { font-weight: 700; font-size: 0.9rem; color: var(--ink); }
.checkout__totals { border-top: 1px solid var(--line); padding-top: 16px; }

.success { padding: 48px 36px; }
.success__check { width: 80px; height: 80px; border-radius: 50%; margin: 0 auto 22px; background: rgba(30,158,90,0.12); color: var(--green); display: grid; place-items: center; font-size: 2rem; animation: pop 0.5s var(--ease); }
@keyframes pop { 0% { transform: scale(0); } 60% { transform: scale(1.15); } 100% { transform: scale(1); } }
.success h3 { font-family: var(--serif); font-size: 1.7rem; }
.success p { color: var(--muted); margin-top: 10px; }
.success__id { font-size: 0.9rem; }
.success__id b { color: var(--ink); }
.success .btn { margin-top: 24px; }

/* ---------- Toast (fixed, bottom-center, auto-dismiss) ---------- */
.toast {
  position: fixed; z-index: 1300;
  left: 50%; bottom: 30px;
  display: inline-flex; align-items: center; gap: 11px;
  background: var(--ink); color: #fff;
  padding: 15px 22px; border-radius: 100px;
  box-shadow: var(--sh-lg); font-size: 0.92rem; font-weight: 500;
  max-width: calc(100vw - 32px);
  transform: translate(-50%, 140%); opacity: 0;
  transition: transform 0.5s var(--ease), opacity 0.4s ease;
  pointer-events: none;
}
.toast.is-visible { transform: translate(-50%, 0); opacity: 1; }
.toast i { color: var(--gold-soft); font-size: 1.05rem; }

/* ---------- Sticky mobile add-to-cart ---------- */
.sticky-cta {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 780;
  background: rgba(251,249,245,0.95); backdrop-filter: blur(14px);
  border-top: 1px solid var(--line); box-shadow: 0 -8px 24px rgba(20,18,10,0.08);
  padding: 12px var(--gutter); display: none; align-items: center; gap: 14px;
  transform: translateY(120%); transition: transform 0.4s var(--ease);
  padding-bottom: max(12px, env(safe-area-inset-bottom));
}
.sticky-cta.is-visible { transform: translateY(0); }
.sticky-cta__info { flex-shrink: 0; }
.sticky-cta__info .now { font-size: 1.2rem; font-weight: 800; color: var(--ink); display: block; line-height: 1.1; }
.sticky-cta__info .was { font-size: 0.8rem; color: var(--muted-2); text-decoration: line-through; }
.sticky-cta .btn { flex: 1; }

/* ---------- Header: Shop dropdown ---------- */
.nav__item { position: relative; }
.nav__toggle { display: inline-flex; align-items: center; gap: 6px; cursor: pointer; }
.nav__toggle i { font-size: 0.7rem; transition: transform 0.25s; }
.nav__item:hover .nav__toggle i, .nav__item:focus-within .nav__toggle i { transform: rotate(180deg); }
.dropdown-panel {
  position: absolute; top: calc(100% + 16px); left: 50%;
  transform: translateX(-50%) translateY(8px);
  background: var(--white); border: 1px solid var(--line); border-radius: 16px;
  box-shadow: var(--sh-lg); padding: 10px; min-width: 240px;
  opacity: 0; visibility: hidden; transition: opacity 0.25s, transform 0.25s; z-index: 60;
}
.nav__item:hover .dropdown-panel, .nav__item:focus-within .dropdown-panel { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.dropdown-panel::before { content: ""; position: absolute; top: -14px; left: 0; right: 0; height: 14px; }
.dropdown-panel a { display: flex; align-items: center; gap: 12px; padding: 11px 14px; border-radius: 10px; font-size: 0.92rem; color: var(--ink); font-weight: 500; transition: background 0.2s, color 0.2s; }
.dropdown-panel a:hover { background: var(--paper-2); color: var(--gold-deep); }
.dropdown-panel a i { color: var(--gold-deep); width: 18px; text-align: center; }

/* ---------- Header: search ---------- */
.search { position: relative; display: flex; align-items: center; }
.search__icon { position: absolute; left: 14px; color: var(--muted-2); font-size: 0.85rem; pointer-events: none; }
.search__input { width: 190px; height: 44px; border-radius: 100px; border: 1.5px solid var(--line-2); padding: 0 16px 0 38px; background: var(--paper-2); font-size: 0.88rem; color: var(--ink); transition: width 0.3s var(--ease), border-color 0.2s, background 0.2s; }
.search__input::placeholder { color: var(--muted-2); }
.search__input:focus { outline: none; width: 230px; border-color: var(--gold); background: var(--white); }

/* ---------- Category filter tabs ---------- */
.cat-tabs { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-bottom: 40px; }
.cat-tab { padding: 11px 22px; border-radius: 100px; border: 1.5px solid var(--line-2); font-size: 0.9rem; font-weight: 600; color: var(--muted); background: var(--white); transition: background 0.25s, color 0.25s, border-color 0.25s, transform 0.25s; }
.cat-tab:hover { border-color: var(--gold); color: var(--ink); transform: translateY(-1px); }
.cat-tab.is-active { background: var(--ink); color: #fff; border-color: var(--ink); }

/* ---------- Product grid (2-up, compact vertical cards) ---------- */
.product-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.product-grid .pcard { flex-direction: column; }
.product-grid .pcard__media { aspect-ratio: 4 / 3; background: #fff; display: block; cursor: pointer; border-bottom: 1px solid var(--line); }
.product-grid .pcard__media img { width: 100%; height: 100%; object-fit: contain; padding: 6% 10%; }
.product-grid .pcard__body { padding: 20px 24px 22px; display: flex; flex-direction: column; }
.pcard__cat { font-size: 0.7rem; letter-spacing: 0.09em; text-transform: uppercase; color: var(--gold-deep); font-weight: 700; margin-bottom: 7px; }
.product-grid .pcard__name { font-size: 1.16rem; line-height: 1.22; }
.product-grid .pcard__price { margin: 12px 0 16px; }
.product-grid .pcard__price .now { font-size: 1.3rem; }
.pcard__foot { margin-top: auto; }
.pcard__view {
  display: inline-flex; align-items: center; gap: 8px; align-self: flex-start;
  font-size: 0.86rem; font-weight: 700; letter-spacing: 0.01em; color: var(--ink);
  padding-bottom: 3px; border-bottom: 1.5px solid var(--gold); transition: gap 0.25s var(--ease), color 0.25s;
}
.pcard__view::after { content: "\2192"; font-weight: 700; color: var(--gold-deep); transition: transform 0.25s var(--ease); }
.pcard__view:hover { color: var(--gold-deep); }
.pcard__view:hover::after { transform: translateX(4px); }
.grid-empty { grid-column: 1 / -1; text-align: center; color: var(--muted); padding: 50px 20px; }

/* ---------- Stock badge ---------- */
.stock-badge { display: inline-flex; align-items: center; gap: 9px; background: rgba(30,158,90,0.12); color: var(--green); font-weight: 700; font-size: 0.85rem; padding: 9px 15px; border-radius: 100px; margin-bottom: 18px; }
.stock-badge .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 4px rgba(30,158,90,0.16); animation: pulse 2s infinite; }

/* ---------- Delivery & assurance ---------- */
.assure { display: grid; gap: 2px; margin: 24px 0; border: 1px solid var(--line); border-radius: var(--r); overflow: hidden; }
.assure__item { display: flex; align-items: center; gap: 14px; padding: 15px 18px; background: var(--white); }
.assure__item + .assure__item { border-top: 1px solid var(--line); }
.assure__item i { font-size: 1.15rem; color: var(--gold-deep); width: 22px; text-align: center; flex-shrink: 0; }
.assure__item b { display: block; font-size: 0.9rem; color: var(--ink); font-weight: 600; line-height: 1.3; }
.assure__item span { font-size: 0.8rem; color: var(--muted); }
@keyframes pulse2 { 0%,100% { box-shadow: 0 0 0 3px rgba(224,86,63,0.18); } 50% { box-shadow: 0 0 0 6px rgba(224,86,63,0.04); } }

/* ---------- Why Choose (pillars) ---------- */
/* ---------- Is it right for you ---------- */
.fit-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; max-width: 940px; margin: 0 auto; align-items: start; }
.fit-col { background: var(--white); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 34px 32px; }
.fit-col--yes { border-color: rgba(30,158,90,0.35); }
.fit-col__head { display: flex; align-items: center; gap: 12px; font-family: var(--serif); font-weight: 800; font-size: 1.2rem; color: var(--ink); margin-bottom: 22px; }
.fit-col__mark { width: 30px; height: 30px; border-radius: 50%; display: grid; place-items: center; font-size: 0.85rem; flex-shrink: 0; }
.fit-col--yes .fit-col__mark { background: rgba(30,158,90,0.14); color: var(--green); }
.fit-col--no .fit-col__mark { background: var(--paper-2); color: var(--muted-2); }
.fit-list li { position: relative; padding-left: 30px; margin-bottom: 14px; color: var(--body); font-size: 0.98rem; line-height: 1.5; }
.fit-list li:last-child { margin-bottom: 0; }
.fit-list li::before { position: absolute; left: 0; top: 0; font-weight: 700; }
.fit-col--yes .fit-list li::before { content: "\2713"; color: var(--green); }
.fit-col--no .fit-list li::before { content: "\2013"; color: var(--muted-2); }
.fit-col__foot { margin-top: 22px; padding-top: 20px; border-top: 1px solid var(--line); font-size: 0.9rem; color: var(--muted); }
.fit-col__foot a { color: var(--gold-deep); font-weight: 600; border-bottom: 1px solid var(--gold); }
.fit-col__foot a:hover { color: var(--ink); }

/* ---------- Prominent Trustpilot ---------- */
.tp-section { text-align: center; }
.tp-section__head { margin-bottom: 46px; }
.tp-section .tp-logo { font-size: 1.35rem; margin-bottom: 18px; }
.tp-stars--lg { display: inline-flex; gap: 5px; margin: 6px 0 14px; }
.tp-stars--lg .s { width: 40px; height: 40px; border-radius: 5px; }
.tp-stars--lg .s svg { width: 26px; height: 26px; }
.tp-section__score { font-size: 1.5rem; font-weight: 800; color: var(--ink); }
.tp-section__score span { color: var(--muted); font-weight: 500; font-size: 1rem; }

/* ---------- Sticky CTA quantity ---------- */
.sticky-cta__qty { display: flex; align-items: center; border: 1.5px solid var(--line-2); border-radius: 100px; flex-shrink: 0; }
.sticky-cta__qty button { width: 40px; height: 46px; font-size: 1.15rem; color: var(--ink); }
.sticky-cta__qty span { min-width: 24px; text-align: center; font-weight: 700; font-size: 0.95rem; }

/* ---------- Reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.85s var(--ease), transform 0.85s var(--ease); }
.reveal--scale { transform: scale(0.94); }
.reveal--left { transform: translateX(-36px); }
.reveal--right { transform: translateX(36px); }
.reveal.is-in { opacity: 1; transform: none; }
.stagger > * { opacity: 0; transform: translateY(28px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.stagger.is-in > * { opacity: 1; transform: none; }
.stagger.is-in > *:nth-child(2) { transition-delay: 0.08s; }
.stagger.is-in > *:nth-child(3) { transition-delay: 0.16s; }
.stagger.is-in > *:nth-child(4) { transition-delay: 0.24s; }
.stagger.is-in > *:nth-child(5) { transition-delay: 0.32s; }
.stagger.is-in > *:nth-child(6) { transition-delay: 0.4s; }

/* ---------- Utilities ---------- */
.hide-sm { display: inline-flex; }
.show-sm { display: none !important; }
.center { text-align: center; }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1040px) {
  .fgrid, .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .demo { flex-basis: calc((100% - 2 * 22px) / 2.4); }
  .box-grid { grid-template-columns: repeat(2, 1fr); }
  .featured-grid { grid-template-columns: 1fr 1fr; }
  .product-grid { grid-template-columns: 1fr 1fr; }
  .ugc-grid { grid-template-columns: repeat(3, 1fr); }
  .footer__inner { grid-template-columns: 1fr 1fr; gap: 34px; }
  .footer__brand { grid-column: 1 / -1; }
}

@media (max-width: 880px) {
  .nav { display: none; }
  .menu-toggle { display: grid; }
  .header .search { display: none; }
  .header .account-btn { display: none; }
  .sticky-cta { display: flex; }
  body[data-page="product"] .toast { bottom: 96px; }
  .header__actions .hide-sm { display: none; }
  .product__grid { grid-template-columns: 1fr; }
  .gallery { position: static; }
  .split { grid-template-columns: 1fr; }
  .split__media { order: -1; }
  .checkout { grid-template-columns: 1fr; }
  .checkout__summary { order: -1; border-left: none; border-bottom: 1px solid var(--line); }
  .checkout__form { padding: 32px 24px; }
  .quickview { grid-template-columns: 1fr; }
  .quickview__media { border-radius: var(--r-xl) var(--r-xl) 0 0; padding: 26px; }
  .quickview__info { padding: 28px 24px; }
  .trustbar__inner { grid-template-columns: 1fr 1fr; gap: 22px 16px; }
  .pcard--hero { flex-direction: column; }
  .pcard--hero .pcard__media { min-height: 280px; }
  .vs-bar__name { font-size: 0.84rem; }
}

@media (max-width: 620px) {
  :root { --header-h: 62px; }
  .fgrid, .reviews-grid, .featured-grid { grid-template-columns: 1fr; }
  /* Keep 2 products per row on mobile, compact, so the list is half as tall */
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .product-grid .pcard__media { aspect-ratio: 1 / 1; }
  .product-grid .pcard__media img { padding: 8%; }
  .product-grid .pcard__body { padding: 12px 13px 14px; }
  .product-grid .pcard__cat { font-size: 0.6rem; letter-spacing: 0.06em; margin-bottom: 4px; }
  .product-grid .pcard__name { font-size: 0.9rem; }
  .product-grid .pcard__price { margin: 7px 0 10px; }
  .product-grid .pcard__price .now { font-size: 1.02rem; }
  .product-grid .pcard__price .was { font-size: 0.78rem; }
  .product-grid .pcard__view { font-size: 0.76rem; }
  .product-grid .pcard__tag { top: 9px; left: 9px; font-size: 0.58rem; padding: 4px 9px; }
  .demo { flex-basis: calc((100% - 22px) / 1.25); }
  .fit-grid { grid-template-columns: 1fr; }
  .pcard--hero .pcard__body { flex-direction: column; align-items: flex-start; }
  .ugc-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery__thumbs { grid-template-columns: repeat(5, 1fr); }
  .perks { grid-template-columns: 1fr; }
  .quickspecs { grid-template-columns: repeat(2, 1fr); }
  .hero { min-height: 90vh; }
  .hero__badges { gap: 18px; }
  .spec-row { grid-template-columns: 1fr; gap: 4px; padding: 16px 20px; }
  .cgrid { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr; }
  .split__stats { gap: 26px; }
  .newsletter__form { flex-direction: column; }
  .newsletter__form .btn { width: 100%; }
  .show-sm { display: flex !important; }
  .mini-qty button { width: 40px; height: 40px; }
  .cart-item__remove { width: 40px; height: 40px; }
  .sticky-cta { gap: 10px; padding-left: 14px; padding-right: 14px; }
  .sticky-cta__info .was { display: none; }
  .sticky-cta__qty button { width: 36px; }
  .sticky-cta .btn { --px: 16px; }
  .nav__link, .footer__col a { padding-top: 10px; padding-bottom: 10px; }
  .price-now { font-size: 2.1rem; }
  .buybar { flex-wrap: wrap; }
  .qty { width: 100%; justify-content: space-between; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
  html { scroll-behavior: auto; }
}
