/* ============================================================
   CLOUVOU — Home page
   Faithful static port of the Lovable React source
   (src/components/site/*). Design system from src/styles.css.
   Fonts: Archivo (display) + Manrope (body).
   ============================================================ */

:root {
  --radius: 0.75rem;

  --background: oklch(1 0 0);
  --foreground: oklch(0.18 0.008 60);
  --card: oklch(1 0 0);

  --brand: oklch(0.34 0.108 22);            /* burgundy logo frame */
  --brand-foreground: oklch(0.99 0.004 80);
  --cta: oklch(0.79 0.155 68);              /* amber CTA */
  --cta-foreground: oklch(0.2 0.03 60);
  --trust: oklch(0.66 0.145 165);           /* trustpilot green */
  --trust-foreground: oklch(0.99 0 0);

  --secondary: oklch(0.965 0.005 70);
  --muted: oklch(0.968 0.005 70);
  --muted-foreground: oklch(0.5 0.012 60);
  --accent: oklch(0.955 0.012 70);

  --sand: oklch(0.973 0.008 80);
  --ink: oklch(0.14 0.008 60);
  --border: oklch(0.912 0.006 70);

  --font-display: "Archivo", ui-sans-serif, system-ui, sans-serif;
  --font-sans: "Manrope", ui-sans-serif, system-ui, sans-serif;

  --shadow-soft: 0 1px 2px oklch(0.2 0.02 30 / 0.04), 0 8px 24px oklch(0.2 0.02 30 / 0.06);
  --shadow-lift: 0 2px 4px oklch(0.2 0.02 30 / 0.05), 0 18px 44px oklch(0.2 0.02 30 / 0.1);

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

* { box-sizing: border-box; border-color: var(--border); }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--background);
  color: var(--foreground);
  font-family: var(--font-sans);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { font-family: var(--font-display); letter-spacing: -0.02em; margin: 0; line-height: 1.1; }
p { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }
:focus-visible { outline: 3px solid var(--brand); outline-offset: 2px; border-radius: 4px; }

/* Layout helpers */
.container-page { margin-inline: auto; width: 100%; max-width: 80rem; padding-inline: 1.25rem; }
@media (min-width: 1024px) { .container-page { padding-inline: 2rem; } }

.eyebrow { font-size: 0.8rem; font-weight: 700; letter-spacing: 0.02em; text-transform: none; color: var(--brand); }
.eyebrow--cta { color: var(--cta); }

.h2 { font-size: clamp(1.875rem, 4.5vw, 3rem); font-weight: 800; }
.h2--sm { font-size: clamp(1.875rem, 4vw, 2.25rem); }
.lead { margin-top: 1rem; font-size: 1rem; line-height: 1.7; color: var(--muted-foreground); }
.section { padding-block: clamp(3.5rem, 8vw, 7rem); }

/* Buttons */
.btn-cta {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  min-height: 44px; border-radius: var(--radius-sm, 8px); border: 2px solid transparent;
  background: #5A1F22; color: #fff;
  padding: .9rem 1.8rem; font-family: var(--font-alt); font-weight: 700; font-size: 1rem;
  box-shadow: var(--shadow-sm); transition: transform .18s var(--ease), background-color .18s var(--ease), box-shadow .18s var(--ease); will-change: transform;
}
.btn-cta:hover { background: #71272b; transform: translateY(-2px); box-shadow: var(--shadow-red); }
.btn-outline-light {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  min-height: 44px; border-radius: var(--radius-sm, 8px); border: 2px solid oklch(1 0 0 / .45); color: #fff;
  padding: .9rem 1.8rem; font-family: var(--font-alt); font-weight: 700; font-size: 1rem;
  transition: background-color .18s var(--ease), border-color .18s var(--ease);
}
.btn-outline-light:hover { background: oklch(1 0 0 / .12); border-color: #fff; }

/* ============================================================
   Header
   ============================================================ */
.header { position: sticky; top: 0; z-index: 50; width: 100%; }
.promo { background: var(--ink); color: var(--background); }
.promo__inner { display: flex; height: 36px; align-items: center; justify-content: center; text-align: center; font-size: 13px; letter-spacing: .02em; }
.promo b { font-weight: 700; }
.promo .code { font-weight: 700; text-decoration: underline; text-underline-offset: 2px; }

.header__bar { border-bottom: 1px solid var(--border); background: oklch(1 0 0 / .95); backdrop-filter: blur(8px); }
.header__row { display: flex; height: 68px; align-items: center; justify-content: space-between; gap: 1.5rem; }
.header__logo img { height: 32px; width: auto; }
@media (min-width: 768px) { .header__logo img { height: 36px; } }
.nav { display: none; align-items: center; gap: 2rem; }
.nav a { font-size: 13px; font-weight: 700; text-transform: none; letter-spacing: .08em; color: oklch(0.18 0.008 60 / .8); transition: color .15s var(--ease); }
.nav a:hover { color: var(--brand); }
.header__actions { display: flex; align-items: center; gap: .75rem; }
.header__cta { display: none; border-radius: 999px; background: var(--cta); color: var(--cta-foreground); padding: .625rem 1.25rem; font-size: .875rem; font-weight: 700; box-shadow: var(--shadow-soft); transition: transform .18s var(--ease); }
.header__cta:hover { transform: translateY(-2px); }
.nav-toggle { display: inline-flex; height: 40px; width: 40px; align-items: center; justify-content: center; border-radius: 999px; border: 1px solid var(--border); background: transparent; cursor: pointer; }
.nav-toggle svg { width: 20px; height: 20px; }
.nav-toggle .icon-x { display: none; }
.nav-toggle[aria-expanded="true"] .icon-menu { display: none; }
.nav-toggle[aria-expanded="true"] .icon-x { display: block; }
.mobile-nav { display: none; border-top: 1px solid var(--border); background: var(--background); }
.mobile-nav.is-open { display: block; }
.mobile-nav__inner { display: flex; flex-direction: column; padding-block: .5rem; }
.mobile-nav a { padding-block: .875rem; font-size: .875rem; font-weight: 700; text-transform: none; letter-spacing: .08em; border-bottom: 1px solid oklch(0.912 0.006 70 / .6); }
.mobile-nav a:last-child { border-bottom: 0; }
@media (min-width: 768px) { .header__cta { display: inline-flex; } }
@media (min-width: 1024px) { .nav { display: flex; } .nav-toggle { display: none; } .mobile-nav { display: none !important; } }

/* ============================================================
   Hero
   ============================================================ */
.hero { position: relative; }
.hero__stage { position: relative; width: 100%; min-height: 560px; overflow: hidden; }
@media (min-width: 768px) { .hero__stage { min-height: 660px; } }
@media (min-width: 1024px) { .hero__stage { min-height: 620px; } }
.hero__img { position: absolute; inset: 0; height: 100%; width: 100%; object-fit: cover; }
@media (min-width: 1024px) { .hero__img { object-position: center top; } }
.hero__overlay { position: absolute; inset: 0; background: linear-gradient(to right, oklch(0.14 0.008 60 / .8), oklch(0.14 0.008 60 / .45) 45%, transparent); }
.hero__content { position: relative; display: flex; flex-direction: column; justify-content: center; min-height: 560px; padding-block: 5rem; }
@media (min-width: 768px) { .hero__content { min-height: 660px; } }
@media (min-width: 1024px) { .hero__content { min-height: 620px; padding-block: 3.25rem; } }
.hero__copy { max-width: 36rem; color: var(--background); animation: rise .7s var(--ease) both; }
.hero__copy h1 { margin-top: 1.25rem; font-size: 2.75rem; font-weight: 800; line-height: .98; }
@media (min-width: 768px) { .hero__copy h1 { font-size: 3.75rem; } }
@media (min-width: 1024px) { .hero__copy h1 { font-size: 4.5rem; } }
.hero__lead { margin-top: 1.5rem; max-width: 28rem; font-size: 1rem; line-height: 1.7; color: oklch(1 0 0 / .85); }
@media (min-width: 768px) { .hero__lead { font-size: 1.125rem; } }
.hero__ctas { margin-top: 2rem; display: flex; flex-wrap: wrap; align-items: center; gap: .75rem; }
.hero__badges { margin-top: 3rem; display: flex; align-items: flex-end; gap: .75rem; }
.hero__badges img { height: 80px; width: auto; border-radius: 3px; }
@media (min-width: 768px) { .hero__badges img { height: 96px; } }
@media (min-width: 1024px) { .hero__badges { position: absolute; bottom: 2.5rem; right: 2rem; margin-top: 0; } }

.hero__trust { background: var(--background); }
.hero__trust-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem 1.5rem; padding-block: 1.25rem; }
@media (min-width: 768px) { .hero__trust-grid { grid-template-columns: repeat(4, 1fr); } }
.hero__trust-item { display: flex; align-items: center; gap: .625rem; }
.hero__trust-item svg { width: 18px; height: 18px; flex: none; color: var(--brand); }
.hero__trust-item span { font-size: 13px; font-weight: 600; line-height: 1.25; color: oklch(0.18 0.008 60 / .8); }

/* ============================================================
   Products
   ============================================================ */
.prod-head { max-width: 42rem; }
.prod-head h2 { margin-top: .75rem; }
.products { margin-top: 3rem; display: grid; gap: 1.5rem; grid-template-columns: 1fr; }
@media (min-width: 640px) { .products { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .products { grid-template-columns: repeat(3, 1fr); } }
.pcard { overflow: hidden; border-radius: 1rem; border: 1px solid var(--border); background: var(--card); box-shadow: var(--shadow-soft); transition: box-shadow .3s var(--ease); }
.pcard:hover { box-shadow: var(--shadow-lift); }
.pcard__media { position: relative; aspect-ratio: 4/3; overflow: hidden; background: var(--sand); }
.pcard__media img { height: 100%; width: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.pcard:hover .pcard__media img { transform: scale(1.04); }
.pcard__off { position: absolute; left: 1rem; top: 1rem; border-radius: 999px; background: var(--brand); color: var(--brand-foreground); padding: .25rem .75rem; font-size: 11px; font-weight: 700; letter-spacing: .03em; }
.pcard__body { padding: 1.5rem; }
.pcard__rating { display: flex; align-items: center; gap: .375rem; }
.pcard__rating .stars { color: var(--cta); font-size: .8rem; letter-spacing: .04em; }
.pcard__rating span { font-size: .75rem; font-weight: 600; color: var(--muted-foreground); }
.pcard__body h3 { margin-top: .75rem; font-size: 1.25rem; font-weight: 700; }
.pcard__tag { margin-top: .375rem; min-height: 42px; font-size: .875rem; line-height: 1.6; color: var(--muted-foreground); }
.pcard__price { margin-top: 1rem; display: flex; align-items: baseline; gap: .5rem; }
.pcard__price .von { font-size: .75rem; color: var(--muted-foreground); }
.pcard__price .now { font-size: 1.5rem; font-weight: 800; letter-spacing: -.02em; }
.pcard__price .was { font-size: .875rem; color: var(--muted-foreground); text-decoration: line-through; }

/* ============================================================
   Categories
   ============================================================ */
.cats { margin-top: 3rem; display: grid; gap: 1.5rem; grid-template-columns: 1fr; }
@media (min-width: 768px) { .cats { grid-template-columns: repeat(3, 1fr); } }
.cat { display: block; position: relative; overflow: hidden; border-radius: 1rem; background: var(--card); box-shadow: var(--shadow-soft); cursor: pointer; }
.cat:hover { box-shadow: var(--shadow-lift); }
.cat__img { aspect-ratio: 4/5; overflow: hidden; }
.cat__img img { height: 100%; width: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.cat:hover .cat__img img { transform: scale(1.05); }
.cat__body { position: absolute; inset-inline: 0; bottom: 0; padding: 1.5rem; padding-top: 4rem; background: linear-gradient(to top, oklch(0.14 0.008 60 / .85), transparent); }
.cat__body h3 { font-size: 1.25rem; font-weight: 700; color: var(--background); }
.cat__soon { margin-top: .5rem; display: inline-flex; align-items: center; gap: .375rem; font-size: .875rem; font-weight: 600; color: var(--cta); }
.cat__soon svg { width: 1rem; height: 1rem; }

/* ============================================================
   Why us + compare
   ============================================================ */
.reasons { margin-top: 3rem; display: grid; gap: 1px; overflow: hidden; border-radius: 1rem; border: 1px solid var(--border); background: var(--border); grid-template-columns: 1fr; }
@media (min-width: 768px) { .reasons { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .reasons { grid-template-columns: repeat(3, 1fr); } }
.reason { background: var(--card); padding: 1.75rem; }
.reason__icon { display: inline-flex; height: 44px; width: 44px; align-items: center; justify-content: center; border-radius: 12px; background: oklch(0.34 0.108 22 / .08); color: var(--brand); }
.reason__icon svg { width: 20px; height: 20px; }
.reason h3 { margin-top: 1.25rem; font-size: 1.125rem; font-weight: 700; }
.reason p { margin-top: .5rem; font-size: .875rem; line-height: 1.6; color: var(--muted-foreground); }

.compare-wrap { margin-top: 2rem; }
.compare { overflow: hidden; border-radius: 1rem; border: 1px solid var(--border); box-shadow: var(--shadow-soft); }
.compare__row { display: grid; grid-template-columns: 1.25fr 1fr 1fr; align-items: stretch; }
.compare__row + .compare__row { border-top: 1px solid var(--border); }
.compare__row > div { display: flex; align-items: center; gap: .4rem; padding: .7rem .55rem; font-size: .76rem; line-height: 1.3; }
@media (min-width: 600px) { .compare__row > div { padding: 1rem 1.25rem; font-size: .9rem; gap: .55rem; } }
/* CLOUVOU column gets a tinted spotlight down the whole table */
.compare__row > .brand, .compare__row > .val-brand { background: oklch(0.34 0.108 22 / .06); }
.compare__head { background: var(--ink); color: var(--background); }
.compare__head > div { font-weight: 700; }
.compare__head .lbl { font-size: .78rem; font-weight: 700; letter-spacing: .01em; text-transform: none; color: #fff; }
.compare__head .brand { background: #5A1F22; color: #fff; justify-content: center; font-weight: 800; letter-spacing: .02em; }
.compare__head .oth { justify-content: center; color: #fff; font-weight: 600; }
.compare .feat { font-weight: 600; color: var(--ink); }
.compare .val-brand { font-weight: 700; color: var(--brand); }
.compare .val-oth { color: var(--muted-foreground); }
.compare .val-brand::before, .compare .val-oth::before {
  content: ''; flex: none; width: 15px; height: 15px; background: no-repeat center / contain;
}
@media (min-width: 600px) { .compare .val-brand::before, .compare .val-oth::before { width: 17px; height: 17px; } }
.compare .val-brand::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%235A1F22' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E");
}
.compare .val-oth::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23b1a9a4' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M18 6 6 18M6 6l12 12'/%3E%3C/svg%3E");
}

/* ============================================================
   Videos (dark)
   ============================================================ */
.videos { background: var(--ink); color: var(--background); }
.videos .lead { color: oklch(1 0 0 / .7); }
.reels { margin-top: 2.5rem; display: grid; grid-template-columns: 1fr; gap: 1.5rem; max-width: 24rem; margin-inline: auto; }
@media (min-width: 560px) { .reels { grid-template-columns: repeat(2, 1fr); max-width: none; gap: 1.5rem; } }
@media (min-width: 1024px) { .reels { grid-template-columns: repeat(4, 1fr); } }
.reel { margin: 0; overflow: hidden; border-radius: 1.1rem; border: 1px solid oklch(1 0 0 / .12); background: oklch(1 0 0 / .05); box-shadow: 0 12px 30px oklch(0 0 0 / .3); }
.reel__frame { aspect-ratio: 9/16; width: 100%; }
.reel__frame iframe { height: 100%; width: 100%; border: 0; display: block; }
.reel figcaption { padding: .85rem 1.1rem; font-size: 14px; font-weight: 600; color: oklch(1 0 0 / .85); }

/* ============================================================
   Reviews
   ============================================================ */
.rev-head { display: flex; flex-direction: column; gap: 1.5rem; }
@media (min-width: 768px) { .rev-head { flex-direction: row; align-items: flex-end; justify-content: space-between; } }
.rev-head__text { max-width: 42rem; }
.rev-head__text h2 { margin-top: .75rem; }
.rev-score { border-radius: 12px; border: 1px solid var(--border); background: var(--card); padding: 1.25rem 1.5rem; box-shadow: var(--shadow-soft); }
.rev-score__top { display: flex; align-items: center; gap: .75rem; }
.rev-score__top span { font-size: 1.125rem; font-weight: 800; }
.rev-score p { margin-top: .5rem; font-size: .875rem; color: var(--muted-foreground); }
.rev-score p b { color: var(--foreground); }

/* Trustpilot-style green square stars */
.tstars { display: inline-flex; gap: .125rem; }
.tstars span { display: inline-flex; align-items: center; justify-content: center; border-radius: 3px; background: var(--trust); color: var(--trust-foreground); }
.tstars--md span { height: 28px; width: 28px; font-size: 16px; }
.tstars--sm span { height: 20px; width: 20px; font-size: 12px; }
.tstars span.empty { background: oklch(0.5 0.012 60 / .25); }

.reviews { margin-top: 3rem; display: grid; gap: 1.25rem; grid-template-columns: 1fr; }
@media (min-width: 768px) { .reviews { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .reviews { grid-template-columns: repeat(3, 1fr); } }
.review { display: flex; flex-direction: column; border-radius: .75rem; border: 1px solid var(--border); background: var(--card); padding: 1.5rem; box-shadow: var(--shadow-soft); }
.review__top { display: flex; align-items: center; justify-content: space-between; }
.review__date { font-size: .75rem; color: var(--muted-foreground); }
.review h3 { margin-top: 1rem; font-size: 1rem; font-weight: 800; }
.review__body { margin-top: .5rem; flex: 1; font-size: .875rem; line-height: 1.6; color: var(--muted-foreground); }
.review__foot { margin-top: 1.25rem; border-top: 1px solid var(--border); padding-top: 1rem; }
.review__id { display: flex; align-items: center; gap: .5rem; }
.review__avatar { display: flex; height: 32px; width: 32px; align-items: center; justify-content: center; border-radius: 999px; background: var(--brand); color: var(--brand-foreground); font-size: .75rem; font-weight: 700; }
.review__name { font-size: .875rem; font-weight: 700; line-height: 1.3; }
.review__name .place { font-weight: 400; color: var(--muted-foreground); }
.review__prod { font-size: .75rem; color: var(--muted-foreground); }
.review__verified { margin-top: .75rem; display: inline-flex; align-items: center; gap: .375rem; font-size: .75rem; font-weight: 600; color: var(--trust); }
.review__verified svg { width: 14px; height: 14px; }

.store-badges { margin-top: 2.5rem; display: grid; gap: 1rem; grid-template-columns: 1fr; }
@media (min-width: 640px) { .store-badges { grid-template-columns: repeat(2, 1fr); } }
.store-badge { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: .5rem 1rem; border-radius: .75rem; border: 1px solid var(--border); background: var(--card); padding: 1.25rem 1.5rem; }
.store-badge > * { min-width: 0; }
.store-badge__l { display: flex; align-items: center; gap: .75rem; min-width: 0; }
.store-badge__l span { font-size: .875rem; font-weight: 800; }
.store-badge p { font-size: .875rem; color: var(--muted-foreground); }
.store-badge p b { color: var(--foreground); }

/* ============================================================
   Guarantee
   ============================================================ */
.guarantee__card { display: grid; align-items: center; overflow: hidden; border-radius: 1.5rem; border: 1px solid var(--border); background: var(--card); box-shadow: var(--shadow-soft); grid-template-columns: 1fr; }
@media (min-width: 1024px) { .guarantee__card { grid-template-columns: repeat(2, 1fr); } }
.guarantee__body { order: 2; padding: 2rem; }
@media (min-width: 768px) { .guarantee__body { padding: 3rem; } }
@media (min-width: 1024px) { .guarantee__body { order: 1; } }
.guarantee__pill { display: inline-flex; align-items: center; gap: .5rem; border-radius: 999px; background: oklch(0.34 0.108 22 / .08); color: var(--brand); padding: .375rem 1rem; font-size: .75rem; font-weight: 700; text-transform: none; letter-spacing: 0; }
.guarantee__pill svg { width: 1rem; height: 1rem; }
.guarantee__body h2 { margin-top: 1.25rem; font-size: clamp(1.875rem, 4vw, 2.25rem); font-weight: 800; line-height: 1.15; }
.guarantee__body p { margin-top: 1.25rem; font-size: 1rem; line-height: 1.7; color: var(--muted-foreground); }
.guarantee__points { margin-top: 2rem; display: grid; gap: .75rem; grid-template-columns: 1fr; }
@media (min-width: 640px) { .guarantee__points { grid-template-columns: repeat(2, 1fr); } }
.guarantee__points div { display: flex; align-items: center; gap: .625rem; }
.guarantee__points svg { width: 18px; height: 18px; flex: none; color: var(--brand); }
.guarantee__points span { font-size: .875rem; font-weight: 600; }
.guarantee__media { order: 1; height: 16rem; width: 100%; display: flex; align-items: center; justify-content: center; background: #f7edee; padding: 2rem; }
@media (min-width: 1024px) { .guarantee__media { order: 2; height: 100%; min-height: 520px; } }
.guarantee__media img { max-width: 100%; max-height: 100%; width: auto; height: auto; object-fit: contain; }

/* ============================================================
   Community
   ============================================================ */
.community { padding-bottom: clamp(3.5rem, 8vw, 7rem); }
.community__grid { display: grid; align-items: center; gap: 2.5rem; grid-template-columns: 1fr; }
@media (min-width: 1024px) { .community__grid { grid-template-columns: repeat(2, 1fr); } }
.community h2 { margin-top: .75rem; font-size: clamp(1.875rem, 4vw, 2.25rem); font-weight: 800; line-height: 1.15; }
.community__num { margin-top: 1.5rem; font-size: clamp(3rem, 9vw, 3.75rem); font-weight: 800; letter-spacing: -.02em; color: var(--brand); }
.community p.lead { max-width: 32rem; }
.community__collage { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
.community__collage img { width: 100%; border-radius: 1rem; object-fit: cover; box-shadow: var(--shadow-soft); }
.community__collage img:first-child { grid-column: span 2; aspect-ratio: 16/9; }
.community__collage img:not(:first-child) { aspect-ratio: 1/1; }

/* ============================================================
   FAQ
   ============================================================ */
.faq-grid { display: grid; gap: 3rem; grid-template-columns: 1fr; }
@media (min-width: 1024px) { .faq-grid { grid-template-columns: 0.8fr 1.2fr; } }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1rem; background: none; border: 0; cursor: pointer; text-align: left; padding-block: 1rem; font-family: var(--font-display); font-size: 1rem; font-weight: 700; color: var(--foreground); }
.faq-chevron { flex: none; width: 1rem; height: 1rem; transition: transform .2s var(--ease); color: var(--muted-foreground); }
.faq-item.is-open .faq-chevron { transform: rotate(180deg); }
.faq-a { overflow: hidden; max-height: 0; transition: max-height .3s var(--ease); }
.faq-a p { padding-bottom: 1rem; font-size: .875rem; line-height: 1.6; color: var(--muted-foreground); }
.faq-a a { color: var(--brand); }

/* ============================================================
   Footer
   ============================================================ */
.footer { background: var(--ink); color: var(--background); }
.footer__inner { padding-block: 4rem; }
@media (min-width: 768px) { .footer__inner { padding-block: 5rem; } }
.footer__grid { display: grid; gap: 3rem; grid-template-columns: 1fr; }
@media (min-width: 768px) { .footer__grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; } }
.footer__logo { height: 36px; width: auto; filter: brightness(0) invert(1); }
.footer__brand p { margin-top: 1.25rem; max-width: 20rem; font-size: .875rem; line-height: 1.6; color: oklch(1 0 0 / .65); }
.footer h3 { font-size: .75rem; font-weight: 700; text-transform: none; letter-spacing: .16em; color: oklch(1 0 0 / .5); }
.footer ul { margin-top: 1rem; display: grid; gap: .625rem; }
.footer li { font-size: .875rem; color: oklch(1 0 0 / .8); }
.footer__mail { margin-top: 1rem; display: inline-flex; align-items: center; gap: .5rem; font-size: .875rem; color: oklch(1 0 0 / .8); transition: color .15s var(--ease); }
.footer__mail:hover { color: var(--cta); }
.footer__mail svg { width: 1rem; height: 1rem; }
.footer__bottom { margin-top: 3.5rem; border-top: 1px solid oklch(1 0 0 / .12); padding-top: 1.5rem; }
.footer__bottom p { font-size: .75rem; color: oklch(1 0 0 / .5); }

/* ============================================================
   Motion
   ============================================================ */
@keyframes rise { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }

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

/* ============================ SHOP / COLLECTIONS ============================ */
.shop-tabs { margin-top: 2rem; display: flex; flex-wrap: wrap; gap: .625rem; }
.shop-tab {
  appearance: none; cursor: pointer; border: 1px solid var(--border);
  background: var(--card); color: var(--ink);
  font-family: var(--font-body, inherit); font-size: .875rem; font-weight: 700;
  padding: .55rem 1.2rem; border-radius: 999px;
  transition: transform .18s var(--ease), background .18s var(--ease), color .18s var(--ease), border-color .18s var(--ease);
}
.shop-tab:hover { transform: translateY(-1px); border-color: var(--brand); }
.shop-tab.is-active { background: var(--brand); color: var(--brand-foreground); border-color: var(--brand); }

.shop-grid {
  margin-top: 2.5rem; display: grid; gap: 1.5rem;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
}
.scard {
  display: flex; flex-direction: column; overflow: hidden;
  border-radius: 16px; border: 1px solid var(--border); background: var(--card);
  box-shadow: var(--shadow-soft); text-decoration: none; color: inherit;
  transition: box-shadow .3s var(--ease), transform .3s var(--ease), border-color .3s var(--ease);
}
.scard:hover { box-shadow: var(--shadow-lift); transform: translateY(-4px); border-color: color-mix(in oklab, var(--brand) 35%, var(--border)); }
.scard__media { position: relative; aspect-ratio: 4/5; overflow: hidden; background: var(--sand); }
.scard__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.scard:hover .scard__media img { transform: scale(1.05); }
.scard__off {
  position: absolute; left: .875rem; top: .875rem; border-radius: 999px;
  background: #5A1F22; color: #fff;
  padding: .3rem .75rem; font-size: 12px; font-weight: 800; letter-spacing: .01em;
  box-shadow: 0 4px 12px oklch(0.2 0.05 25 / .25);
}
.scard__body { display: flex; flex-direction: column; gap: .45rem; padding: 1.15rem 1.2rem 1.3rem; flex: 1; }
.scard__cat { font-size: .72rem; font-weight: 700; letter-spacing: .01em; text-transform: none; color: var(--muted-foreground); }
.scard__body h3 { font-size: 1.2rem; font-weight: 800; letter-spacing: -.01em; color: var(--ink); }
.scard__rating { display: flex; align-items: center; gap: .4rem; }
.scard__rating .stars { color: var(--cta); font-size: .82rem; letter-spacing: .04em; }
.scard__rating span { font-size: .74rem; font-weight: 600; color: var(--muted-foreground); }
.scard__price { margin-top: .3rem; display: flex; align-items: baseline; gap: .55rem; }
.scard__price .now { font-size: 1.45rem; font-weight: 800; letter-spacing: -.02em; color: #5A1F22; }
.scard__price .was { font-size: .88rem; color: var(--muted-foreground); text-decoration: line-through; }
.scard__btn {
  margin-top: 1rem; width: 100%; justify-content: center;
  display: inline-flex; align-items: center; gap: .45rem;
  min-height: 44px; padding: .75rem 1rem; border-radius: var(--radius-sm, 8px); border: 2px solid transparent;
  background: #5A1F22; color: #fff;
  font-family: var(--font-alt); font-size: .95rem; font-weight: 700;
  transition: background-color .2s var(--ease);
}
.scard:hover .scard__btn { background: #71272b; }
.scard__btn svg { width: 16px; height: 16px; transition: transform .18s var(--ease); }
.scard:hover .scard__btn svg { transform: translateX(3px); }
@media (prefers-reduced-motion: reduce) {
  .scard, .scard__media img, .scard__btn svg, .shop-tab { transition: none; }
  .scard:hover { transform: none; }
  .scard:hover .scard__media img { transform: none; }
}

/* ============================================================
   SHARED SITE CHROME — identical to css/styles.css so the
   home page, product pages and policy pages use ONE header,
   promo bar and footer. Tokens below back the copied rules.
   ============================================================ */
:root {
  --navy-dark: #171015;
  --red: #5a1f22;
  --red-bright: #71272b;
  --gold: #e8a33e;
  --white: #ffffff;
  --line: #e6e8ec;
  --ink-hex: #14171f;
  --ink-soft: #4a4e58;
  --bg-soft: #f6f7f9;
  --font-alt: "Manrope", ui-sans-serif, system-ui, sans-serif;
  --space-1: 0.25rem; --space-2: 0.5rem; --space-3: 0.75rem; --space-4: 1rem;
  --space-6: 1.5rem; --space-8: 2rem; --space-12: 3rem; --space-16: 4rem;
  --radius-sm: 8px;
  --text-xs: 0.75rem; --text-sm: 0.875rem; --text-base: 1rem;
  --shadow-sm: 0 1px 3px rgba(20,23,31,0.08);
  --shadow-red: 0 14px 32px rgba(90,31,34,0.28);
  --ease-snap: cubic-bezier(0.16, 1, 0.3, 1);
}

/* Buttons used in chrome */
.btn {
  position: relative; display: inline-flex; align-items: center; justify-content: center;
  gap: var(--space-2); padding: 0.9rem 1.8rem; min-height: 44px; border-radius: var(--radius-sm);
  font-family: var(--font-alt); font-weight: 700; font-size: var(--text-base); letter-spacing: 0;
  border: 2px solid transparent;
  transition: transform 220ms var(--ease-snap), box-shadow 220ms var(--ease-snap), background-color 220ms var(--ease-snap), border-color 220ms var(--ease-snap);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn:focus-visible { outline: 3px solid var(--gold); outline-offset: 2px; }
.btn--red { background: var(--red); color: var(--white); box-shadow: var(--shadow-sm); }
.btn--red:hover { background: var(--red-bright); box-shadow: var(--shadow-red); }
.btn--ghost { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.4); color: var(--white); }
.btn--ghost:hover { background: rgba(255,255,255,0.18); border-color: var(--white); }

/* Promo bar */
.promo-bar { background: var(--navy-dark); color: var(--white); font-family: var(--font-alt); font-weight: 600; font-size: var(--text-xs); letter-spacing: 0.03em; }
.promo-bar__inner { display: flex; gap: var(--space-6); justify-content: center; flex-wrap: wrap; padding-block: var(--space-2); }
.promo-bar__inner span { display: inline-flex; align-items: center; gap: 6px; }
.promo-bar strong { color: var(--white); }
.icon { width: 1em; height: 1em; flex-shrink: 0; }
@media (max-width: 640px) {
  .promo-bar__inner span:nth-child(2),
  .promo-bar__inner span:nth-child(3) { display: none; }
}

/* Header */
.site-header { position: sticky; top: 0; z-index: 100; background: rgba(255,255,255,0.92); backdrop-filter: blur(10px); border-bottom: 1px solid var(--line); }
.site-header__inner { display: flex; align-items: center; justify-content: space-between; gap: var(--space-6); padding-block: var(--space-3); }
.brand { display: flex; align-items: center; gap: var(--space-3); }
.brand img { height: 40px; width: auto; }
.main-nav { display: none; }
.main-nav ul { display: flex; gap: var(--space-6); }
.main-nav a { font-family: var(--font-alt); font-weight: 600; font-size: var(--text-base); letter-spacing: 0; color: var(--ink-soft); padding-block: var(--space-2); border-bottom: 2px solid transparent; transition: border-color 180ms var(--ease-snap), color 180ms var(--ease-snap); }
.main-nav a:hover, .main-nav a.is-active { border-color: var(--gold); color: var(--gold); }
.header-actions { display: flex; align-items: center; gap: var(--space-3); }
.header-actions .btn { display: none; padding: 0.7rem 1.4rem; font-size: var(--text-sm); }
.nav-toggle { display: inline-flex; align-items: center; justify-content: center; width: 44px; height: 44px; border-radius: var(--radius-sm); border: 1px solid var(--line); background: var(--white); cursor: pointer; }
.nav-toggle span, .nav-toggle::before, .nav-toggle::after { content: ''; display: block; width: 20px; height: 2px; background: var(--ink-hex); position: relative; transition: transform 220ms var(--ease-snap), opacity 220ms var(--ease-snap); }
.nav-toggle::before { position: absolute; transform: translateY(-6px); }
.nav-toggle::after { position: absolute; transform: translateY(6px); }
.nav-toggle[aria-expanded="true"] span { opacity: 0; }
.nav-toggle[aria-expanded="true"]::before { transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"]::after { transform: rotate(-45deg); }
.mobile-nav { display: none; flex-direction: column; background: var(--white); border-bottom: 1px solid var(--line); padding: var(--space-4); gap: var(--space-1); }
.mobile-nav.is-open { display: flex; }
.mobile-nav a { padding: var(--space-3); font-family: var(--font-alt); font-weight: 600; font-size: var(--text-base); border-radius: var(--radius-sm); color: var(--ink-hex); }
.mobile-nav a:hover { background: var(--bg-soft); color: var(--gold); }
.mobile-nav .btn { margin-top: var(--space-2); color: var(--white); }
.mobile-nav .btn--red, .mobile-nav .btn--red:hover { color: var(--white); background: var(--red); }
.mobile-nav .btn--red:hover { background: var(--red-bright); }
@media (min-width: 960px) {
  .main-nav { display: block; }
  .header-actions .btn { display: inline-flex; }
  .nav-toggle { display: none; }
  .mobile-nav { display: none !important; }
}

/* Footer */
.site-footer { background: var(--navy-dark); color: rgba(255,255,255,0.75); padding-block: var(--space-16) var(--space-8); }
.footer-grid { display: grid; gap: var(--space-8); grid-template-columns: 1fr; }
@media (min-width: 768px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; } }
.footer-brand img { height: 40px; margin-bottom: var(--space-4); }
.footer-brand p { font-size: var(--text-sm); max-width: 34ch; }
.footer-col h4 { display: flex; align-items: center; gap: var(--space-2); font-family: var(--font-alt); font-weight: 700; color: var(--white); margin-bottom: var(--space-3); font-size: var(--text-sm); }
.footer-col h4 svg { flex-shrink: 0; }
.footer-col ul { display: flex; flex-direction: column; gap: var(--space-2); font-size: var(--text-sm); }
.footer-col a:hover { color: var(--gold); }
.footer-bottom { margin-top: var(--space-12); padding-top: var(--space-6); border-top: 1px solid rgba(255,255,255,0.12); display: flex; justify-content: space-between; gap: var(--space-4); flex-wrap: wrap; font-size: var(--text-xs); }

/* The .container used by the chrome (mirrors styles.css) */
.container { width: 100%; max-width: 1240px; margin-inline: auto; padding-inline: 1rem; }
@media (min-width: 768px) { .container { padding-inline: 2rem; } }

/* ---- Hero trust row: framed card with dividers between features ---- */
.hero__trust-grid {
  border: 1px solid var(--border); border-top: 0; border-radius: 0 0 14px 14px; background: var(--background);
  box-shadow: var(--shadow-soft); padding: .35rem .4rem; margin: 0 auto 1.25rem;
  gap: 0;
}
.hero__trust-item { justify-content: center; position: relative; padding: .85rem 1rem; }
/* Mobile 2×2: short divider between every cell */
.hero__trust-item:nth-child(2n)::before {
  content: ''; position: absolute; left: 0; top: 18%; height: 64%; width: 1px; background: var(--border);
}
.hero__trust-item:nth-child(-n+2)::after {
  content: ''; position: absolute; bottom: 0; left: 12%; width: 76%; height: 1px; background: var(--border);
}
/* Desktop 4-up: only vertical dividers between the four */
@media (min-width: 768px) {
  .hero__trust-item:nth-child(-n+2)::after { display: none; }
  .hero__trust-item:nth-child(2n)::before { display: none; }
  .hero__trust-item + .hero__trust-item::before {
    display: block; content: ''; position: absolute; left: 0; top: 50%; transform: translateY(-50%);
    height: 62%; width: 1px; background: var(--border);
  }
}
