/* ============================================================================
   style.css — global design system + homepage
   ----------------------------------------------------------------------------
   Loaded by every page. Change the variables in :root to re-skin the whole
   site: colours, radius, shadows and container width all come from here.
   ========================================================================== */

/* ---------------------------------------------------------------------------
   1. DESIGN TOKENS
   ------------------------------------------------------------------------ */
:root {
  /* Brand palette --------------------------------------------------------- */
  --primary:        #4f46e5;   /* main brand colour: buttons, links, accents  */
  --primary-dark:   #4338ca;   /* hover / pressed state                       */
  --primary-soft:   #eef2ff;   /* tinted backgrounds                          */
  --secondary:      #0f172a;   /* deep ink — headings, dark sections          */
  --accent:         #f59e0b;   /* highlights, badges, price emphasis          */
  --accent-soft:    #fff7ed;

  /* Neutrals -------------------------------------------------------------- */
  --background:     #ffffff;
  --surface:        #f8fafc;   /* alternating section background              */
  --surface-2:      #f1f5f9;
  --card:           #ffffff;
  --text:           #0f172a;
  --muted:          #5b6779;
  --border:         #e2e8f0;

  /* Status ---------------------------------------------------------------- */
  --success:        #059669;
  --success-soft:   #ecfdf5;
  --danger:         #dc2626;

  /* Shape & depth --------------------------------------------------------- */
  --radius:         16px;
  --radius-sm:      10px;
  --radius-lg:      24px;
  --radius-pill:    999px;

  --shadow-sm:  0 1px 2px rgba(15, 23, 42, .06);
  --shadow:     0 4px 16px rgba(15, 23, 42, .07);
  --shadow-md:  0 10px 30px rgba(15, 23, 42, .09);
  --shadow-lg:  0 24px 60px rgba(15, 23, 42, .14);

  /* Layout ---------------------------------------------------------------- */
  --container:      1180px;
  --container-pad:  20px;
  --header-h:       72px;

  /* Type ------------------------------------------------------------------ */
  --font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
          "Helvetica Neue", Arial, "Noto Sans", sans-serif;
  --font-display: "Inter", var(--font);

  /* Motion ---------------------------------------------------------------- */
  --t-fast: 140ms cubic-bezier(.4, 0, .2, 1);
  --t:      240ms cubic-bezier(.4, 0, .2, 1);
}

/* Optional dark mode. Delete this block to keep the site light-only. */
@media (prefers-color-scheme: dark) {
  :root {
    --background: #0b1120;
    --surface:    #0f172a;
    --surface-2:  #131f36;
    --card:       #111a2e;
    --text:       #e8edf7;
    --muted:      #9aa8bf;
    --border:     #22304d;
    --primary-soft: #1a2244;
    --accent-soft:  #2a2110;
    --success-soft: #0d2b21;
    --shadow-sm:  0 1px 2px rgba(0, 0, 0, .4);
    --shadow:     0 4px 16px rgba(0, 0, 0, .4);
    --shadow-md:  0 10px 30px rgba(0, 0, 0, .45);
    --shadow-lg:  0 24px 60px rgba(0, 0, 0, .55);
  }
}

/* ---------------------------------------------------------------------------
   2. RESET & BASE
   ------------------------------------------------------------------------ */
*, *::before, *::after { box-sizing: border-box; }

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

body {
  margin: 0;
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background: var(--background);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, svg, video { max-width: 100%; height: auto; display: block; }

h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  color: var(--text);
  line-height: 1.2;
  letter-spacing: -.02em;
  margin: 0 0 .5em;
  font-weight: 700;
}
h1 { font-size: clamp(2rem, 5.2vw, 3.35rem); letter-spacing: -.03em; }
h2 { font-size: clamp(1.55rem, 3.4vw, 2.3rem); }
h3 { font-size: clamp(1.15rem, 2vw, 1.4rem); }
p  { margin: 0 0 1em; }

a { color: var(--primary); text-decoration: none; transition: color var(--t-fast); }
a:hover { color: var(--primary-dark); }

ul, ol { margin: 0 0 1em; padding-left: 1.15em; }

button { font: inherit; cursor: pointer; }

hr { border: 0; border-top: 1px solid var(--border); margin: 40px 0; }

/* Accessible focus ring — visible for keyboard users on every interactive
   element. Do not remove. */
:focus-visible {
  outline: 3px solid var(--primary);
  outline-offset: 2px;
  border-radius: 4px;
}

.skip-link {
  position: absolute; left: 12px; top: -60px; z-index: 200;
  background: var(--primary); color: #fff;
  padding: 12px 18px; border-radius: var(--radius-sm); font-weight: 600;
  transition: top var(--t-fast);
}
.skip-link:focus { top: 12px; color: #fff; }

.visually-hidden {
  position: absolute !important; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* ---------------------------------------------------------------------------
   3. LAYOUT HELPERS
   ------------------------------------------------------------------------ */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--container-pad);
}

.section { padding: clamp(56px, 8vw, 96px) 0; }
.section--tight { padding: clamp(40px, 5vw, 64px) 0; }
.section--surface { background: var(--surface); }
.section--ink { background: var(--secondary); color: #e8edf7; }
.section--ink h2, .section--ink h3 { color: #fff; }
.section--ink p { color: #b9c4d8; }

.section-head { max-width: 700px; margin: 0 0 clamp(28px, 4vw, 44px); }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head p { color: var(--muted); font-size: 1.05rem; margin: 0; }

.eyebrow {
  display: inline-block;
  font-size: .75rem; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: var(--primary);
  margin-bottom: 12px;
}

.grid { display: grid; gap: 24px; }
.grid--products { grid-template-columns: repeat(auto-fill, minmax(268px, 1fr)); }
.grid--cats     { grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); }
.grid--trust    { grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); }

/* ---------------------------------------------------------------------------
   4. BUTTONS
   ------------------------------------------------------------------------ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 14px 24px;
  border: 1px solid transparent;
  border-radius: var(--radius-pill);
  font-weight: 650; font-size: .95rem; letter-spacing: .01em;
  text-align: center; white-space: nowrap;
  transition: transform var(--t-fast), box-shadow var(--t),
              background-color var(--t-fast), color var(--t-fast),
              border-color var(--t-fast);
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--primary {
  background: var(--primary); color: #fff;
  box-shadow: 0 6px 18px rgba(79, 70, 229, .28);
}
.btn--primary:hover { background: var(--primary-dark); color: #fff; box-shadow: 0 10px 26px rgba(79, 70, 229, .35); }

.btn--dark { background: var(--secondary); color: #fff; }
.btn--dark:hover { color: #fff; background: #1e293b; }

.btn--ghost {
  background: transparent; color: var(--text); border-color: var(--border);
}
.btn--ghost:hover { border-color: var(--primary); color: var(--primary); background: var(--primary-soft); }

.btn--light { background: #fff; color: var(--secondary); }
.btn--light:hover { color: var(--primary-dark); }

.btn--block { display: flex; width: 100%; }
.btn--sm  { padding: 10px 16px; font-size: .85rem; }
.btn--lg  { padding: 17px 34px; font-size: 1.02rem; }

.btn[disabled], .btn--disabled {
  background: var(--surface-2); color: var(--muted);
  border-color: var(--border); box-shadow: none;
  cursor: not-allowed; pointer-events: none;
}

/* ---------------------------------------------------------------------------
   5. HEADER / NAVIGATION
   ------------------------------------------------------------------------ */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: color-mix(in srgb, var(--background) 88%, transparent);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--border);
}
@supports not (background: color-mix(in srgb, red 50%, blue)) {
  .site-header { background: var(--background); }
}
.site-header.is-scrolled { box-shadow: var(--shadow-sm); }

.header-inner {
  min-height: var(--header-h);
  display: flex; align-items: center; gap: 20px;
}

.brand { display: inline-flex; align-items: center; gap: 10px; color: var(--text); font-weight: 800; letter-spacing: -.02em; }
.brand:hover { color: var(--text); }
.brand__mark { width: 34px; height: 34px; flex: 0 0 auto; border-radius: 10px; }
.brand__name { font-size: 1.06rem; }

.nav { margin-left: auto; }
.nav__list { display: flex; align-items: center; gap: 4px; list-style: none; margin: 0; padding: 0; }
.nav__link {
  display: block; padding: 9px 13px; border-radius: var(--radius-sm);
  color: var(--muted); font-size: .92rem; font-weight: 550;
  transition: color var(--t-fast), background-color var(--t-fast);
}
.nav__link:hover, .nav__link[aria-current="page"] { color: var(--text); background: var(--surface-2); }

.header-cta { margin-left: 8px; }

.nav-toggle {
  display: none; margin-left: auto;
  width: 44px; height: 44px; padding: 0;
  align-items: center; justify-content: center;
  background: transparent; border: 1px solid var(--border);
  border-radius: var(--radius-sm); color: var(--text);
}
.nav-toggle__bars { position: relative; width: 20px; height: 2px; background: currentColor; border-radius: 2px; transition: background-color var(--t-fast); }
.nav-toggle__bars::before, .nav-toggle__bars::after {
  content: ""; position: absolute; left: 0; width: 20px; height: 2px;
  background: currentColor; border-radius: 2px; transition: transform var(--t), top var(--t);
}
.nav-toggle__bars::before { top: -6px; }
.nav-toggle__bars::after  { top: 6px; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bars { background: transparent; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bars::before { top: 0; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle__bars::after  { top: 0; transform: rotate(-45deg); }

@media (max-width: 960px) {
  .nav-toggle { display: inline-flex; }
  .header-cta { display: none; }
  .nav {
    position: fixed; inset: var(--header-h) 0 auto 0;
    margin: 0; background: var(--background);
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-md);
    max-height: calc(100dvh - var(--header-h));
    overflow-y: auto;
    transform: translateY(-8px); opacity: 0; visibility: hidden;
    transition: opacity var(--t), transform var(--t), visibility var(--t);
  }
  .nav.is-open { transform: translateY(0); opacity: 1; visibility: visible; }
  .nav__list { flex-direction: column; align-items: stretch; gap: 2px; padding: 14px var(--container-pad) 22px; }
  .nav__link { padding: 13px 12px; font-size: 1rem; }
  .nav__list .btn { margin-top: 10px; }
}

/* ---------------------------------------------------------------------------
   6. HERO
   ------------------------------------------------------------------------ */
.hero {
  position: relative; overflow: hidden;
  padding: clamp(48px, 7vw, 92px) 0 clamp(56px, 8vw, 96px);
  background:
    radial-gradient(900px 460px at 82% -8%, var(--primary-soft), transparent 62%),
    radial-gradient(620px 380px at 4% 8%, var(--accent-soft), transparent 60%);
}
.hero__inner {
  display: grid; gap: clamp(32px, 5vw, 56px);
  grid-template-columns: 1.05fr .95fr; align-items: center;
}
@media (max-width: 900px) { .hero__inner { grid-template-columns: 1fr; } }

.hero__title { margin-bottom: 18px; }
.hero__title span { color: var(--primary); }
.hero__text { font-size: clamp(1.02rem, 1.6vw, 1.16rem); color: var(--muted); max-width: 56ch; margin-bottom: 28px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 26px; }
.hero__points { display: flex; flex-wrap: wrap; gap: 8px 22px; list-style: none; padding: 0; margin: 0; }
.hero__points li { display: flex; align-items: center; gap: 8px; font-size: .9rem; color: var(--muted); }
.hero__points svg { flex: 0 0 auto; color: var(--success); }

/* Product collage ---------------------------------------------------------
   A staggered two-column stack. It stays balanced whether you have 2 or 6
   products, so it does not break as your catalogue grows. */
.collage { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; align-items: start; }
.collage__item {
  display: block; border-radius: var(--radius);
  background: var(--card); box-shadow: var(--shadow-md);
  border: 1px solid var(--border); overflow: hidden;
  aspect-ratio: 4 / 3;
  transition: transform var(--t), box-shadow var(--t);
}
.collage__item img { width: 100%; height: 100%; object-fit: cover; }
.collage__item:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.collage__item:nth-child(even) { margin-top: 34px; }
.collage__item:nth-child(odd) { margin-bottom: 34px; }
@media (max-width: 900px) { .collage { max-width: 540px; margin-inline: auto; } }
@media (max-width: 420px) { .collage { gap: 12px; } .collage__item:nth-child(even) { margin-top: 22px; } .collage__item:nth-child(odd) { margin-bottom: 22px; } }

/* ---------------------------------------------------------------------------
   7. TRUST STRIP
   ------------------------------------------------------------------------ */
.trust-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 26px 24px;
  transition: transform var(--t), box-shadow var(--t), border-color var(--t);
}
.trust-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: color-mix(in srgb, var(--primary) 32%, var(--border)); }
.trust-card__icon {
  width: 44px; height: 44px; border-radius: 12px;
  display: grid; place-items: center; margin-bottom: 14px;
  background: var(--primary-soft); color: var(--primary);
}
.trust-card h3 { font-size: 1.03rem; margin-bottom: 6px; }
.trust-card p { color: var(--muted); font-size: .93rem; margin: 0; }

/* ---------------------------------------------------------------------------
   8. CATEGORY CARDS
   ------------------------------------------------------------------------ */
.cat-card {
  display: block; background: var(--card);
  border: 1px solid var(--border); border-radius: var(--radius);
  padding: 24px 22px; color: var(--text);
  transition: transform var(--t), box-shadow var(--t), border-color var(--t);
}
.cat-card:hover {
  transform: translateY(-4px); box-shadow: var(--shadow-md);
  border-color: color-mix(in srgb, var(--primary) 40%, var(--border)); color: var(--text);
}
.cat-card__icon {
  width: 46px; height: 46px; border-radius: 13px; margin-bottom: 16px;
  display: grid; place-items: center;
  background: var(--primary-soft); color: var(--primary);
  transition: background-color var(--t), color var(--t);
}
.cat-card:hover .cat-card__icon { background: var(--primary); color: #fff; }
.cat-card h3 { font-size: 1.05rem; margin-bottom: 5px; }
.cat-card p { color: var(--muted); font-size: .9rem; margin: 0 0 12px; }
.cat-card__count { font-size: .8rem; font-weight: 650; color: var(--primary); }

/* ---------------------------------------------------------------------------
   9. PRODUCT CARDS
   ------------------------------------------------------------------------ */
.product-card {
  display: flex; flex-direction: column;
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden;
  transition: transform var(--t), box-shadow var(--t), border-color var(--t);
}
.product-card:hover {
  transform: translateY(-5px); box-shadow: var(--shadow-md);
  border-color: color-mix(in srgb, var(--primary) 32%, var(--border));
}

.product-card__media {
  position: relative; display: block;
  aspect-ratio: 4 / 3; overflow: hidden;
  background: var(--surface-2);
}
.product-card__media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 500ms cubic-bezier(.4, 0, .2, 1);
}
.product-card:hover .product-card__media img { transform: scale(1.05); }

.badge {
  position: absolute; top: 12px; left: 12px; z-index: 2;
  padding: 5px 11px; border-radius: var(--radius-pill);
  font-size: .68rem; font-weight: 800; letter-spacing: .09em;
  text-transform: uppercase; background: var(--secondary); color: #fff;
}
.badge--new       { background: var(--primary); }
.badge--popular   { background: var(--accent); color: #3b2708; }
.badge--bestseller{ background: var(--success); }
.badge--featured  { background: var(--secondary); }
.badge--limited   { background: var(--danger); }
.badge--soon      { background: var(--muted); }

.product-card__body { display: flex; flex-direction: column; flex: 1; padding: 20px; }
.product-card__cat {
  font-size: .7rem; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: var(--primary); margin-bottom: 8px;
}
.product-card__title { font-size: 1.06rem; margin-bottom: 7px; }
.product-card__title a { color: var(--text); }
.product-card__title a:hover { color: var(--primary); }
.product-card__desc { color: var(--muted); font-size: .9rem; margin: 0 0 16px; }

.price-row { display: flex; align-items: baseline; gap: 10px; margin: auto 0 16px; flex-wrap: wrap; }
.price { font-size: 1.35rem; font-weight: 800; letter-spacing: -.02em; color: var(--text); }
.price--old { font-size: .95rem; font-weight: 500; color: var(--muted); text-decoration: line-through; }
.price-save {
  font-size: .7rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase;
  color: var(--success); background: var(--success-soft);
  padding: 3px 9px; border-radius: var(--radius-pill);
}

.product-card__actions { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
@media (max-width: 380px) { .product-card__actions { grid-template-columns: 1fr; } }
.product-card__note { font-size: .82rem; color: var(--muted); text-align: center; padding: 12px 0 4px; }

/* ---------------------------------------------------------------------------
   10. TOOLBAR — search, filters, sort
   ------------------------------------------------------------------------ */
/* min-width:0 on every level stops the horizontally-scrolling filter row from
   stretching its parents and creating page-wide horizontal scroll on mobile. */
.toolbar { display: grid; gap: 16px; margin-bottom: 28px; min-width: 0; }
.toolbar > * { min-width: 0; }

.search-field { position: relative; min-width: 0; }
.search-field svg {
  position: absolute; left: 16px; top: 50%; transform: translateY(-50%);
  color: var(--muted); pointer-events: none;
}
.search-field input {
  width: 100%; padding: 14px 16px 14px 46px;
  font: inherit; font-size: .96rem; color: var(--text);
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
}
.search-field input::placeholder { color: var(--muted); }
.search-field input:focus {
  outline: none; border-color: var(--primary);
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--primary) 16%, transparent);
}

.toolbar__row { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; justify-content: space-between; min-width: 0; }

.filters {
  display: flex; gap: 8px; flex-wrap: nowrap;
  flex: 1 1 240px; min-width: 0; max-width: 100%;
  overflow-x: auto; padding-bottom: 4px;
  scrollbar-width: thin; -webkit-overflow-scrolling: touch;
}
@media (min-width: 780px) { .filters { flex-wrap: wrap; overflow: visible; } }
.filter-chip {
  flex: 0 0 auto;
  padding: 9px 16px; border-radius: var(--radius-pill);
  background: var(--card); border: 1px solid var(--border);
  color: var(--muted); font-size: .87rem; font-weight: 600;
  transition: all var(--t-fast);
}
.filter-chip:hover { border-color: var(--primary); color: var(--primary); }
.filter-chip[aria-pressed="true"] { background: var(--primary); border-color: var(--primary); color: #fff; }

.sort-field { display: flex; align-items: center; gap: 8px; flex: 0 0 auto; }
.sort-field label { font-size: .85rem; color: var(--muted); font-weight: 600; }
.sort-field select {
  font: inherit; font-size: .88rem; color: var(--text);
  padding: 10px 34px 10px 14px;
  background: var(--card) url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%235b6779' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'/></svg>") no-repeat right 13px center;
  border: 1px solid var(--border); border-radius: var(--radius-pill);
  appearance: none; -webkit-appearance: none; cursor: pointer;
}
.sort-field select:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 4px color-mix(in srgb, var(--primary) 16%, transparent); }

.results-count { font-size: .87rem; color: var(--muted); margin: 0 0 18px; }

/* Breadcrumb (product and policy pages) ------------------------------------ */
.breadcrumb { padding: 20px 0 0; }
.breadcrumb ol {
  display: flex; flex-wrap: wrap; align-items: center; gap: 8px;
  list-style: none; padding: 0; margin: 0;
  font-size: .84rem; color: var(--muted);
}
.breadcrumb li { display: flex; align-items: center; gap: 8px; }
.breadcrumb li + li::before { content: "/"; color: var(--border); }
.breadcrumb a { color: var(--muted); }
.breadcrumb a:hover { color: var(--primary); }
.breadcrumb [aria-current="page"] { color: var(--text); font-weight: 600; }

/* Inline notice used on product and thank-you pages ------------------------ */
.status-note {
  display: flex; align-items: flex-start; gap: 10px;
  padding: 14px 16px; border-radius: var(--radius-sm);
  background: var(--surface-2); border: 1px solid var(--border);
  font-size: .89rem; color: var(--muted); margin-top: 14px;
  text-align: left;
}
.status-note svg { flex: 0 0 auto; margin-top: 2px; }
.status-note code {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 5px; padding: 1px 5px; font-size: .85em;
}

/* Empty / not-found states ------------------------------------------------ */
.empty-state {
  text-align: center; padding: 60px 20px;
  border: 1px dashed var(--border); border-radius: var(--radius-lg);
  background: var(--surface);
}
.empty-state__icon {
  width: 56px; height: 56px; margin: 0 auto 18px;
  display: grid; place-items: center; border-radius: 50%;
  background: var(--card); border: 1px solid var(--border); color: var(--muted);
}
.empty-state h3 { margin-bottom: 6px; }
.empty-state p { color: var(--muted); max-width: 48ch; margin: 0 auto 22px; }

/* ---------------------------------------------------------------------------
   11. ABOUT
   ------------------------------------------------------------------------ */
.about__grid { display: grid; gap: clamp(28px, 5vw, 56px); grid-template-columns: 1fr 1fr; align-items: center; }
@media (max-width: 860px) { .about__grid { grid-template-columns: 1fr; } }
.about__list { list-style: none; padding: 0; margin: 24px 0 0; display: grid; gap: 14px; }
.about__list li { display: flex; gap: 12px; align-items: flex-start; }
.about__list svg { flex: 0 0 auto; margin-top: 3px; color: var(--primary); }
.about__list strong { display: block; }
.about__list span { color: var(--muted); font-size: .93rem; }

.value-panel {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: clamp(24px, 4vw, 36px);
  box-shadow: var(--shadow);
}
.value-panel h3 { margin-bottom: 16px; }
.value-panel ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; }
.value-panel li { display: flex; gap: 11px; align-items: flex-start; color: var(--muted); font-size: .95rem; }
.value-panel svg { flex: 0 0 auto; margin-top: 4px; color: var(--success); }

/* ---------------------------------------------------------------------------
   12. FAQ ACCORDION (shared with product page)
   ------------------------------------------------------------------------ */
.faq { max-width: 820px; margin-inline: auto; display: grid; gap: 12px; }
.faq-item { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.faq-item__btn {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 20px 22px; background: none; border: 0; text-align: left;
  font-size: 1rem; font-weight: 650; color: var(--text);
  transition: background-color var(--t-fast);
}
.faq-item__btn:hover { background: var(--surface); }
.faq-item__icon { flex: 0 0 auto; transition: transform var(--t); color: var(--primary); }
.faq-item__btn[aria-expanded="true"] .faq-item__icon { transform: rotate(45deg); }
.faq-item__panel {
  display: grid; grid-template-rows: 0fr;
  transition: grid-template-rows var(--t);
}
.faq-item__panel > div { overflow: hidden; }
.faq-item__panel.is-open { grid-template-rows: 1fr; }
.faq-item__panel p { margin: 0; padding: 0 22px 22px; color: var(--muted); }

/* ---------------------------------------------------------------------------
   13. NEWSLETTER
   ------------------------------------------------------------------------ */
.newsletter {
  background: linear-gradient(135deg, var(--secondary), #1e1b4b 60%, #312e81);
  border-radius: var(--radius-lg); padding: clamp(32px, 5vw, 56px);
  color: #e8edf7; text-align: center;
}
.newsletter h2 { color: #fff; margin-bottom: 10px; }
.newsletter p { color: #b9c4d8; max-width: 54ch; margin: 0 auto 26px; }
.newsletter__form {
  display: grid; gap: 12px; max-width: 640px; margin-inline: auto;
  grid-template-columns: 1fr 1fr auto; align-items: start;
}
@media (max-width: 680px) { .newsletter__form { grid-template-columns: 1fr; } }
.newsletter__form input {
  width: 100%; padding: 14px 18px; font: inherit; font-size: .95rem;
  color: #fff; background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .22); border-radius: var(--radius-pill);
  transition: border-color var(--t-fast), background-color var(--t-fast);
}
.newsletter__form input::placeholder { color: #a9b4cb; }
.newsletter__form input:focus { outline: none; border-color: #fff; background: rgba(255, 255, 255, .16); }
.newsletter__form input[aria-invalid="true"] { border-color: #fca5a5; }
.field-error { display: block; text-align: left; font-size: .8rem; color: #fca5a5; padding: 6px 0 0 18px; min-height: 1em; }
.newsletter__msg { min-height: 1.4em; margin: 16px 0 0; font-size: .92rem; color: #a7f3d0; }
.newsletter__note { font-size: .78rem; color: #8f9cb5; margin: 14px 0 0; }

/* ---------------------------------------------------------------------------
   14. FOOTER
   ------------------------------------------------------------------------ */
.site-footer { background: var(--secondary); color: #b9c4d8; padding: clamp(48px, 6vw, 72px) 0 32px; margin-top: 0; }
.footer__grid {
  display: grid; gap: 36px;
  grid-template-columns: 1.6fr repeat(4, 1fr);
}
@media (max-width: 980px) { .footer__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .footer__grid { grid-template-columns: 1fr; gap: 28px; } }

.footer__brand .brand { color: #fff; margin-bottom: 14px; }
.footer__brand .brand:hover { color: #fff; }
.footer__brand p { font-size: .92rem; color: #93a1ba; max-width: 34ch; }
.footer__social { display: flex; gap: 10px; margin-top: 16px; }
.footer__social a {
  width: 38px; height: 38px; border-radius: 10px; display: grid; place-items: center;
  background: rgba(255, 255, 255, .07); color: #cbd5e1; transition: all var(--t-fast);
}
.footer__social a:hover { background: var(--primary); color: #fff; }

.footer__col h4 {
  font-size: .76rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase;
  color: #fff; margin-bottom: 14px;
}
.footer__col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 9px; }
.footer__col a { color: #b9c4d8; font-size: .91rem; }
.footer__col a:hover { color: #fff; }

.footer__legal {
  margin-top: 40px; padding-top: 24px; border-top: 1px solid rgba(255, 255, 255, .12);
  font-size: .8rem; color: #8b98b1;
}
.footer__legal p { margin: 0 0 10px; max-width: 92ch; }
.footer__bottom { display: flex; flex-wrap: wrap; gap: 8px 20px; justify-content: space-between; align-items: center; margin-top: 18px; }

/* ---------------------------------------------------------------------------
   15. MOTION / REVEAL
   ------------------------------------------------------------------------ */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity 600ms ease, transform 600ms cubic-bezier(.4, 0, .2, 1); }
.reveal.is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
  .btn:hover, .product-card:hover, .cat-card:hover, .collage__item:hover { transform: none; }
}

/* Print ------------------------------------------------------------------- */
@media print {
  .site-header, .site-footer, .newsletter, .toolbar, .sticky-cta { display: none !important; }
  body { color: #000; background: #fff; }
}
