/* =============================================
   demso Landing Page — Design Match Stylesheet
   ============================================= */

:root {
  --cream: #F5F5F2;
  --white: #FFFFFF;
  --grey-bg: #F0F0ED;
  --charcoal: #1A1A1A;
  --dark: #111111;
  --text: #1A1A1A;
  --text-muted: #6B7280;
  --text-light: #888888;
  --border: #E5E5E0;
  --accent: #8B2942;
  --accent-red: #A03045;
  --contact-bg: #EEF1F4;
  --contact-blue: #E8EDF2;
  --footer-bg: #E8E8E5;

  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif, DM Sans;
  font-family: 'JetBrains Mono', monospace;

  --container: 1200px;
  --section-pad: 100px;
  --radius: 20px;
  --radius-sm: 12px;
  --radius-btn: 50px;
  --transition: 0.3s ease;
}

*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: opacity var(--transition);
}

a:hover { opacity: 0.75; }

ul { list-style: none; }

button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
}

input, textarea, select {
  font-family: inherit;
  font-size: inherit;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 40px;
}

.section { padding: var(--section-pad) 0; }

.section--cream {
  padding: var(--section-pad) 0;
  background: var(--cream);
}

.section--grey {
  padding: var(--section-pad) 0;
  background: var(--grey-bg);
}

.section-heading {
  font-family: var(--font-serif);
  font-size: 42px;
  font-weight: 500;
  line-height: 1.2;
  text-align: center;
  color: var(--charcoal);
  margin-bottom: 16px;
}

.section-subheading {
  font-size: 15px;
  font-weight: 400;
  color: var(--text-muted);
  text-align: center;
  margin-bottom: 48px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

/* ── Search Overlay ─────────────────────────────── */
.search-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.search-overlay.is-open {
  pointer-events: all;
  opacity: 1;
}

.search-overlay__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.search-overlay__panel {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background: #fff;
  transform: translateY(-100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 1.25rem 1.5rem 1.5rem;
  box-shadow: 0 8px 40px rgba(0,0,0,0.18);
}

.search-overlay.is-open .search-overlay__panel {
  transform: translateY(0);
}

/* Search Bar Row */
.search-overlay__bar {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border-bottom: 2px solid #111;
  padding-bottom: 0.75rem;
  max-width: 720px;
  margin: 0 auto;
}

.search-overlay__icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: #888;
}

.search-overlay__input {
  flex: 1;
  border: none;
  outline: none;
  font-size: 1.2rem;
  font-family: inherit;
  color: #111;
  background: transparent;
  letter-spacing: 0.01em;
}

.search-overlay__input::placeholder {
  color: #aaa;
  font-weight: 300;
}

.search-overlay__clear {
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  color: #aaa;
  display: none;
  transition: color 0.2s;
}

.search-overlay__clear:hover { color: #111; }

.search-overlay__clear.visible { display: flex; }

.search-overlay__close {
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  color: #555;
  transition: color 0.2s, transform 0.2s;
  flex-shrink: 0;
}

.search-overlay__close:hover {
  color: #111;
  transform: rotate(90deg);
}

.search-overlay__close svg {
  width: 22px;
  height: 22px;
}

/* Results */
.search-overlay__results {
  max-width: 720px;
  margin: 1rem auto 0;
  max-height: 60vh;
  overflow-y: auto;
}

.search-overlay__hint {
  color: #999;
  font-size: 0.9rem;
  text-align: center;
  padding: 1.5rem 0;
}

.search-overlay__empty {
  color: #999;
  font-size: 0.9rem;
  text-align: center;
  padding: 1.5rem 0;
}

/* Result Cards */
.search-result-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.search-result-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem 1rem;
  border-radius: 10px;
  text-decoration: none;
  color: inherit;
  transition: background 0.2s;
  cursor: pointer;
  border: 1px solid transparent;
}

.search-result-item:hover {
  background: #f5f5f5;
  border-color: #eee;
}

.search-result-item__img {
  width: 56px;
  height: 56px;
  object-fit: contain;
  border-radius: 8px;
  background: #f9f9f9;
  flex-shrink: 0;
  padding: 4px;
}

.search-result-item__info {
  flex: 1;
  min-width: 0;
}

.search-result-item__name {
  font-size: 0.95rem;
  font-weight: 600;
  color: #111;
  margin-bottom: 0.2rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.search-result-item__desc {
  font-size: 0.8rem;
  color: #777;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.search-result-item__price {
  font-size: 0.95rem;
  font-weight: 700;
  color: #111;
  white-space: nowrap;
}

.search-result-item__arrow {
  color: #bbb;
  transition: transform 0.2s, color 0.2s;
}

.search-result-item:hover .search-result-item__arrow {
  transform: translateX(4px);
  color: #111;
}

/* Scrollbar */
.search-overlay__results::-webkit-scrollbar { width: 4px; }
.search-overlay__results::-webkit-scrollbar-track { background: transparent; }
.search-overlay__results::-webkit-scrollbar-thumb { background: #ddd; border-radius: 4px; }

.section-title {
  font-family: var(--font-serif);
  font-size: 72px;
  font-weight: 300;
  line-height: 1.0;
  color: var(--charcoal);
  margin-bottom: 24px;
}

.section-title1 {
  font-family: var(--font-serif);
  font-size: 62px;
  font-weight: 300;
  line-height: 1.0;
  color: var(--charcoal);
  margin-bottom: 24px;
}


.section-text {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.75;
  color: var(--text-muted);
  margin-bottom: 16px;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  border-radius: var(--radius-btn);
  transition: all var(--transition);
  white-space: nowrap;
}

.btn:hover { opacity: 1; transform: translateY(-1px); }

.btn--dark { background: var(--charcoal); color: var(--white); }
.btn--dark:hover { background: #333; }

.btn--outline {
  background: transparent;
  color: var(--charcoal);
  border: 1.5px solid var(--charcoal);
}

.btn--outline:hover {
  background: var(--charcoal);
  color: var(--white);
}

.btn--white { background: var(--white); color: var(--charcoal); }
.btn--white:hover { background: #f0f0f0; }

.btn--outline-white {
  background: transparent;
  color: var(--white);
  border: 1.5px solid var(--white);
}

.btn--outline-white:hover { background: rgba(255,255,255,0.1); }

.btn--gradient {
  width: 290px;
  height: 72px;
  border-radius: 999px;
  background: linear-gradient(180deg, #FF4F92 0%, #8B0E3A 100%);
  color: #FFFFFF;
  font-family: 'DM Sans', sans-serif;
  font-size: 18px;
  font-weight: 700;
  border: none;
  box-shadow:
    inset 0 2px 2px rgba(255,255,255,0.25),
    0 10px 18px rgba(139,14,58,0.28);
  transition: all 0.25s ease;
}

.btn--gradient:hover {
  background: linear-gradient(135deg, #8B2035, #6B1F30);
}

.btn--sm { padding: 10px 24px; font-size: 13px; }
.btn--full { width: 100%; }

/* --- Announcement Bar --- */
.announcement-bar {
  background: var(--dark);
  color: var(--white);
  text-align: center;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  padding: 10px 20px;
  position: relative;
  z-index: 1001;
}

/* --- Header --- */
.header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  transition: box-shadow var(--transition);
}

.header.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.06); }

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.header__logo img { height: 32px; width: auto; }

.header__nav {
  display: flex;
  align-items: center;
  gap: 36px;
}

.header__nav a {
  font-size: 14px;
  font-weight: 400;
  color: var(--text);
  position: relative;
}

.header__nav a.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--charcoal);
}

.header__actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.header__icon-btn {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--charcoal);
}

.header__icon-btn svg { width: 20px; height: 20px; }

.header__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}

.header__burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--charcoal);
  transition: var(--transition);
}

/* --- Hero --- */
.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero__inner {
  position: relative;
  z-index: 1;
  width: 100%;
   margin-left: auto;
  margin-right: auto;
  padding-top: 60px;
  padding-bottom: 80px;
}

.hero__content {
  max-width: 720px;
}

/* Mobile-only hero product image (hidden on desktop / tablet) */
.hero__mobile-img {
  display: none;
}

.hero__title {
  font-family: var(--font-serif);
  font-size: 96px;
  font-weight: 400;
  line-height: 1.1;
  color: var(--charcoal);
  margin-bottom: 24px;
}

.hero__text {
  font-size: 20px;
  font-weight: 200;
  line-height: 1.75;
  margin-right: 40px;
  color: var(--text-muted);
  margin-bottom: 36px;
}

.hero__buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* --- Trust Bar --- */
.trust-bar {
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding-top: 35px;
  padding-bottom: 35px;
}

.trust-bar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.trust-bar__item {
  display: flex;
  align-items: start;
  gap: 10px;
  flex: 1;
  justify-content: center;
}

.trust-bar__icon {
  width: 18px;
  height: 18px;
  color: var(--accent);
  flex-shrink: 0;
}

.trust-bar__icon-img {
  width: 18px;
  height: 18px;
  object-fit: contain;
  flex-shrink: 0;
}

.trust-bar__item span {
  font-size: 12px;
  font-weight: 500;
  color: var(--text);
  letter-spacing: 0.02em;
}

/* --- Value Props --- */
.value-props {
  background: var(--cream);
  padding: 56px 0;
}

.value-props__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.value-props__item {
  padding: 12px;
  text-align: left; /* changed */
}

.value-props__icon-svg {
  width: 40px;
  height: 40px;
    color: var(--charcoal);
}

.value-props__title {
  font-family: var(--font-serif);
  font-size: 20px;
  margin-top: 16px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--charcoal);
  margin-bottom: 12px;
  line-height: 1.3;
}

.value-props__text {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-muted);
}

.divider {
  width: 100%;
  height: 1px;
  background: rgba(0, 0, 0, 0.08); /* low opacity line */
  margin: 10px 0;
}
/* --- Confidence --- */
.confidence__inner {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 80px;
  align-items: center;
}

.confidence__images {
  max-width: 88%;
  margin: 0 auto;
}

.confidence__images img {
  width: 100%;
  border-radius: var(--radius);
  object-fit: cover;
}

.bullet-list {
  margin-top: 28px;
}

.bullet-list li {
  position: relative;
  padding-left: 18px;
  font-size: 14px;
  font-weight: bold;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--charcoal);
  margin-bottom: 12px;
  line-height: 1.5;
}

.bullet-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--charcoal);
}

/* --- Ethos --- */
.ethos__header {
  text-align: center;
 }

.ethos__label {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 14px;
}

.ethos__title {
  font-family: var(--font-serif);
  font-size: 72px;
  font-weight: 300;
  line-height: 1.25;
  color: var(--charcoal);
  margin-bottom: 55px;
}

.ethos__quote {
  font-family: var(--font-serif);
  font-size: 32px;
  font-weight: 500;
  font-style: italic;
  margin-bottom: 90px;
  line-height: 1.6;
  color:black;
}

.ethos__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-bottom: 80px;
}

.ethos__row:last-child { margin-bottom: 0; }

.ethos__heading {
  font-family: var(--font-serif);
  font-size: 48px;
  font-weight: 300;
  line-height: 1;
  color: var(--charcoal);
  margin-bottom: 20px;
}

.ethos__image img {
  width: 100%;
  border-radius: var(--radius);
  object-fit: contain;
  width: 528px;
  height: 297px;
   
}

/* --- Before/After Slider --- */
.ba-slider {
  --ba-pos: 50%;
  position: relative;
  display: grid;
  width: 100%;
  aspect-ratio: 3/2;
  border-radius: var(--radius-sm);
  overflow: hidden;
  cursor: ew-resize;
  user-select: none;
  -webkit-user-select: none;
  touch-action: none;
  -webkit-touch-callout: none;
  background: var(--cream);
}

.ba-slider__img {
  grid-area: 1 / 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  pointer-events: none;
  display: block;
}

.ba-slider__img--after {
  z-index: 1;
}

.ba-slider__img--before {
  z-index: 2;
  clip-path: inset(0 0 0 var(--ba-pos));
}

.ba-slider__handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--ba-pos);
  width: 2px;
  background: var(--white);
  z-index: 5;
  transform: translateX(-50%);
  pointer-events: none;
}

.ba-slider__handle-pill {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 44px;
  height: 44px;
  background: var(--white);
  border-radius: 50%;
  box-shadow: 0 2px 12px rgba(0,0,0,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.ba-slider__handle-pill::before {
  content: '';
  width: 0;
  height: 0;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-right: 6px solid var(--charcoal);
}

.ba-slider__handle-pill::after {
  content: '';
  width: 0;
  height: 0;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 6px solid var(--charcoal);
}

.ba-slider.is-dragging .ba-slider__handle-pill {
  transform: translate(-50%, -50%) scale(1.1);
  box-shadow: 0 4px 20px rgba(0,0,0,0.25);
}

.ba-slider__label {
  position: absolute;
  bottom: 16px;
  z-index: 6;
  background: var(--white);
  padding: 6px 14px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--charcoal);
  border-radius: 4px;
}

.ba-slider__label--before { left: 16px; }
.ba-slider__label--after { right: 16px; }

.ba-slider__handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--ba-pos);
  width: 3px;
  background: var(--white);
  z-index: 5;
  transform: translateX(-50%);
  pointer-events: none;
}

.ba-slider__handle::before {
   content: '\2039';
  position: absolute;
  top: 50%;
  left: -22px;
  transform: translateY(-50%);
  font-size: 20px;
  color: var(--charcoal);
  opacity: 0.7;
}

.ba-slider__handle::after {
   position: absolute;
  top: 50%;
  left: 8px;
  transform: translateY(-50%);
  font-size: 20px;
  color: var(--charcoal);
  opacity: 0.7;
}

.ba-slider__handle-pill {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 60px;
  background: var(--white);
  border-radius: 20px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.ba-slider__handle-pill::before {
  content: '';
  width: 0;
  height: 0;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-right: 5px solid var(--charcoal);
}

.ba-slider__handle-pill::after {
  content: '';
  width: 0;
  height: 0;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 5px solid var(--charcoal);
}

.ba-slider.is-dragging .ba-slider__handle-pill {
  transform: translate(-50%, -50%) scale(1.08);
  box-shadow: 0 4px 20px rgba(0,0,0,0.25);
}

.ba-slider__label {
  position: absolute;
  bottom: 16px;
  z-index: 6;
  background: var(--white);
  padding: 6px 14px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--charcoal);
  border-radius: 4px;
}

.ba-slider__label--before { left: 16px; }
.ba-slider__label--after { right: 16px; }

/* --- Slider Buttons --- */
.slider-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all var(--transition);
  z-index: 2;
}

.slider-btn svg {
  width: 18px;
  height: 18px;
  color: var(--charcoal);
}

.slider-btn:hover {
  background: var(--charcoal);
  border-color: var(--charcoal);
}

.slider-btn:hover svg { color: var(--white); }

/* When Swiper reaches an end it adds this class to the matching arrow.
   Hide it (keeping its space) so e.g. the "back" arrow is not shown on the
   first slide and the "next" arrow is not shown on the last slide. */
.slider-btn.swiper-button-disabled,
.slider-btn.swiper-button-lock {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
}

/* --- Progression --- */
.progression__slider-wrap {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 48px;
}

.progression-swiper {
  flex: 1;
  overflow: hidden;
}

.progression-swiper .swiper-slide { padding: 0 8px; }

/* --- Featured Review --- */
.featured-review__slider-wrap {
  display: flex;
  align-items: center;
  gap: 24px;
}

.featured-review-swiper {
  flex: 1;
  overflow: hidden;
}

.featured-review__card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 20px 0;
}

.stars {
  display: flex;
  gap: 4px;
  margin-bottom: 20px;
}

.stars svg {
  width: 18px;
  height: 18px;
  fill: #E8B84B;
}

.stars--sm svg { width: 14px; height: 14px; }

.featured-review__text {
  font-family: var(--font-serif);
  font-size: 18px;
  line-height: 1.75;
  color: var(--charcoal);
  margin-bottom: 24px;
}

.featured-review__readmore {
  font-family: var(--font-sans);
  font-size: 14px;
  font-style: normal;
  color: var(--text-light);
  text-decoration: underline;
}

.featured-review__author {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--charcoal);
}

/* The body is truncated to 4 lines via JS, then the "read more" link sits
   inline right after the trailing ellipsis (… read more) on the same line. */
.featured-review__body {
  font-style: italic;
}

.featured-review__readmore {
  cursor: pointer;
  white-space: nowrap;
}

/* --- Science --- */
.science__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.science__image img {
  width: 100%;
  max-width: 420px;
  margin-left: auto;
  border-radius: var(--radius);
  object-fit: cover;
  box-shadow: 0 20px 60px rgba(0,0,0,0.12);
}
.science__image12 img {
   object-fit: contain;
  width: 508;
  height: 512;
 }
.link-underline {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--charcoal);
  border-bottom: 1px solid var(--charcoal);
  padding-bottom: 3px;
  margin-top: 8px;
}

.link-underline:hover { opacity: 0.7; }

/* --- Shop --- */
.shop__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.product-card {
  background: var(--white);
  border-radius: var(--radius-sm);
  width: 100%;
  min-height: 560px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.08);
}

.product-card__body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.product-card__image {
  position: relative;
  margin: 20px;
  background: var(--cream);
  border-radius: var(--radius-sm);
  margin-bottom: 16px;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.product-card__image img {
   
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-card__badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--charcoal);
  color: var(--white);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: var(--radius-btn);
  z-index: 1;
}

.product-card__badge--new {
  background: #E8B84B;
  color: var(--charcoal);
}

.product-card__rating {
  display: flex;
  align-items: center;
  gap: 6px;
}

.stars {
  display: flex;
  align-items: center;
  gap: 2px;
}

.stars svg {
  width: 14px;
  height: 14px;
  fill: #E8B84B;
  display: block;
}

/* Reset the margin that leaks from the featured-review .stars rule so the
   star icons and the review count stay vertically aligned on one line. */
.product-card__rating .stars {
  margin-bottom: 0;
}

.product-card__count {
  font-size: 13px;
  color: var(--text-light);
  display: inline-flex;
  align-items: center;
  line-height: 14px;
  margin: 0;
  padding: 0;
}

.product-card__name {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 6px;
}

.product-card__desc {
  font-size: 13px;
  font-style: italic;
  color: var(--text-muted);
  margin-bottom: 16px;
  line-height: 1.5;
}

.product-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
  padding-top: 8px;
}

.product-card__price {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 600;
  color: var(--charcoal);
}

/* --- FAQ --- */
.faq__list {
  max-width: 760px;
  margin: 48px auto 0;
}
.faq {
  padding-top: 20px !important;
}

.faq__item { border-bottom: 1px solid var(--border); }

.faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 0;
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--charcoal);
  text-align: left;
  transition: color var(--transition);
}

.faq__question:hover { color: var(--text-muted); }

.faq__chevron {
  width: 20px;
  height: 20px;
  color: var(--text-muted);
  flex-shrink: 0;
  transition: transform var(--transition);
}

.faq__item.active .faq__chevron { transform: rotate(180deg); }

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq__item.active .faq__answer {
  max-height: 300px;
  padding-bottom: 24px;
}

.faq__answer p {
  font-size: 15px;
  line-height: 1.75;
  color: var(--text-muted);
}

/* --- CTA --- */
.cta {
  background: var(--charcoal);
  padding: 100px 0 0;
}

.cta__inner { text-align: center; }

.cta__title {
  font-family: var(--font-serif);
  font-size: 44px;
  font-weight: 500;
  line-height: 1.25;
  color: var(--white);
  margin-bottom: 36px;
}

.cta__buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 80px;
}

.cta__bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  padding: 24px 0;
  border-top: 1px solid rgba(255,255,255,0.12);
}

.cta__bar span {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}
/* ===== CONTACT SECTION ===== */
.contact {
  background: var(--contact-bg);
  position: relative;
  overflow: hidden;
}

.contact::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 50%; height: 100%;
  background: linear-gradient(135deg, transparent 40%, rgba(255,255,255,0.4) 100%);
  pointer-events: none;
}

/* ── Header (untouched) ── */
.contact__header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 60px;
}

.contact__label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}

.contact__title {
  font-family: var(--font-serif);
  font-size: 48px;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 20px;
}

.contact__intro {
  font-size: 18px;
  font-family: 'DM Sans', sans-serif;
  color: var(--text-muted);
  line-height: 1.75;
}

/* ── Layout ── */
.contact__inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: start;
  position: relative;
  z-index: 1;
}

/* ── Form Card ── */
.contact__form-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 36px 40px 40px;
  box-shadow: 0 2px 24px rgba(0,0,0,0.055);
}

.contact__form { margin-top: 0; }

.contact__form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group { margin-bottom: 18px; }

.form-group label {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: #aaa;
  margin-bottom: 7px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #e6e6e6;
  border-radius: 10px;
  background: #ffffff;
  color: #1a1a1a;
  font-size: 14px;
  font-family: 'DM Sans', sans-serif;
  transition: border-color 0.2s ease;
  outline: none;
  resize: vertical;
  appearance: none;
  -webkit-appearance: none;
  box-sizing: border-box;
}

.form-group textarea {
  min-height: 130px;
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23aaa' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 15px center;
  padding-right: 38px;
  cursor: pointer;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: #aaa;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #ccc;
  font-size: 14px;
}

/* ── Send Message Button ── */
.contact__submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 44px;
  border-radius: 50px;
  background: linear-gradient(180deg, #FF4F92 0%, #8B0E3A 100%);
  color: #ffffff;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.02em;
  border: none;
  cursor: pointer;
  margin-top: 6px;
  transition: opacity 0.2s ease, transform 0.15s ease;
  min-width: 170px;
  
}

.contact__submit:hover {
  opacity: 0.87;
  transform: translateY(-1px);
}

/* ── Sidebar ── */
.contact__sidebar {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* ── Info Box ── */
.contact__info-box {
  background: #e8ecf3;
  border-radius: 18px;
  width: 100%;
  max-width: 466px;
  height: auto;
  padding: 30px 32px 28px;
}

.contact__info-title {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 24px;
  letter-spacing: -0.01em;
}

 
.contact__detail {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}

.contact__detail-icon {
  width: 44px;
  height: 44px;
  background: #ffffff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact__detail-icon svg {
  width: 18px;
  height: 18px;
  color: #c0394b;
}

.contact__detail-label {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: #aaa;
  margin-bottom: 3px;
}

.contact__detail-value {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #1a1a1a;
  line-height: 1.55;
}

/* ── Social ── */
.contact__social-section {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(0,0,0,0.07);
}

.contact__social-label {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: #aaa;
  margin-bottom: 12px;
}

.contact__social {
  display: flex;
  gap: 10px;
}

.contact__social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid #d6dae3;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.contact__social a svg {
  width: 15px;
  height: 15px;
  color: #555;
}

.contact__social a:hover {
  background: #1a1a1a;
  border-color: #1a1a1a;
}

.contact__social a:hover svg {
  color: #ffffff;
}

/* ── Clinical Assurance ── */
.contact__assurance {
  background: #0f0f0f;
  border-radius: 18px;
  padding: 24px 28px;
  width: 100%;
  max-width: 466px;
  height: auto;
  display: flex;
  align-items: center;
  gap: 14px;
}

/* bare icon, no bg box */
.contact__assurance svg {
  width: 30px;
  height: 37px;
  color: #c0394b;
  flex-shrink: 0;
  margin-top: 2px;
}

.contact__assurance h4 {
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 5px;
  letter-spacing: -0.01em;
}

.contact__assurance p {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  color: rgba(255,255,255,0.52);
  line-height: 1.65;
  margin: 0;
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .contact__inner {
    grid-template-columns: 1fr;
  }

  .contact__form-row {
    grid-template-columns: 1fr;
  }

  .contact__title {
    font-size: 34px;
  }
}
/* --- Footer --- */
/* ================================================
   FOOTER — Full CSS matching screenshot exactly
   ================================================ */

.footer {
  background: #edecea;
  color: var(--charcoal);
  padding: 72px 0 0;
}

/* ── Top Grid ── */
.footer__top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.4fr;
  gap: 48px;
  padding-bottom: 60px;
}

/* ── Brand Column ── */
.footer__brand {}

.footer__logo {
  height: 60px;
  width: auto;
  margin-bottom: 20px;
  display: block;
}

.footer__tagline {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  line-height: 1.75;
  color: #888;
  max-width: 280px;
  margin-bottom: 22px;
}

/* Social icons — bare, no circle border */
.footer__brand-social {
  display: flex;
  gap: 14px;
  align-items: center;
}

.footer__brand-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.2s ease;
  text-decoration: none;
}

.footer__brand-social a svg {
  width: 20px;
  height: 20px;
  color: #333;
}

.footer__brand-social a:hover {
  opacity: 0.55;
}

/* ── Nav Columns ── */
.footer__col h4 {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #1a1a1a;
  margin-bottom: 22px;
}

.footer__col a {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: #888;
  margin-bottom: 16px;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer__col a:hover {
  color: #1a1a1a;
}

/* ── Newsletter Column ── */
.footer__newsletter h4 {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #1a1a1a;
  margin-bottom: 14px;
}

.footer__newsletter p {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: #888;
  margin-bottom: 18px;
  line-height: 1.65;
  max-width: 300px;
}

/* Stacked form — input on top, button below, both full width */
.footer__newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__newsletter-form input {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #ddd;
  border-radius: 8px;
  background: #ffffff;
  color: #1a1a1a;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  outline: none;
  box-sizing: border-box;
  transition: border-color 0.2s ease;
}

.footer__newsletter-form input::placeholder {
  color: #bbb;
}

.footer__newsletter-form input:focus {
  border-color: #999;
}

/* Subscribe button — full width, solid black, white text */
.footer__newsletter-form button {
  width: 100%;
  padding: 15px 16px;
  border-radius: 8px;
  background: #111111;
  color: #ffffff;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.01em;
  border: none;
  cursor: pointer;
  transition: background 0.2s ease;
  box-sizing: border-box;
}

.footer__newsletter-form button:hover {
  background: #333;
}

/* ── Bottom Bar ── */
.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 0;
  border-top: 1px solid #d8d6d2;
}

.footer__bottom p {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #999;
}

.footer__legal {
  display: flex;
  gap: 28px;
}

.footer__legal a {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #999;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer__legal a:hover {
  color: #1a1a1a;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .footer__top {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 600px) {
  .footer__top {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .footer__bottom {
    flex-direction: column;
    gap: 14px;
    text-align: center;
  }
}

/* --- Animations --- */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(32px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroFadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-animate .hero__title {
  animation: heroFadeUp 0.9s ease 0.2s both;
}

.hero-animate .hero__text {
  animation: heroFadeUp 0.9s ease 0.4s both;
}

.hero-animate .hero__buttons {
  animation: heroFadeUp 0.9s ease 0.6s both;
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.animate-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .hero-animate .hero__title,
  .hero-animate .hero__text,
  .hero-animate .hero__buttons,
  .animate-on-scroll {
    animation: none;
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* --- Mobile Nav --- */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--white);
  z-index: 999;
  padding: 120px 32px 40px;
  flex-direction: column;
  gap: 24px;
  overflow-y: auto;
}

.mobile-nav.open { display: flex; }

.mobile-nav a {
  font-size: 18px;
  font-weight: 500;
  color: var(--charcoal);
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
}

/* =============================================
   Responsive
   ============================================= */
@media (max-width: 1024px) {
  :root { --section-pad: 72px; }

  .hero__title { font-size: 44px; }
  .section-title { font-size: 34px; }
  .section-heading { font-size: 36px; }
  .ethos__title { font-size: 36px; }
  .cta__title { font-size: 36px; }
  .contact__title { font-size: 36px; }

  .value-props__grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }

  .confidence__inner,
  .ethos__row,
  .science__inner,
  .featured-review__card,
  .contact__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .science__image img { margin-left: 0; max-width: 100%; }

  .footer__top {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .shop__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .confidence__inner {
    grid-template-columns: 1fr;
  }

  .confidence__images {
    max-width: 75%;
  }

  .progression-swiper .swiper-slide { padding: 0; }
}

@media (max-width: 768px) {
  :root { --section-pad: 56px; }

  .container { padding: 0 20px; }

  .header__nav,
  .header__actions .btn,
  .header__actions .header__icon-btn { display: none; }

  .header__burger { display: flex; }

  /* Hero becomes a clean stacked layout with the product photo */
  .hero {
    min-height: auto;
    display: block;
    background: var(--cream);
  }

  .hero__bg { display: none; }

  .hero__inner {
    padding-top: 32px;
    padding-bottom: 48px;
    text-align: center;
  }

  .hero__content {
    max-width: 100%;
    display: flex;
    flex-direction: column;
  }

  .hero__title {
    font-size: 38px;
    line-height: 1.15;
    margin-bottom: 24px;
    order: 1;
  }

  .hero__text {
    order: 2;
  }

  .hero__buttons {
    order: 3;
  }

  .hero__mobile-img {
    display: block;
    width: 100%;
    max-width: 420px;
    margin: 32px auto 0;
    border-radius: var(--radius);
    box-shadow: 0 18px 44px rgba(0,0,0,0.16);
    order: 4;
  }

  .hero__text {
    font-size: 16px;
    margin-right: 0;
    margin-bottom: 28px;
  }

  .hero__buttons { justify-content: center; }

  .trust-bar__inner {
    flex-wrap: wrap;
    gap: 16px;
  }

  .trust-bar__item {
    flex: 0 0 calc(50% - 8px);
    justify-content: flex-start;
  }

  .value-props__grid { grid-template-columns: 1fr; gap: 24px; }

  .section-title { font-size: 28px; }
  .section-heading { font-size: 30px; }
  .ethos__title { font-size: 28px; }
  .ethos__quote { font-size: 18px; }
  .cta__title { font-size: 28px; }
  .contact__title { font-size: 28px; }

  .ethos__heading { font-size: 42px; }

  .cta__bar {
    flex-direction: column;
    gap: 12px;
    margin-bottom: 0;
  }

  .cta__buttons { margin-bottom: 48px; }

  .footer__top { grid-template-columns: 1fr; }

  .footer__bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  .contact__form-card { padding: 28px 24px; }

  .shop__grid {
    grid-template-columns: 1fr;
  }

  .confidence__images {
    max-width: 100%;
  }

  /* Before/After sliders: full-width image, arrows moved below */
  .progression__slider-wrap,
  .featured-review__slider-wrap {
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    margin-top: 28px;
  }

  .progression-swiper,
  .featured-review-swiper {
    order: -1;
    flex: 0 0 100%;
    width: 100%;
  }

  .progression-swiper .swiper-slide,
  .featured-review-swiper .swiper-slide {
    padding: 0;
  }

  .ba-slider {
    aspect-ratio: 4 / 3;
  }
}

@media (max-width: 480px) {
  .hero__title { font-size: 30px; }

  .trust-bar__item { flex: 0 0 100%; }

  .btn { padding: 12px 24px; font-size: 13px; }

  .hero__buttons { flex-direction: column; align-items: stretch; }
  .hero__buttons .btn { justify-content: center; }

  .cta__buttons { flex-direction: column; align-items: center; }
}
