/* ============================================================
   Luminien Everyday — css/style.css
   Palette: Nordic beige-olive, calm
   Font: Sora (display) + Figtree (body)
   Seed: 26437189
   ============================================================ */

/* --- Custom properties --- */
:root {
  --vjqc-c-bg:        #f5f2ed;
  --vjqc-c-surface:   #eeeae3;
  --vjqc-c-dark:      #2a2e24;
  --vjqc-c-dark-2:    #3a4033;
  --vjqc-c-olive:     #5b7a52;
  --vjqc-c-olive-lt:  #7a9a6e;
  --vjqc-c-accent:    #a3845a;
  --vjqc-c-text:      #2c2c28;
  --vjqc-c-text-muted:#6b6b5e;
  --vjqc-c-border:    #d4cfc6;
  --vjqc-c-white:     #ffffff;
  --vjqc-c-price-new: #c0392b;

  --vjqc-ff-display: 'Sora', sans-serif;
  --vjqc-ff-body:    'Figtree', sans-serif;

  --vjqc-r-sm:  .5rem;
  --vjqc-r-md:  1rem;
  --vjqc-r-lg:  1.5rem;
  --vjqc-r-xl:  2rem;

  --vjqc-shadow-sm: 0 1px 4px rgba(42,46,36,.07);
  --vjqc-shadow-md: 0 4px 20px rgba(42,46,36,.11);
  --vjqc-shadow-lg: 0 8px 40px rgba(42,46,36,.14);

  --vjqc-max-w: 1200px;
  --vjqc-gap:   clamp(1rem, 3vw, 2rem);
}

/* --- Reset & base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--vjqc-ff-body);
  background: var(--vjqc-c-bg);
  color: var(--vjqc-c-text);
  line-height: 1.65;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
img { display: block; max-width: 100%; height: auto; }
a { color: var(--vjqc-c-olive); text-decoration: underline; }
a:hover { color: var(--vjqc-c-olive-lt); }
h1,h2,h3,h4,h5 { font-family: var(--vjqc-ff-display); line-height: 1.2; color: var(--vjqc-c-dark); }
h1 { font-size: clamp(1.9rem, 4.5vw, 3rem); font-weight: 800; }
h2 { font-size: clamp(1.4rem, 3vw, 2.1rem); font-weight: 700; }
h3 { font-size: clamp(1rem, 2vw, 1.3rem); font-weight: 600; }
p  { max-width: 68ch; }
ul,ol { padding-left: 1.25rem; }

/* --- Layout helpers --- */
.container { max-width: var(--vjqc-max-w); margin: 0 auto; padding: 0 var(--vjqc-gap); }
main { flex: 1; }
.section { padding: clamp(3rem, 6vw, 5rem) 0; }
.section-alt { background: var(--vjqc-c-surface); }
.udgl { background: var(--vjqc-c-olive); color: var(--vjqc-c-white); }
.utia { background: var(--vjqc-c-dark); color: var(--vjqc-c-white); }
.utia h2, .utia h3 { color: var(--vjqc-c-white); }
.udgl h2, .udgl h3 { color: var(--vjqc-c-white); }

/* --- Disclosure bar --- */
.disclosure-bar {
  background: var(--vjqc-c-dark-2);
  color: rgba(255,255,255,.75);
  font-size: .75rem;
  text-align: center;
  padding: .35rem var(--vjqc-gap);
  font-family: var(--vjqc-ff-body);
}

/* --- Header --- */
.utaw {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(245,242,237,.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--vjqc-c-border);
  box-shadow: var(--vjqc-shadow-sm);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  gap: 1rem;
}
.logo {
  display: flex;
  align-items: center;
  gap: .5rem;
  text-decoration: none;
  font-family: var(--vjqc-ff-display);
  font-weight: 800;
  color: var(--vjqc-c-dark);
  flex-shrink: 0;
}
.logo:hover { color: var(--vjqc-c-olive); }
.logo-mark {
  width: 34px;
  height: 34px;
  background: var(--vjqc-c-olive);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  font-weight: 800;
}
.logo-text { font-size: 1.15rem; }
.umlf {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}
.umlf a {
  font-family: var(--vjqc-ff-display);
  font-size: .9rem;
  font-weight: 500;
  color: var(--vjqc-c-text);
  text-decoration: none;
  transition: color .2s;
}
.umlf a:hover, .umlf a.nav-active { color: var(--vjqc-c-olive); }
.ubfq {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: .4rem;
}
.ubfq span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--vjqc-c-dark);
  border-radius: 2px;
  transition: .3s;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .4rem;
  font-family: var(--vjqc-ff-display);
  font-weight: 700;
  font-size: 1rem;
  line-height: 1;
  padding: .85em 1.8em;
  border-radius: var(--vjqc-r-md);
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: background .2s, color .2s, border-color .2s, box-shadow .2s;
}
.btn-primary {
  background: var(--vjqc-c-olive);
  color: #fff;
  border-color: var(--vjqc-c-olive);
}
.btn-primary:hover {
  background: var(--vjqc-c-olive-lt);
  border-color: var(--vjqc-c-olive-lt);
  color: #fff;
  box-shadow: 0 4px 16px rgba(91,122,82,.3);
}
.btn-outline {
  background: transparent;
  color: var(--vjqc-c-olive);
  border-color: var(--vjqc-c-olive);
}
.btn-outline:hover {
  background: var(--vjqc-c-olive);
  color: #fff;
}
.utia .btn-outline {
  color: var(--vjqc-c-white);
  border-color: var(--vjqc-c-white);
}
.utia .btn-outline:hover {
  background: var(--vjqc-c-white);
  color: var(--vjqc-c-dark);
}
.btn-block { width: 100%; }
.btn-sm { font-size: .82rem; padding: .55em 1.2em; }

/* --- Hero --- */
.hero {
  position: relative;
  padding: clamp(3rem, 6vw, 5rem) 0;
  overflow: hidden;
}
.upbj {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}
.upbj img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .12;
}
.hero-pf-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: start;
}
.hero-eyebrow {
  display: block;
  font-size: .78rem;
  font-weight: 600;
  color: var(--vjqc-c-text-muted);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: .75rem;
}
.hero-title { margin-bottom: .5rem; }
.hero-title .hl { color: var(--vjqc-c-olive); }
.hero-subtitle {
  font-family: var(--vjqc-ff-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--vjqc-c-accent);
  margin-bottom: 1.25rem;
}
.checklist {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: .65rem;
  margin-bottom: 1.25rem;
}
.checklist li {
  display: flex;
  align-items: flex-start;
  gap: .65rem;
  font-size: .95rem;
  max-width: none;
}
.check-ic {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: var(--vjqc-c-olive);
  color: #fff;
  border-radius: 50%;
  flex-shrink: 0;
  font-size: .85rem;
  margin-top: .05em;
}
.hero-rating {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .9rem;
  margin-bottom: 1.25rem;
}
.stars { color: #d4a017; letter-spacing: .05em; }
.price-block {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-bottom: .75rem;
  flex-wrap: wrap;
}
.price-old {
  font-family: var(--vjqc-ff-display);
  font-size: 1.05rem;
  color: var(--vjqc-c-text-muted);
  text-decoration: line-through;
}
.price-new {
  font-family: var(--vjqc-ff-display);
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--vjqc-c-price-new);
}
.price-badge {
  background: var(--vjqc-c-price-new);
  color: #fff;
  font-family: var(--vjqc-ff-display);
  font-size: .8rem;
  font-weight: 700;
  padding: .2em .6em;
  border-radius: var(--vjqc-r-sm);
}
.hero-note {
  font-size: .82rem;
  color: var(--vjqc-c-text-muted);
  margin-bottom: 0;
  max-width: none;
}

/* --- Pack photo / media --- */
.media { overflow: hidden; border-radius: var(--vjqc-r-lg); background: var(--vjqc-c-surface); }
.media img { width: 100%; height: 100%; object-fit: cover; }
.media-1x1 { aspect-ratio: 1 / 1; }
.media-4x3 { aspect-ratio: 4 / 3; }
.media-3x4 { aspect-ratio: 3 / 4; }

/* --- Hero form col --- */
.hero-form-col { position: sticky; top: 80px; }

/* --- Order form --- */
.ujap {
  background: var(--vjqc-c-white);
  border: 1px solid var(--vjqc-c-border);
  border-radius: var(--vjqc-r-xl);
  padding: 1.75rem;
  box-shadow: var(--vjqc-shadow-lg);
}
.ujap h3 {
  font-size: 1.1rem;
  margin-bottom: 1rem;
}
.urca { position: absolute; left: -9999px; visibility: hidden; }
.form-group { margin-bottom: 1.1rem; }
.form-group label {
  display: block;
  font-size: .85rem;
  font-weight: 600;
  margin-bottom: .35rem;
  color: var(--vjqc-c-dark);
}
.form-group input[type="text"],
.form-group input[type="tel"] {
  width: 100%;
  border: 1.5px solid var(--vjqc-c-border);
  border-radius: var(--vjqc-r-sm);
  padding: .65rem .9rem;
  font-family: var(--vjqc-ff-body);
  font-size: 1rem;
  background: var(--vjqc-c-bg);
  color: var(--vjqc-c-text);
  transition: border-color .2s, box-shadow .2s;
}
.form-group input:focus {
  outline: none;
  border-color: var(--vjqc-c-olive);
  box-shadow: 0 0 0 3px rgba(91,122,82,.15);
}
.phone-row { display: flex; gap: .5rem; }
.phone-row select {
  border: 1.5px solid var(--vjqc-c-border);
  border-radius: var(--vjqc-r-sm);
  padding: .65rem .7rem;
  font-family: var(--vjqc-ff-body);
  font-size: 1rem;
  background: var(--vjqc-c-bg);
  color: var(--vjqc-c-text);
  flex-shrink: 0;
}
.phone-row select:focus { outline: none; border-color: var(--vjqc-c-olive); }
.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: .6rem;
}
.form-checkbox input[type="checkbox"] { margin-top: .25rem; flex-shrink: 0; accent-color: var(--vjqc-c-olive); }
.form-checkbox label { font-size: .83rem; font-weight: 400; color: var(--vjqc-c-text-muted); }
.uujo {
  display: none;
  font-size: .78rem;
  color: var(--vjqc-c-price-new);
  margin-top: .25rem;
}
.uujo.visible { display: block; }
.order-note {
  font-size: .75rem;
  color: var(--vjqc-c-text-muted);
  text-align: center;
  margin-top: .85rem;
}

/* --- Trust band --- */
.trust-band {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}
.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .3rem;
  text-align: center;
  color: var(--vjqc-c-white);
}
.trust-item i { font-size: 1.7rem; color: var(--vjqc-c-olive-lt); }
.trust-item strong { font-family: var(--vjqc-ff-display); font-size: .95rem; }
.trust-item span { font-size: .8rem; opacity: .75; }

/* --- Section titles --- */
.section-eyebrow {
  display: block;
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--vjqc-c-olive);
  margin-bottom: .5rem;
}
.section-title { margin-bottom: 1rem; }
.section-lead { color: var(--vjqc-c-text-muted); margin-bottom: 2rem; }

/* --- Benefit grid --- */
.benefit-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}
.benefit-card {
  background: var(--vjqc-c-white);
  border: 1px solid var(--vjqc-c-border);
  border-radius: var(--vjqc-r-lg);
  padding: 1.5rem;
  box-shadow: var(--vjqc-shadow-sm);
}
.benefit-icon {
  display: flex;
  width: 44px;
  height: 44px;
  background: var(--vjqc-c-surface);
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--vjqc-c-olive);
  margin-bottom: 1rem;
}
.benefit-card h3 { font-size: 1rem; margin-bottom: .4rem; }
.benefit-card p { font-size: .9rem; color: var(--vjqc-c-text-muted); max-width: none; }

/* --- Dose table --- */
.table-wrap { overflow-x: auto; }
.dose-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .92rem;
}
.dose-table th, .dose-table td {
  border: 1px solid var(--vjqc-c-border);
  padding: .65rem .9rem;
  text-align: left;
}
.dose-table thead { background: var(--vjqc-c-dark); color: #fff; }
.dose-table thead th { font-family: var(--vjqc-ff-display); font-size: .85rem; }
.dose-table tbody tr:nth-child(even) { background: var(--vjqc-c-bg); }
.dose-note {
  font-size: .78rem;
  color: var(--vjqc-c-text-muted);
  margin-top: .75rem;
  max-width: none;
}

/* --- Split block --- */
.split-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}
.split-content { max-width: none; }

/* --- Big-stat band --- */
.bigstat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1.5rem;
  text-align: center;
}
.bigstat b {
  display: block;
  font-family: var(--vjqc-ff-display);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 800;
  color: var(--vjqc-c-white);
  line-height: 1;
}
.bigstat span {
  font-size: .9rem;
  color: rgba(255,255,255,.8);
  margin-top: .35rem;
  display: block;
}
.stat-disclaimer {
  font-size: .75rem;
  color: rgba(255,255,255,.55);
  text-align: center;
  margin-top: 2rem;
  max-width: none;
}

/* --- Quiz --- */
.ulco {
  background: var(--vjqc-c-white);
  border: 1px solid var(--vjqc-c-border);
  border-radius: var(--vjqc-r-xl);
  padding: 2rem;
  max-width: 680px;
  box-shadow: var(--vjqc-shadow-md);
}
.udyt { margin-bottom: 1.5rem; }
.ubor {
  font-family: var(--vjqc-ff-display);
  font-weight: 600;
  margin-bottom: .85rem;
}
.ubrq { display: flex; flex-direction: column; gap: .5rem; }
.ulpy {
  background: var(--vjqc-c-surface);
  border: 1.5px solid var(--vjqc-c-border);
  border-radius: var(--vjqc-r-md);
  padding: .7rem 1rem;
  font-family: var(--vjqc-ff-body);
  font-size: .95rem;
  text-align: left;
  cursor: pointer;
  transition: background .2s, border-color .2s;
}
.ulpy:hover { background: var(--vjqc-c-olive); color: #fff; border-color: var(--vjqc-c-olive); }
.ulpy.selected { background: var(--vjqc-c-olive); color: #fff; border-color: var(--vjqc-c-olive); }
.upbv {
  background: var(--vjqc-c-surface);
  border-left: 4px solid var(--vjqc-c-olive);
  border-radius: var(--vjqc-r-md);
  padding: 1rem 1.25rem;
  margin-top: .5rem;
}
.upbv p { font-size: .95rem; max-width: none; }

/* --- Order steps --- */
.order-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}
.step-card {
  background: var(--vjqc-c-white);
  border: 1px solid var(--vjqc-c-border);
  border-radius: var(--vjqc-r-lg);
  padding: 1.5rem;
  position: relative;
  box-shadow: var(--vjqc-shadow-sm);
}
.step-num {
  display: flex;
  width: 36px;
  height: 36px;
  background: var(--vjqc-c-olive);
  color: #fff;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  font-family: var(--vjqc-ff-display);
  font-weight: 800;
  font-size: 1rem;
  margin-bottom: .85rem;
}
.step-card h3 { font-size: 1rem; margin-bottom: .4rem; }
.step-card p { font-size: .88rem; color: var(--vjqc-c-text-muted); max-width: none; }
.steps-note { font-size: .82rem; color: var(--vjqc-c-text-muted); text-align: center; margin-top: 1.25rem; }

/* --- Carousel --- */
.ueyv {
  position: relative;
  overflow: hidden;
  max-width: 860px;
  margin: 0 auto;
}
.utmi {
  display: flex;
  transition: transform .4s ease;
}
.umhu { flex: 0 0 100%; }
.testimonial {
  background: var(--vjqc-c-white);
  border: 1px solid var(--vjqc-c-border);
  border-radius: var(--vjqc-r-xl);
  padding: 2rem;
  box-shadow: var(--vjqc-shadow-sm);
  max-width: 640px;
  margin: 0 auto;
}
.testimonial .stars { display: block; margin-bottom: .75rem; font-size: 1.1rem; }
.testimonial p { font-size: 1.02rem; font-style: italic; max-width: none; }
.testimonial cite { display: block; margin-top: 1rem; font-size: .85rem; color: var(--vjqc-c-text-muted); font-style: normal; }
.uadx {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: var(--vjqc-c-white);
  border: 1.5px solid var(--vjqc-c-border);
  border-radius: 50%;
  width: 44px;
  height: 44px;
  font-size: 1.4rem;
  cursor: pointer;
  box-shadow: var(--vjqc-shadow-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s, color .2s;
  z-index: 2;
}
.uadx:hover { background: var(--vjqc-c-olive); color: #fff; border-color: var(--vjqc-c-olive); }
.uaub { left: 0; }
.uach { right: 0; }
.testimonial-disclaimer {
  font-size: .78rem;
  color: var(--vjqc-c-text-muted);
  margin-bottom: 1.25rem;
}

/* --- Testimonial grid (ervaringen page) --- */
.testimonial-grid-full {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}
.testimonial-card {
  background: var(--vjqc-c-white);
  border: 1px solid var(--vjqc-c-border);
  border-radius: var(--vjqc-r-lg);
  padding: 1.5rem;
  box-shadow: var(--vjqc-shadow-sm);
}
.tc-header {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}
.tc-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--vjqc-ff-display);
  font-weight: 700;
  font-size: .85rem;
  flex-shrink: 0;
}
.tc-header > div { flex: 1; min-width: 0; }
.tc-header cite { display: block; font-family: var(--vjqc-ff-display); font-weight: 600; font-size: .9rem; font-style: normal; }
.tc-location { font-size: .78rem; color: var(--vjqc-c-text-muted); }
.tc-stars { margin-left: auto; font-size: .9rem; }
.testimonial-card p { font-size: .92rem; font-style: italic; max-width: none; }
.rating-summary {
  display: flex;
  align-items: center;
  gap: .75rem;
  font-size: 1.05rem;
  margin: 1rem 0;
}

/* --- FAQ --- */
.faq { max-width: 780px; }
.faq-group-title {
  font-size: 1.1rem;
  color: var(--vjqc-c-olive);
  margin-bottom: 1rem;
  padding-bottom: .4rem;
  border-bottom: 2px solid var(--vjqc-c-border);
}
.udsg { border-bottom: 1px solid var(--vjqc-c-border); }
.upxj {
  width: 100%;
  background: none;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 0;
  font-family: var(--vjqc-ff-display);
  font-size: .97rem;
  font-weight: 600;
  color: var(--vjqc-c-dark);
  cursor: pointer;
  text-align: left;
}
.upxj i { transition: transform .3s; flex-shrink: 0; }
.upxj[aria-expanded="true"] i { transform: rotate(180deg); }
.urio { overflow: hidden; max-height: 0; transition: max-height .35s ease; }
.faq-answer-inner { padding: 0 0 1.1rem; font-size: .93rem; color: var(--vjqc-c-text-muted); }
.faq-answer-inner p + p { margin-top: .5rem; }

/* --- Ingredient spotlight --- */
.ingredient-spotlight {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 2.5rem;
  align-items: center;
  margin-bottom: 3rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--vjqc-c-border);
}
.ingredient-spotlight:last-child { border-bottom: none; }
.ingredient-spotlight--reverse { grid-template-columns: 2fr 1fr; }
.ingredient-spotlight--reverse figure { order: 2; }
.ingredient-text h3 { margin-bottom: .5rem; color: var(--vjqc-c-olive); }
.ingredient-text p { font-size: .95rem; max-width: none; }

/* --- Delivery timeline --- */
.timeline-v { display: flex; flex-direction: column; gap: 0; }
.tl-step { display: flex; gap: 1rem; padding-bottom: 1.5rem; position: relative; }
.tl-step::before {
  content: '';
  position: absolute;
  left: 17px;
  top: 36px;
  bottom: 0;
  width: 2px;
  background: var(--vjqc-c-border);
}
.tl-step:last-child::before { display: none; }
.tl-dot {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  background: var(--vjqc-c-olive);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--vjqc-ff-display);
  font-weight: 800;
  font-size: .95rem;
  z-index: 1;
}
.tl-step h3 { font-size: .97rem; margin-bottom: .25rem; }
.tl-step p { font-size: .88rem; color: var(--vjqc-c-text-muted); max-width: none; }

/* --- Spec / contact cards --- */
.specs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.25rem;
}
.spec-card {
  background: var(--vjqc-c-white);
  border: 1px solid var(--vjqc-c-border);
  border-radius: var(--vjqc-r-lg);
  padding: 1.4rem;
  box-shadow: var(--vjqc-shadow-sm);
}
.spec-card i { font-size: 1.6rem; color: var(--vjqc-c-olive); margin-bottom: .75rem; display: block; }
.spec-card h3 { font-size: .97rem; margin-bottom: .35rem; }
.spec-card p { font-size: .88rem; color: var(--vjqc-c-text-muted); max-width: none; }

/* --- Usage list --- */
.usage-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: .9rem;
}
.usage-list li {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  font-size: .95rem;
}
.usage-list li i { font-size: 1.3rem; color: var(--vjqc-c-olive); flex-shrink: 0; margin-top: .05em; }

/* --- Notice block --- */
.notice-block {
  display: flex;
  gap: 1.25rem;
  background: var(--vjqc-c-white);
  border: 1px solid var(--vjqc-c-border);
  border-left: 4px solid var(--vjqc-c-olive);
  border-radius: var(--vjqc-r-lg);
  padding: 1.5rem;
  box-shadow: var(--vjqc-shadow-sm);
}
.notice-icon { font-size: 1.8rem; color: var(--vjqc-c-olive); flex-shrink: 0; }
.notice-block p { font-size: .93rem; max-width: none; }
.plain-list { list-style: disc; padding-left: 1.2rem; font-size: .9rem; color: var(--vjqc-c-text-muted); }
.plain-list li { margin-bottom: .35rem; }

/* --- Contact page --- */
.contact-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}
.contact-card {
  background: var(--vjqc-c-white);
  border: 1px solid var(--vjqc-c-border);
  border-radius: var(--vjqc-r-lg);
  padding: 1.75rem;
  text-align: center;
  box-shadow: var(--vjqc-shadow-sm);
}
.contact-card i { font-size: 2rem; color: var(--vjqc-c-olive); margin-bottom: .75rem; display: block; }
.contact-card h3 { font-size: 1rem; margin-bottom: .5rem; }
.contact-card p { font-size: .9rem; max-width: none; }
.contact-note { font-size: .8rem; color: var(--vjqc-c-text-muted); margin-top: .35rem; }
.contact-block, .contact-dl-block {
  background: var(--vjqc-c-white);
  border: 1px solid var(--vjqc-c-border);
  border-radius: var(--vjqc-r-lg);
  padding: 2rem;
  box-shadow: var(--vjqc-shadow-sm);
  max-width: 600px;
}
.contact-dl { display: grid; grid-template-columns: auto 1fr; gap: .5rem 1.5rem; font-size: .93rem; }
.contact-dl dt { font-weight: 600; color: var(--vjqc-c-dark); }
.contact-dl dd { color: var(--vjqc-c-text-muted); }

/* --- Page hero --- */
.page-hero { padding-bottom: 1rem; }
.page-hero h1 { margin-bottom: .75rem; }
.page-lead { font-size: 1.05rem; color: var(--vjqc-c-text-muted); margin-bottom: 1rem; max-width: 65ch; }
.badge-inline {
  display: inline-block;
  background: var(--vjqc-c-surface);
  border: 1px solid var(--vjqc-c-border);
  border-radius: var(--vjqc-r-sm);
  font-size: .78rem;
  padding: .3em .8em;
  color: var(--vjqc-c-text-muted);
  margin-top: .5rem;
}
.breadcrumb {
  font-size: .82rem;
  color: var(--vjqc-c-text-muted);
  margin-bottom: 1rem;
  display: flex;
  gap: .4rem;
  align-items: center;
  flex-wrap: wrap;
}
.breadcrumb a { color: var(--vjqc-c-olive); }

/* --- CTA band --- */
.cta-band { padding: clamp(2.5rem, 5vw, 4rem) 0; }
.cta-band h2 { color: var(--vjqc-c-white); }

/* --- Thank-you page --- */
.ty-page { display: flex; flex-direction: column; min-height: 100vh; }
.ty-main { flex: 1; display: flex; align-items: center; padding: 4rem 0; }
.ty-card {
  background: var(--vjqc-c-white);
  border: 1px solid var(--vjqc-c-border);
  border-radius: var(--vjqc-r-xl);
  padding: 2.5rem;
  max-width: 580px;
  margin: 0 auto;
  text-align: center;
  box-shadow: var(--vjqc-shadow-lg);
}
.ty-icon { font-size: 3.5rem; color: var(--vjqc-c-olive); margin-bottom: 1rem; }
.ty-card h1 { font-size: 1.7rem; margin-bottom: 1rem; }
.ty-card p { font-size: .97rem; max-width: none; }
.ty-steps { display: flex; flex-direction: column; gap: .75rem; margin-top: 1.75rem; }
.ty-step { display: flex; align-items: center; gap: .85rem; font-size: .93rem; text-align: left; }
.ty-step i { font-size: 1.3rem; color: var(--vjqc-c-olive); flex-shrink: 0; }

/* --- 404 page --- */
.err-page { display: flex; flex-direction: column; min-height: 100vh; }
.err-main { flex: 1; display: flex; align-items: center; padding: 4rem 0; }
.err-card { text-align: center; }
.err-code { font-family: var(--vjqc-ff-display); font-size: 6rem; font-weight: 800; color: var(--vjqc-c-border); line-height: 1; margin-bottom: .5rem; }

/* --- Legal pages --- */
.legal-page { padding-top: 2rem; }
.legal-container { max-width: 780px; }
.legal-container h1 { margin-bottom: .5rem; }
.legal-date { font-size: .82rem; color: var(--vjqc-c-text-muted); margin-bottom: 2rem; }
.legal-container h2 { font-size: 1.15rem; margin: 2rem 0 .6rem; }
.legal-container p { margin-bottom: .75rem; font-size: .95rem; }
.legal-container ul, .legal-container ol { font-size: .95rem; margin-bottom: .75rem; }
.legal-container li { margin-bottom: .35rem; }
.legal-container address { font-style: normal; font-size: .95rem; line-height: 1.8; }

/* --- Footer --- */
.site-footer {
  background: var(--vjqc-c-dark);
  color: rgba(255,255,255,.75);
  padding: 3rem 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 2fr;
  gap: 2rem;
  margin-bottom: 2rem;
}
.footer-brand .logo-text { color: #fff; font-family: var(--vjqc-ff-display); font-size: 1.2rem; font-weight: 800; display: block; margin-bottom: .6rem; }
.footer-brand p { font-size: .85rem; color: rgba(255,255,255,.6); max-width: 280px; }
.footer-col h4 { font-family: var(--vjqc-ff-display); font-size: .88rem; font-weight: 700; color: #fff; margin-bottom: .85rem; text-transform: uppercase; letter-spacing: .06em; }
.footer-col ul { list-style: none; padding: 0; display: flex; flex-direction: column; gap: .45rem; }
.footer-col ul a { font-size: .85rem; color: rgba(255,255,255,.65); text-decoration: none; }
.footer-col ul a:hover { color: var(--vjqc-c-olive-lt); }
.footer-col p { font-size: .8rem; color: rgba(255,255,255,.6); line-height: 1.7; max-width: none; }
.footer-col p a { color: rgba(255,255,255,.75); }
.footer-col p a:hover { color: var(--vjqc-c-olive-lt); }
.footer-legal-links {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 1.25rem var(--vjqc-gap);
  display: flex;
  flex-wrap: wrap;
  gap: .75rem 1.5rem;
  max-width: var(--vjqc-max-w);
  margin: 0 auto;
}
.footer-legal-links a { font-size: .8rem; color: rgba(255,255,255,.55); text-decoration: none; }
.footer-legal-links a:hover { color: var(--vjqc-c-olive-lt); }
.footer-disclaimer {
  max-width: var(--vjqc-max-w);
  margin: 0 auto;
  padding: 1rem var(--vjqc-gap);
  font-size: .75rem;
  color: rgba(255,255,255,.4);
  border-top: 1px solid rgba(255,255,255,.06);
}
.footer-bottom {
  max-width: var(--vjqc-max-w);
  margin: 0 auto;
  padding: 1rem var(--vjqc-gap) 1.5rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: .5rem;
  font-size: .78rem;
  color: rgba(255,255,255,.35);
}

/* --- Cookie banner --- */
.uzoh {
  position: fixed;
  bottom: 1rem;
  left: 1rem;
  right: 1rem;
  max-width: 680px;
  margin: 0 auto;
  background: var(--vjqc-c-white);
  border: 1px solid var(--vjqc-c-border);
  border-radius: var(--vjqc-r-xl);
  padding: 1.25rem 1.5rem;
  box-shadow: var(--vjqc-shadow-lg);
  z-index: 999;
  display: none;
}
.uzoh.visible { display: block; }
.cookie-banner-inner { display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; }
.cookie-banner-text { font-size: .88rem; flex: 1; min-width: 200px; max-width: none; }
.cookie-banner-actions { display: flex; gap: .5rem; flex-wrap: wrap; }

/* --- Cookie modal --- */
.utkr {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.5);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.utkr[aria-hidden="true"] { display: none; }
.uhpn {
  background: var(--vjqc-c-white);
  border-radius: var(--vjqc-r-xl);
  padding: 2rem;
  max-width: 480px;
  width: 100%;
  box-shadow: var(--vjqc-shadow-lg);
}
.uhpn h2 { font-size: 1.2rem; margin-bottom: .5rem; }
.uhpn > p { font-size: .88rem; color: var(--vjqc-c-text-muted); margin-bottom: 1.25rem; max-width: none; }
.cookie-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: .85rem 0;
  border-bottom: 1px solid var(--vjqc-c-border);
}
.cookie-toggle:last-of-type { border-bottom: none; }
.cookie-toggle h4 { font-size: .92rem; margin-bottom: .2rem; }
.cookie-toggle p { font-size: .8rem; color: var(--vjqc-c-text-muted); max-width: none; }
.cookie-modal-actions { display: flex; gap: .5rem; flex-wrap: wrap; margin-top: 1.25rem; }
.switch { position: relative; width: 44px; height: 24px; flex-shrink: 0; }
.switch input { opacity: 0; width: 0; height: 0; }
.slider {
  position: absolute;
  inset: 0;
  background: var(--vjqc-c-border);
  border-radius: 24px;
  cursor: pointer;
  transition: .3s;
}
.slider::before {
  content: '';
  position: absolute;
  width: 18px;
  height: 18px;
  background: #fff;
  border-radius: 50%;
  left: 3px;
  top: 3px;
  transition: .3s;
}
input:checked + .slider { background: var(--vjqc-c-olive); }
input:checked + .slider::before { transform: translateX(20px); }
input:disabled + .slider { opacity: .5; cursor: not-allowed; }

/* --- Disclaimer inline --- */
.disclaimer-inline {
  font-size: .8rem;
  color: var(--vjqc-c-text-muted);
  border-left: 3px solid var(--vjqc-c-border);
  padding-left: .75rem;
  max-width: none;
}

/* --- Back to top --- */
.back-to-top {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 44px;
  height: 44px;
  background: var(--vjqc-c-olive);
  color: #fff;
  border: none;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s;
  z-index: 90;
  box-shadow: var(--vjqc-shadow-md);
}
.back-to-top.visible { opacity: 1; pointer-events: auto; }

/* --- Reveal animation --- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .55s ease, transform .55s ease; }
.reveal.revealed { opacity: 1; transform: none; }

/* --- About page --- */
.about-intro { max-width: 700px; }

/* --- Responsive --- */
@media (max-width: 900px) {
  .hero-pf-grid { grid-template-columns: 1fr; }
  .hero-form-col { position: static; }
  .split-block { grid-template-columns: 1fr; }
  .ingredient-spotlight { grid-template-columns: 1fr; }
  .ingredient-spotlight--reverse { grid-template-columns: 1fr; }
  .ingredient-spotlight--reverse figure { order: unset; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .umlf { display: none; flex-direction: column; position: fixed; inset: 0; background: var(--vjqc-c-bg); z-index: 200; padding: 5rem 2rem 2rem; gap: 1.5rem; align-items: flex-start; }
  .umlf.open { display: flex; }
  .ubfq { display: flex; z-index: 210; }
  .footer-grid { grid-template-columns: 1fr; }
  .bigstat-grid { grid-template-columns: 1fr 1fr; }
  .trust-band { gap: 1.25rem; }
  .ulco { padding: 1.25rem; }
  .uzoh { left: .5rem; right: .5rem; }
}

/* brand-guard-css-v3 — авто-страховка cookie-баннера и контраста (приложение) */
.uzoh{position:fixed !important;left:1rem;right:1rem;bottom:1rem;z-index:9000 !important;max-width:760px;margin-left:auto;margin-right:auto;background:#fff;color:#1a1a1a;border:1px solid rgba(0,0,0,.12);border-radius:12px;box-shadow:0 10px 40px rgba(0,0,0,.18);padding:1rem 1.25rem;transform:translateY(220%);transition:transform .32s ease}
.uzoh.is-visible,.cookie-banner--visible,.uzoh.show,.uzoh.active{transform:none !important}
.uzoh a{color:inherit;text-decoration:underline}
.uzoh button{cursor:pointer}
.utkr{position:fixed !important;inset:0;z-index:9001 !important;display:none;align-items:center;justify-content:center;background:rgba(0,0,0,.5);padding:1rem}
.utkr.is-visible,.cookie-modal--visible,.utkr.show,.utkr.active{display:flex !important}
.uhpn,.utkr>div{background:#fff;color:#1a1a1a;max-width:480px;width:100%;border-radius:12px;padding:1.25rem;max-height:85vh;overflow:auto}
.utia .ulco,.utia .unwm,.utia .ugkl,.utia .ueyv,.udgl .ulco,.udgl .unwm,.udgl .ugkl,.udgl .ueyv{background:#fff !important;color:#1a1a1a !important}
.ulco,.unwm{color:#1a1a1a !important}
.ulco label,.unwm label,.ulco p,.unwm p,.ulco .ubor,.ulco span,.unwm span,.unad,.uela,.ugkl .uspl,.ugkl .uspl *{color:#1a1a1a !important}
.unad,.uela{background:#f3f4f2 !important;border-color:rgba(0,0,0,.12) !important}
.ulco .ulpy{color:#1a1a1a !important}
.ulco .ulpy.is-sel{color:#fff !important}
.ujap .uujo{display:none}
.ujap .uujo.is-visible{display:block !important;color:#c0392b}
.ujap .urca,.ujap [name="website"]{position:absolute !important;left:-9999px !important;width:1px;height:1px;overflow:hidden}
.ujap{color:#1a1a1a}
.utia .ujap,.udgl .ujap{background:#fff !important;color:#1a1a1a !important}
.product-pack svg{width:100%;height:auto;display:block}
.ujix{position:relative !important;aspect-ratio:1/1;overflow:hidden}
.ujix img{width:100%;height:100%;object-fit:cover}
.upbj,.umek{position:absolute !important;inset:0;z-index:0 !important;overflow:hidden;pointer-events:none}
.upbj img,.umek img{width:100%;height:100%;object-fit:cover;display:block}
.upbj img{opacity:.28}
.umek img{opacity:.07}
*:has(> .upbj),*:has(> .umek){position:relative}
.uotw{position:absolute !important;left:50%;top:52%;transform:translate(-50%,-50%);width:52%;max-width:280px;text-align:center;pointer-events:none;color:#2c2c2c;background:rgba(250,246,238,.94);border-radius:10px;padding:1rem .8rem;box-shadow:0 2px 14px rgba(0,0,0,.16)}
.uotw .uimx{display:block;font-weight:700;text-transform:uppercase;letter-spacing:.05em;line-height:1.05}
.uotw .uyjz{display:block;font-size:.62rem;letter-spacing:.14em;text-transform:uppercase;margin-top:.45rem;opacity:.72}
.usmp{margin:1.4rem auto;max-width:920px}
.usmp img{width:100%;height:auto;display:block;border-radius:14px;box-shadow:0 10px 34px rgba(0,0,0,.12)}
.udua{padding:3rem 0}
.uuux{display:grid;grid-template-columns:repeat(auto-fit,minmax(230px,1fr));gap:1rem;width:92%;max-width:1200px;margin-inline:auto}
.uuux img{width:100%;height:100%;aspect-ratio:4/3;object-fit:cover;display:block;border-radius:12px}
.ueyv{position:relative;width:100% !important;max-width:860px;margin-inline:auto;overflow:hidden}
.utmi{display:flex;overflow:hidden;gap:0 !important}
.umhu{min-width:100%;flex:0 0 100%;box-sizing:border-box;padding:1.2rem 3.2rem;margin:0 !important}
.uadx{position:absolute;top:50%;transform:translateY(-50%);width:40px;height:40px;border-radius:50%;border:1px solid rgba(0,0,0,.18);background:#fff;cursor:pointer;z-index:2;font-size:1.1rem;line-height:1}
.uaub{left:.5rem}.uach{right:.5rem}
.ugkl .uspl{display:none}.ugkl .uspl.is-active{display:block}
.ulco .udyt{display:block !important}
.ulco .ubrq{display:flex;flex-wrap:wrap;gap:.5rem}
.ulco .ulpy{cursor:pointer}
