/* =====================================================
   EN GARDE — main.css
   Multi-page · Zendium structure · v3
   Colors: Forest Green + Off-white · Rounded + Clean
   ===================================================== */

/* ---------- RESET & ROOT ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --green:        #1B5E37;
  --green-mid:    #2D7A4F;
  --green-light:  #3D9E62;
  --green-pale:   #EEF5F1;
  --white:        #FFFFFF;
  --off-white:    #F7F7F5;
  --cream:        #F2F0EB;
  --text:         #1A1A1A;
  --text-mid:     #4A4A4A;
  --text-light:   #888;
  --border:       #E0E0DC;
  --shadow-sm:    0 2px 8px rgba(0,0,0,.07);
  --shadow-md:    0 6px 24px rgba(0,0,0,.09);
  --shadow-lg:    0 16px 48px rgba(0,0,0,.1);
  --radius-sm:    8px;
  --radius:       12px;
  --radius-lg:    20px;
  --radius-pill:  999px;
  --transition:   .16s ease-out;
  --max-w:        1180px;
  --font:         'Inter', system-ui, sans-serif;
  --font-head:    'Playfair Display', Georgia, serif;
  --nav-h:        64px;
  --color-error:  var(--color-error);
}

html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }
img { max-width: 100%; display: block; }

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 28px;
}

/* ---------- TYPOGRAPHY ---------- */
h1, h2, h3 { font-family: var(--font-head); font-weight: 600; line-height: 1.15; }
h1 { font-size: clamp(2.2rem, 4vw, 3.6rem); }
h2 { font-size: clamp(1.7rem, 3vw, 2.5rem); }
h3 { font-size: 1.15rem; }

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font); font-weight: 500; font-size: .9rem;
  letter-spacing: .02em; padding: 13px 26px;
  border-radius: var(--radius-pill); border: 2px solid transparent;
  transition: background var(--transition), color var(--transition), border-color var(--transition), box-shadow var(--transition), transform var(--transition); white-space: nowrap; cursor: pointer;
}
.btn--primary { background: var(--green); color: var(--white); border-color: var(--green); }
.btn--primary:hover { background: var(--green-mid); border-color: var(--green-mid); transform: translateY(-1px); box-shadow: 0 6px 18px rgba(27,94,55,.25); }
.btn--outline { background: transparent; color: var(--green); border-color: var(--green); }
.btn--outline:hover { background: var(--green); color: var(--white); }
.btn--ghost { background: transparent; color: var(--text); border-color: var(--border); }
.btn--ghost:hover { border-color: var(--text-mid); }
.btn--white { background: var(--white); color: var(--green); border-color: var(--white); }
.btn--white:hover { background: var(--green-pale); border-color: var(--green-pale); }
.btn--white-outline { background: transparent; color: var(--white); border-color: rgba(255,255,255,.6); }
.btn--white-outline:hover { background: rgba(255,255,255,.1); border-color: var(--white); }
.btn--sm { padding: 9px 20px; font-size: .82rem; }
.btn--lg { padding: 16px 36px; font-size: 1rem; }

/* ---------- SECTION LABELS ---------- */
.label {
  display: block; font-size: .72rem; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase; color: var(--green);
  margin-bottom: 12px;
}
.label--light { color: rgba(255,255,255,.65); }

/* ---------- HEADER / NAV ---------- */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--transition);
}
.header.scrolled { box-shadow: var(--shadow-sm); }

.nav {
  height: var(--nav-h);
  display: flex; align-items: center; gap: 0;
}
.nav__logo {
  font-family: 'Cormorant Garamond', serif; font-size: 1.55rem; font-weight: 500;
  color: var(--text); letter-spacing: .01em; flex-shrink: 0; margin-right: 40px;
}
.nav__logo strong { font-weight: 600; color: var(--green); }

.nav__menu {
  display: flex; align-items: center; gap: 4px; flex: 1;
}
.nav__menu > li { position: relative; }
.nav__menu > li > a,
.nav__menu > li > button {
  font-size: .875rem; font-weight: 400; color: var(--text-mid);
  padding: 8px 14px; border-radius: var(--radius-sm);
  transition: background var(--transition), color var(--transition); white-space: nowrap;
  display: flex; align-items: center; gap: 5px;
}
.nav__menu > li > a:hover,
.nav__menu > li > button:hover { background: var(--green-pale); color: var(--green); }
.nav__menu > li > a.active,
.nav__menu > li > button.active { color: var(--green); font-weight: 500; }


.nav__actions {
  display: flex; align-items: center; gap: 10px; flex-shrink: 0; margin-left: auto;
}
.lang-toggle {
  display: flex; align-items: center; gap: 3px;
  font-size: .75rem; font-weight: 500; letter-spacing: .05em;
  color: var(--text-light); padding: 6px 12px;
  border: 1px solid var(--border); border-radius: var(--radius-pill);
  transition: border-color var(--transition), color var(--transition);
}
.lang-toggle:hover { border-color: var(--green); color: var(--green); }
.lang__active { color: var(--text); font-weight: 700; }
.lang__sep { color: var(--border); margin: 0 1px; }

.nav__burger {
  display: none; flex-direction: column; gap: 5px;
  padding: 4px; border-radius: var(--radius-sm);
}
.nav__burger span {
  display: block; width: 22px; height: 2px;
  background: var(--text); border-radius: 1px; transition: transform var(--transition), opacity var(--transition);
}
.nav__burger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger.active span:nth-child(2) { opacity: 0; }
.nav__burger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- PAGE WRAPPER ---------- */
.page { padding-top: var(--nav-h); }

/* ---------- PAGE HERO (inner pages) ---------- */
.page-hero {
  background: var(--green-pale);
  border-bottom: 1px solid var(--border);
  padding: 64px 0 56px;
}
.page-hero h1 { color: var(--text); margin-bottom: 14px; }
.page-hero p {
  font-size: 1.05rem; color: var(--text-mid); max-width: 540px; line-height: 1.7;
}
.page-hero--dark {
  background: linear-gradient(130deg, var(--green) 0%, var(--green-mid) 100%);
}
.page-hero--dark h1 { color: var(--white); }
.page-hero--dark p { color: rgba(255,255,255,.8); }
.page-hero--dark .label { color: rgba(255,255,255,.6); }

/* ---------- HERO (homepage) ---------- */
.hero {
  background: var(--off-white);
  border-bottom: 1px solid var(--border);
}
.hero__inner {
  min-height: calc(100vh - var(--nav-h));
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: center; gap: 64px;
  padding-top: 80px; padding-bottom: 60px;
}
.hero__content .label { margin-bottom: 16px; }
.hero__title {
  font-family: var(--font-head); font-size: clamp(2.4rem, 4.5vw, 4rem);
  font-weight: 700; line-height: 1.08; color: var(--text); margin-bottom: 22px;
}
.hero__title em { font-style: italic; color: var(--green); }
.hero__sub {
  font-size: 1.05rem; color: var(--text-mid); line-height: 1.7;
  max-width: 440px; margin-bottom: 36px;
}
.hero__ctas { display: flex; gap: 12px; flex-wrap: wrap; }

.hero__visual {
  display: flex; justify-content: center; align-items: flex-end;
}
.hero__stage {
  position: relative; width: 320px; height: 420px;
  display: flex; justify-content: center; align-items: flex-end;
}
.hero__glow {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 260px; height: 260px;
  background: radial-gradient(circle, rgba(27,94,55,.12) 0%, transparent 70%);
  border-radius: 50%;
}
.tubes-group {
  display: flex; align-items: flex-end; gap: 18px; position: relative; z-index: 1;
}
.tube {
  display: flex; justify-content: center;
}
.tube__body {
  width: 62px; height: 220px;
  border-radius: 8px 8px 4px 4px;
  display: flex; flex-direction: column;
  align-items: center; padding: 16px 8px; gap: 4px;
  position: relative; overflow: hidden;
  box-shadow: var(--shadow-md);
}
.tube--classic .tube__body  { background: linear-gradient(160deg, #1B5E37, #2D7A4F); }
.tube--sensitive .tube__body { background: linear-gradient(160deg, #2A7062, #1D5249); }
.tube--fresh .tube__body    { background: linear-gradient(160deg, #5A7A3A, #3D5A27); }
.tube--back  { transform: scale(.82) translateY(14px); opacity: .75; }
.tube--front { transform: scale(.72) translateY(24px); opacity: .55; }
.tube__label-brand { font-size: .42rem; font-weight: 700; letter-spacing: .18em; color: rgba(255,255,255,.5); text-transform: uppercase; }
.tube__label-name  { font-size: .58rem; font-weight: 700; letter-spacing: .08em; color: rgba(255,255,255,.9); text-transform: uppercase; }
.tube__stripe {
  position: absolute; top: 0; right: 10px;
  width: 2px; height: 100%; background: rgba(255,255,255,.12);
}
.hero__shadow {
  position: absolute; bottom: -10px; left: 50%; transform: translateX(-50%);
  width: 180px; height: 14px;
  background: radial-gradient(ellipse, rgba(0,0,0,.12) 0%, transparent 70%);
  border-radius: 50%;
}

/* ---------- TRUST BAR ---------- */
.trust-bar {
  background: var(--green); padding: 18px 0;
}
.trust-bar__list {
  display: flex; justify-content: center; align-items: center;
  gap: 0; flex-wrap: nowrap;
}
.trust-bar__item {
  display: flex; align-items: center; gap: 8px;
  font-size: .82rem; font-weight: 500; color: rgba(255,255,255,.9);
  padding: 0 32px; letter-spacing: .01em;
}
.trust-bar__item + .trust-bar__item {
  border-left: 1px solid rgba(255,255,255,.2);
}
.trust-bar__dot {
  width: 5px; height: 5px; border-radius: 50%;
  background: rgba(255,255,255,.45); flex-shrink: 0;
}

/* ---------- SECTION (generic) ---------- */
.section { padding: 96px 0; }
.section--alt { background: var(--off-white); }
.section--green { background: var(--green); }
.section--cream { background: var(--cream); }
.section__header { margin-bottom: 52px; }
.section__header--center { text-align: center; }
.section__header--center .section__sub { margin: 0 auto; }
.section__title { margin-bottom: 14px; color: var(--text); }
.section__title--light { color: var(--white); }
.section__sub {
  font-size: 1rem; color: var(--text-mid); max-width: 560px; line-height: 1.7;
}
.section__sub--light { color: rgba(255,255,255,.75); }

/* ---------- 2-COL SPLIT ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.split--reverse { direction: rtl; }
.split--reverse > * { direction: ltr; }
.split__text p { font-size: .95rem; color: var(--text-mid); line-height: 1.75; margin-bottom: 18px; }
.split__text .btn { margin-top: 8px; }
.split__visual {
  aspect-ratio: 1/1; max-width: 480px;
  border-radius: var(--radius-lg); overflow: hidden;
  background: var(--green-pale); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
}
.split__visual-inner {
  display: flex; flex-direction: column; align-items: center;
  gap: 12px; width: 100%; padding: 32px;
}
.split__visual-icon { font-size: 5rem; }
.split__stat-block { margin-top: 24px; }
.stat-card {
  display: inline-flex; flex-direction: column; gap: 4px;
  border: 1px solid var(--border); border-radius: var(--radius);
  padding: 18px 24px;
}
.stat-card__num { font-family: var(--font-head); font-size: 2.4rem; font-weight: 700; color: var(--green); line-height: 1; }
.stat-card__label { font-size: .82rem; color: var(--text-mid); }

/* ---------- 3-COL PILLAR ---------- */
.pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; }
.pillars--bordered {
  border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden;
}
.pillar {
  padding: 40px 32px;
  border-right: 1px solid var(--border);
  transition: background var(--transition);
}
.pillar:last-child { border-right: none; }
.pillars--bordered .pillar:hover { background: var(--green-pale); }
.pillar__icon {
  width: 40px; height: 40px; margin-bottom: 20px;
  border-radius: var(--radius-sm);
  background: var(--green-pale); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: .72rem; font-weight: 700; letter-spacing: .06em;
  color: var(--green);
}
.pillar h3 { font-family: var(--font); font-size: 1rem; font-weight: 600; margin-bottom: 12px; }
.pillar p { font-size: .875rem; color: var(--text-mid); line-height: 1.7; }

/* ---------- PRODUCT GRID ---------- */
.product-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.product-card {
  border: 1px solid var(--border); border-radius: var(--radius-lg);
  overflow: hidden; background: var(--white);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition); display: flex; flex-direction: column;
}
.product-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--green-light); }

.product-card__img {
  height: 200px; display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.product-card__img--classic  { background: linear-gradient(135deg, var(--green-pale), #DFF0E5); }
.product-card__img--sensitive { background: linear-gradient(135deg, #E8F3F0, #D0E8E3); }
.product-card__img--whitening { background: linear-gradient(135deg, #F5F2E8, #EDE8D5); }
.product-card__img--fresh    { background: linear-gradient(135deg, #E8F0E8, #D5E8D5); }
.product-card__img--junior   { background: linear-gradient(135deg, #F5E8F0, #EDD5E8); }
.product-card__img--brush    { background: linear-gradient(135deg, var(--green-pale), #DFF0E5); }

.product-card__tube {
  width: 52px; height: 160px;
  border-radius: 6px 6px 3px 3px;
  display: flex; flex-direction: column;
  align-items: center; padding: 12px 6px; gap: 3px;
  box-shadow: var(--shadow-sm);
}
.product-card__img--classic  .product-card__tube { background: linear-gradient(160deg, #1B5E37, #2D7A4F); }
.product-card__img--sensitive .product-card__tube { background: linear-gradient(160deg, #2A7062, #1D5249); }
.product-card__img--whitening .product-card__tube { background: linear-gradient(160deg, #7A6B2A, #5C5020); }
.product-card__img--fresh    .product-card__tube { background: linear-gradient(160deg, #3A6B2A, #2A5020); }
.product-card__img--junior   .product-card__tube { background: linear-gradient(160deg, #9B4580, #7A3060); }
.product-card__tube-brand { font-size: .38rem; font-weight: 700; letter-spacing: .18em; color: rgba(255,255,255,.5); text-transform: uppercase; }
.product-card__tube-name  { font-size: .52rem; font-weight: 700; letter-spacing: .08em; color: rgba(255,255,255,.9); text-transform: uppercase; }

.product-card__brush {
  width: 32px; height: 160px;
  border-radius: 16px 16px 4px 4px;
  background: linear-gradient(160deg, #1B5E37, #2D7A4F);
  box-shadow: var(--shadow-sm);
}

.product-card__badge {
  position: absolute; top: 12px; left: 12px;
  background: var(--green); color: var(--white);
  font-size: .65rem; font-weight: 700; letter-spacing: .05em; text-transform: uppercase;
  padding: 4px 10px; border-radius: var(--radius-pill);
}
.product-card__badge--new { background: #7A6B2A; }

.product-card__body { padding: 22px; display: flex; flex-direction: column; flex: 1; }
.product-card__cat {
  font-size: .7rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
  color: var(--text-light); margin-bottom: 6px;
}
.product-card__name {
  font-family: var(--font); font-size: 1rem; font-weight: 600;
  margin-bottom: 8px; color: var(--text);
}
.product-card__desc {
  font-size: .85rem; color: var(--text-mid); line-height: 1.6; margin-bottom: 16px; flex: 1;
}
.product-card__tags { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 18px; }
.tag {
  font-size: .68rem; font-weight: 600; letter-spacing: .04em;
  padding: 3px 9px; border-radius: var(--radius-pill);
  background: var(--green-pale); color: var(--green); border: 1px solid rgba(27,94,55,.15);
}
.product-card__footer {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 16px; border-top: 1px solid var(--border);
}
.product-card__price { font-size: .95rem; font-weight: 700; color: var(--text); }
.product-card__link {
  font-size: .82rem; font-weight: 500; color: var(--green);
  display: flex; align-items: center; gap: 4px;
  transition: color var(--transition);
}
.product-card__link:hover { gap: 8px; }
.product-card__link::after { content: '→'; }

/* ---------- CATEGORY TABS ---------- */
.cat-tabs {
  display: flex; gap: 8px; margin-bottom: 40px; flex-wrap: wrap;
}
.cat-tab {
  font-size: .85rem; font-weight: 500; padding: 9px 20px;
  border: 1px solid var(--border); border-radius: var(--radius-pill);
  color: var(--text-mid); transition: background var(--transition), color var(--transition), border-color var(--transition); cursor: pointer;
  background: var(--white);
}
.cat-tab:hover { border-color: var(--green); color: var(--green); }
.cat-tab.active {
  background: var(--green); color: var(--white); border-color: var(--green);
}

/* ---------- SUSTAINABILITY CARDS ---------- */
.sust-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.sust-card {
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--radius-lg); padding: 36px 28px;
  transition: background var(--transition);
}
.sust-card:hover { background: rgba(255,255,255,.13); }
.sust-card__num {
  font-size: .7rem; font-weight: 700; letter-spacing: .12em;
  color: rgba(255,255,255,.4); margin-bottom: 16px; display: block;
}
.sust-card h3 { font-family: var(--font); font-size: 1rem; font-weight: 600; color: var(--white); margin-bottom: 10px; }
.sust-card p { font-size: .875rem; color: rgba(255,255,255,.72); line-height: 1.7; }
.sust-stat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; }
.sust-stat { text-align: center; padding: 36px 24px; border: 1px solid var(--border); border-radius: var(--radius-lg); background: var(--white); }
.sust-stat__num { font-family: var(--font-head); font-size: clamp(2.8rem, 5vw, 4rem); font-weight: 700; color: var(--green); display: block; line-height: 1; margin-bottom: 12px; }
.sust-stat__label { font-size: .85rem; color: var(--text-mid); line-height: 1.5; }

/* ---------- SCIENCE SECTION ---------- */
.science-steps { display: flex; flex-direction: column; gap: 0; }
.science-step {
  display: grid; grid-template-columns: 64px 1fr; gap: 24px;
  padding: 32px 0; border-bottom: 1px solid var(--border); align-items: flex-start;
}
.science-step:last-child { border-bottom: none; }
.science-step__num {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--green-pale); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: .75rem; font-weight: 700; color: var(--green); flex-shrink: 0;
}
.science-step h3 { font-family: var(--font); font-size: 1rem; font-weight: 600; margin-bottom: 8px; }
.science-step p { font-size: .875rem; color: var(--text-mid); line-height: 1.7; }

/* ---------- FAQ ---------- */
.faq-list { border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:last-child { border-bottom: none; }
.faq-question {
  width: 100%; display: flex; align-items: center;
  justify-content: space-between; gap: 16px;
  padding: 20px 28px; text-align: left;
  font-size: .925rem; font-weight: 500; color: var(--text);
  transition: background var(--transition);
}
.faq-question:hover { background: var(--off-white); }
.faq-item.open .faq-question { color: var(--green); background: var(--green-pale); }
.faq-icon {
  width: 22px; height: 22px; border-radius: 50%;
  border: 1.5px solid var(--border); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; color: var(--text-light); line-height: 1;
  transition: border-color var(--transition), color var(--transition), transform var(--transition);
}
.faq-item.open .faq-icon { border-color: var(--green); color: var(--green); transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .22s ease-out; }
.faq-item.open .faq-answer { max-height: 500px; }
.faq-answer p {
  padding: 20px 28px 24px; font-size: .875rem;
  color: var(--text-mid); line-height: 1.78;
  border-top: 1px solid var(--border);
}

/* ---------- TESTIMONIALS ---------- */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.testimonial {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 28px;
  display: flex; flex-direction: column; gap: 16px;
}
.testimonial__text { font-size: .9rem; color: var(--text-mid); line-height: 1.7; font-style: italic; flex: 1; }
.testimonial__author {
  display: flex; align-items: center; gap: 12px;
  padding-top: 16px; border-top: 1px solid var(--border);
}
.testimonial__avatar {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--green-pale); color: var(--green);
  display: flex; align-items: center; justify-content: center;
  font-size: .72rem; font-weight: 700; flex-shrink: 0; border: 1px solid var(--border);
}
.testimonial__name { font-size: .875rem; font-weight: 600; display: block; }
.testimonial__loc  { font-size: .78rem; color: var(--text-light); }

/* ---------- CTA STRIP ---------- */
.cta-strip {
  padding: 80px 0; background: var(--green); text-align: center; position: relative; overflow: hidden;
}
.cta-strip::before {
  content: 'engarde'; font-family: var(--font-head); font-size: 20rem; font-weight: 700;
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  color: rgba(255,255,255,.03); white-space: nowrap; pointer-events: none; letter-spacing: -.02em;
}
.cta-strip h2 { color: var(--white); margin-bottom: 14px; position: relative; }
.cta-strip p { color: rgba(255,255,255,.78); font-size: 1rem; max-width: 440px; margin: 0 auto 32px; line-height: 1.7; position: relative; }
.cta-strip__actions { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; position: relative; }
.cta-strip__note { font-size: .78rem; color: rgba(255,255,255,.45); margin-top: 16px; position: relative; }

/* ---------- SUB-PAGE CARD LINKS ---------- */
.subpage-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.subpage-card {
  border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 36px 28px; background: var(--white);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition); display: block;
}
.subpage-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--green-light); }
.subpage-card__num { font-size: .7rem; font-weight: 700; letter-spacing: .12em; color: var(--text-light); margin-bottom: 16px; display: block; }
.subpage-card h3 { font-family: var(--font); font-size: 1.05rem; font-weight: 600; margin-bottom: 10px; }
.subpage-card p { font-size: .875rem; color: var(--text-mid); line-height: 1.65; margin-bottom: 16px; }
.subpage-card__cta { font-size: .82rem; font-weight: 600; color: var(--green); display: flex; align-items: center; gap: 4px; transition: color var(--transition); }
.subpage-card:hover .subpage-card__cta { gap: 8px; }
.subpage-card__cta::after { content: '→'; }

/* ---------- BREADCRUMB ---------- */
.breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-size: .78rem; color: var(--text-light); margin-bottom: 20px;
}
.breadcrumb a { color: var(--green); }
.breadcrumb__sep { color: var(--border); }
.breadcrumb--light,
.page-hero--dark .breadcrumb { color: rgba(255,255,255,.55); }
.breadcrumb--light a,
.page-hero--dark .breadcrumb a { color: rgba(255,255,255,.8); }
.breadcrumb--light .breadcrumb__sep,
.page-hero--dark .breadcrumb .breadcrumb__sep { color: rgba(255,255,255,.3); }

/* ---------- SCROLL REVEAL ---------- */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .28s ease-out var(--reveal-delay, 0s), transform .28s ease-out var(--reveal-delay, 0s); }
.reveal.revealed { opacity: 1; transform: none; }

/* ---------- FOOTER ---------- */
.footer { background: #111; color: rgba(255,255,255,.55); }
.footer__main {
  display: grid; grid-template-columns: 260px 1fr;
  gap: 64px; padding: 64px 0 56px;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.footer__logo {
  font-family: 'Cormorant Garamond', serif; font-size: 1.45rem; font-weight: 500;
  color: var(--white); margin-bottom: 12px; display: block;
}
.footer__logo strong { font-weight: 600; color: rgba(255,255,255,.6); }
.footer__tagline { font-size: .85rem; color: rgba(255,255,255,.35); margin-bottom: 20px; }
.footer__social { display: flex; gap: 8px; }
.footer__social a {
  width: 34px; height: 34px; border-radius: var(--radius-sm);
  border: 1px solid rgba(255,255,255,.1);
  display: flex; align-items: center; justify-content: center;
  font-size: .65rem; font-weight: 700; text-transform: uppercase; letter-spacing: .04em;
  color: rgba(255,255,255,.3); transition: border-color var(--transition), color var(--transition);
}
.footer__social a:hover { border-color: rgba(255,255,255,.3); color: rgba(255,255,255,.7); }
.footer__nav { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
.footer__col h4 {
  font-size: .7rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: rgba(255,255,255,.45); margin-bottom: 18px;
}
.footer__col ul { display: flex; flex-direction: column; gap: 9px; }
.footer__col a { font-size: .85rem; color: rgba(255,255,255,.38); transition: color var(--transition); }
.footer__col a:hover { color: rgba(255,255,255,.75); }
.footer__bottom {
  padding: 20px 0; display: flex; justify-content: space-between;
  align-items: center; flex-wrap: wrap; gap: 8px;
}
.footer__bottom p { font-size: .75rem; color: rgba(255,255,255,.22); }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
  .hero__inner { grid-template-columns: 1fr; text-align: center; padding-top: 60px; padding-bottom: 50px; }
  .hero__visual { justify-content: center; margin-top: 48px; }
  .hero__sub { margin: 0 auto 32px; }
  .hero__ctas { justify-content: center; }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .split { grid-template-columns: 1fr; gap: 40px; }
  .split__visual { max-width: 100%; }
  .split--reverse { direction: ltr; }
  .subpage-cards { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .nav__menu { display: none; }
  .nav__menu.open {
    display: flex; flex-direction: column; position: fixed;
    top: var(--nav-h); left: 0; right: 0; bottom: 0;
    background: var(--white); padding: 16px 28px;
    overflow-y: auto; gap: 0; border-top: 1px solid var(--border);
    box-shadow: var(--shadow-md);
  }
  .nav__menu.open > li > a,
  .nav__menu.open > li > button {
    display: flex; padding: 14px 0; border-bottom: 1px solid var(--border);
    border-radius: 0; font-size: .95rem; width: 100%;
  }
  .nav__burger { display: flex; }

  .pillars { grid-template-columns: 1fr; }
  .pillar { border-right: none; border-bottom: 1px solid var(--border); }
  .pillar:last-child { border-bottom: none; }
  .sust-grid { grid-template-columns: 1fr; }
  .sust-stat-grid { grid-template-columns: 1fr 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .product-grid { grid-template-columns: 1fr; }
  .subpage-cards { grid-template-columns: 1fr; }
  .trust-bar__list { flex-direction: column; gap: 10px; }
  .trust-bar__item { border-left: none !important; }
  .footer__main { grid-template-columns: 1fr; gap: 40px; }
  .footer__nav { grid-template-columns: 1fr 1fr; }
  .footer__bottom { flex-direction: column; text-align: center; }
  .section { padding: 64px 0; }
  .page-hero { padding: 44px 0 36px; }
}
@media (max-width: 480px) {
  .container { padding: 0 20px; }
  .hero__stage { width: 240px; height: 320px; }
  .hero__ctas { flex-direction: column; }
  .cta-strip__actions { flex-direction: column; align-items: center; }
  .footer__nav { grid-template-columns: 1fr; }
}

/* ---------- PRODUCT DETAIL PAGES ---------- */
.product-hero { background: var(--off-white); border-bottom: 1px solid var(--border); }
.product-hero__inner {
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: center; gap: 64px;
  padding-top: 56px; padding-bottom: 64px;
}
.product-hero__info .label { margin-bottom: 14px; }
.product-hero__info h1 { margin-bottom: 18px; font-size: clamp(2rem, 3.5vw, 3rem); }
.product-hero__info > p {
  font-size: 1rem; color: var(--text-mid); line-height: 1.75;
  margin-bottom: 24px; max-width: 440px;
}
.benefits-list {
  list-style: none; display: flex; flex-direction: column;
  gap: 11px; margin-bottom: 32px;
}
.benefits-list li {
  display: flex; align-items: center; gap: 10px;
  font-size: .9rem; color: var(--text-mid);
}
.benefits-list li::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: var(--green); flex-shrink: 0;
}
.product-hero__footer { display: flex; align-items: center; gap: 28px; flex-wrap: wrap; }
.product-hero__price {
  font-family: var(--font-head); font-size: 2.2rem;
  font-weight: 700; color: var(--text); line-height: 1;
}
.product-hero__actions { display: flex; gap: 10px; flex-wrap: wrap; }
.product-hero__visual {
  display: flex; justify-content: center; align-items: center;
  min-height: 380px;
}
.product-tube-lg {
  width: 100px; height: 300px;
  border-radius: 12px 12px 6px 6px; position: relative;
  display: flex; flex-direction: column;
  align-items: center; padding: 24px 12px 20px; gap: 6px;
  box-shadow: 0 20px 60px rgba(0,0,0,.18);
}
.product-tube-lg__brand { font-size: .52rem; font-weight: 700; letter-spacing: .22em; color: rgba(255,255,255,.5); text-transform: uppercase; }
.product-tube-lg__name { font-size: .78rem; font-weight: 700; letter-spacing: .1em; color: rgba(255,255,255,.95); text-transform: uppercase; }
.product-tube-lg__stripe {
  position: absolute; top: 0; right: 12px;
  width: 2px; height: 100%; background: rgba(255,255,255,.1);
}
.product-tube-lg__shadow {
  position: absolute; bottom: -16px; left: 50%; transform: translateX(-50%);
  width: 80px; height: 16px;
  background: radial-gradient(ellipse, rgba(0,0,0,.15) 0%, transparent 70%);
  border-radius: 50%;
}
/* tube variants */
.product-tube-lg--classic   { background: linear-gradient(160deg, #1B5E37, #2D7A4F); }
.product-tube-lg--sensitive { background: linear-gradient(160deg, #2A7062, #1D5249); }
.product-tube-lg--whitening { background: linear-gradient(160deg, #7A6B2A, #5C5020); }
.product-tube-lg--fresh     { background: linear-gradient(160deg, #3A6B2A, #2A5020); }
.product-tube-lg--junior    { background: linear-gradient(160deg, #9B4580, #7A3060); }
.product-brush-lg {
  width: 40px; height: 300px;
  border-radius: 20px 20px 6px 6px;
  background: linear-gradient(160deg, #1B5E37, #2D7A4F);
  box-shadow: 0 20px 60px rgba(0,0,0,.18);
}

/* Section green — pillar overrides */
.section--green .pillar { border-right-color: rgba(255,255,255,.12); }
.section--green .pillar:last-child { border-right: none; }
.section--green .pillar h3 { color: var(--white); }
.section--green .pillar p { color: rgba(255,255,255,.7); }
.section--green .pillar__icon { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.12); color: rgba(255,255,255,.8); }

/* Ingredient highlight cards inside split visual */
.ingredient-cards { display: flex; flex-direction: column; gap: 12px; width: 100%; }
.ingredient-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 16px 20px;
  display: flex; align-items: flex-start; gap: 14px;
}
.ingredient-card__icon {
  width: 36px; height: 36px; border-radius: var(--radius-sm);
  background: var(--green-pale); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: .65rem; font-weight: 700; color: var(--green);
  flex-shrink: 0; letter-spacing: .05em;
}
.ingredient-card__name { font-size: .82rem; font-weight: 600; color: var(--text); display: block; margin-bottom: 3px; }
.ingredient-card__desc { font-size: .78rem; color: var(--text-mid); line-height: 1.55; }

/* ---------- ENAMEL REPAIR DIAGRAM ---------- */
.enamel-diagram {
  display: flex; align-items: center; gap: 16px;
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 24px 20px;
  margin-bottom: 4px;
}
.enamel-panel { flex: 1; text-align: center; }
.enamel-label {
  font-size: .7rem; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; margin-bottom: 12px;
}
.enamel-label--before { color: var(--text-light); }
.enamel-label--after { color: var(--green); }
.enamel-crystals {
  display: flex; align-items: flex-end; justify-content: center;
  gap: 4px; height: 72px; margin-bottom: 10px;
}
.enamel-crystals span {
  display: block; width: 11px; border-radius: 3px 3px 0 0;
}
.enamel-crystals--damaged span:nth-child(1) { height: 48px; background: #c8ddd1; }
.enamel-crystals--damaged span:nth-child(2) { height: 32px; background: #b8d0c2; }
.enamel-crystals--damaged span:nth-child(3) { height: 58px; background: #c8ddd1; }
.enamel-crystals--damaged span:nth-child(4) { height: 28px; background: #b0c9ba; }
.enamel-crystals--damaged span:nth-child(5) { height: 44px; background: #c0d6c8; }
.enamel-crystals--healed span { height: 68px; background: var(--green-mid); opacity: .85; }
.enamel-crystals--healed span:nth-child(2),
.enamel-crystals--healed span:nth-child(4) { opacity: 1; background: var(--green); }
.enamel-sublabel { font-size: .72rem; color: var(--text-light); line-height: 1.4; }
.enamel-arrow {
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  flex-shrink: 0;
}
.enamel-arrow__line {
  width: 2px; height: 40px;
  background: linear-gradient(to bottom, var(--green-pale), var(--green));
  position: relative;
}
.enamel-arrow__line::after {
  content: ''; position: absolute; bottom: -6px; left: 50%;
  transform: translateX(-50%);
  border-left: 5px solid transparent; border-right: 5px solid transparent;
  border-top: 7px solid var(--green);
}
.enamel-arrow__label {
  font-size: .65rem; font-weight: 700; letter-spacing: .1em;
  color: var(--green); text-transform: uppercase;
}

/* ---------- SAFETY GRID ---------- */
.safety-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.safety-card {
  background: var(--off-white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 28px 24px;
  transition: box-shadow var(--transition), transform var(--transition);
}
.safety-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.safety-card__icon {
  width: 48px; height: 48px; border-radius: var(--radius);
  background: var(--green-pale); border: 1px solid rgba(27,94,55,.15);
  display: flex; align-items: center; justify-content: center;
  color: var(--green); margin-bottom: 16px;
}
.safety-card__icon svg { width: 26px; height: 26px; }
.safety-card h4 {
  font-family: var(--font-head); font-size: 1rem; font-weight: 600;
  margin-bottom: 8px; color: var(--text);
}
.safety-card p { font-size: .85rem; color: var(--text-mid); line-height: 1.6; }

@media (max-width: 900px) {
  .safety-grid { grid-template-columns: repeat(2, 1fr); }
  .enamel-diagram { flex-direction: column; }
  .enamel-arrow { flex-direction: row; }
  .enamel-arrow__line { width: 40px; height: 2px; background: linear-gradient(to right, var(--green-pale), var(--green)); }
  .enamel-arrow__line::after { bottom: auto; top: 50%; left: auto; right: -6px; transform: translateY(-50%); border-top: 5px solid transparent; border-bottom: 5px solid transparent; border-left: 7px solid var(--green); border-right: none; }
}
@media (max-width: 580px) {
  .safety-grid { grid-template-columns: 1fr; }
}

/* ---------- CONTACT PAGE LAYOUT ---------- */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 60px;
  align-items: start;
}

/* ---------- CONTACT FORM ---------- */
.contact-form-wrap { min-width: 0; }

.form-success {
  background: var(--green-pale); border: 1.5px solid rgba(27,94,55,.2);
  border-radius: var(--radius-lg); padding: 48px 40px; text-align: center;
}
.form-success__icon {
  width: 64px; height: 64px; margin: 0 auto 20px;
  background: var(--green); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
}
.form-success__icon svg { width: 32px; height: 32px; }
.form-success h3 { font-family: var(--font-head); font-size: 1.6rem; margin-bottom: 10px; color: var(--green); }
.form-success p  { color: var(--text-mid); }

.contact-form { display: flex; flex-direction: column; gap: 20px; }
.contact-form__honeypot { display: none !important; }

.form-row { display: grid; gap: 20px; }
.form-row--half { grid-template-columns: 1fr 1fr; }

.form-group { display: flex; flex-direction: column; gap: 6px; position: relative; }
.form-group--check { gap: 8px; }

.form-label {
  font-size: .82rem; font-weight: 600; color: var(--text);
  letter-spacing: .01em;
}

.form-input {
  width: 100%; font-family: var(--font); font-size: .92rem; color: var(--text);
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: var(--radius); padding: 12px 16px;
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none; appearance: none;
}
.form-input:focus {
  border-color: var(--green-mid);
  box-shadow: 0 0 0 3px rgba(27,94,55,.1);
}
.form-input::placeholder { color: var(--text-light); }

.form-select-wrap { position: relative; }
.form-select { cursor: pointer; padding-right: 36px; }
.form-select-arrow {
  position: absolute; right: 14px; top: 50%; transform: translateY(-50%) rotate(90deg);
  color: var(--text-mid); font-size: 1.1rem; pointer-events: none;
  line-height: 1;
}

.form-textarea { resize: vertical; min-height: 130px; line-height: 1.6; }

.form-error {
  font-size: .78rem; color: var(--color-error); display: none;
}
.has-error .form-input { border-color: var(--color-error); }
.has-error .form-error { display: block; }

/* Checkbox */
.form-checkbox {
  display: flex; align-items: flex-start; gap: 12px; cursor: pointer;
}
.form-checkbox input { position: absolute; opacity: 0; width: 0; height: 0; }
.form-checkbox__box {
  flex-shrink: 0; width: 20px; height: 20px;
  border: 1.5px solid var(--border); border-radius: 5px;
  background: var(--white); margin-top: 1px;
  transition: border-color var(--transition), background var(--transition);
  position: relative;
}
.form-checkbox input:checked ~ .form-checkbox__box {
  background: var(--green); border-color: var(--green);
}
.form-checkbox input:checked ~ .form-checkbox__box::after {
  content: ''; position: absolute; left: 5px; top: 2px;
  width: 6px; height: 10px;
  border: 2px solid var(--white); border-top: none; border-left: none;
  transform: rotate(45deg);
}
.form-checkbox input:focus-visible ~ .form-checkbox__box {
  box-shadow: 0 0 0 3px rgba(27,94,55,.18);
}
.form-checkbox__label { font-size: .85rem; color: var(--text-mid); line-height: 1.55; }
.form-checkbox__label a { color: var(--green); text-decoration: underline; }
.has-error .form-checkbox__box { border-color: var(--color-error); }

/* Submit button loading state */
.contact-form__submit { align-self: flex-start; position: relative; min-width: 180px; }
.btn-loader {
  display: none; width: 18px; height: 18px; margin-left: 10px;
  border: 2px solid rgba(255,255,255,.4); border-top-color: var(--white);
  border-radius: 50%;
}
.contact-form__submit.loading .btn-text { opacity: .6; }
.contact-form__submit.loading .btn-loader { display: inline-block; animation: spin .7s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ---------- CONTACT INFO SIDEBAR ---------- */
.contact-info { display: flex; flex-direction: column; gap: 0; }

.contact-info__block {
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
}
.contact-info__block:first-child { padding-top: 0; }
.contact-info__block:last-child { border-bottom: none; }

.contact-info__block h3 {
  font-family: var(--font); font-size: .72rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase; color: var(--text-light);
  margin-bottom: 18px;
}

.contact-info__list { display: flex; flex-direction: column; gap: 16px; }
.contact-info__list li { display: flex; align-items: flex-start; gap: 14px; }

.contact-info__icon {
  flex-shrink: 0; width: 36px; height: 36px;
  background: var(--green-pale); border-radius: var(--radius-sm);
  border: 1px solid rgba(27,94,55,.12);
  display: flex; align-items: center; justify-content: center;
  color: var(--green); margin-top: 1px;
}
.contact-info__icon svg { width: 16px; height: 16px; }

.contact-info__label {
  display: block; font-size: .72rem; font-weight: 600;
  letter-spacing: .06em; text-transform: uppercase; color: var(--text-light);
  margin-bottom: 3px;
}
.contact-info__value {
  display: block; font-size: .92rem; color: var(--text); line-height: 1.55;
}
a.contact-info__value { color: var(--green); }
a.contact-info__value:hover { text-decoration: underline; }

.contact-info__hours {
  display: flex; flex-direction: column; gap: 10px; margin-bottom: 12px;
}
.contact-info__hours li {
  display: flex; justify-content: space-between;
  font-size: .88rem; color: var(--text-mid);
}
.contact-info__hours li span:last-child { font-weight: 500; color: var(--text); }

.contact-info__note { font-size: .82rem; color: var(--text-light); line-height: 1.55; }

.contact-info__block--highlight {
  display: flex; align-items: flex-start; gap: 14px;
}
.contact-info__hi-icon {
  flex-shrink: 0; width: 38px; height: 38px;
  background: var(--green-pale); border-radius: var(--radius-sm);
  border: 1px solid rgba(27,94,55,.12);
  display: flex; align-items: center; justify-content: center; color: var(--green);
}
.contact-info__hi-icon svg { width: 18px; height: 18px; }
.contact-info__block--highlight strong {
  display: block; font-size: .88rem; font-weight: 600;
  color: var(--text); margin-bottom: 5px;
}
.contact-info__block--highlight p {
  font-size: .82rem; color: var(--text-mid); line-height: 1.55; margin: 0;
}

@media (max-width: 900px) {
  .contact-layout { grid-template-columns: 1fr; gap: 40px; }
  .contact-info { order: -1; }
  .form-row--half { grid-template-columns: 1fr; }
  .contact-form__submit { width: 100%; }
}

/* Contact banner */
.contact-banner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 32px; flex-wrap: wrap;
  border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 40px 48px; background: var(--white);
}
.contact-banner__text h3 { font-family: var(--font); font-size: 1.1rem; font-weight: 600; margin-bottom: 6px; }
.contact-banner__text p { font-size: .9rem; color: var(--text-mid); max-width: 380px; line-height: 1.65; }
.contact-banner__actions { display: flex; gap: 10px; flex-wrap: wrap; flex-shrink: 0; }

@media (max-width: 1024px) {
  .product-hero__inner { grid-template-columns: 1fr; text-align: center; }
  .product-hero__info > p { margin-left: auto; margin-right: auto; }
  .product-hero__footer { justify-content: center; }
  .product-hero__visual { min-height: 280px; }
}
@media (max-width: 768px) {
  .contact-banner { flex-direction: column; align-items: flex-start; padding: 28px; }
  .product-tube-lg { width: 80px; height: 240px; }
}

/* ---------- COOKIE BANNER ---------- */
.cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 9999;
  background: var(--white); border-top: 1px solid var(--border);
  box-shadow: 0 -4px 24px rgba(0,0,0,.08);
  transform: translateY(100%); transition: transform .25s ease-out;
  padding: 20px 0;
}
.cookie-banner.visible { transform: translateY(0); }
.cookie-banner__inner {
  max-width: 1180px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; gap: 32px; flex-wrap: wrap;
}
.cookie-banner__text { flex: 1; min-width: 260px; }
.cookie-banner__title { font-size: .9rem; font-weight: 600; color: var(--text); display: block; margin-bottom: 4px; }
.cookie-banner__desc { font-size: .82rem; color: var(--text-mid); line-height: 1.55; }
.cookie-banner__actions { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; flex-shrink: 0; }
.cookie-banner__link { font-size: .8rem; color: var(--text-light); text-decoration: underline; padding: 4px 8px; }
.cookie-banner__link:hover { color: var(--green); }
@media (max-width: 600px) {
  .cookie-banner__inner { flex-direction: column; align-items: flex-start; gap: 16px; }
  .cookie-banner__actions { width: 100%; }
}

/* ---------- PRODUCT PAGE (Zendium-style) ---------- */
.product-page { padding: 40px 0 72px; }
.product-page__layout {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: start; margin-top: 32px;
}
.product-page__image {
  border-radius: var(--radius-lg); padding: 64px 40px;
  display: flex; justify-content: center; align-items: center;
  min-height: 420px; position: relative;
}
.product-page__image--classic   { background: linear-gradient(135deg, var(--green-pale), #DFF0E5); }
.product-page__image--sensitive { background: linear-gradient(135deg, #E8F3F0, #D0E8E3); }
.product-page__image--whitening { background: linear-gradient(135deg, #F5F2E8, #EDE8D5); }
.product-page__image--fresh     { background: linear-gradient(135deg, #E8F0E8, #D5E8D5); }
.product-page__image--junior    { background: linear-gradient(135deg, #F5E8F0, #EDD5E8); }
.product-page__image--brush     { background: linear-gradient(135deg, var(--green-pale), #DFF0E5); }
.product-page__badges { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 16px; }
.product-badge {
  font-size: .72rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase;
  padding: 5px 12px; border-radius: var(--radius-pill);
  background: var(--white); color: var(--green);
  border: 1px solid rgba(27,94,55,.2);
}
.product-page__cat {
  display: block; font-size: .72rem; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--green); margin-bottom: 10px;
}
.product-page__info h1 {
  font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 700;
  line-height: 1.15; margin-bottom: 24px; color: var(--text);
}
.product-page__desc {
  font-size: 1rem; line-height: 1.85; color: var(--text);
  margin-bottom: 36px;
}
.product-page__cta {
  display: flex; align-items: center; gap: 28px;
  flex-wrap: wrap; padding-top: 28px;
  border-top: 1px solid var(--border);
}
.product-page__price {
  font-family: var(--font-head); font-size: 2rem;
  font-weight: 700; color: var(--text); line-height: 1;
}
.product-page__actions { display: flex; gap: 10px; flex-wrap: wrap; }
.product-page__note { font-size: .75rem; color: var(--text-light); margin-top: 14px; letter-spacing: .02em; }
@media (max-width: 1024px) {
  .product-page__layout { grid-template-columns: 1fr; gap: 40px; }
  .product-page__image { min-height: 320px; }
}
.product-page__intro { font-size: 1rem; line-height: 1.8; color: var(--text-mid); margin-bottom: 24px; }
.product-attrs { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 28px; }
.product-attr { display: inline-flex; align-items: center; gap: 5px; padding: 6px 12px; border-radius: var(--radius-pill); background: var(--green-pale); border: 1px solid rgba(27,94,55,.15); font-size: .73rem; font-weight: 600; color: var(--green); line-height: 1; }
.product-attr svg { width: 12px; height: 12px; flex-shrink: 0; }
.product-benefits { list-style: none; display: flex; flex-direction: column; gap: 11px; margin-bottom: 28px; }
.product-benefit { display: flex; align-items: flex-start; gap: 10px; font-size: .9rem; color: var(--text-mid); line-height: 1.5; }
.product-benefit__icon { width: 20px; height: 20px; min-width: 20px; border-radius: 50%; background: var(--green); color: var(--white); display: flex; align-items: center; justify-content: center; font-size: .6rem; margin-top: 1px; }
.product-details { padding: 20px 0; border-top: 1px solid var(--border); margin-bottom: 28px; }
.product-details__label { font-size: .68rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--text-light); margin-bottom: 10px; display: block; }
.product-detail-pills { display: flex; gap: 6px; flex-wrap: wrap; }
.product-detail-pill { font-size: .78rem; font-weight: 500; padding: 5px 12px; border-radius: var(--radius-pill); background: var(--white); border: 1px solid var(--border); color: var(--text-mid); }

/* =====================================================
   LEGAL PAGES
   ===================================================== */
.legal-hero { background: var(--green-pale); border-bottom: 1px solid rgba(27,94,55,.12); padding: 40px 0 36px; }
.legal-hero h1 { font-size: clamp(1.7rem, 3vw, 2.4rem); margin: 14px 0 8px; }
.legal-hero__meta { font-size: .78rem; color: var(--text-light); }
.legal-body { padding: 56px 0 88px; }
.legal-body__content { max-width: 700px; }
.legal-body__content h2 { font-family: var(--font); font-size: 1rem; font-weight: 600; color: var(--text); margin: 40px 0 12px; padding-left: 14px; border-left: 3px solid var(--green); line-height: 1.3; }
.legal-body__content h2:first-child { margin-top: 0; }
.legal-body__content p { font-size: .95rem; line-height: 1.85; color: var(--text-mid); margin-bottom: 16px; }
.legal-body__content ul { list-style: none; margin: 0 0 20px 0; padding: 0; }
.legal-body__content ul li { font-size: .95rem; line-height: 1.8; color: var(--text-mid); margin-bottom: 8px; padding-left: 20px; position: relative; }
.legal-body__content ul li::before { content: '–'; position: absolute; left: 0; color: var(--green); font-weight: 600; }
.legal-body__content a { color: var(--green); text-decoration: underline; text-underline-offset: 3px; }
.legal-related { margin-top: 56px; padding-top: 28px; border-top: 1px solid var(--border); }
.legal-related__label { font-size: .68rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--text-light); margin-bottom: 12px; display: block; }
.legal-related__links { display: flex; gap: 8px; flex-wrap: wrap; }
.legal-related__links a { font-size: .85rem; font-weight: 500; color: var(--text-mid); padding: 8px 18px; border: 1px solid var(--border); border-radius: var(--radius-pill); transition: border-color .2s, color .2s; text-decoration: none; }
.legal-related__links a:hover { border-color: var(--green); color: var(--green); }

/* =====================================================
   IMAGE PLACEHOLDERS
   ===================================================== */
.img-placeholder {
  background: var(--green-pale); border: 2px dashed rgba(27,94,55,.25);
  border-radius: var(--radius-lg); display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 10px;
  padding: 48px 32px; min-height: 280px; text-align: center;
}
.img-placeholder__icon { font-size: 2.4rem; opacity: .3; line-height: 1; }
.img-placeholder__label { font-size: .72rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--green); opacity: .7; }
.img-placeholder__hint { font-size: .8rem; color: var(--text-light); }

/* =====================================================
   PRODUCT GUARANTEE BADGE
   ===================================================== */
.product-guarantee { display: flex; align-items: center; gap: 12px; background: var(--green-pale); border: 1px solid rgba(27,94,55,.18); border-radius: var(--radius); padding: 13px 18px; margin-bottom: 28px; }
.product-guarantee__icon { width: 26px; height: 26px; min-width: 26px; border-radius: 50%; background: var(--green); color: var(--white); display: flex; align-items: center; justify-content: center; font-size: .65rem; font-weight: 700; flex-shrink: 0; }
.product-guarantee span:last-child { font-size: .88rem; font-weight: 600; color: var(--green); }
