/** Shopify CDN: Minification failed

Line 41:0 All "@import" rules must come first
Line 1907:0 All "@import" rules must come first
Line 2620:0 All "@import" rules must come first
Line 3389:0 All "@import" rules must come first

**/
/* Place any CSS overrides in this file. */
.image-with-text-overlay-wrapper--textPosition-left .homepage-featured-content-box {
  padding-top: 50px;
}

/* Blog updates: 561 Media MLW 8/29/2023 */
.article__featured-image-wrap,
.article--image-wrapper {
  /* margin: 0 auto; */
  max-width: 75%;
}

.template-article .article--image-wrapper {
  margin: 0 auto;
}

.template-article article img {
  width: inherit;
}

@media only screen and (max-width : 480px) {
  .article__featured-image-wrap,
  .article--image-wrapper {
    max-width: 100%;
  }
}

/* ========================================
   HALO42 BLOG — CUSTOM REDESIGN STYLES
   Flow Theme Compatible
   ======================================== */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Inter:wght@300;400;500;600&display=swap');

/* ---------- Design Tokens ---------- */
.halo-blog-page {
  --halo-ivory: #FAF8F5;
  --halo-cream: #F5F0EA;
  --halo-warm-gray: #6B6560;
  --halo-dark: #2C2824;
  --halo-gold: #C4A265;
  --halo-gold-light: #D4B87A;
  --halo-sage: #8B9E8B;
  --halo-white: #FFFFFF;
  --halo-font-serif: 'Playfair Display', 'Georgia', serif;
  --halo-font-sans: 'Inter', 'Helvetica Neue', sans-serif;
  font-family: var(--halo-font-sans);
  color: var(--halo-dark);
  background-color: var(--halo-ivory);
}

/* ==========================================
   FILTER BAR
   ========================================== */
.halo-blog-filter-bar {
  background-color: var(--halo-ivory);
  padding: 20px;
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

.halo-blog-filter-list {
  display: flex;
  gap: 12px;
  list-style: none;
  margin: 0 auto;
  padding: 0;
  max-width: 1200px;
  flex-wrap: wrap; /* Allows wrapping to a second line on desktop */
  justify-content: center; /* Centers all the pills nicely */
}

.halo-blog-filter-item a {
  display: inline-block;
  padding: 8px 20px;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 30px;
  text-decoration: none;
  color: var(--halo-warm-gray);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.halo-blog-filter-item a:hover,
.halo-blog-filter-item a.active {
  background-color: var(--halo-gold);
  border-color: var(--halo-gold);
  color: var(--halo-white);
}

/* On mobile, keep it as a single scrolling row */
@media (max-width: 768px) {
  .halo-blog-filter-list {
    flex-wrap: nowrap;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 5px;
    -webkit-overflow-scrolling: touch; /* Smooth scrolling on iOS */
    scrollbar-width: none; /* Hide scrollbar Firefox */
  }
  
  .halo-blog-filter-list::-webkit-scrollbar {
    display: none; /* Hide scrollbar Chrome/Safari */
  }
}


/* ==========================================
   ARTICLE GRID
   ========================================== */
.halo-blog-grid-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 24px 80px;
}

.halo-blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
}

/* ==========================================
   ARTICLE CARDS
   ========================================== */
.halo-blog-card {
  background: var(--halo-white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(44,40,36,0.06);
  transition: transform 0.4s cubic-bezier(0.25,0.46,0.45,0.94), box-shadow 0.4s cubic-bezier(0.25,0.46,0.45,0.94);
  display: flex;
  flex-direction: column;
}

.halo-blog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(44,40,36,0.12);
}

/* -- Featured Card (spans full width) -- */
.halo-blog-card--featured {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  border-radius: 16px;
  min-height: 380px;
}

.halo-blog-card--featured .halo-blog-card__image-wrapper {
  aspect-ratio: auto;
  height: 100%;
}

.halo-blog-card--featured .halo-blog-card__body {
  padding: 36px 40px;
  justify-content: center;
}

.halo-blog-card--featured .halo-blog-card__title {
  font-size: clamp(1.3rem, 2.2vw, 1.7rem);
}

.halo-blog-card--featured .halo-blog-card__excerpt {
  font-size: 1rem;
  line-height: 1.7;
}

.halo-blog-card__badge {
  display: inline-block;
  font-family: var(--halo-font-sans);
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--halo-gold);
  border: 1px solid var(--halo-gold);
  border-radius: 4px;
  padding: 4px 12px;
  margin-bottom: 16px;
  width: fit-content;
}

/* -- Card Image -- */
.halo-blog-card__image-link { display: block; text-decoration: none; }

.halo-blog-card__image-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.halo-blog-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25,0.46,0.45,0.94);
}

.halo-blog-card:hover .halo-blog-card__image {
  transform: scale(1.05);
}

.halo-blog-card__image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 60%, rgba(44,40,36,0.15) 100%);
  pointer-events: none;
}

.halo-blog-card__no-image {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--halo-cream);
  color: var(--halo-warm-gray);
  font-family: var(--halo-font-serif);
  font-size: 1rem;
  font-style: italic;
}

/* -- Card Body -- */
.halo-blog-card__body {
  padding: 24px 24px 28px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.halo-blog-card__meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--halo-warm-gray);
  margin-bottom: 12px;
}

.halo-blog-card__divider { color: var(--halo-gold); font-size: 1rem; }
.halo-blog-card__tag { color: var(--halo-gold); }
.halo-blog-card__read-time { color: var(--halo-sage); }

.halo-blog-card__title {
  font-family: var(--halo-font-serif);
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
  font-weight: 600;
  line-height: 1.35;
  margin: 0 0 12px;
  color: var(--halo-dark);
}

.halo-blog-card__title a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

.halo-blog-card__title a:hover { color: var(--halo-gold); }

.halo-blog-card__excerpt {
  font-size: 0.92rem;
  line-height: 1.65;
  color: var(--halo-warm-gray);
  margin: 0 0 auto;
  padding-bottom: 16px;
}

.halo-blog-card__read-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--halo-gold);
  text-decoration: none;
  transition: gap 0.3s ease, color 0.3s ease;
  margin-top: auto;
}

.halo-blog-card__read-more:hover { gap: 14px; color: var(--halo-gold-light); }
.halo-blog-card__read-more svg { transition: transform 0.3s ease; }
.halo-blog-card__read-more:hover svg { transform: translateX(4px); }

/* ==========================================
   NEWSLETTER SIGNUP (inline in grid)
   ========================================== */
.halo-blog-newsletter {
  grid-column: 1 / -1;
  background: linear-gradient(135deg, var(--halo-dark) 0%, #3A3530 100%);
  border-radius: 16px;
  padding: 56px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.halo-blog-newsletter::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(196,162,101,0.12) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.halo-blog-newsletter__inner { position: relative; z-index: 1; max-width: 500px; margin: 0 auto; }

.halo-blog-newsletter__title {
  font-family: var(--halo-font-serif);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--halo-white);
  margin: 0 0 12px;
}

.halo-blog-newsletter__text {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
  margin: 0 0 28px;
}

.halo-blog-newsletter__form {
  display: flex;
  gap: 0;
  max-width: 440px;
  margin: 0 auto;
  border-radius: 50px;
  overflow: hidden;
  border: 1px solid rgba(196,162,101,0.3);
}

.halo-blog-newsletter__input {
  flex: 1;
  padding: 14px 24px;
  background: rgba(255,255,255,0.08);
  border: none;
  outline: none;
  font-family: var(--halo-font-sans);
  font-size: 0.9rem;
  color: var(--halo-white);
}

.halo-blog-newsletter__input::placeholder { color: rgba(255,255,255,0.4); }

.halo-blog-newsletter__btn {
  padding: 14px 28px;
  background: var(--halo-gold);
  border: none;
  font-family: var(--halo-font-sans);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--halo-white);
  cursor: pointer;
  transition: background 0.3s ease;
  white-space: nowrap;
}

.halo-blog-newsletter__btn:hover { background: var(--halo-gold-light); }

/* ==========================================
   PAGINATION
   ========================================== */
.halo-blog-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 48px;
  padding-top: 36px;
  border-top: 1px solid var(--halo-cream);
}

.halo-blog-pagination__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 14px;
  font-family: var(--halo-font-sans);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--halo-warm-gray);
  text-decoration: none;
  border: 1px solid transparent;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.halo-blog-pagination__link:hover {
  color: var(--halo-dark);
  background: var(--halo-cream);
}

.halo-blog-pagination__link--active {
  color: var(--halo-white);
  background: var(--halo-gold);
  border-color: var(--halo-gold);
  font-weight: 600;
}

/* ==========================================
   ANIMATIONS
   ========================================== */
@keyframes haloFadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ==========================================
   RESPONSIVE
   ========================================== */
@media (max-width: 900px) {
  .halo-blog-grid { grid-template-columns: repeat(2, 1fr); gap: 28px; }
  .halo-blog-card--featured { grid-template-columns: 1fr; }
  .halo-blog-card--featured .halo-blog-card__image-wrapper { aspect-ratio: 16 / 9; }
  .halo-blog-card--featured .halo-blog-card__body { padding: 28px; }
}

@media (max-width: 600px) {
  .halo-blog-hero { min-height: 400px; }
  .halo-blog-hero__content { padding: 40px 20px; }
  .halo-blog-grid { grid-template-columns: 1fr; gap: 24px; }
  .halo-blog-grid-wrapper { padding: 40px 16px 60px; }
  .halo-blog-card__body { padding: 20px 20px 24px; }
  .halo-blog-newsletter { padding: 40px 24px; }
  .halo-blog-newsletter__form { flex-direction: column; border-radius: 12px; }
  .halo-blog-newsletter__input { border-radius: 8px; }
  .halo-blog-newsletter__btn { border-radius: 8px; padding: 14px; }
}

/* ==========================================
   BLOG HERO — Premium Editorial
   ========================================== */
.template-blog .image-with-text-overlay-wrapper {
  max-width: 100% !important;
  padding: 0 !important;
}

.template-blog .image-with-text-overlay {
  min-height: 75vh !important;
  position: relative;
}

.template-blog .image-with-text-overlay__content-wrapper {
  position: relative;
  z-index: 2;
  padding: 120px 40px !important;
  max-width: 780px;
  margin: 0 auto;
}

.template-blog .image-with-text-overlay h2.homepage-section-title {
  font-family: 'Playfair Display', Georgia, serif !important;
  font-size: 48px !important;
  font-weight: 600 !important;
  letter-spacing: 0.18em !important;
  line-height: 1.15 !important;
  color: #FFFFFF !important;
  text-shadow: 0 2px 30px rgba(0,0,0,0.2) !important;
  margin-bottom: 28px !important;
  padding-bottom: 32px !important;
  border-bottom: 1.5px solid #C4A265 !important;
}

.template-blog .image-with-text-overlay .featured-row__subtext {
  font-family: 'Playfair Display', Georgia, serif !important;
  font-style: italic !important;
  font-size: 1.15rem !important;
  line-height: 1.85 !important;
  color: rgba(255,255,255,0.88) !important;
  max-width: 580px !important;
  margin: 0 auto !important;
}

/* ── Blog Search Bar ── */
.halo-blog-search-bar {
  max-width: 480px;
  margin: 40px auto 0;
  padding: 0 24px;
}
.halo-blog-search-form {
  display: flex;
  align-items: center;
  background: #FFFFFF;
  border: 1px solid #F5F0EA;
  border-radius: 50px;
  padding: 4px 8px 4px 20px;
  transition: border-color 0.3s ease;
}
.halo-blog-search-form:focus-within { border-color: #C4A265; }
.halo-blog-search-icon { color: #C4A265; flex-shrink: 0; }
.halo-blog-search-input {
  flex: 1;
  border: none;
  outline: none;
  background: transparent;
  padding: 12px 16px;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  color: #2C2824;
}
.halo-blog-search-input::placeholder { color: #6B6560; opacity: 0.6; }

/* ── Category Filter Bar ── */
.halo-blog-filter-container {
  background-color: #FAF8F5;
  padding: 20px 0;
  position: sticky;
  top: 85px;
  z-index: 20;
  border-bottom: 1px solid rgba(0,0,0,0.05);
  text-align: center;
}

.halo-blog-filters {
  display: flex !important;
  flex-wrap: wrap !important;
  justify-content: center !important;
  gap: 10px !important;
  max-width: 1000px !important;
  margin: 0 auto;
  padding: 0 20px;
  max-height: 44px;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  background: transparent !important;
  border: none !important;
}

.halo-blog-filters.is-expanded {
  max-height: 800px;
}

.halo-blog-filter {
  display: inline-block;
  padding: 8px 20px;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 30px;
  text-decoration: none;
  color: #6B6560;
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: all 0.3s ease;
  white-space: nowrap;
  background: #FFFFFF;
}

.halo-blog-filter:hover {
  border-color: #C4A265;
  color: #2C2824;
}

.halo-blog-filter--active {
  background-color: #C4A265 !important;
  border-color: #C4A265 !important;
  color: #FFFFFF !important;
}

.halo-filter-toggle {
  background: none;
  border: none;
  color: #C4A265;
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 14px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 15px;
  transition: color 0.3s ease;
}

.halo-filter-toggle:hover { color: #2C2824; }

.halo-filter-toggle svg {
  width: 14px;
  height: 14px;
  transition: transform 0.4s ease;
}

.halo-filter-toggle.is-expanded svg {
  transform: rotate(180deg);
}

/* ============================================
   HALO42 HOMEPAGE — PREMIUM EDITORIAL DESIGN
   Add this to the bottom of assets/custom.css
   ============================================ */

/* ── Global Tokens ── */
.h42-home {
  --h42-ivory: #FAF8F5;
  --h42-cream: #F5F0EA;
  --h42-dark: #2C2824;
  --h42-gold: #C4A265;
  --h42-gold-lt: #D4B87A;
  --h42-gray: #6B6560;
  --h42-white: #FFFFFF;
  --h42-serif: 'Playfair Display', Georgia, serif;
  --h42-sans: 'Inter', 'Helvetica Neue', sans-serif;
  font-family: var(--h42-sans);
  background-color: var(--h42-ivory);
}

/* ── Shared Utilities ── */
.h42-eyebrow-label {
  font-family: var(--h42-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--h42-gold);
  margin: 0 0 16px;
}
.h42-section-title {
  font-family: var(--h42-serif);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 600;
  color: var(--h42-dark);
  margin: 0 0 16px;
  line-height: 1.2;
}
.h42-section-subtitle {
  font-size: 1rem;
  color: var(--h42-gray);
  line-height: 1.7;
  max-width: 520px;
  margin: 0 auto;
}
.h42-section-line {
  width: 50px;
  height: 1px;
  background: var(--h42-gold);
  margin: 0 auto 24px;
}

/* ── Buttons ── */
.h42-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  font-family: var(--h42-sans);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: 1.5px solid transparent;
}
.h42-btn--gold { background: var(--h42-gold); color: var(--h42-white); border-color: var(--h42-gold); }
.h42-btn--gold:hover { background: var(--h42-gold-lt); border-color: var(--h42-gold-lt); color: var(--h42-white); }
.h42-btn--ghost { background: transparent; color: var(--h42-white); border-color: rgba(255,255,255,0.5); }
.h42-btn--ghost:hover { border-color: var(--h42-white); background: rgba(255,255,255,0.1); color: var(--h42-white); }
.h42-btn--outline-dark { background: transparent; color: var(--h42-dark); border-color: var(--h42-dark); }
.h42-btn--outline-dark:hover { background: var(--h42-dark); color: var(--h42-white); }
.h42-btn--gold-outline { background: transparent; color: var(--h42-gold); border-color: var(--h42-gold); }
.h42-btn--gold-outline:hover { background: var(--h42-gold); color: var(--h42-white); }

/* ── 1. HERO ── */
.h42-hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}
.h42-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 20%;
  transform: scale(1.05);
  transition: transform 8s ease;
}
.h42-hero:hover .h42-hero__bg { transform: scale(1.0); }
.h42-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(44,40,36,0.25) 0%, rgba(44,40,36,0.7) 60%, rgba(44,40,36,0.88) 100%);
  z-index: 1;
}
.h42-hero__content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  padding: 60px 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.h42-hero__line { width: 60px; height: 1px; background: var(--h42-gold); margin: 20px auto; }
.h42-hero__eyebrow {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--h42-gold);
  margin: 0;
}
.h42-hero__title {
  font-family: var(--h42-serif);
  font-size: clamp(2.4rem, 7vw, 5rem);
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--h42-white);
  margin: 0;
  line-height: 1.1;
}
.h42-hero__subtitle {
  font-family: var(--h42-serif);
  font-style: italic;
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: rgba(255,255,255,0.9);
  margin: 0;
  line-height: 1.75;
  max-width: 560px;
}
.h42-hero__ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 8px;
}

/* ── 2. PRESS BAR ── */
.h42-press {
  background: #faf5f0;
  padding: 52px 40px;
  text-align: center;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.h42-press__label {
  font-family: var(--h42-sans);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--h42-gray);
  opacity: 0.6;
  margin: 0 0 36px;
}
.h42-press__logos {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: wrap;
  gap: 48px 56px;
}

/* ── Each press item ── */
.h42-press__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.h42-press__logo-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  transition: opacity 0.3s ease;
}
.h42-press__logo-link:hover { opacity: 0.7; }

/* With actual image */
.h42-press__logo {
  height: 24px;
  width: auto;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.5;
  transition: all 0.3s ease;
}
.h42-press__logo-link:hover .h42-press__logo {
  filter: grayscale(0%);
  opacity: 1;
}

/* Text-only fallback — editorial serif look */
.h42-press__logo-link--text { opacity: 1; }

.h42-press__logo-name {
  font-family: var(--h42-serif);
  font-size: 1.05rem;
  font-weight: 700;
  font-style: italic;
  letter-spacing: 0.04em;
  color: var(--h42-dark);
  opacity: 0.55;
  text-transform: none;
  transition: opacity 0.3s ease;
  line-height: 1;
}
.h42-press__logo-link--text:hover .h42-press__logo-name { opacity: 0.85; }

/* Award quote below name */
.h42-press__item-quote {
  font-family: var(--h42-sans);
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--h42-gold);
  display: block;
  line-height: 1;
}

/* Vertical dividers between items */
.h42-press__item + .h42-press__item {
  position: relative;
}
.h42-press__item + .h42-press__item::before {
  content: '';
  position: absolute;
  left: -28px;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 28px;
  background: var(--h42-cream);
}

@media (max-width: 640px) {
  .h42-press__logos { gap: 32px; }
  .h42-press__item + .h42-press__item::before { display: none; }
}

/* ── 3. PRODUCTS ── */
.h42-products { background: var(--h42-ivory); padding: 100px 40px; }
.h42-products__header { text-align: center; margin-bottom: 60px; }
.h42-products__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
}
.h42-product-card {
  background: var(--h42-white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(44,40,36,0.06);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  display: flex;
  flex-direction: column;
}
.h42-product-card:hover { transform: translateY(-8px); box-shadow: 0 16px 48px rgba(44,40,36,0.12); }
.h42-product-card__image-wrap {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: var(--h42-cream);
}
.h42-product-card__img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.h42-product-card:hover .h42-product-card__img { transform: scale(1.06); }
.h42-product-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 60%, rgba(44,40,36,0.1) 100%);
}
.h42-product-card__body { padding: 24px 24px 28px; display: flex; flex-direction: column; flex-grow: 1; }
.h42-product-card__tag {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--h42-gold);
  margin: 0 0 8px;
}
.h42-product-card__title {
  font-family: var(--h42-serif);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--h42-dark);
  margin: 0 0 10px;
  line-height: 1.3;
}
.h42-product-card__title a { text-decoration: none; color: inherit; transition: color 0.3s ease; }
.h42-product-card__title a:hover { color: var(--h42-gold); }
.h42-product-card__desc { font-size: 0.88rem; line-height: 1.65; color: var(--h42-gray); margin: 0 0 auto; padding-bottom: 16px; }
.h42-product-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--h42-cream);
}
.h42-product-card__price { font-size: 1rem; font-weight: 600; color: var(--h42-dark); }
.h42-product-card__cta {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--h42-gold);
  text-decoration: none;
  transition: color 0.3s;
}
.h42-product-card__cta:hover { color: var(--h42-dark); }
.h42-products__footer { text-align: center; margin-top: 60px; }

/* ── 4. INGREDIENT STORY ── */
.h42-ingredient {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 640px;
  background: var(--h42-dark);
}
.h42-ingredient__image-col { position: relative; overflow: hidden; }
.h42-ingredient__img { width: 100%; height: 100%; object-fit: cover; transition: transform 8s ease; }
.h42-ingredient:hover .h42-ingredient__img { transform: scale(1.04); }
.h42-ingredient__image-badge {
  position: absolute;
  bottom: 32px;
  left: 32px;
  background: rgba(44,40,36,0.85);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(196,162,101,0.3);
  border-radius: 50px;
  padding: 10px 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--h42-gold);
}
.h42-ingredient__badge-dot { color: rgba(196,162,101,0.4); }
.h42-ingredient__text-col { padding: 80px 72px; display: flex; flex-direction: column; justify-content: center; }
.h42-ingredient__title {
  font-family: var(--h42-serif);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 600;
  color: var(--h42-white);
  margin: 0 0 24px;
  line-height: 1.2;
}
.h42-ingredient__divider { width: 50px; height: 1px; background: var(--h42-gold); margin: 0 0 28px; }
.h42-ingredient__body { font-size: 1rem; line-height: 1.8; color: rgba(255,255,255,0.75); margin: 0 0 36px; }
.h42-ingredient .h42-eyebrow-label { color: var(--h42-gold); }

/* ── 5. RITUAL STEPS ── */
.h42-ritual { background: var(--h42-ivory); padding: 100px 40px; }
.h42-ritual__header { text-align: center; margin-bottom: 64px; }
.h42-ritual__steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
}
.h42-ritual__steps::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 16.66%;
  right: 16.66%;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--h42-gold), transparent);
}
.h42-ritual__step { text-align: center; position: relative; }
.h42-ritual__step-number {
  font-family: var(--h42-serif);
  font-size: 3rem;
  font-weight: 700;
  color: var(--h42-gold);
  opacity: 0.25;
  line-height: 1;
  margin-bottom: 16px;
}
.h42-ritual__step-title { font-family: var(--h42-serif); font-size: 1.4rem; font-weight: 600; color: var(--h42-dark); margin: 0 0 12px; }
.h42-ritual__step-text { font-size: 0.92rem; line-height: 1.7; color: var(--h42-gray); margin: 0 0 16px; }
.h42-ritual__step-link { font-size: 0.78rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--h42-gold); text-decoration: none; transition: color 0.3s; }
.h42-ritual__step-link:hover { color: var(--h42-dark); }

/* ── 6. FOUNDERS / WHY WE EXIST ── */
.h42-founders {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 600px;
  background: var(--h42-cream);
}
.h42-founders__image-col { overflow: hidden; }
.h42-founders__img { width: 100%; height: 100%; object-fit: cover; }
.h42-founders__text-col { padding: 80px 72px; display: flex; flex-direction: column; justify-content: center; }
.h42-founders__title { font-family: var(--h42-serif); font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 600; color: var(--h42-dark); margin: 0 0 24px; line-height: 1.25; }
.h42-founders__body { font-size: 1rem; line-height: 1.8; color: var(--h42-gray); margin: 0 0 36px; }

/* ── 7. TESTIMONIALS ── */
.h42-testimonials { background: var(--h42-white); padding: 100px 40px; }
.h42-testimonials__header { text-align: center; margin-bottom: 60px; }
.h42-testimonials__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; max-width: 1100px; margin: 0 auto; }
.h42-testimonial {
  background: var(--h42-ivory);
  border-radius: 16px;
  padding: 36px 32px;
  border-top: 2px solid var(--h42-gold);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.h42-testimonial:hover { transform: translateY(-4px); box-shadow: 0 12px 36px rgba(44,40,36,0.08); }
.h42-testimonial__stars { color: var(--h42-gold); font-size: 0.9rem; letter-spacing: 2px; margin-bottom: 16px; }
.h42-testimonial__quote { font-family: var(--h42-serif); font-style: italic; font-size: 1rem; line-height: 1.7; color: var(--h42-dark); margin: 0 0 20px; border: none; padding: 0; }
.h42-testimonial__author { font-size: 0.78rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--h42-gold); font-style: normal; }

/* ── 8. EMAIL CAPTURE ── */
.h42-email-capture {
  background: linear-gradient(135deg, var(--h42-dark) 0%, #3A3530 100%);
  padding: 100px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.h42-email-capture::before {
  content: '';
  position: absolute;
  top: -40%;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(196,162,101,0.1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.h42-email-capture__inner { position: relative; z-index: 1; max-width: 560px; margin: 0 auto; }
.h42-email-capture__title { font-family: var(--h42-serif); font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 600; color: var(--h42-white); margin: 0 0 16px; line-height: 1.2; }
.h42-email-capture__subtitle { font-size: 1rem; color: rgba(255,255,255,0.65); line-height: 1.7; margin: 0 0 36px; }
.h42-email-capture__field-wrap { display: flex; max-width: 480px; margin: 0 auto; border-radius: 50px; overflow: hidden; border: 1px solid rgba(196,162,101,0.35); background: rgba(255,255,255,0.06); }
.h42-email-capture__input { flex: 1; background: transparent; border: none; outline: none; padding: 16px 24px; font-size: 0.9rem; color: var(--h42-white); }
.h42-email-capture__input::placeholder { color: rgba(255,255,255,0.35); }
.h42-email-capture__btn { padding: 16px 28px; background: var(--h42-gold); border: none; font-size: 0.78rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--h42-white); cursor: pointer; transition: background 0.3s; white-space: nowrap; }
.h42-email-capture__btn:hover { background: var(--h42-gold-lt); }
.h42-email-capture__note { font-size: 0.75rem; color: rgba(255,255,255,0.3); margin-top: 14px; letter-spacing: 0.05em; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .h42-products__grid { grid-template-columns: repeat(2, 1fr); }
  .h42-ingredient { grid-template-columns: 1fr; }
  .h42-ingredient__text-col { padding: 60px 40px; }
  .h42-founders { grid-template-columns: 1fr; }
  .h42-founders__text-col { padding: 60px 40px; }
}

@media (max-width: 768px) {
  .h42-hero { min-height: 100svh; }
  .h42-hero__title { letter-spacing: 0.08em; }
  .h42-products { padding: 60px 20px; }
  .h42-products__grid { grid-template-columns: 1fr; }
  .h42-ritual__steps { grid-template-columns: 1fr; gap: 40px; }
  .h42-ritual__steps::before { display: none; }
  .h42-ritual { padding: 60px 20px; }
  .h42-testimonials { padding: 60px 20px; }
  .h42-testimonials__grid { grid-template-columns: 1fr; }
  .h42-email-capture { padding: 60px 20px; }
  .h42-email-capture__field-wrap { flex-direction: column; border-radius: 12px; }
  .h42-email-capture__btn { border-radius: 8px; padding: 14px; }
  .h42-ingredient__text-col { padding: 50px 24px; }
  .h42-founders__text-col { padding: 50px 24px; }
  .h42-hero__ctas { flex-direction: column; align-items: center; }
}

/* ============================================
   HALO42 HOMEPAGE — PREMIUM EDITORIAL DESIGN
   Add this to the bottom of assets/custom.css
   ============================================ */

/* ── Global Tokens ── */
.h42-home {
  --h42-ivory: #FAF8F5;
  --h42-cream: #F5F0EA;
  --h42-dark: #2C2824;
  --h42-gold: #C4A265;
  --h42-gold-lt: #D4B87A;
  --h42-gray: #6B6560;
  --h42-white: #FFFFFF;
  --h42-serif: 'Playfair Display', Georgia, serif;
  --h42-sans: 'Inter', 'Helvetica Neue', sans-serif;
  font-family: var(--h42-sans);
  background-color: var(--h42-ivory);
}

/* ── Shared Utilities ── */
.h42-eyebrow-label {
  font-family: var(--h42-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--h42-gold);
  margin: 0 0 16px;
}
.h42-section-title {
  font-family: var(--h42-serif);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 600;
  color: var(--h42-dark);
  margin: 0 0 16px;
  line-height: 1.2;
}
.h42-section-subtitle {
  font-size: 1rem;
  color: var(--h42-gray);
  line-height: 1.7;
  max-width: 520px;
  margin: 0 auto;
}
.h42-section-line {
  width: 50px;
  height: 1px;
  background: var(--h42-gold);
  margin: 0 auto 24px;
}

/* ── Buttons ── */
.h42-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  font-family: var(--h42-sans);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: 1.5px solid transparent;
}
.h42-btn--gold { background: var(--h42-gold); color: var(--h42-white); border-color: var(--h42-gold); }
.h42-btn--gold:hover { background: var(--h42-gold-lt); border-color: var(--h42-gold-lt); color: var(--h42-white); }
.h42-btn--ghost { background: transparent; color: var(--h42-white); border-color: rgba(255,255,255,0.5); }
.h42-btn--ghost:hover { border-color: var(--h42-white); background: rgba(255,255,255,0.1); color: var(--h42-white); }
.h42-btn--outline-dark { background: transparent; color: var(--h42-dark); border-color: var(--h42-dark); }
.h42-btn--outline-dark:hover { background: var(--h42-dark); color: var(--h42-white); }
.h42-btn--gold-outline { background: transparent; color: var(--h42-gold); border-color: var(--h42-gold); }
.h42-btn--gold-outline:hover { background: var(--h42-gold); color: var(--h42-white); }

/* ── 1. HERO ── */
.h42-hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}
.h42-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 20%;
  transform: scale(1.05);
  transition: transform 8s ease;
}
.h42-hero:hover .h42-hero__bg { transform: scale(1.0); }
.h42-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(44,40,36,0.25) 0%, rgba(44,40,36,0.7) 60%, rgba(44,40,36,0.88) 100%);
  z-index: 1;
}
.h42-hero__content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  padding: 60px 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.h42-hero__line { width: 60px; height: 1px; background: var(--h42-gold); margin: 20px auto; }
.h42-hero__eyebrow {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--h42-gold);
  margin: 0;
}
.h42-hero__title {
  font-family: var(--h42-serif);
  font-size: clamp(2.4rem, 7vw, 5rem);
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--h42-white);
  margin: 0;
  line-height: 1.1;
}
.h42-hero__subtitle {
  font-family: var(--h42-serif);
  font-style: italic;
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: rgba(255,255,255,0.9);
  margin: 0;
  line-height: 1.75;
  max-width: 560px;
}
.h42-hero__ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 8px;
}

/* ── 2. PRESS BAR ── */
.h42-press {
  background: var(--h42-white);
  padding: 40px 30px;
  text-align: center;
  border-bottom: 1px solid var(--h42-cream);
}
.h42-press__label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--h42-gray);
  margin: 0 0 24px;
}
.h42-press__logos {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
}
.h42-press__logo {
  height: 22px;
  width: auto;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.45;
  transition: all 0.3s ease;
}
.h42-press__logo-link:hover .h42-press__logo { filter: grayscale(0%); opacity: 1; }
.h42-press__logo-text {
  font-family: var(--h42-serif);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--h42-gray);
  opacity: 0.5;
  text-transform: uppercase;
}

/* ── 3. PRODUCTS ── */
.h42-products { background: var(--h42-ivory); padding: 100px 40px; }
.h42-products__header { text-align: center; margin-bottom: 60px; }
.h42-products__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
}
.h42-product-card {
  background: var(--h42-white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(44,40,36,0.06);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  display: flex;
  flex-direction: column;
}
.h42-product-card:hover { transform: translateY(-8px); box-shadow: 0 16px 48px rgba(44,40,36,0.12); }
.h42-product-card__image-wrap {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: var(--h42-cream);
}
.h42-product-card__img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.h42-product-card:hover .h42-product-card__img { transform: scale(1.06); }
.h42-product-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 60%, rgba(44,40,36,0.1) 100%);
}
.h42-product-card__body { padding: 24px 24px 28px; display: flex; flex-direction: column; flex-grow: 1; }
.h42-product-card__tag {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--h42-gold);
  margin: 0 0 8px;
}
.h42-product-card__title {
  font-family: var(--h42-serif);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--h42-dark);
  margin: 0 0 10px;
  line-height: 1.3;
}
.h42-product-card__title a { text-decoration: none; color: inherit; transition: color 0.3s ease; }
.h42-product-card__title a:hover { color: var(--h42-gold); }
.h42-product-card__desc { font-size: 0.88rem; line-height: 1.65; color: var(--h42-gray); margin: 0 0 auto; padding-bottom: 16px; }
.h42-product-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--h42-cream);
}
.h42-product-card__price { font-size: 1rem; font-weight: 600; color: var(--h42-dark); }
.h42-product-card__cta {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--h42-gold);
  text-decoration: none;
  transition: color 0.3s;
}
.h42-product-card__cta:hover { color: var(--h42-dark); }
.h42-products__footer { text-align: center; margin-top: 60px; }

/* ── 4. INGREDIENT STORY ── */
.h42-ingredient {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 640px;
  background: var(--h42-dark);
}
.h42-ingredient__image-col { position: relative; overflow: hidden; }
.h42-ingredient__img { width: 100%; height: 100%; object-fit: cover; transition: transform 8s ease; }
.h42-ingredient:hover .h42-ingredient__img { transform: scale(1.04); }
.h42-ingredient__image-badge {
  position: absolute;
  bottom: 32px;
  left: 32px;
  background: rgba(44,40,36,0.85);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(196,162,101,0.3);
  border-radius: 50px;
  padding: 10px 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--h42-gold);
}
.h42-ingredient__badge-dot { color: rgba(196,162,101,0.4); }
.h42-ingredient__text-col { padding: 80px 72px; display: flex; flex-direction: column; justify-content: center; }
.h42-ingredient__title {
  font-family: var(--h42-serif);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 600;
  color: var(--h42-white);
  margin: 0 0 24px;
  line-height: 1.2;
}
.h42-ingredient__divider { width: 50px; height: 1px; background: var(--h42-gold); margin: 0 0 28px; }
.h42-ingredient__body { font-size: 1rem; line-height: 1.8; color: rgba(255,255,255,0.75); margin: 0 0 36px; }
.h42-ingredient .h42-eyebrow-label { color: var(--h42-gold); }

/* ── 5. RITUAL STEPS ── */
.h42-ritual { background: var(--h42-ivory); padding: 100px 40px; }
.h42-ritual__header { text-align: center; margin-bottom: 64px; }
.h42-ritual__steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
}
.h42-ritual__steps::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 16.66%;
  right: 16.66%;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--h42-gold), transparent);
}
.h42-ritual__step { text-align: center; position: relative; }
.h42-ritual__step-number {
  font-family: var(--h42-serif);
  font-size: 3rem;
  font-weight: 700;
  color: var(--h42-gold);
  opacity: 0.25;
  line-height: 1;
  margin-bottom: 16px;
}
.h42-ritual__step-title { font-family: var(--h42-serif); font-size: 1.4rem; font-weight: 600; color: var(--h42-dark); margin: 0 0 12px; }
.h42-ritual__step-text { font-size: 0.92rem; line-height: 1.7; color: var(--h42-gray); margin: 0 0 16px; }
.h42-ritual__step-link { font-size: 0.78rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--h42-gold); text-decoration: none; transition: color 0.3s; }
.h42-ritual__step-link:hover { color: var(--h42-dark); }

/* ── 6. FOUNDERS / WHY WE EXIST ── */
.h42-founders {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 600px;
  background: var(--h42-cream);
}
.h42-founders__image-col { overflow: hidden; }
.h42-founders__img { width: 100%; height: 100%; object-fit: cover; }
.h42-founders__text-col { padding: 80px 72px; display: flex; flex-direction: column; justify-content: center; }
.h42-founders__title { font-family: var(--h42-serif); font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 600; color: var(--h42-dark); margin: 0 0 24px; line-height: 1.25; }
.h42-founders__body { font-size: 1rem; line-height: 1.8; color: var(--h42-gray); margin: 0 0 36px; }

/* ── 7. TESTIMONIALS ── */
.h42-testimonials { background: var(--h42-white); padding: 100px 40px; }
.h42-testimonials__header { text-align: center; margin-bottom: 60px; }
.h42-testimonials__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; max-width: 1100px; margin: 0 auto; }
.h42-testimonial {
  background: var(--h42-ivory);
  border-radius: 16px;
  padding: 36px 32px;
  border-top: 2px solid var(--h42-gold);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.h42-testimonial:hover { transform: translateY(-4px); box-shadow: 0 12px 36px rgba(44,40,36,0.08); }
.h42-testimonial__stars { color: var(--h42-gold); font-size: 0.9rem; letter-spacing: 2px; margin-bottom: 16px; }
.h42-testimonial__quote { font-family: var(--h42-serif); font-style: italic; font-size: 1rem; line-height: 1.7; color: var(--h42-dark); margin: 0 0 20px; border: none; padding: 0; }
.h42-testimonial__author { font-size: 0.78rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--h42-gold); font-style: normal; }

/* ── 8. EMAIL CAPTURE ── */
.h42-email-capture {
  background: linear-gradient(135deg, var(--h42-dark) 0%, #3A3530 100%);
  padding: 100px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.h42-email-capture::before {
  content: '';
  position: absolute;
  top: -40%;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(196,162,101,0.1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.h42-email-capture__inner { position: relative; z-index: 1; max-width: 560px; margin: 0 auto; }
.h42-email-capture__title { font-family: var(--h42-serif); font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 600; color: var(--h42-white); margin: 0 0 16px; line-height: 1.2; }
.h42-email-capture__subtitle { font-size: 1rem; color: rgba(255,255,255,0.65); line-height: 1.7; margin: 0 0 36px; }
.h42-email-capture__field-wrap { display: flex; max-width: 480px; margin: 0 auto; border-radius: 50px; overflow: hidden; border: 1px solid rgba(196,162,101,0.35); background: rgba(255,255,255,0.06); }
.h42-email-capture__input { flex: 1; background: transparent; border: none; outline: none; padding: 16px 24px; font-size: 0.9rem; color: var(--h42-white); }
.h42-email-capture__input::placeholder { color: rgba(255,255,255,0.35); }
.h42-email-capture__btn { padding: 16px 28px; background: var(--h42-gold); border: none; font-size: 0.78rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--h42-white); cursor: pointer; transition: background 0.3s; white-space: nowrap; }
.h42-email-capture__btn:hover { background: var(--h42-gold-lt); }
.h42-email-capture__note { font-size: 0.75rem; color: rgba(255,255,255,0.3); margin-top: 14px; letter-spacing: 0.05em; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .h42-products__grid { grid-template-columns: repeat(2, 1fr); }
  .h42-ingredient { grid-template-columns: 1fr; }
  .h42-ingredient__text-col { padding: 60px 40px; }
  .h42-founders { grid-template-columns: 1fr; }
  .h42-founders__text-col { padding: 60px 40px; }
}

@media (max-width: 768px) {
  .h42-hero { min-height: 100svh; }
  .h42-hero__title { letter-spacing: 0.08em; }
  .h42-products { padding: 60px 20px; }
  .h42-products__grid { grid-template-columns: 1fr; }
  .h42-ritual__steps { grid-template-columns: 1fr; gap: 40px; }
  .h42-ritual__steps::before { display: none; }
  .h42-ritual { padding: 60px 20px; }
  .h42-testimonials { padding: 60px 20px; }
  .h42-testimonials__grid { grid-template-columns: 1fr; }
  .h42-email-capture { padding: 60px 20px; }
  .h42-email-capture__field-wrap { flex-direction: column; border-radius: 12px; }
  .h42-email-capture__btn { border-radius: 8px; padding: 14px; }
  .h42-ingredient__text-col { padding: 50px 24px; }
  .h42-founders__text-col { padding: 50px 24px; }
  .h42-hero__ctas { flex-direction: column; align-items: center; }
}

/* ── Halo42 Announcement Bar Marquee ── */
.announcement-bar {
  overflow: hidden;
  position: relative;
  background-color: #2C2824 !important;
  padding: 0 !important;
}

.h42-marquee-track {
  display: flex;
  width: max-content;
  animation: h42-ticker 35s linear infinite;
}

.announcement-bar:hover .h42-marquee-track {
  animation-play-state: paused;
}

.announcement-bar--message {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  padding: 11px 0;
  font-family: 'Inter', 'Helvetica Neue', sans-serif;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #FAF8F5 !important;
}

.announcement-bar--message a {
  color: #FAF8F5 !important;
  text-decoration: none;
}

.h42-marquee-dot {
  color: #C4A265;
  margin: 0 28px;
  font-size: 1.1rem;
  line-height: 1;
}

/* Fade edges */
.announcement-bar::before,
.announcement-bar::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}
.announcement-bar::before {
  left: 0;
  background: linear-gradient(to right, #2C2824, transparent);
}
.announcement-bar::after {
  right: 0;
  background: linear-gradient(to left, #2C2824, transparent);
}

@keyframes h42-ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-100%); }
}

/* ══════════════════════════════════════════
   HALO42 — Header Fix | Forest Green
══════════════════════════════════════════ */

/* ── Background ── */
.header-section--wrapper,
[data-wetheme-section-type="header"],
.site-header {
  background-color: #1a2e1f !important;
  border-bottom: none !important;
  box-shadow: none !important;
}

/* Kill the blue underline from theme defaults */
.site-header,
.site-header * {
  border-bottom: none !important;
  outline: none !important;
}

/* ── 3-Column Grid Layout ── */
.site-header__wrapper {
  display: grid !important;
  grid-template-columns: 200px 1fr 200px !important;
  align-items: center !important;
  padding: 0 40px !important;
  min-height: 60px !important;
  position: relative !important;
}

.site-header__wrapper__left {
  display: flex !important;
  align-items: center !important;
  justify-content: flex-start !important;
}

/* Center column — the nav sits here naturally */
.site-header__wrapper__right {
  display: flex !important;
  align-items: center !important;
  justify-content: flex-end !important;
}

/* ── Remove absolute nav centering (was causing overlap) ── */
.js.site-header__nav.top-links,
#top_links_wrapper {
  position: static !important;
  transform: none !important;
  display: flex !important;
  justify-content: center !important;
  flex: 1 !important;
}

/* ── Logo ── */
.site-title,
.site-header__logowrapper {
  padding: 0 !important;
  margin: 0 !important;
}

.site-header__logo-link {
  font-family: 'Playfair Display', 'Georgia', serif !important;
  font-size: 0.95rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.28em !important;
  text-transform: uppercase !important;
  color: #c8ddc0 !important;
  text-decoration: none !important;
  white-space: nowrap !important;
}

.site-header__logo-image img {
  max-height: 26px !important;
  width: auto !important;
}

/* ── Nav Links ── */
.site-nav {
  display: flex !important;
  align-items: center !important;
  gap: 28px !important;
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
  background: transparent !important;
  border: none !important;
}

.site-nav > li > a,
.site-nav__link,
.site-nav a {
  font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif !important;
  font-size: 0.65rem !important;
  font-weight: 500 !important;
  letter-spacing: 0.18em !important;
  text-transform: uppercase !important;
  color: #c8ddc0 !important;
  text-decoration: none !important;
  white-space: nowrap !important;
  border: none !important;
  border-bottom: 1px solid transparent !important;
  padding-bottom: 2px !important;
  transition: color 0.22s ease, border-color 0.22s ease !important;
  background: transparent !important;
}

/* Kill any blue/default active color */
.site-nav > li.active > a,
.site-nav > li > a:focus,
.site-nav__link:focus,
.site-nav__link--active {
  color: #C4A265 !important;
  border-bottom-color: #C4A265 !important;
  outline: none !important;
  box-shadow: none !important;
  text-decoration: none !important;
}

.site-nav > li > a:hover,
.site-nav__link:hover {
  color: #C4A265 !important;
  border-bottom-color: #C4A265 !important;
}

.site-nav__arrow { display: none !important; }

/* ── Dropdown ── */
.site-nav__dropdown {
  background: #1a2e1f !important;
  border: 1px solid rgba(200, 221, 192, 0.15) !important;
  border-top: 2px solid #C4A265 !important;
  box-shadow: 0 8px 24px rgba(0,0,0,0.25) !important;
  padding: 12px 0 !important;
}

.site-nav__dropdown a {
  font-family: 'Inter', sans-serif !important;
  font-size: 0.65rem !important;
  letter-spacing: 0.14em !important;
  text-transform: uppercase !important;
  color: #c8ddc0 !important;
  padding: 10px 24px !important;
  transition: color 0.2s !important;
}

.site-nav__dropdown a:hover {
  color: #C4A265 !important;
  background: rgba(196,162,101,0.08) !important;
}

/* ── Right Icons ── */
.site-header__links.top-links--icon-links {
  display: flex !important;
  align-items: center !important;
  gap: 18px !important;
  list-style: none !important;
  margin: 0 0 0 24px !important;
  padding: 0 !important;
}

.site-header__links.top-links--icon-links a {
  color: #c8ddc0 !important;
  opacity: 0.85 !important;
  text-decoration: none !important;
  display: flex !important;
  align-items: center !important;
  transition: color 0.2s, opacity 0.2s !important;
}

.site-header__links.top-links--icon-links a:hover {
  color: #C4A265 !important;
  opacity: 1 !important;
}

.site-header__links .fa {
  font-size: 0.88rem !important;
}

/* Cart badge */
.cart-item-count-header {
  font-size: 0.58rem !important;
  font-weight: 700 !important;
  background: #C4A265 !important;
  color: #1a2e1f !important;
  border-radius: 50% !important;
  min-width: 14px !important;
  height: 14px !important;
  line-height: 14px !important;
  text-align: center !important;
  padding: 0 3px !important;
  margin-left: 2px !important;
}

/* Hide locale selector */
.site-header__wrapper__right > .localization-form {
  display: none !important;
}

/* ── Sticky ── */
.header-section.sticky-header.sticked .site-header {
  background-color: rgba(26, 46, 31, 0.97) !important;
  backdrop-filter: blur(8px) !important;
}

/* ── Mobile Drawer ── */
#NavDrawer {
  background-color: #1a2e1f !important;
}

.mobile-nav__link {
  color: #c8ddc0 !important;
  font-family: 'Inter', sans-serif !important;
  font-size: 0.82rem !important;
  letter-spacing: 0.1em !important;
  text-transform: uppercase !important;
}

.mobile-nav__link:hover {
  color: #C4A265 !important;
}

.mobile-nav-bar-wrapper {
  background-color: #1a2e1f !important;
}
/* ── Fix: Icons all on one line ── */

/* Widen the grid for center-logo layout */
.site-header__wrapper {
  display: grid !important;
  grid-template-columns: 1fr auto 1fr !important;  /* equal flex sides */
  align-items: center !important;
  padding: 0 40px !important;
  min-height: 60px !important;
}

/* Left — nav links */
.site-header__wrapper__left {
  display: flex !important;
  align-items: center !important;
  justify-content: flex-start !important;
  overflow: visible !important;
}

/* Center — logo */
.site-header__wrapper__center {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

/* Right — icons, all on one row */
.site-header__wrapper__right {
  display: flex !important;
  align-items: center !important;
  justify-content: flex-end !important;
  flex-wrap: nowrap !important;          /* PREVENTS wrapping */
  gap: 0 !important;
  white-space: nowrap !important;
}

/* Icons list — force single row */
.site-header__links.top-links--icon-links {
  display: flex !important;
  flex-direction: row !important;        /* horizontal */
  flex-wrap: nowrap !important;          /* NO wrapping */
  align-items: center !important;
  gap: 20px !important;
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

.site-header__links.top-links--icon-links li {
  display: flex !important;
  align-items: center !important;
  float: none !important;
  width: auto !important;
}

.site-header__links.top-links--icon-links a {
  display: flex !important;
  align-items: center !important;
  color: #c8ddc0 !important;
  opacity: 0.85 !important;
  text-decoration: none !important;
  transition: color 0.2s, opacity 0.2s !important;
  white-space: nowrap !important;
}

.site-header__links.top-links--icon-links a:hover {
  color: #C4A265 !important;
  opacity: 1 !important;
}

.site-header__links .fa {
  font-size: 0.9rem !important;
  display: inline-block !important;
}

/* ══════════════════════════════════════════
   HALO42 — Hero Section
   Scoped to .h42-home — safe, no conflicts
══════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Inter:wght@300;400;500;600&display=swap');

/* ── Hero Container ── */
.h42-home .h42-hero {
  position: relative;
  width: 100%;
  min-height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-color: #1a2e1f; /* fallback if no image */
}

/* ── Background Image ── */
.h42-home .h42-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 20%;
  background-repeat: no-repeat;
  z-index: 0;
  transform: scale(1.02); /* slight zoom-out on load */
  transition: transform 8s ease;
}

/* ── Dark Overlay ── */
.h42-home .h42-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(26, 46, 31, 0.78) 0%,
    rgba(26, 46, 31, 0.45) 55%,
    rgba(26, 46, 31, 0.1) 100%
  );
  z-index: 1;
}

/* ── Content Block ── */
.h42-home .h42-hero__content {
  position: relative;
  z-index: 2;
  max-width: 560px;
  padding: clamp(40px, 8vw, 100px) clamp(24px, 6vw, 80px);
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* ── Decorative Line ── */
.h42-home .h42-hero__line {
  width: 40px;
  height: 1px;
  background: #C4A265;
  margin: 18px 0;
  opacity: 0.8;
}

/* ── Eyebrow Label ── */
.h42-home .h42-hero__eyebrow {
  font-family: 'Inter', 'Helvetica Neue', sans-serif;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #c8ddc0;
  margin: 0;
  opacity: 0.85;
}

/* ── Main Title ── */
.h42-home .h42-hero__title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  font-weight: 600;
  line-height: 1.18;
  color: #FAF8F5;
  margin: 0 0 20px;
  letter-spacing: -0.01em;
}

/* ── Subtitle ── */
.h42-home .h42-hero__subtitle {
  font-family: 'Inter', 'Helvetica Neue', sans-serif;
  font-size: clamp(0.82rem, 1.4vw, 0.95rem);
  font-weight: 300;
  line-height: 1.7;
  color: rgba(250, 248, 245, 0.78);
  margin: 0;
  max-width: 420px;
}

/* ── CTA Button Row ── */
.h42-home .h42-hero__ctas {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  margin-top: 8px;
}

/* ── Shared Button Base ── */
.h42-home .h42-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 14px 28px;
  transition: all 0.28s ease;
  cursor: pointer;
  white-space: nowrap;
}

/* ── Gold Filled Button ── */
.h42-home .h42-btn--gold {
  background: #C4A265;
  color: #1a2e1f;
  border: 1.5px solid #C4A265;
}

.h42-home .h42-btn--gold:hover {
  background: #D4B87A;
  border-color: #D4B87A;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(196, 162, 101, 0.35);
}

/* ── Ghost Outline Button ── */
.h42-home .h42-btn--ghost {
  background: transparent;
  color: #FAF8F5;
  border: 1.5px solid rgba(250, 248, 245, 0.55);
}

.h42-home .h42-btn--ghost:hover {
  border-color: #C4A265;
  color: #C4A265;
  transform: translateY(-1px);
}

/* ── Mobile ── */
@media (max-width: 768px) {
  .h42-home .h42-hero {
    min-height: 85vh;
    align-items: flex-end;
    padding-bottom: 48px;
  }

  .h42-home .h42-hero__content {
    padding: 0 20px 0;
    max-width: 100%;
  }

  .h42-home .h42-hero__title {
    font-size: clamp(1.7rem, 7vw, 2.4rem);
  }

  .h42-home .h42-hero__ctas {
    flex-direction: column;
    width: 100%;
  }

  .h42-home .h42-btn {
    width: 100%;
    justify-content: center;
  }
}

/* ══════════════════════════════════════════
   HALO42 Hero Text — Match Reference Style
══════════════════════════════════════════ */

/* ── Large Playfair serif, NOT uppercase, left-aligned ── */
[data-wetheme-section-type="image--image-with-text"] h2.homepage-sections--title,
.homepage-sections-wrapper [data-wetheme-section-type="image--image-with-text"] h2,
.homepage-featured-content-box h2.homepage-sections--title,
.homepage-sections--title {
  font-family: 'Playfair Display', 'Georgia', serif !important;
  font-size: clamp(2.4rem, 6vw, 4.2rem) !important;
  font-weight: 400 !important;
  font-style: normal !important;
  line-height: 1.15 !important;
  color: #FFFFFF !important;
  text-transform: none !important;      /* kills ALL CAPS */
  letter-spacing: -0.02em !important;
  text-align: left !important;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3) !important;
  margin: 0 0 20px !important;
}

/* ── Left-align the whole content block ── */
.homepage-featured-content-box-inner,
.homepage-featured-content-box-inner .sitewide--title-wrapper,
.homepage-featured-content-box-inner .rte,
.homepage-featured-content-box-inner .clearfix {
  text-align: left !important;
}

/* ── Subtitle — small, light, readable ── */
.homepage-featured-content-box-inner .rte.featured-row__subtext,
.homepage-featured-content-box-inner .featured-row__subtext p,
.homepage-featured-content-box-inner .featured-row__subtext {
  font-family: 'Inter', 'Helvetica Neue', sans-serif !important;
  font-size: clamp(0.95rem, 1.5vw, 1rem) !important;
  font-weight: 400 !important;
  line-height: 1.75 !important;
  color: rgba(255, 255, 255, 0.8) !important;
  text-align: left !important;
  letter-spacing: 0.01em !important;
  max-width: 420px !important;
  text-shadow: 0 1px 8px rgba(0,0,0,0.25) !important;
}

/* Copaiba Image with Text Section Fix */
.homepage-featured-content-box .homepage-sections--title {
  font-size: 2.4rem !important;
  color: #1a1a1a !important;
  font-weight: 400 !important;
  line-height: 1.2 !important;
}

.large--one-half .rte.featured-row__subtext {
  color: #4a4a4a !important;
  font-size: 0.95rem !important;
  line-height: 1.7 !important;
}

.homepage-featured-box-btn {
  background: transparent !important;
  color: #1a1a1a !important;
  border: 1px solid #1a1a1a !important;
  font-size: 0.75rem !important;
  letter-spacing: 0.15em !important;
  padding: 12px 28px !important;
}

/* Hero overlay — keep subtitle white */
.homepage-indiv-section-wrapper .feature_row__image_wrapper + div .rte.featured-row__subtext,
.feature-row__text .rte.featured-row__subtext {
  color: #ffffff !important;
}

/* === COPAIBA SECTION FIXES === */

/* a. Headline: 40% smaller, black, no shadow */
.large--one-half .homepage-sections--title {
  font-size: 1.6rem !important;
  color: #1a1a1a !important;
  text-shadow: none !important;
  font-weight: 400 !important;
  line-height: 1.3 !important;
}

/* a. "Copaiba" word: italic + gold */
.copaiba-gold {
  font-style: italic !important;
  color: #B8963E !important;
  font-weight: 400 !important;
}

/* b. Body text: black, no shadow */
.large--one-half .rte.featured-row__subtext {
  color: #1a1a1a !important;
  text-shadow: none !important;
}

/* c. Image: fill full height, no gaps */
.feature_row__image_wrapper.large--one-half {
  padding: 0 !important;
  margin: 0 !important;
  align-self: stretch !important;
  overflow: hidden !important;
}

.feature_row__image_wrapper.large--one-half img,
.feature_row__image_wrapper.large--one-half .image-element__wrap {
  height: 100% !important;
  width: 100% !important;
  object-fit: cover !important;
  display: block !important;
}

/* ══════════════════════════════════════════
   HALO42 — Content Sections (Slides 1–3)
   "Copaiba Anti-Inflammatory" → "Why Halo42 Exists"
   Editorial / luxury refinement
══════════════════════════════════════════ */

/* ── Section wrapper: clean white background ── */
.no-overlap-content-box,
.homepage-sections-wrapper--white .homepage-featured-content-box-inner,
.homepage-sections-wrapper--light .homepage-featured-content-box-inner {
  background: transparent !important;
  box-shadow: none !important;
  border: none !important;
}


/* ── Title: elegant, refined, smaller ── */
.no-overlap-content-box .homepage-sections--title,
.large--one-half .homepage-sections--title {
  font-family: 'Playfair Display', Georgia, serif !important;
  font-size: clamp(1.4rem, 2.5vw, 2rem) !important;
  font-weight: 400 !important;
  font-style: normal !important;
  line-height: 1.3 !important;
  color: #1a1a1a !important;
  text-transform: none !important;
  letter-spacing: -0.01em !important;
  text-shadow: none !important;
  margin: 0 0 20px !important;
}

/* ── Gold accent line under title ── */
.no-overlap-content-box .sitewide--title-wrapper,
.large--one-half .sitewide--title-wrapper {
  padding-bottom: 20px !important;
  border-bottom: 1px solid rgba(196,162,101,0.3) !important;
  margin-bottom: 20px !important;
}

/* ── Body text: dark, clean, no shadow ── */
.no-overlap-content-box .rte.featured-row__subtext,
.no-overlap-content-box .featured-row__subtext p,
.large--one-half .rte.featured-row__subtext,
.large--one-half .rte.featured-row__subtext p {
  font-family: 'Inter', sans-serif !important;
  font-size: 0.9rem !important;
  font-weight: 300 !important;
  line-height: 1.8 !important;
  color: #4a4540 !important;
  text-shadow: none !important;
  letter-spacing: 0.01em !important;
}

/* ── Button: refined outline style ── */
.no-overlap-content-box .homepage-featured-box-btn,
.large--one-half .homepage-featured-box-btn {
  background: transparent !important;
  color: #1a1a1a !important;
  border: 1px solid rgba(26,26,26,0.4) !important;
  font-family: 'Inter', sans-serif !important;
  font-size: 0.65rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.22em !important;
  text-transform: uppercase !important;
  text-shadow: none !important;
  padding: 12px 26px !important;
  border-radius: 0 !important;
  transition: all 0.25s ease !important;
  margin-top: 8px !important;
}

.no-overlap-content-box .homepage-featured-box-btn:hover,
.large--one-half .homepage-featured-box-btn:hover {
  background: #1a1a1a !important;
  color: #FAF8F5 !important;
  border-color: #1a1a1a !important;
}

/* ── Image: fill height, no gaps ── */
.feature_row__image_wrapper.large--one-half {
  padding: 0 !important;
  overflow: hidden !important;
  align-self: stretch !important;
}

.feature_row__image_wrapper.large--one-half img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  display: block !important;
}

/* ── Restyle existing WeTheme "As Seen In" press bar ── */
.homepage-sections-wrapper .homepage-featured-press,
.press-bar-section,
[data-wetheme-section-type*="press"],
.featured-press-section {
  background: #faf5f0 !important;
  padding: 48px 40px !important;
  border-bottom: 1px solid rgba(0,0,0,0.06) !important;
} 

/* Make logos grayscale + smaller */
.homepage-featured-press img,
.press-logos img,
[data-wetheme-section-type*="press"] img {
  filter: grayscale(100%) !important;
  opacity: 0.5 !important;
  height: 28px !important;
  width: auto !important;
  transition: all 0.3s ease !important;
}

[data-wetheme-section-type*="press"] img:hover {
  filter: grayscale(0%) !important;
  opacity: 1 !important;
}

/* ══════════════════════════════════════════
   COLLECTION SHOWCASE
   ══════════════════════════════════════════ */
.h42-showcase {
  background: #fffdfa;
  padding: 96px 48px 100px;
}
.h42-showcase__inner {
  max-width: 1240px;
  margin: 0 auto;
}

/* Header */
.h42-showcase__header { margin-bottom: 64px; }
.h42-showcase__eyebrow {
  font-family: 'Inter', 'Helvetica Neue', sans-serif !important;
  font-size: 0.7rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.22em !important;
  text-transform: uppercase !important;
  color: #C4A265 !important;
  margin: 0 0 18px !important;
  display: block !important;
}
.h42-showcase__title {
  font-family: var(--h42-serif);
  font-size: clamp(2rem, 4.5vw, 3.1rem);
  font-weight: 400;
  color: var(--h42-dark);
  margin: 0 0 20px;
  line-height: 1.18;
  letter-spacing: -0.01em;
}
.h42-showcase__title em {
  font-style: italic;
  color: var(--h42-gold);
  font-weight: 400;
}
.h42-showcase__subtitle {
  font-family: var(--h42-sans);
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.7;
  color: var(--h42-gray);
  max-width: 520px;
  margin: 0;
}

/* Product Grid */
.h42-showcase__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 36px;
  margin-bottom: 64px;
}

/* Product Card */
.h42-showcase__card {
  position: relative;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
}
.h42-showcase__card-img-wrap {
  position: relative;
  aspect-ratio: 3 / 3.8;
  overflow: hidden;
  background: linear-gradient(145deg, #f7f5f2 0%, #eee9e2 100%);
  border-radius: 4px;
  margin-bottom: 22px;
}
.h42-showcase__card-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 20px 16px 16px;
  transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.h42-showcase__card:hover .h42-showcase__card-img {
  transform: scale(1.06);
}

/* Badges */
.h42-showcase__badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  font-family: var(--h42-sans);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 4px;
  line-height: 1;
}
.h42-showcase__badge--bestseller {
  background: #1a3c2a;
  color: var(--h42-white);
}
.h42-showcase__badge--award {
  background: var(--h42-gold);
  color: var(--h42-white);
}

/* Card Body */
.h42-showcase__card-name {
  font-family: var(--h42-serif);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--h42-dark);
  margin: 0 0 4px;
  line-height: 1.3;
  letter-spacing: 0.01em;
}
.h42-showcase__card-subtitle {
  font-family: var(--h42-sans);
  font-size: 0.78rem;
  font-weight: 400;
  color: var(--h42-gray);
  margin: 0 0 10px;
  line-height: 1.4;
}
.h42-showcase__card-reviews {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 10px;
}
.h42-showcase__stars {
  color: var(--h42-gold);
  font-size: 0.78rem;
  letter-spacing: 1px;
  line-height: 1;
}
.h42-showcase__star--half { opacity: 0.4; }
.h42-showcase__review-count {
  font-family: var(--h42-sans);
  font-size: 0.72rem;
  font-weight: 400;
  color: var(--h42-gray);
  opacity: 0.7;
}
.h42-showcase__card-price {
  font-family: var(--h42-sans);
  font-size: 1rem;
  font-weight: 600;
  color: var(--h42-dark);
  margin: 0;
  letter-spacing: 0.02em;
}

/* CTA */
.h42-showcase__footer { text-align: center; }
.h42-showcase__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 40px;
  font-family: var(--h42-sans);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--h42-dark);
  background: transparent;
  border: 1.5px solid var(--h42-dark);
  border-radius: 0;
  transition: all 0.35s ease;
  cursor: pointer;
}
.h42-showcase__cta:hover {
  background: var(--h42-dark);
  color: var(--h42-white);
}
.h42-showcase__cta-arrow {
  transition: transform 0.3s ease;
  font-size: 1rem;
}
.h42-showcase__cta:hover .h42-showcase__cta-arrow {
  transform: translateX(4px);
}


/* ══════════════════════════════════════════
   GREEN MARQUEE
   ══════════════════════════════════════════ */
.h42-marquee {
  background: #1a3c2a;
  overflow: hidden;
  position: relative;
  padding: 18px 0;
}
.h42-marquee::before,
.h42-marquee::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}
.h42-marquee::before {
  left: 0;
  background: linear-gradient(to right, #1a3c2a, transparent);
}
.h42-marquee::after {
  right: 0;
  background: linear-gradient(to left, #1a3c2a, transparent);
}
.h42-marquee__track {
  display: flex;
  width: max-content;
  animation: h42MarqueeScroll 28s linear infinite;
}
.h42-marquee:hover .h42-marquee__track {
  animation-play-state: paused;
}
.h42-marquee__items {
  display: flex;
  align-items: center;
  gap: 0;
  flex-shrink: 0;
}
.h42-marquee__item {
  display: flex;
  align-items: center;
  gap: 0;
  white-space: nowrap;
  padding: 0 8px;
}
.h42-marquee__text {
  font-family: var(--h42-sans);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.92);
}
.h42-marquee__dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--h42-gold);
  margin: 0 22px;
  flex-shrink: 0;
  opacity: 0.7;
}
/* Accent items — gold italic serif */
.h42-marquee__item--accent .h42-marquee__text {
  font-family: var(--h42-serif);
  font-style: italic;
  font-weight: 400;
  font-size: 0.88rem;
  letter-spacing: 0.06em;
  text-transform: none;
  color: var(--h42-gold-lt, #D4B87A);
}

@keyframes h42MarqueeScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── Showcase + Marquee Responsive ── */
@media (max-width: 1024px) {
  .h42-showcase { padding: 72px 32px 80px; }
  .h42-showcase__grid { grid-template-columns: repeat(2, 1fr); gap: 28px; }
}
@media (max-width: 640px) {
  .h42-showcase { padding: 56px 20px 64px; }
  .h42-showcase__grid { grid-template-columns: 1fr; gap: 36px; max-width: 360px; margin: 0 auto 56px; }
  .h42-showcase__header { margin-bottom: 48px; }
  .h42-showcase__title { font-size: clamp(1.8rem, 6vw, 2.4rem); }
  .h42-marquee { padding: 14px 0; }
  .h42-marquee__text { font-size: 0.7rem; }
  .h42-marquee__item--accent .h42-marquee__text { font-size: 0.8rem; }
}

.h42-showcase__cta {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 10px !important;
  padding: 16px 40px !important;
  font-size: 0.76rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.14em !important;
  text-transform: uppercase !important;
  text-decoration: none !important;
  color: #C4A265 !important;
  background: transparent !important;
  border: 1.5px solid #C4A265 !important;
  border-radius: 0 !important;
  transition: all 0.35s ease !important;
  cursor: pointer !important;
}
.h42-showcase__cta:hover {
  background: #C4A265 !important;
  color: #fff !important;
  border-color: #C4A265 !important;
}

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400&family=Inter:wght@300;400;500;600&display=swap');

:root {
  --h42-forest:#1a2e1f;--h42-moss:#2d4a33;--h42-sage:#7a9e82;
  --h42-mint:#c8ddc0;--h42-cream:#f7f3ee;--h42-gold:#c9a96e;
  --h42-mid:#5a5a5a;--h42-border:#e2ddd6;
  --h42-serif:'Cormorant Garamond',Georgia,serif;
  --h42-sans:'Inter',system-ui,sans-serif;
}

.product-details-product-title,h1.product-details-product-title{font-family:var(--h42-serif)!important;font-size:clamp(1.7rem,3vw,2.6rem)!important;font-weight:400!important;line-height:1.15!important;text-transform:none!important;letter-spacing:0!important}

.product-details-wrapper,.product-details--form-wrapper,.form-vertical{font-family:var(--h42-sans)!important}

#ProductPrice,.price-regular,.price-sale,.product__price{font-size:1.2rem!important;font-weight:600!important;color:#1c1c1c!important}

#ComparePrice{color:var(--h42-mid)!important;text-decoration:line-through!important;font-size:.95rem!important;font-weight:400!important}

.product-page--sale-badge{background:var(--h42-mint)!important;color:var(--h42-forest)!important;font-size:.65rem!important;font-weight:700!important;letter-spacing:.08em!important;text-transform:uppercase!important;border-radius:0!important}

.js-qty{display:flex!important;align-items:center!important;border:1.5px solid var(--h42-border)!important;border-radius:0!important;width:fit-content!important;overflow:hidden!important}
.js-qty__adjust{width:36px!important;height:36px!important;display:flex!important;align-items:center!important;justify-content:center!important;background:#fff!important;border:none!important;transition:background .2s!important}
.js-qty__adjust:hover{background:var(--h42-cream)!important}
.js-qty__num{width:40px!important;text-align:center!important;font-size:.82rem!important;font-weight:600!important;border-left:1.5px solid var(--h42-border)!important;border-right:1.5px solid var(--h42-border)!important;border-top:none!important;border-bottom:none!important;height:36px!important}

#AddToCart,button[name="add"],.btn.add-to-cart{background:var(--h42-forest)!important;color:var(--h42-cream)!important;border:none!important;border-radius:0!important;font-family:var(--h42-sans)!important;font-size:.82rem!important;font-weight:600!important;letter-spacing:.1em!important;text-transform:uppercase!important;padding:.95rem 1.5rem!important;width:100%!important;transition:background .2s,transform .2s,box-shadow .2s!important}
#AddToCart:hover,button[name="add"]:hover{background:var(--h42-moss)!important;transform:translateY(-1px)!important;box-shadow:0 6px 20px rgba(15,29,19,.18)!important}

.selector-wrapper label,.swatches-wrapper label,.product-sub-label{font-size:.72rem!important;font-weight:600!important;letter-spacing:.1em!important;text-transform:uppercase!important;color:var(--h42-mid)!important}

.selector-wrapper select,.variant-dropdown{border:1.5px solid var(--h42-border)!important;border-radius:0!important;font-family:var(--h42-sans)!important;font-size:.82rem!important;padding:.6rem .9rem!important}

.product__description,.rte{font-size:.88rem!important;line-height:1.75!important;color:var(--h42-mid)!important;font-family:var(--h42-sans)!important}

.product-single-wrapper,.product-details--form-wrapper{box-shadow:none!important;border:none!important;background:transparent!important}

.shopify-payment-button__button{border-radius:0!important}

@media(max-width:768px){.product-details-product-title{font-size:1.8rem!important}#AddToCart,button[name="add"]{font-size:.78rem!important}}
/* Force thumbnails below main image as horizontal carousel */
.product-gallery--thumbnails-left .product-gallery__thumbnails,
.product-gallery--thumbnails-right .product-gallery__thumbnails {
  flex-direction: row !important;
  position: static !important;
  width: 100% !important;
  max-width: 100% !important;
  margin-top: .75rem !important;
  overflow-x: auto !important;
  gap: .5rem !important;
}

.product-gallery--thumbnails-left .product-gallery__main,
.product-gallery--thumbnails-right .product-gallery__main {
  width: 100% !important;
}

.product-gallery__thumbnail {
  min-width: 68px !important;
  max-width: 68px !important;
  height: 68px !important;
  flex-shrink: 0 !important;
}

/* Accordion Styles */
.h42-trust { display: flex !important; align-items: center !important; gap: 1rem !important; flex-wrap: wrap !important; padding: .85rem 0 !important; border-top: 1px solid #e2ddd6 !important; border-bottom: 1px solid #e2ddd6 !important; margin-bottom: 1.25rem !important; }
.h42-trust span { display: inline-flex !important; align-items: center !important; gap: .3rem !important; font-size: .68rem !important; font-weight: 500 !important; color: #5a5a5a !important; font-family: 'Inter', sans-serif !important; white-space: nowrap !important; }
.h42-acc { font-family: 'Inter', sans-serif !important; border-top: none !important; }
.h42-acc__item { border-bottom: 1px solid #e2ddd6 !important; padding: 0 !important; margin: 0 !important; }
.h42-acc__head { width: 100% !important; display: flex !important; align-items: center !important; justify-content: space-between !important; padding: 1rem 0 !important; font-size: .84rem !important; font-weight: 600 !important; color: #1c1c1c !important; cursor: pointer !important; background: transparent !important; border: none !important; text-align: left !important; transition: color .2s !important; letter-spacing: .01em !important; margin: 0 !important; }
.h42-acc__head:hover { color: #1a2e1f !important; }
.h42-acc__tog { font-size: 1.2rem !important; font-weight: 300 !important; color: #1c1c1c !important; line-height: 1 !important; width: 18px !important; text-align: right !important; flex-shrink: 0 !important; }
.h42-acc__body { max-height: 0 !important; overflow: hidden !important; transition: max-height .38s ease !important; padding: 0 !important; margin: 0 !important; }
.h42-acc__item.h42-open .h42-acc__body { max-height: 800px !important; }
.h42-acc__inner { padding: .25rem 0 1.1rem !important; font-size: .84rem !important; line-height: 1.78 !important; color: #5a5a5a !important; }
.h42-acc__inner p { margin-bottom: .55rem !important; }
.h42-acc__inner p:last-child { margin-bottom: 0 !important; }
.h42-acc__inner ul { padding-left: 1.1rem !important; margin: 0 !important; display: flex !important; flex-direction: column !important; gap: .3rem !important; }
.h42-acc__inner li { list-style: disc !important; font-size: .82rem !important; color: #5a5a5a !important; line-height: 1.6 !important; margin: 0 !important; }
.h42-acc__inner strong { color: #1c1c1c !important; font-weight: 600 !important; }
.h42-acc__inner .inci-text { font-size: .78rem !important; line-height: 1.85 !important; font-style: italic !important; color: #7a7a7a !important; }

/* Benefits Bar Styles */
.h42-benefits-bar {
  background-color: #fffdfa !important;
  width: 100vw !important;
  margin-left: calc(50% - 50vw) !important;
  margin-right: calc(50% - 50vw) !important;
  padding: 3.5rem 1rem !important;
  margin-top: 3rem !important;
  margin-bottom: 3rem !important;
}

.h42-benefits-inner {
  max-width: 1200px !important;
  margin: 0 auto !important;
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 2.5rem !important;
  text-align: center !important;
  font-family: 'Inter', system-ui, sans-serif !important;
}

.h42-benefit-item {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  gap: 0.6rem !important;
}

.h42-benefit-icon {
  font-size: 1.8rem !important;
  line-height: 1 !important;
  margin-bottom: 0.25rem !important;
}

.h42-benefit-title {
  font-size: 0.72rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.1em !important;
  color: #1c1c1c !important;
  text-transform: uppercase !important;
  margin: 0 !important;
}

.h42-benefit-text {
  font-size: 0.8rem !important;
  line-height: 1.6 !important;
  color: #5a5a5a !important;
  margin: 0 !important;
}

/* Tablet: 2 columns */
@media (max-width: 900px) {
  .h42-benefits-inner { grid-template-columns: repeat(2, 1fr) !important; gap: 2rem !important; }
}

/* Mobile: 1 column */
@media (max-width: 480px) {
  .h42-benefits-inner { grid-template-columns: 1fr !important; gap: 2rem !important; }
}

/* Clinical Results Section Styles */
.h42-clinical-section {
  background-color: #0f1c12 !important;
  width: 100vw !important;
  margin-left: calc(50% - 50vw) !important;
  margin-right: calc(50% - 50vw) !important;
  padding: 5rem 1.5rem !important;
  margin-top: 3rem !important;
  margin-bottom: 0 !important; /* CHANGE THIS TO 0 */
}

.h42-clinical-inner {
  max-width: 1100px !important;
  margin: 0 auto !important;
  font-family: 'Inter', system-ui, sans-serif !important;
}

.h42-clinical-eyebrow {
  color: #c9a96e !important; /* Gold */
  font-size: 0.9rem !important; /* Larger for readability */
  font-weight: 700 !important;
  letter-spacing: 0.15em !important;
  text-transform: uppercase !important;
  margin-bottom: 1rem !important;
}

.h42-clinical-title {
  font-family: 'Cormorant Garamond', Georgia, serif !important;
  font-size: 3.2rem !important; /* Larger */
  font-weight: 400 !important;
  color: #f7f3ee !important;
  margin-bottom: 1.5rem !important;
  line-height: 1.2 !important;
}

.h42-clinical-divider {
  width: 50px !important;
  height: 2px !important;
  background-color: #c9a96e !important; /* Gold */
  margin: 0 auto 1.5rem auto !important;
}

.h42-clinical-subtitle {
  font-size: 1.1rem !important; /* Larger */
  line-height: 1.6 !important;
  color: rgba(255, 255, 255, 0.85) !important;
  max-width: 650px !important;
  margin: 0 auto 4rem auto !important;
}

.h42-clinical-grid {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 1.5rem !important;
}

.h42-clinical-card {
  background-color: rgba(255, 255, 255, 0.05) !important; /* Subtle box effect */
  padding: 3.5rem 2rem !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: flex-start !important;
}

.h42-clinical-percent {
  font-family: 'Cormorant Garamond', Georgia, serif !important;
  font-size: 4.5rem !important; /* Larger */
  font-weight: 300 !important;
  color: #c9a96e !important; /* Gold */
  line-height: 1 !important;
  margin-bottom: 0.8rem !important;
}

.h42-clinical-stat-title {
  font-size: 0.9rem !important; /* Larger */
  font-weight: 700 !important;
  letter-spacing: 0.1em !important;
  text-transform: uppercase !important;
  margin-bottom: 1.2rem !important;
  color: #f7f3ee !important;
}

.h42-clinical-stat-text {
  font-size: 1rem !important; /* Larger */
  line-height: 1.6 !important;
  color: rgba(255, 255, 255, 0.75) !important;
  margin: 0 !important;
}

/* Tablet & Mobile responsive */
@media (max-width: 900px) {
  .h42-clinical-grid { grid-template-columns: 1fr !important; gap: 1rem !important; }
  .h42-clinical-title { font-size: 2.5rem !important; }
  .h42-clinical-card { padding: 2.5rem 1.5rem !important; }
}

/* Ingredients Section Styles */
.h42-ingredients-section {
  background-color: #1a2e1f !important;
  width: 100vw !important;
  margin-left: calc(50% - 50vw) !important;
  margin-right: calc(50% - 50vw) !important;
  padding: 5rem 1.5rem !important;
  margin-bottom: 0rem !important;
  text-align: center !important;
  color: #f7f3ee !important;
}

.h42-ingredients-inner {
  max-width: 1100px !important;
  margin: 0 auto !important;
  font-family: 'Inter', system-ui, sans-serif !important;
}

.h42-ingredients-eyebrow {
  color: #c9a96e !important; /* Gold */
  font-size: 0.9rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.15em !important;
  text-transform: uppercase !important;
  margin-bottom: 1rem !important;
}

.h42-ingredients-title {
  font-family: 'Cormorant Garamond', Georgia, serif !important;
  font-size: 3.2rem !important;
  font-weight: 400 !important;
  color: #f7f3ee !important;
  margin-bottom: 1.5rem !important;
  line-height: 1.2 !important;
}

.h42-ingredients-divider {
  width: 50px !important;
  height: 2px !important;
  background-color: #c9a96e !important;
  margin: 0 auto 1.5rem auto !important;
}

.h42-ingredients-subtitle {
  font-size: 1.1rem !important;
  line-height: 1.6 !important;
  color: rgba(255, 255, 255, 0.85) !important;
  max-width: 650px !important;
  margin: 0 auto 4rem auto !important;
}

.h42-ingredients-grid {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 1.5rem !important;
  margin-bottom: 3.5rem !important;
}

.h42-ingredients-card {
  background-color: rgba(255, 255, 255, 0.05) !important;
  padding: 3rem 2rem !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  text-align: center !important;
}

.h42-ingredients-icon {
  font-size: 1.8rem !important;
  margin-bottom: 1.2rem !important;
  line-height: 1 !important;
}

.h42-ingredients-card-title {
  font-family: 'Cormorant Garamond', Georgia, serif !important;
  font-size: 1.5rem !important;
  font-weight: 400 !important;
  color: #c9a96e !important; /* Gold */
  margin-bottom: 1rem !important;
}

.h42-ingredients-card-text {
  font-size: 0.95rem !important;
  line-height: 1.6 !important;
  color: rgba(255, 255, 255, 0.75) !important;
  margin: 0 !important;
}

.h42-ingredients-inci {
  font-size: 0.75rem !important;
  line-height: 1.8 !important;
  color: rgba(255, 255, 255, 0.4) !important;
  max-width: 850px !important;
  margin: 0 auto !important;
  font-style: italic !important;
}

/* Tablets */
@media (max-width: 900px) {
  .h42-ingredients-grid { grid-template-columns: repeat(2, 1fr) !important; }
  .h42-ingredients-title { font-size: 2.5rem !important; }
}

/* Mobile phones */
@media (max-width: 600px) {
  .h42-ingredients-grid { grid-template-columns: 1fr !important; gap: 1rem !important; }
}

/* Force center alignment against theme defaults */
.h42-clinical-section *, 
.h42-ingredients-section * {
  text-align: center !important;
}

.h42-clinical-card, 
.h42-ingredients-card {
  align-items: center !important;
  justify-content: flex-start !important;
}

.h42-clinical-eyebrow,
.h42-clinical-title,
.h42-ingredients-eyebrow,
.h42-ingredients-title {
  display: block !important;
  width: 100% !important;
}

/* How To Use Section */
.h42-how-section {
  background-color: #f7f3ee !important;
  width: 100vw !important;
  margin-left: calc(50% - 50vw) !important;
  margin-right: calc(50% - 50vw) !important;
  padding: 5rem 1.5rem !important;
  text-align: center !important;
}
.h42-how-inner { max-width: 1000px !important; margin: 0 auto !important; }
.h42-how-title {
  font-family: 'Cormorant Garamond', Georgia, serif !important;
  font-size: 2.8rem !important;
  color: #1c1c1c !important;
  margin-bottom: 1.5rem !important;
  font-weight: 400 !important;
  text-align: center !important;
  display: block !important;
  width: 100% !important;
}
.h42-how-divider {
  width: 40px !important; height: 2px !important;
  background-color: #c9a96e !important;
  margin: 0 auto 3.5rem auto !important;
}
.h42-how-grid {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 2rem !important;
}
.h42-how-step {
  display: flex !important; flex-direction: column !important;
  align-items: center !important; text-align: center !important;
}
.h42-how-number {
  width: 36px !important; height: 36px !important;
  background-color: #1a2e1f !important; color: #f7f3ee !important;
  border-radius: 50% !important; display: flex !important;
  align-items: center !important; justify-content: center !important;
  font-family: 'Cormorant Garamond', Georgia, serif !important;
  font-size: 1.1rem !important; margin-bottom: 1.2rem !important;
}
.h42-how-step-title {
  font-family: 'Cormorant Garamond', Georgia, serif !important;
  font-size: 1.2rem !important; color: #1c1c1c !important;
  margin-bottom: 0.5rem !important; font-weight: 400 !important;
}
.h42-how-step-text {
  font-family: 'Inter', system-ui, sans-serif !important;
  font-size: 0.85rem !important; color: #5a5a5a !important;
  line-height: 1.6 !important; margin: 0 !important;
}

@media(max-width: 900px){ .h42-how-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 3rem 2rem !important;} }
@media(max-width: 600px){ .h42-how-grid { grid-template-columns: 1fr !important; } }

/* Story Section */
.h42-story-section {
  background-color: #ffffff !important;
  width: 100vw !important;
  margin-left: calc(50% - 50vw) !important;
  margin-right: calc(50% - 50vw) !important;
  padding: 6rem 1.5rem !important;
}
.h42-story-inner {
  max-width: 1100px !important; margin: 0 auto !important;
  display: grid !important; grid-template-columns: 1fr 1fr !important;
  gap: 5rem !important; align-items: center !important;
}
.h42-story-col-image {
  position: relative !important; display: flex !important;
  justify-content: center !important; align-items: center !important;
}
.h42-story-image-wrap {
  position: relative !important; width: 100% !important; max-width: 400px !important;
}
.h42-story-image-wrap::before, .h42-story-image-wrap::after {
  content: '' !important; position: absolute !important;
  width: 100% !important; height: 90px !important;
  background-color: #f7f3ee !important; z-index: 0 !important;
}
.h42-story-image-wrap::before { top: -30px !important; left: 0 !important; }
.h42-story-image-wrap::after { bottom: -30px !important; left: 0 !important; }
.h42-story-image-wrap img {
  position: relative !important; z-index: 1 !important;
  width: 100% !important; height: auto !important; object-fit: contain !important;
}
.h42-story-col-text { font-family: 'Inter', system-ui, sans-serif !important; }
.h42-story-eyebrow {
  color: #7a9e82 !important; font-size: 0.8rem !important; font-weight: 700 !important;
  letter-spacing: 0.15em !important; text-transform: uppercase !important;
  margin-bottom: 1rem !important; display: block !important; text-align: left !important;
}
.h42-story-title {
  font-family: 'Cormorant Garamond', Georgia, serif !important;
  font-size: 3.2rem !important; line-height: 1.15 !important;
  color: #1c1c1c !important; font-weight: 400 !important;
  margin-bottom: 1.5rem !important; text-align: left !important; display: block !important;
}
.h42-story-divider {
  width: 40px !important; height: 2px !important; background-color: #c9a96e !important;
  margin: 0 0 1.5rem 0 !important;
}
.h42-story-text {
  font-size: 0.95rem !important; color: #5a5a5a !important;
  line-height: 1.7 !important; margin-bottom: 1.5rem !important; text-align: left !important;
}
.h42-story-quote {
  border-left: 2px solid #c9a96e !important; padding-left: 1.5rem !important;
  margin-top: 2.5rem !important; text-align: left !important;
}
.h42-story-quote-text {
  font-family: 'Cormorant Garamond', Georgia, serif !important;
  font-size: 1.25rem !important; font-style: italic !important;
  color: #5a5a5a !important; margin-bottom: 0.5rem !important;
}
.h42-story-quote-author {
  font-size: 0.85rem !important; color: #1c1c1c !important;
  font-weight: 500 !important; margin: 0 !important;
}

@media(max-width: 900px){
  .h42-story-inner { grid-template-columns: 1fr !important; gap: 4rem !important; }
  .h42-story-image-wrap { max-width: 300px !important; margin: 0 auto !important; }
  .h42-story-title { font-size: 2.5rem !important; }
}

/* Reviews Section Styles */
.h42-reviews-section {
  background-color: #f7f3ee !important; 
  width: 100vw !important;
  margin-left: calc(50% - 50vw) !important;
  margin-right: calc(50% - 50vw) !important;
  padding: 6rem 1.5rem !important;
}

.h42-reviews-inner {
  max-width: 1100px !important;
  margin: 0 auto !important;
  font-family: 'Inter', system-ui, sans-serif !important;
}

.h42-reviews-header {
  margin-bottom: 4rem !important;
  text-align: center !important; /* CENTERED */
}

.h42-reviews-eyebrow {
  color: #7a9e82 !important; 
  font-size: 0.95rem !important; /* LARGER */
  font-weight: 700 !important;
  letter-spacing: 0.15em !important;
  text-transform: uppercase !important;
  margin-bottom: 1rem !important;
  display: block !important;
  text-align: center !important; /* CENTERED */
}

.h42-reviews-title {
  font-family: 'Cormorant Garamond', Georgia, serif !important;
  font-size: 4rem !important; /* LARGER */
  color: #1c1c1c !important;
  font-weight: 400 !important;
  margin-bottom: 1.5rem !important;
  text-align: center !important; /* CENTERED */
  display: block !important;
  width: 100% !important;
}

.h42-reviews-divider {
  width: 50px !important;
  height: 2px !important;
  background-color: #c9a96e !important; 
  margin: 0 auto 2rem auto !important; /* CENTERED */
}

.h42-reviews-score-wrap {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important; /* CENTERED */
  gap: 1.5rem !important;
}

.h42-reviews-score {
  font-family: 'Cormorant Garamond', Georgia, serif !important;
  font-size: 2.0rem !important; /* LARGER */
  color: #1a2e1f !important; 
  line-height: 1 !important;
}

.h42-reviews-stars-wrap {
  display: flex !important;
  flex-direction: column !important;
  gap: 0.3rem !important;
  justify-content: center !important;
  text-align: left !important;
}

.h42-reviews-stars {
  color: #1c1c1c !important;
  font-size: 0.95rem !important;
  letter-spacing: 0.1em !important;
  line-height: 1 !important;
}

.h42-reviews-subtitle {
  font-size: 0.95rem !important; /* LARGER */
  color: #5a5a5a !important;
  margin: 0 !important;
}

.h42-reviews-grid {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 2.5rem !important;
}

.h42-reviews-card {
  background-color: #ffffff !important;
  padding: 3.5rem 2.5rem !important;
  text-align: left !important;
  border-radius: 12px !important; /* STYLISH ROUNDED CORNERS */
  box-shadow: 0 15px 35px rgba(0,0,0,0.05) !important; /* SOFT ELEGANT SHADOW */
  transition: transform 0.3s ease, box-shadow 0.3s ease !important; /* HOVER ANIMATION */
}

.h42-reviews-card:hover {
  transform: translateY(-5px) !important; /* FLOATS UP ON HOVER */
  box-shadow: 0 20px 40px rgba(0,0,0,0.08) !important; /* ENHANCED SHADOW ON HOVER */
}

.h42-reviews-card-stars {
  color: #1c1c1c !important;
  font-size: 1rem !important;
  letter-spacing: 0.1em !important;
  margin-bottom: 1.2rem !important;
}

.h42-reviews-card-text {
  font-size: 0.95rem !important;
  line-height: 1.6 !important;
  color: #5a5a5a !important;
  margin-bottom: 2rem !important;
}

.h42-reviews-card-author {
  font-size: 0.85rem !important;
  font-weight: 700 !important;
  color: #1c1c1c !important;
  display: flex !important;
  align-items: center !important;
  gap: 0.5rem !important;
}

.h42-reviews-verified {
  color: #7a9e82 !important; 
  font-weight: 400 !important;
  font-size: 0.75rem !important;
  display: flex !important;
  align-items: center !important;
  gap: 0.3rem !important;
}

/* Mobile */
@media(max-width: 900px){
  .h42-reviews-grid { grid-template-columns: 1fr !important; }
}

.h42-acc-wrapper { font-family: 'Inter', system-ui, -apple-system, sans-serif !important; color: #fafafa !important; }
.h42-trust-strip { display: flex !important; gap: 1.25rem !important; flex-wrap: wrap !important; padding: 1rem 0 !important; border-bottom: 1px solid #e2ddd6 !important; margin-bottom: 0.5rem !important; }
.h42-trust-strip span { display: flex !important; align-items: center !important; gap: 0.3rem !important; font-size: 0.75rem !important; font-weight: 500 !important; color: #5a5a5a !important; }
.h42-detail { border-bottom: 1px solid #e2ddd6 !important; margin: 0 !important; padding: 0 !important; }
.h42-summary { list-style: none !important; padding: 1.2rem 0 !important; font-weight: 600 !important; font-size: 0.95rem !important; cursor: pointer !important; display: flex !important; justify-content: space-between !important; align-items: center !important; color: #1c1c1c !important; margin: 0 !important; background: transparent !important; border: none !important; outline: none !important; }
.h42-summary::-webkit-details-marker { display: none !important; }
.h42-summary-icon { font-weight: 300 !important; font-size: 1.4rem !important; color: #1c1c1c !important; line-height: 1 !important; }
.h42-summary-icon::before { content: '+' !important; }
.h42-detail[open] .h42-summary-icon::before { content: '—' !important; }
.h42-content { padding-bottom: 1.25rem !important; color: #5a5a5a !important; font-size: 0.9rem !important; line-height: 1.8 !important; }
.h42-content p { margin: 0 0 0.8rem 0 !important; color: #5a5a5a !important; }
.h42-content p:last-child { margin-bottom: 0 !important; }
.h42-content ul { margin: 0 !important; padding-left: 1.2rem !important; display: block !important; }
.h42-content li { margin-bottom: 0.4rem !important; list-style: disc !important; color: #5a5a5a !important; display: list-item !important; }
.h42-content strong { color: #1c1c1c !important; font-weight: 600 !important; }

.h42-bstrip-wrapper { background-color: #ffffff !important; padding: 2rem 1rem !important; width: 100% !important; box-sizing: border-box !important; }
.h42-bstrip-inner { max-width: 1200px !important; margin: 0 auto !important; display: grid !important; grid-template-columns: repeat(4, 1fr) !important; gap: 2rem !important; text-align: center !important; font-family: 'Inter', system-ui, -apple-system, sans-serif !important; }
.h42-bitem { display: flex !important; flex-direction: column !important; align-items: center !important; }
.h42-bitem-icon { font-size: 1.6rem !important; margin-bottom: 1rem !important; line-height: 1 !important; }
.h42-bitem-title { font-family: 'Cormorant Garamond', serif !important; font-size: 0.85rem !important; font-weight: 700 !important; letter-spacing: 0.12em !important; text-transform: uppercase !important; color: #1c1c1c !important; margin: 0 0 0.75rem 0 !important; }
.h42-bitem-desc { font-size: 0.85rem !important; color: #5a5a5a !important; line-height: 1.6 !important; max-width: 260px !important; margin: 0 !important; }
@media (max-width: 800px) { .h42-bstrip-inner { grid-template-columns: repeat(2, 1fr) !important; gap: 3rem 1.5rem !important; } }
@media (max-width: 480px) { .h42-bstrip-inner { grid-template-columns: 1fr !important; gap: 2.5rem !important; } }

/* Shared Dark Section Base */
.h42-dark-sec { background-color: #0e1813 !important; color: #ffffff !important; padding: 5rem 1rem !important; font-family: 'Inter', system-ui, -apple-system, sans-serif !important; box-sizing: border-box !important; }
.h42-ds-inner { max-width: 1100px !important; margin: 0 auto !important; }
.h42-ds-header { text-align: center !important; margin-bottom: 4rem !important; }
.h42-ds-eyebrow-box { display: inline-block !important; background-color: #b49b73 !important; color: #0e1813 !important; font-size: 0.65rem !important; font-weight: 700 !important; letter-spacing: 0.15em !important; text-transform: uppercase !important; padding: 0.4rem 0.8rem !important; margin-bottom: 1.5rem !important; }
.h42-ds-title { font-family: 'Cormorant Garamond', serif !important; font-size: 2.8rem !important; font-weight: 400 !important; color: #ffffff !important; margin: 0 0 1.5rem 0 !important; letter-spacing: 0.02em !important; }
.h42-ds-divider { width: 40px !important; height: 1px !important; background-color: #b49b73 !important; margin: 0 auto 1.5rem auto !important; }
.h42-ds-desc { font-size: 0.9rem !important; color: #d1d5d3 !important; max-width: 600px !important; margin: 0 auto !important; line-height: 1.6 !important; }
/* Grid & Cards */
.h42-clin-grid { display: grid !important; grid-template-columns: repeat(3, 1fr) !important; gap: 1.5rem !important; }
.h42-ds-card { background-color: #1a251f !important; padding: 3.5rem 2rem !important; text-align: center !important; }
.h42-clin-val { font-family: 'Cormorant Garamond', serif !important; font-size: 4rem !important; color: #b49b73 !important; line-height: 1 !important; margin: 0 0 1.5rem 0 !important; font-style: italic !important; font-weight: 300 !important; }
.h42-ds-card-title { font-size: 0.75rem !important; font-weight: 700 !important; letter-spacing: 0.1em !important; text-transform: uppercase !important; color: #ffffff !important; margin: 0 0 1rem 0 !important; }
.h42-ds-card-desc { font-size: 0.85rem !important; color: #b0b5b2 !important; line-height: 1.6 !important; margin: 0 !important; }
@media (max-width: 900px) { .h42-clin-grid { grid-template-columns: repeat(2, 1fr) !important; } }
@media (max-width: 600px) { .h42-clin-grid { grid-template-columns: 1fr !important; } .h42-ds-title { font-size: 2.2rem !important; } .h42-ds-card { padding: 2.5rem 1.5rem !important; } }

/* Shared Dark Section Base */
.h42-dark-sec { background-color: #0e1813 !important; color: #ffffff !important; padding: 5rem 1rem !important; font-family: 'Inter', system-ui, -apple-system, sans-serif !important; box-sizing: border-box !important; }
.h42-ds-inner { max-width: 1100px !important; margin: 0 auto !important; }
.h42-ds-header { text-align: center !important; margin-bottom: 4rem !important; }
.h42-ds-eyebrow-text { color: #b49b73 !important; font-size: 0.65rem !important; font-weight: 700 !important; letter-spacing: 0.15em !important; text-transform: uppercase !important; margin: 0 0 1.5rem 0 !important; display: block !important; }
.h42-ds-title { font-family: 'Cormorant Garamond', serif !important; font-size: 2.8rem !important; font-weight: 400 !important; color: #ffffff !important; margin: 0 0 1.5rem 0 !important; letter-spacing: 0.02em !important; }
.h42-ds-divider { width: 40px !important; height: 1px !important; background-color: #b49b73 !important; margin: 0 auto 1.5rem auto !important; }
.h42-ds-desc { font-size: 0.9rem !important; color: #d1d5d3 !important; max-width: 600px !important; margin: 0 auto !important; line-height: 1.6 !important; }
/* Grid & Cards */
.h42-ing-grid { display: grid !important; grid-template-columns: repeat(3, 1fr) !important; gap: 1.5rem !important; }
.h42-ds-card { background-color: #1a251f !important; padding: 3rem 2rem !important; text-align: center !important; display: flex !important; flex-direction: column !important; align-items: center !important; }
.h42-ing-icon { font-size: 1.5rem !important; margin-bottom: 1rem !important; line-height: 1 !important; }
.h42-ing-title { font-family: 'Cormorant Garamond', serif !important; font-size: 1.35rem !important; color: #b49b73 !important; margin: 0 0 1rem 0 !important; font-weight: 400 !important; }
.h42-ds-card-desc { font-size: 0.85rem !important; color: #b0b5b2 !important; line-height: 1.6 !important; margin: 0 !important; }
/* Footer INCI */
.h42-inci-text { text-align: center !important; font-size: 0.7rem !important; color: #7a827d !important; margin-top: 4rem !important; max-width: 900px !important; margin-left: auto !important; margin-right: auto !important; line-height: 1.6 !important; font-style: italic !important; }
@media (max-width: 900px) { .h42-ing-grid { grid-template-columns: repeat(2, 1fr) !important; } }
@media (max-width: 600px) { .h42-ing-grid { grid-template-columns: 1fr !important; } .h42-ds-title { font-size: 2.2rem !important; } .h42-ds-card { padding: 2.5rem 1.5rem !important; } }

.h42-htu-wrapper { background-color: #f8f6f0 !important; padding: 5rem 1rem !important; text-align: center !important; font-family: 'Inter', system-ui, -apple-system, sans-serif !important; box-sizing: border-box !important; }
.h42-htu-title { font-family: 'Cormorant Garamond', serif !important; font-size: 2.8rem !important; font-weight: 400 !important; color: #1a2e1f !important; margin: 0 0 1.5rem 0 !important; letter-spacing: 0.02em !important; }
.h42-htu-divider { width: 40px !important; height: 1px !important; background-color: #b49b73 !important; margin: 0 auto 4rem auto !important; }
.h42-htu-grid { max-width: 1100px !important; margin: 0 auto !important; display: grid !important; grid-template-columns: repeat(4, 1fr) !important; gap: 2rem !important; }
.h42-htu-step { display: flex !important; flex-direction: column !important; align-items: center !important; }
.h42-htu-num { background-color: #1a2e1f !important; color: #ffffff !important; width: 40px !important; height: 40px !important; border-radius: 50% !important; display: flex !important; align-items: center !important; justify-content: center !important; font-family: 'Cormorant Garamond', serif !important; font-size: 1.1rem !important; margin-bottom: 1.5rem !important; }
.h42-htu-step-title { font-family: 'Cormorant Garamond', serif !important; font-size: 1.4rem !important; color: #1a2e1f !important; margin: 0 0 1rem 0 !important; font-weight: 400 !important; }
.h42-htu-step-desc { font-size: 0.9rem !important; color: #5a5a5a !important; line-height: 1.6 !important; margin: 0 !important; max-width: 240px !important; }
@media (max-width: 900px) { .h42-htu-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 3rem 1.5rem !important; } }
@media (max-width: 600px) { .h42-htu-grid { grid-template-columns: 1fr !important; } .h42-htu-title { font-size: 2.2rem !important; } }

.h42-story-wrapper { background-color: #ffffff !important; padding: 5rem 1rem !important; font-family: 'Inter', system-ui, -apple-system, sans-serif !important; box-sizing: border-box !important; }
.h42-story-inner { max-width: 1200px !important; margin: 0 auto !important; display: grid !important; grid-template-columns: 1fr 1fr !important; gap: 4rem !important; align-items: center !important; }
.h42-story-img { width: 100% !important; height: auto !important; display: block !important; object-fit: contain !important; max-height: 600px !important; }
.h42-story-eyebrow { color: #8ba989 !important; font-size: 0.75rem !important; font-weight: 700 !important; letter-spacing: 0.15em !important; text-transform: uppercase !important; margin: 0 0 1.5rem 0 !important; display: block !important; }
.h42-story-title { font-family: 'Cormorant Garamond', serif !important; font-size: 3.8rem !important; font-weight: 400 !important; color: #1a2e1f !important; margin: 0 0 0.5rem 0 !important; line-height: 1.1 !important; letter-spacing: -0.01em !important; }
.h42-story-subtitle { font-family: 'Cormorant Garamond', serif !important; font-size: 3.8rem !important; font-weight: 300 !important; color: #b49b73 !important; font-style: italic !important; margin: 0 0 1.5rem 0 !important; line-height: 1.1 !important; }
.h42-story-divider { width: 40px !important; height: 1px !important; background-color: #b49b73 !important; margin: 0 0 2rem 0 !important; }
.h42-story-text { font-size: 0.95rem !important; color: #5a5a5a !important; line-height: 1.8 !important; margin: 0 0 1.5rem 0 !important; }
.h42-story-text:last-child { margin-bottom: 0 !important; }
@media (max-width: 900px) { .h42-story-inner { grid-template-columns: 1fr !important; gap: 3rem !important; text-align: center !important; } .h42-story-divider { margin-left: auto !important; margin-right: auto !important; } .h42-story-title, .h42-story-subtitle { font-size: 3.2rem !important; } .h42-story-img { max-height: 400px !important; } }
@media (max-width: 600px) { .h42-story-title, .h42-story-subtitle { font-size: 2.6rem !important; } }

.h42-rev-wrapper { background-color: #f8f6f0 !important; padding: 5rem 1rem !important; text-align: center !important; font-family: 'Inter', system-ui, -apple-system, sans-serif !important; box-sizing: border-box !important; }
.h42-rev-inner { max-width: 1200px !important; margin: 0 auto !important; }
.h42-rev-eyebrow { color: #8ba989 !important; font-size: 0.75rem !important; font-weight: 700 !important; letter-spacing: 0.15em !important; text-transform: uppercase !important; margin: 0 0 1rem 0 !important; display: block !important; }
.h42-rev-title { font-family: 'Cormorant Garamond', serif !important; font-size: 3.5rem !important; font-weight: 400 !important; color: #1a2e1f !important; margin: 0 0 1rem 0 !important; letter-spacing: 0.02em !important; }
.h42-rev-divider { width: 40px !important; height: 1px !important; background-color: #b49b73 !important; margin: 0 auto 2rem auto !important; }
.h42-rev-summary { display: flex !important; flex-direction: column !important; align-items: center !important; margin-bottom: 4rem !important; }
.h42-rev-summary-score { display: flex !important; align-items: center !important; gap: 1rem !important; }
.h42-rev-score-num { font-size: 1.8rem !important; font-weight: 400 !important; color: #5a5a5a !important; }
.h42-rev-stars { color: #1c1c1c !important; font-size: 1rem !important; letter-spacing: 0.1em !important; display: flex !important; align-items: center !important; }
.h42-rev-count { font-size: 0.8rem !important; color: #7a827d !important; margin-top: 0.4rem !important; }
.h42-rev-grid { display: grid !important; grid-template-columns: repeat(3, 1fr) !important; gap: 2rem !important; text-align: left !important; }
.h42-rev-card { background-color: #ffffff !important; padding: 2.5rem 2rem !important; border-radius: 8px !important; box-shadow: 0 10px 30px rgba(0,0,0,0.03) !important; display: flex !important; flex-direction: column !important; }
.h42-rev-card-stars { color: #1c1c1c !important; font-size: 0.9rem !important; letter-spacing: 0.1em !important; margin-bottom: 1.5rem !important; display: block !important; }
.h42-rev-card-text { font-size: 0.95rem !important; color: #5a5a5a !important; line-height: 1.6 !important; margin: 0 0 2rem 0 !important; flex-grow: 1 !important; }
.h42-rev-card-author { display: flex !important; align-items: center !important; gap: 0.5rem !important; }
.h42-rev-author-name { font-weight: 600 !important; font-size: 0.85rem !important; color: #1c1c1c !important; }
.h42-rev-verified { color: #8ba989 !important; font-size: 0.75rem !important; display: flex !important; align-items: center !important; gap: 0.2rem !important; }
@media (max-width: 900px) { .h42-rev-grid { grid-template-columns: repeat(2, 1fr) !important; } }
@media (max-width: 700px) { .h42-rev-grid { grid-template-columns: 1fr !important; } .h42-rev-title { font-size: 2.8rem !important; } }

.h42-cross-wrapper { background-color: #faf9f6 !important; padding: 5rem 1rem !important; text-align: center !important; font-family: 'Inter', system-ui, -apple-system, sans-serif !important; box-sizing: border-box !important; }
.h42-cross-inner { max-width: 1200px !important; margin: 0 auto !important; }
.h42-cross-eyebrow { color: #b49b73 !important; font-size: 0.7rem !important; font-weight: 700 !important; letter-spacing: 0.15em !important; text-transform: uppercase !important; margin: 0 0 1rem 0 !important; display: block !important; }
.h42-cross-title { font-family: 'Cormorant Garamond', serif !important; font-size: 3.5rem !important; font-weight: 400 !important; color: #1a2e1f !important; margin: 0 0 1.5rem 0 !important; }
.h42-cross-divider { width: 40px !important; height: 1px !important; background-color: #b49b73 !important; margin: 0 auto 3rem auto !important; }
.h42-cross-grid { display: grid !important; grid-template-columns: repeat(4, 1fr) !important; gap: 2rem !important; }
.h42-cross-card { display: flex !important; flex-direction: column !important; align-items: center !important; text-decoration: none !important; }
.h42-cross-img-wrap { background-color: #f2efe9 !important; width: 100% !important; aspect-ratio: 1/1 !important; display: flex !important; align-items: center !important; justify-content: center !important; margin-bottom: 1.5rem !important; padding: 2rem !important; box-sizing: border-box !important; }
.h42-cross-img { max-width: 100% !important; max-height: 100% !important; object-fit: contain !important; mix-blend-mode: multiply !important; }
.h42-cross-card-title { font-family: 'Cormorant Garamond', serif !important; font-size: 1.3rem !important; color: #1a2e1f !important; margin: 0 0 0.5rem 0 !important; font-weight: 400 !important; }
.h42-cross-price { font-size: 0.9rem !important; font-weight: 600 !important; color: #5a5a5a !important; margin: 0 0 1.5rem 0 !important; }
.h42-cross-btn { background: transparent !important; border: 1px solid #1a2e1f !important; color: #1a2e1f !important; font-size: 0.75rem !important; font-weight: 600 !important; letter-spacing: 0.1em !important; text-transform: uppercase !important; padding: 0.8rem 1.5rem !important; cursor: pointer !important; transition: all 0.3s ease !important; text-decoration: none !important; display: inline-block !important; }
.h42-cross-btn:hover { background-color: #1a2e1f !important; color: #ffffff !important; }
@media (max-width: 900px) { .h42-cross-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 3rem 1.5rem !important; } }
@media (max-width: 600px) { .h42-cross-grid { grid-template-columns: 1fr !important; } .h42-cross-title { font-size: 2.8rem !important; } }

.h42-cta-wrapper { background-color: #1a2e1f !important; padding: 6rem 1rem !important; text-align: center !important; font-family: 'Inter', system-ui, -apple-system, sans-serif !important; box-sizing: border-box !important; }
.h42-cta-inner { max-width: 800px !important; margin: 0 auto !important; display: flex !important; flex-direction: column !important; align-items: center !important; }
.h42-cta-title { font-family: 'Cormorant Garamond', serif !important; font-size: 3.5rem !important; font-weight: 400 !important; color: #ffffff !important; margin: 0 0 1rem 0 !important; }
.h42-cta-subtitle { font-family: 'Cormorant Garamond', serif !important; font-size: 1.4rem !important; font-weight: 400 !important; font-style: italic !important; color: #b0b5b2 !important; margin: 0 0 3rem 0 !important; line-height: 1.4 !important; }
.h42-cta-btn { background-color: #b49b73 !important; border: none !important; color: #1a2e1f !important; font-size: 0.85rem !important; font-weight: 700 !important; letter-spacing: 0.1em !important; text-transform: uppercase !important; padding: 1.1rem 2.5rem !important; cursor: pointer !important; transition: background-color 0.3s ease !important; text-decoration: none !important; display: inline-block !important; }
.h42-cta-btn:hover { background-color: #d1b890 !important; }
@media (max-width: 600px) { .h42-cta-title { font-size: 2.8rem !important; } .h42-cta-subtitle { font-size: 1.2rem !important; } }

/* ══════════════════════════════════════════
   HALO42 PARTNERS PAGE — Luxury Editorial
   Self-contained styles (tokens duplicated
   so the section works inside any template)
   ══════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Inter:wght@300;400;500;600&display=swap');

/* ── Scoped Tokens ── */
.h42-partners {
  --h42-ivory:   #FAF8F5;
  --h42-cream:   #F5F0EA;
  --h42-dark:    #2C2824;
  --h42-gold:    #C4A265;
  --h42-gold-lt: #D4B87A;
  --h42-gray:    #6B6560;
  --h42-white:   #FFFFFF;
  --h42-serif:   'Playfair Display', Georgia, serif;
  --h42-sans:    'Inter', 'Helvetica Neue', sans-serif;
  font-family: var(--h42-sans);
  background: var(--h42-ivory);
}

/* ── Shared ── */
.h42-partners .h42-eyebrow {
  font-family: var(--h42-sans);
  font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--h42-gold); margin: 0 0 16px;
}
.h42-partners .h42-gold-line {
  width: 50px; height: 1px;
  background: var(--h42-gold);
}
.h42-partners .h42-btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 14px 32px;
  font-family: var(--h42-sans); font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase; text-decoration: none;
  border-radius: 50px; transition: all 0.35s ease;
  cursor: pointer; border: 1.5px solid transparent;
}
.h42-partners .h42-btn--gold { background: var(--h42-gold); color: var(--h42-white); border-color: var(--h42-gold); }
.h42-partners .h42-btn--gold:hover { background: var(--h42-gold-lt); border-color: var(--h42-gold-lt); }
.h42-partners .h42-btn--ghost { background: transparent; color: var(--h42-white); border-color: rgba(255,255,255,.5); }
.h42-partners .h42-btn--ghost:hover { border-color: #fff; background: rgba(255,255,255,.1); }
.h42-partners .h42-btn--outline { background: transparent; color: var(--h42-gold); border-color: var(--h42-gold); }
.h42-partners .h42-btn--outline:hover { background: var(--h42-gold); color: var(--h42-white); }

/* ══ 1. HERO ══ */
.h42-partners__hero {
  position: relative; min-height: 72vh;
  display: flex; align-items: center; justify-content: center;
  text-align: center; overflow: hidden;
}
.h42-partners__hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center 30%;
  transform: scale(1.05); transition: transform 8s ease;
}
.h42-partners__hero:hover .h42-partners__hero-bg { transform: scale(1); }
.h42-partners__hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(44,40,36,.2) 0%, rgba(44,40,36,.65) 55%, rgba(44,40,36,.9) 100%);
  z-index: 1;
}
.h42-partners__hero-content {
  position: relative; z-index: 2; max-width: 720px;
  padding: 60px 30px;
  display: flex; flex-direction: column; align-items: center;
}
.h42-partners__hero-line { width: 60px; height: 1px; background: var(--h42-gold); margin: 18px auto; }
.h42-partners__hero-title {
  font-family: var(--h42-serif);
  font-size: clamp(2rem, 5vw, 3.6rem);
  font-weight: 600; color: var(--h42-white);
  margin: 0; line-height: 1.12; letter-spacing: .01em;
}
.h42-partners__hero-sub {
  font-family: var(--h42-serif); font-style: italic;
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,.85); margin: 0;
  line-height: 1.7; max-width: 540px;
}

/* ══ 2. INTRO (Why Partner) ══ */
.h42-partners__intro {
  padding: 96px 40px; text-align: center;
  background: var(--h42-ivory);
}
.h42-partners__intro-inner { max-width: 700px; margin: 0 auto; }
.h42-partners__intro-title {
  font-family: var(--h42-serif);
  font-size: clamp(1.6rem, 3.5vw, 2.6rem);
  font-weight: 400; font-style: italic;
  color: var(--h42-dark); margin: 0 0 24px; line-height: 1.2;
}
.h42-partners__intro-body {
  font-size: 1rem; line-height: 1.85;
  color: var(--h42-gray); margin: 0 0 36px;
}

/* ══ 3. FEATURED PARTNER (Bloomingdale's style split) ══ */
.h42-partners__featured {
  display: grid; grid-template-columns: 1fr 1fr;
  min-height: 520px;
}
.h42-partners__featured--dark { background: var(--h42-dark); }
.h42-partners__featured--cream { background: var(--h42-cream); }
.h42-partners__featured-img-col {
  position: relative; overflow: hidden;
}
.h42-partners__featured-img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 6s ease;
}
.h42-partners__featured:hover .h42-partners__featured-img { transform: scale(1.04); }
.h42-partners__featured-text {
  padding: 56px 60px;
  display: flex; flex-direction: column; justify-content: center;
}
.h42-partners__featured-tag {
  font-family: var(--h42-sans); font-size: .62rem; font-weight: 600;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--h42-gold); margin: 0 0 6px;
}
.h42-partners__featured-name {
  font-family: var(--h42-serif);
  font-size: clamp(1.4rem, 2.8vw, 2.2rem);
  font-weight: 600; margin: 0 0 18px; line-height: 1.2;
}
.h42-partners__featured--dark .h42-partners__featured-name { color: var(--h42-white); }
.h42-partners__featured--cream .h42-partners__featured-name { color: var(--h42-dark); }
.h42-partners__featured-divider { width: 50px; height: 1px; background: var(--h42-gold); margin: 0 0 20px; }
.h42-partners__featured-body {
  font-size: .92rem; line-height: 1.75; margin: 0 0 28px;
}
.h42-partners__featured--dark .h42-partners__featured-body { color: rgba(255,255,255,.72); }
.h42-partners__featured--cream .h42-partners__featured-body { color: var(--h42-gray); }
.h42-partners__featured--flip { direction: rtl; }
.h42-partners__featured--flip > * { direction: ltr; }

/* ══ 4. PARTNER GRID ══ */
.h42-partners__grid-section {
  padding: 96px 40px;
  background: var(--h42-white);
}
.h42-partners__grid-header {
  text-align: center; margin-bottom: 64px;
}
.h42-partners__grid-title {
  font-family: var(--h42-serif);
  font-size: clamp(1.6rem, 3.5vw, 2.6rem);
  font-weight: 400; color: var(--h42-dark);
  margin: 0 0 16px; line-height: 1.2;
}
.h42-partners__grid-title em { font-style: italic; color: var(--h42-gold); }
.h42-partners__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px; max-width: 1200px; margin: 0 auto;
}
.h42-partners__card {
  background: var(--h42-ivory);
  overflow: hidden;
  transition: transform .4s ease, box-shadow .4s ease;
  display: flex; flex-direction: column;
  text-decoration: none; color: inherit;
}
.h42-partners__card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(44,40,36,.1);
}
.h42-partners__card-img-wrap {
  aspect-ratio: 16 / 10; overflow: hidden;
}
.h42-partners__card-img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .6s ease;
}
.h42-partners__card:hover .h42-partners__card-img { transform: scale(1.06); }
.h42-partners__card-body {
  padding: 28px 28px 32px;
  display: flex; flex-direction: column; flex-grow: 1;
}
.h42-partners__card-location {
  font-family: var(--h42-sans); font-size: .68rem; font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--h42-gold); margin: 0 0 8px;
}
.h42-partners__card-name {
  font-family: var(--h42-serif); font-size: 1.15rem;
  font-weight: 600; color: var(--h42-dark);
  margin: 0 0 10px; line-height: 1.3;
}
.h42-partners__card-desc {
  font-size: .88rem; line-height: 1.65;
  color: var(--h42-gray); margin: 0 0 auto;
  padding-bottom: 16px;
  display: -webkit-box; -webkit-line-clamp: 3;
  -webkit-box-orient: vertical; overflow: hidden;
}
.h42-partners__card-link {
  font-size: .72rem; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--h42-gold); text-decoration: none;
  transition: color .3s; display: inline-flex;
  align-items: center; gap: 6px;
  padding-top: 16px; border-top: 1px solid var(--h42-cream);
  margin-top: auto;
}
.h42-partners__card-link:hover { color: var(--h42-dark); }
.h42-partners__card-link span { transition: transform .3s; }
.h42-partners__card:hover .h42-partners__card-link span { transform: translateX(4px); }

/* ══ 5. CTA FOOTER ══ */
.h42-partners__cta {
  background: linear-gradient(135deg, var(--h42-dark) 0%, #3A3530 100%);
  padding: 100px 40px; text-align: center;
  position: relative; overflow: hidden;
}
.h42-partners__cta::before {
  content: ''; position: absolute; top: -40%; left: 50%;
  transform: translateX(-50%); width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(196,162,101,.1) 0%, transparent 70%);
  border-radius: 50%; pointer-events: none;
}
.h42-partners__cta-inner { position: relative; z-index: 1; max-width: 560px; margin: 0 auto; }
.h42-partners__cta-title {
  font-family: var(--h42-serif);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 600; color: var(--h42-white);
  margin: 0 0 16px; line-height: 1.2;
}
.h42-partners__cta-sub {
  font-size: 1rem; color: rgba(255,255,255,.65);
  line-height: 1.7; margin: 0 0 36px;
}
.h42-partners__cta-buttons {
  display: flex; gap: 16px; flex-wrap: wrap; justify-content: center;
}

/* ══ MARQUEE ══ */
.h42-partners .h42-marquee {
  background: #1a3c2a; overflow: hidden;
  position: relative; padding: 18px 0;
}
.h42-partners .h42-marquee::before,
.h42-partners .h42-marquee::after {
  content: ''; position: absolute; top: 0; bottom: 0;
  width: 80px; z-index: 2; pointer-events: none;
}
.h42-partners .h42-marquee::before { left: 0; background: linear-gradient(to right, #1a3c2a, transparent); }
.h42-partners .h42-marquee::after { right: 0; background: linear-gradient(to left, #1a3c2a, transparent); }
.h42-partners .h42-marquee__track {
  display: flex; width: max-content;
  animation: h42PartnersMarquee 28s linear infinite;
}
.h42-partners .h42-marquee:hover .h42-marquee__track { animation-play-state: paused; }
.h42-partners .h42-marquee__items { display: flex; align-items: center; flex-shrink: 0; }
.h42-partners .h42-marquee__item { display: flex; align-items: center; white-space: nowrap; padding: 0 8px; }
.h42-partners .h42-marquee__text {
  font-family: var(--h42-sans); font-size: .78rem; font-weight: 500;
  letter-spacing: .16em; text-transform: uppercase; color: rgba(255,255,255,.92);
}
.h42-partners .h42-marquee__dot {
  width: 4px; height: 4px; border-radius: 50%;
  background: var(--h42-gold); margin: 0 22px; flex-shrink: 0; opacity: .7;
}
.h42-partners .h42-marquee__item--accent .h42-marquee__text {
  font-family: var(--h42-serif); font-style: italic; font-weight: 400;
  font-size: .88rem; letter-spacing: .06em; text-transform: none; color: var(--h42-gold-lt);
}
@keyframes h42PartnersMarquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ══ RESPONSIVE ══ */
@media (max-width: 1024px) {
  .h42-partners__featured { grid-template-columns: 1fr; }
  .h42-partners__featured-text { padding: 44px 32px; }
  .h42-partners__featured--flip { direction: ltr; }
  .h42-partners__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .h42-partners__hero { min-height: 65vh; }
  .h42-partners__intro { padding: 64px 20px; }
  .h42-partners__grid-section { padding: 64px 20px; }
  .h42-partners__grid { grid-template-columns: 1fr; }
  .h42-partners__featured-text { padding: 36px 20px; }
  .h42-partners__cta { padding: 60px 20px; }
  .h42-partners__cta-buttons { flex-direction: column; align-items: center; }
}

.h42-acc-wrapper { font-family: 'Inter', system-ui, -apple-system, sans-serif !important; color: #5a5a5a !important; max-width: 100% !important; -webkit-font-smoothing: antialiased !important; line-height: 1.6 !important; background: transparent !important; padding: 1rem 0 !important; }
.h42-trust-bar { display: flex !important; gap: 1.5rem !important; flex-wrap: wrap !important; padding: 0 0 1.5rem 0 !important; border-bottom: 1px solid #e2ddd6 !important; margin-bottom: 1rem !important; }
.h42-trust-bar span { display: flex !important; align-items: center !important; gap: 0.4rem !important; font-size: 0.75rem !important; font-weight: 500 !important; color: #5a5a5a !important; }
.h42-acc-item { border-bottom: 1px solid #e2ddd6 !important; margin: 0 !important; padding: 0 !important; }
.h42-acc-item details { width: 100% !important; }
.h42-acc-item summary { list-style: none !important; width: 100% !important; display: flex !important; align-items: center !important; justify-content: space-between !important; padding: 1.25rem 0 !important; font-size: 0.95rem !important; font-weight: 600 !important; color: #1c1c1c !important; cursor: pointer !important; background: transparent !important; border: none !important; }
.h42-acc-item summary::-webkit-details-marker { display: none !important; }
.h42-acc-icon { font-size: 1.2rem !important; font-weight: 300 !important; color: #1c1c1c !important; display: inline-flex !important; transition: transform 0.3s ease !important; line-height: 1 !important; }
.h42-acc-item details[open] .h42-acc-icon { transform: rotate(45deg) !important; }
.h42-acc-content { padding: 0 0 1.5rem 0 !important; font-size: 0.9rem !important; color: #5a5a5a !important; }
.h42-acc-content p { margin: 0 0 1rem 0 !important; line-height: 1.7 !important; }
.h42-acc-content p:last-child { margin-bottom: 0 !important; }
.h42-acc-content ul { margin: 0 !important; padding-left: 1.2rem !important; }
.h42-acc-content li { margin-bottom: 0.5rem !important; line-height: 1.6 !important; }

.h42-bstrip-wrapper { background-color: #faf9f6 !important; padding: 4rem 1rem !important; border-bottom: 1px solid #e2ddd6 !important; font-family: 'Inter', system-ui, -apple-system, sans-serif !important; }
.h42-bstrip-inner { max-width: 1200px !important; margin: 0 auto !important; display: grid !important; grid-template-columns: repeat(4, 1fr) !important; gap: 2rem !important; text-align: center !important; }
.h42-bstrip-item { display: flex !important; flex-direction: column !important; align-items: center !important; }
.h42-bstrip-icon { font-size: 1.8rem !important; margin-bottom: 1rem !important; }
.h42-bstrip-title { font-family: 'Cormorant Garamond', serif !important; font-size: 1rem !important; font-weight: 700 !important; letter-spacing: 0.1em !important; color: #1a2e1f !important; text-transform: uppercase !important; margin: 0 0 0.5rem 0 !important; }
.h42-bstrip-text { font-size: 0.85rem !important; color: #5a5a5a !important; line-height: 1.6 !important; margin: 0 !important; max-width: 250px !important; }

@media (max-width: 900px) { .h42-bstrip-inner { grid-template-columns: repeat(2, 1fr) !important; gap: 3rem 2rem !important; } }
@media (max-width: 500px) { .h42-bstrip-inner { grid-template-columns: 1fr !important; gap: 2.5rem !important; } }

.h42-dark-sec { background-color: #303b35 !important; padding: 5rem 1rem !important; font-family: 'Inter', system-ui, -apple-system, sans-serif !important; box-sizing: border-box !important; color: #f8f6f0 !important; }
.h42-ds-inner { max-width: 1000px !important; margin: 0 auto !important; text-align: center !important; }
.h42-ds-eyebrow { display: inline-block !important; background-color: #b49b73 !important; color: #0e1813 !important; font-size: 0.65rem !important; font-weight: 700 !important; letter-spacing: 0.15em !important; text-transform: uppercase !important; padding: 0.4rem 1rem !important; margin-bottom: 1.5rem !important; }
.h42-ds-title { font-family: 'Cormorant Garamond', serif !important; font-size: 3.2rem !important; font-weight: 400 !important; margin: 0 0 1.5rem 0 !important; color: #f8f6f0 !important; }
.h42-ds-divider { width: 40px !important; height: 1px !important; background-color: #5a665e !important; margin: 0 auto 1.5rem auto !important; }
.h42-ds-sub { font-size: 0.85rem !important; color: #b0b5b2 !important; max-width: 600px !important; margin: 0 auto 3rem auto !important; line-height: 1.6 !important; }

.h42-results-grid { display: grid !important; grid-template-columns: repeat(3, 1fr) !important; gap: 1.5rem !important; }
.h42-res-card { background-color: #1a241f !important; padding: 3rem 2rem !important; text-align: center !important; display: flex !important; flex-direction: column !important; align-items: center !important; }
.h42-res-num { font-family: 'Cormorant Garamond', serif !important; font-size: 4.5rem !important; font-style: italic !important; color: #b49b73 !important; margin: 0 0 1rem 0 !important; font-weight: 400 !important; line-height: 1 !important; }
.h42-res-title { font-size: 0.75rem !important; font-weight: 700 !important; letter-spacing: 0.1em !important; text-transform: uppercase !important; margin: 0 0 1rem 0 !important; color: #f8f6f0 !important; }
.h42-res-text { font-size: 0.85rem !important; color: #b0b5b2 !important; line-height: 1.6 !important; margin: 0 !important; }

@media (max-width: 800px) { .h42-results-grid { grid-template-columns: 1fr !important; } .h42-ds-title { font-size: 2.5rem !important; } }

.h42-ing-wrapper { background-color: #0e1813 !important; padding: 5rem 1rem !important; font-family: 'Inter', system-ui, -apple-system, sans-serif !important; box-sizing: border-box !important; color: #f8f6f0 !important; }
.h42-ing-inner { max-width: 1100px !important; margin: 0 auto !important; text-align: center !important; }
.h42-ing-title { font-family: 'Cormorant Garamond', serif !important; font-size: 3.2rem !important; font-weight: 400 !important; margin: 0 0 1rem 0 !important; color: #f8f6f0 !important; }
.h42-ing-divider { width: 40px !important; height: 1px !important; background-color: #b49b73 !important; margin: 0 auto 1.5rem auto !important; }
.h42-ing-sub { font-size: 0.85rem !important; color: #b0b5b2 !important; max-width: 600px !important; margin: 0 auto 4rem auto !important; line-height: 1.6 !important; }

.h42-ing-grid { display: grid !important; grid-template-columns: repeat(3, 1fr) !important; gap: 1.5rem !important; }
.h42-ing-card { background-color: #1a241f !important; padding: 2.5rem 2rem !important; text-align: center !important; display: flex !important; flex-direction: column !important; align-items: center !important; }
.h42-ing-icon { font-size: 1.5rem !important; margin-bottom: 1rem !important; }
.h42-ing-card-title { font-family: 'Cormorant Garamond', serif !important; font-size: 1.4rem !important; font-weight: 400 !important; margin: 0 0 1rem 0 !important; color: #b49b73 !important; letter-spacing: 0.05em !important; }
.h42-ing-card-text { font-size: 0.85rem !important; color: #b0b5b2 !important; line-height: 1.6 !important; margin: 0 !important; }
.h42-ing-inci { text-align: center !important; font-size: 0.75rem !important; color: #5a665e !important; margin-top: 4rem !important; line-height: 1.8 !important; max-width: 800px !important; margin-left: auto !important; margin-right: auto !important; text-transform: uppercase !important; letter-spacing: 0.05em !important; }

@media (max-width: 900px) { .h42-ing-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 1rem !important; } .h42-ing-title { font-size: 2.5rem !important; } }
@media (max-width: 600px) { .h42-ing-grid { grid-template-columns: 1fr !important; } }

.h42-htu-wrapper { background-color: #faf9f6 !important; padding: 5rem 1rem !important; font-family: 'Inter', system-ui, -apple-system, sans-serif !important; text-align: center !important; }
.h42-htu-inner { max-width: 1000px !important; margin: 0 auto !important; }
.h42-htu-title { font-family: 'Cormorant Garamond', serif !important; font-size: 2.8rem !important; font-weight: 400 !important; color: #1a2e1f !important; margin: 0 0 1.5rem 0 !important; }
.h42-htu-divider { width: 40px !important; height: 1px !important; background-color: #b49b73 !important; margin: 0 auto 4rem auto !important; }

.h42-htu-grid { display: grid !important; grid-template-columns: repeat(4, 1fr) !important; gap: 2rem !important; }
.h42-htu-step { display: flex !important; flex-direction: column !important; align-items: center !important; }
.h42-htu-circle { width: 40px !important; height: 40px !important; border-radius: 50% !important; background-color: #1a2e1f !important; color: #ffffff !important; display: flex !important; align-items: center !important; justify-content: center !important; font-family: 'Cormorant Garamond', serif !important; font-size: 1.2rem !important; margin-bottom: 1.5rem !important; font-style: italic !important; }
.h42-htu-step-title { font-family: 'Cormorant Garamond', serif !important; font-size: 1.3rem !important; color: #1a2e1f !important; margin: 0 0 1rem 0 !important; font-weight: 400 !important; }
.h42-htu-step-text { font-size: 0.85rem !important; color: #5a5a5a !important; line-height: 1.6 !important; margin: 0 !important; }

.h42-story-wrapper { background-color: #ffffff !important; padding: 6rem 1rem !important; font-family: 'Inter', system-ui, -apple-system, sans-serif !important; }
.h42-story-inner { max-width: 1200px !important; margin: 0 auto !important; display: grid !important; grid-template-columns: 1fr 1fr !important; gap: 4rem !important; align-items: center !important; }
.h42-story-img-col { display: flex !important; justify-content: center !important; }
.h42-story-img { max-width: 100% !important; height: auto !important; mix-blend-mode: multiply !important; }
.h42-story-eyebrow { font-size: 0.7rem !important; font-weight: 700 !important; letter-spacing: 0.15em !important; text-transform: uppercase !important; color: #9da8a2 !important; margin: 0 0 1rem 0 !important; display: block !important; }
.h42-story-title { font-family: 'Cormorant Garamond', serif !important; font-size: 3.5rem !important; font-weight: 400 !important; color: #1a2e1f !important; margin: 0 0 0.5rem 0 !important; line-height: 1.1 !important; }
.h42-story-sub { font-family: 'Cormorant Garamond', serif !important; font-size: 3.5rem !important; font-weight: 400 !important; font-style: italic !important; color: #b49b73 !important; margin: 0 0 2rem 0 !important; line-height: 1.1 !important; }
.h42-story-divider { width: 40px !important; height: 1px !important; background-color: #1a2e1f !important; margin: 0 0 2rem 0 !important; }
.h42-story-text { font-size: 0.95rem !important; color: #5a5a5a !important; line-height: 1.7 !important; margin: 0 0 1.5rem 0 !important; }

@media (max-width: 900px) { .h42-htu-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 3rem 2rem !important; } .h42-story-inner { grid-template-columns: 1fr !important; gap: 3rem !important; } .h42-story-img { max-height: 400px !important; } }
@media (max-width: 600px) { .h42-htu-grid { grid-template-columns: 1fr !important; } .h42-story-title, .h42-story-sub { font-size: 2.8rem !important; } }

/* REVIEWS CSS */
.h42-rev-wrapper { background-color: #faf9f6 !important; padding: 5rem 1rem !important; text-align: center !important; font-family: 'Inter', system-ui, -apple-system, sans-serif !important; }
.h42-rev-inner { max-width: 1200px !important; margin: 0 auto !important; }
.h42-rev-eyebrow { color: #b49b73 !important; font-size: 0.7rem !important; font-weight: 700 !important; letter-spacing: 0.15em !important; text-transform: uppercase !important; margin: 0 0 1rem 0 !important; display: block !important; }
.h42-rev-title { font-family: 'Cormorant Garamond', serif !important; font-size: 3.5rem !important; font-weight: 400 !important; color: #1a2e1f !important; margin: 0 0 1.5rem 0 !important; }
.h42-rev-divider { width: 40px !important; height: 1px !important; background-color: #b49b73 !important; margin: 0 auto 1.5rem auto !important; }
.h42-rev-agg { margin-bottom: 3rem !important; text-align: center !important; }
.h42-rev-score { font-size: 1.5rem !important; font-weight: 600 !important; color: #1a2e1f !important; display: flex !important; align-items: center !important; justify-content: center !important; gap: 0.5rem !important; margin-bottom: 0.5rem !important; flex-wrap: wrap !important; }
.h42-rev-stars { color: #1a2e1f !important; letter-spacing: 0.1em !important; display: inline-flex !important; }
.h42-rev-count { font-size: 0.75rem !important; color: #5a5a5a !important; }

.h42-rev-grid { display: grid !important; grid-template-columns: repeat(3, 1fr) !important; gap: 2rem !important; }
.h42-rev-card { background-color: #ffffff !important; padding: 2.5rem 2rem !important; text-align: left !important; display: flex !important; flex-direction: column !important; box-shadow: 0 4px 20px rgba(0,0,0,0.03) !important; }
.h42-rev-card-stars { color: #1a2e1f !important; font-size: 0.9rem !important; margin-bottom: 1rem !important; letter-spacing: 0.1em !important; }
.h42-rev-text { font-size: 0.9rem !important; color: #5a5a5a !important; line-height: 1.6 !important; margin: 0 0 2rem 0 !important; flex-grow: 1 !important; font-style: italic !important; }
.h42-rev-author { font-size: 0.8rem !important; font-weight: 700 !important; color: #1a2e1f !important; display: flex !important; align-items: center !important; gap: 0.5rem !important; margin: 0 !important; }
.h42-rev-verified { font-size: 0.7rem !important; font-weight: 400 !important; color: #b49b73 !important; display: flex !important; align-items: center !important; gap: 0.2rem !important; }

@media (max-width: 900px) { .h42-rev-grid { grid-template-columns: 1fr !important; } .h42-rev-title { font-size: 2.8rem !important; } }

/* CROSS-SELL CSS */
.h42-cross-wrapper { background-color: #faf9f6 !important; padding: 5rem 1rem !important; text-align: center !important; font-family: 'Inter', system-ui, -apple-system, sans-serif !important; box-sizing: border-box !important; border-top: 1px solid #e2ddd6 !important; }
.h42-cross-inner { max-width: 1200px !important; margin: 0 auto !important; }
.h42-cross-eyebrow { color: #b49b73 !important; font-size: 0.7rem !important; font-weight: 700 !important; letter-spacing: 0.15em !important; text-transform: uppercase !important; margin: 0 0 1rem 0 !important; display: block !important; }
.h42-cross-title { font-family: 'Cormorant Garamond', serif !important; font-size: 3.5rem !important; font-weight: 400 !important; color: #1a2e1f !important; margin: 0 0 1.5rem 0 !important; }
.h42-cross-divider { width: 40px !important; height: 1px !important; background-color: #b49b73 !important; margin: 0 auto 3rem auto !important; }
.h42-cross-grid { display: grid !important; grid-template-columns: repeat(4, 1fr) !important; gap: 2rem !important; }
.h42-cross-card { display: flex !important; flex-direction: column !important; align-items: center !important; text-decoration: none !important; }
.h42-cross-img-wrap { background-color: #f2efe9 !important; width: 100% !important; aspect-ratio: 1/1 !important; display: flex !important; align-items: center !important; justify-content: center !important; margin-bottom: 1.5rem !important; padding: 2rem !important; box-sizing: border-box !important; }
.h42-cross-img { max-width: 100% !important; max-height: 100% !important; object-fit: contain !important; mix-blend-mode: multiply !important; }
.h42-cross-card-title { font-family: 'Cormorant Garamond', serif !important; font-size: 1.3rem !important; color: #1a2e1f !important; margin: 0 0 0.5rem 0 !important; font-weight: 400 !important; }
.h42-cross-price { font-size: 0.9rem !important; font-weight: 600 !important; color: #5a5a5a !important; margin: 0 0 1.5rem 0 !important; }
.h42-cross-btn { background: transparent !important; border: 1px solid #1a2e1f !important; color: #1a2e1f !important; font-size: 0.75rem !important; font-weight: 600 !important; letter-spacing: 0.1em !important; text-transform: uppercase !important; padding: 0.8rem 1.5rem !important; cursor: pointer !important; transition: all 0.3s ease !important; text-decoration: none !important; display: inline-block !important; }
.h42-cross-btn:hover { background-color: #1a2e1f !important; color: #ffffff !important; }
@media (max-width: 900px) { .h42-cross-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 3rem 1.5rem !important; } }
@media (max-width: 600px) { .h42-cross-grid { grid-template-columns: 1fr !important; } .h42-cross-title { font-size: 2.8rem !important; } }

/* CTA CSS */
.h42-cta-wrapper { background-color: #1a2e1f !important; padding: 6rem 1rem !important; text-align: center !important; font-family: 'Inter', system-ui, -apple-system, sans-serif !important; box-sizing: border-box !important; }
.h42-cta-inner { max-width: 800px !important; margin: 0 auto !important; display: flex !important; flex-direction: column !important; align-items: center !important; }
.h42-cta-title { font-family: 'Cormorant Garamond', serif !important; font-size: 3.5rem !important; font-weight: 400 !important; color: #ffffff !important; margin: 0 0 1rem 0 !important; }
.h42-cta-subtitle { font-family: 'Cormorant Garamond', serif !important; font-size: 1.4rem !important; font-weight: 400 !important; font-style: italic !important; color: #b0b5b2 !important; margin: 0 0 3rem 0 !important; line-height: 1.4 !important; }
.h42-cta-btn { background-color: #b49b73 !important; border: none !important; color: #1a2e1f !important; font-size: 0.85rem !important; font-weight: 700 !important; letter-spacing: 0.1em !important; text-transform: uppercase !important; padding: 1.1rem 2.5rem !important; cursor: pointer !important; transition: background-color 0.3s ease !important; text-decoration: none !important; display: inline-block !important; }
.h42-cta-btn:hover { background-color: #d1b890 !important; }
@media (max-width: 600px) { .h42-cta-title { font-size: 2.8rem !important; } .h42-cta-subtitle { font-size: 1.2rem !important; } }

/* --- ACCORDION DETAILS --- */
.h42-acc-wrapper { font-family: 'Inter', system-ui, -apple-system, sans-serif !important; color: #5a5a5a !important; max-width: 100% !important; -webkit-font-smoothing: antialiased !important; line-height: 1.6 !important; background: transparent !important; padding: 1rem 0 !important; }
.h42-trust-bar { display: flex !important; gap: 1.5rem !important; flex-wrap: wrap !important; padding: 0 0 1.5rem 0 !important; border-bottom: 1px solid #e2ddd6 !important; margin-bottom: 1rem !important; }
.h42-trust-bar span { display: flex !important; align-items: center !important; gap: 0.4rem !important; font-size: 0.75rem !important; font-weight: 500 !important; color: #5a5a5a !important; }
.h42-acc-item { border-bottom: 1px solid #e2ddd6 !important; margin: 0 !important; padding: 0 !important; }
.h42-acc-item details { width: 100% !important; }
.h42-acc-item summary { list-style: none !important; width: 100% !important; display: flex !important; align-items: center !important; justify-content: space-between !important; padding: 1.25rem 0 !important; font-size: 0.95rem !important; font-weight: 600 !important; color: #1c1c1c !important; cursor: pointer !important; background: transparent !important; border: none !important; }
.h42-acc-item summary::-webkit-details-marker { display: none !important; }
.h42-acc-icon { font-size: 1.2rem !important; font-weight: 300 !important; color: #1c1c1c !important; display: inline-flex !important; transition: transform 0.3s ease !important; line-height: 1 !important; }
.h42-acc-item details[open] .h42-acc-icon { transform: rotate(45deg) !important; }
.h42-acc-content { padding: 0 0 1.5rem 0 !important; font-size: 0.9rem !important; color: #5a5a5a !important; }
.h42-acc-content p { margin: 0 0 1rem 0 !important; line-height: 1.7 !important; }
.h42-acc-content p:last-child { margin-bottom: 0 !important; }
.h42-acc-content ul { margin: 0 !important; padding-left: 1.2rem !important; }
.h42-acc-content li { margin-bottom: 0.5rem !important; line-height: 1.6 !important; }

/* --- BENEFITS STRIP --- */
.h42-bstrip-wrapper { background-color: #faf9f6 !important; padding: 4rem 1rem !important; border-bottom: 1px solid #e2ddd6 !important; font-family: 'Inter', system-ui, -apple-system, sans-serif !important; }
.h42-bstrip-inner { max-width: 1200px !important; margin: 0 auto !important; display: grid !important; grid-template-columns: repeat(4, 1fr) !important; gap: 2rem !important; text-align: center !important; }
.h42-bstrip-item { display: flex !important; flex-direction: column !important; align-items: center !important; }
.h42-bstrip-icon { font-size: 1.8rem !important; margin-bottom: 1rem !important; }
.h42-bstrip-title { font-family: 'Cormorant Garamond', serif !important; font-size: 1rem !important; font-weight: 700 !important; letter-spacing: 0.1em !important; color: #1a2e1f !important; text-transform: uppercase !important; margin: 0 0 0.5rem 0 !important; }
.h42-bstrip-text { font-size: 0.85rem !important; color: #5a5a5a !important; line-height: 1.6 !important; margin: 0 !important; max-width: 250px !important; }
@media (max-width: 900px) { .h42-bstrip-inner { grid-template-columns: repeat(2, 1fr) !important; gap: 3rem 2rem !important; } }
@media (max-width: 500px) { .h42-bstrip-inner { grid-template-columns: 1fr !important; gap: 2.5rem !important; } }

/* --- CLINICAL RESULTS (DARK) --- */
.h42-dark-sec { background-color: #0e1813 !important; padding: 5rem 1rem !important; font-family: 'Inter', system-ui, -apple-system, sans-serif !important; box-sizing: border-box !important; color: #f8f6f0 !important; }
.h42-ds-inner { max-width: 1000px !important; margin: 0 auto !important; text-align: center !important; }
.h42-ds-eyebrow { display: inline-block !important; background-color: #b49b73 !important; color: #0e1813 !important; font-size: 0.65rem !important; font-weight: 700 !important; letter-spacing: 0.15em !important; text-transform: uppercase !important; padding: 0.4rem 1rem !important; margin-bottom: 1.5rem !important; }
.h42-ds-title { font-family: 'Cormorant Garamond', serif !important; font-size: 3.2rem !important; font-weight: 400 !important; margin: 0 0 1.5rem 0 !important; color: #f8f6f0 !important; }
.h42-ds-divider { width: 40px !important; height: 1px !important; background-color: #5a665e !important; margin: 0 auto 1.5rem auto !important; }
.h42-ds-sub { font-size: 0.85rem !important; color: #b0b5b2 !important; max-width: 600px !important; margin: 0 auto 3rem auto !important; line-height: 1.6 !important; }
.h42-results-grid { display: grid !important; grid-template-columns: repeat(3, 1fr) !important; gap: 1.5rem !important; }
.h42-res-card { background-color: #1a241f !important; padding: 3rem 2rem !important; text-align: center !important; display: flex !important; flex-direction: column !important; align-items: center !important; }
.h42-res-num { font-family: 'Cormorant Garamond', serif !important; font-size: 4.5rem !important; font-style: italic !important; color: #b49b73 !important; margin: 0 0 1rem 0 !important; font-weight: 400 !important; line-height: 1 !important; }
.h42-res-title { font-size: 0.75rem !important; font-weight: 700 !important; letter-spacing: 0.1em !important; text-transform: uppercase !important; margin: 0 0 1rem 0 !important; color: #f8f6f0 !important; }
.h42-res-text { font-size: 0.85rem !important; color: #b0b5b2 !important; line-height: 1.6 !important; margin: 0 !important; }
@media (max-width: 800px) { .h42-results-grid { grid-template-columns: 1fr !important; } .h42-ds-title { font-size: 2.5rem !important; } }

/* --- INGREDIENTS GRID (DARK) --- */
.h42-ing-wrapper { background-color: #0e1813 !important; padding: 5rem 1rem !important; font-family: 'Inter', system-ui, -apple-system, sans-serif !important; box-sizing: border-box !important; color: #f8f6f0 !important; border-top: 1px solid #1a241f !important; }
.h42-ing-inner { max-width: 1100px !important; margin: 0 auto !important; text-align: center !important; }
.h42-ing-title { font-family: 'Cormorant Garamond', serif !important; font-size: 3.2rem !important; font-weight: 400 !important; margin: 0 0 1rem 0 !important; color: #f8f6f0 !important; }
.h42-ing-divider { width: 40px !important; height: 1px !important; background-color: #b49b73 !important; margin: 0 auto 1.5rem auto !important; }
.h42-ing-sub { font-size: 0.85rem !important; color: #b0b5b2 !important; max-width: 600px !important; margin: 0 auto 4rem auto !important; line-height: 1.6 !important; }
.h42-ing-grid { display: grid !important; grid-template-columns: repeat(3, 1fr) !important; gap: 1.5rem !important; }
.h42-ing-card { background-color: #1a241f !important; padding: 2.5rem 2rem !important; text-align: center !important; display: flex !important; flex-direction: column !important; align-items: center !important; }
.h42-ing-icon { font-size: 1.5rem !important; margin-bottom: 1rem !important; }
.h42-ing-card-title { font-family: 'Cormorant Garamond', serif !important; font-size: 1.4rem !important; font-weight: 400 !important; margin: 0 0 1rem 0 !important; color: #b49b73 !important; letter-spacing: 0.05em !important; }
.h42-ing-card-text { font-size: 0.85rem !important; color: #b0b5b2 !important; line-height: 1.6 !important; margin: 0 !important; }
.h42-ing-inci { text-align: center !important; font-size: 0.75rem !important; color: #5a665e !important; margin-top: 4rem !important; line-height: 1.8 !important; max-width: 800px !important; margin-left: auto !important; margin-right: auto !important; text-transform: uppercase !important; letter-spacing: 0.05em !important; }
@media (max-width: 900px) { .h42-ing-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 1rem !important; } .h42-ing-title { font-size: 2.5rem !important; } }
@media (max-width: 600px) { .h42-ing-grid { grid-template-columns: 1fr !important; } }

/* --- HOW TO USE & STORY --- */
.h42-htu-wrapper { background-color: #faf9f6 !important; padding: 5rem 1rem !important; font-family: 'Inter', system-ui, -apple-system, sans-serif !important; text-align: center !important; }
.h42-htu-inner { max-width: 1000px !important; margin: 0 auto !important; }
.h42-htu-title { font-family: 'Cormorant Garamond', serif !important; font-size: 2.8rem !important; font-weight: 400 !important; color: #1a2e1f !important; margin: 0 0 1.5rem 0 !important; }
.h42-htu-divider { width: 40px !important; height: 1px !important; background-color: #b49b73 !important; margin: 0 auto 4rem auto !important; }
.h42-htu-grid { display: grid !important; grid-template-columns: repeat(4, 1fr) !important; gap: 2rem !important; }
.h42-htu-step { display: flex !important; flex-direction: column !important; align-items: center !important; }
.h42-htu-circle { width: 40px !important; height: 40px !important; border-radius: 50% !important; background-color: #1a2e1f !important; color: #ffffff !important; display: flex !important; align-items: center !important; justify-content: center !important; font-family: 'Cormorant Garamond', serif !important; font-size: 1.2rem !important; margin-bottom: 1.5rem !important; font-style: italic !important; }
.h42-htu-step-title { font-family: 'Cormorant Garamond', serif !important; font-size: 1.3rem !important; color: #1a2e1f !important; margin: 0 0 1rem 0 !important; font-weight: 400 !important; }
.h42-htu-step-text { font-size: 0.85rem !important; color: #5a5a5a !important; line-height: 1.6 !important; margin: 0 !important; }

.h42-story-wrapper { background-color: #ffffff !important; padding: 6rem 1rem !important; font-family: 'Inter', system-ui, -apple-system, sans-serif !important; }
.h42-story-inner { max-width: 1200px !important; margin: 0 auto !important; display: grid !important; grid-template-columns: 1fr 1fr !important; gap: 4rem !important; align-items: center !important; }
.h42-story-img-col { display: flex !important; justify-content: center !important; }
.h42-story-img { max-width: 100% !important; height: auto !important; mix-blend-mode: multiply !important; }
.h42-story-eyebrow { font-size: 0.7rem !important; font-weight: 700 !important; letter-spacing: 0.15em !important; text-transform: uppercase !important; color: #9da8a2 !important; margin: 0 0 1rem 0 !important; display: block !important; }
.h42-story-title { font-family: 'Cormorant Garamond', serif !important; font-size: 3.5rem !important; font-weight: 400 !important; color: #1a2e1f !important; margin: 0 0 0.5rem 0 !important; line-height: 1.1 !important; }
.h42-story-sub { font-family: 'Cormorant Garamond', serif !important; font-size: 3.5rem !important; font-weight: 400 !important; font-style: italic !important; color: #b49b73 !important; margin: 0 0 2rem 0 !important; line-height: 1.1 !important; }
.h42-story-divider { width: 40px !important; height: 1px !important; background-color: #1a2e1f !important; margin: 0 0 2rem 0 !important; }
.h42-story-text { font-size: 0.95rem !important; color: #5a5a5a !important; line-height: 1.7 !important; margin: 0 0 1.5rem 0 !important; }

@media (max-width: 900px) { .h42-htu-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 3rem 2rem !important; } .h42-story-inner { grid-template-columns: 1fr !important; gap: 3rem !important; } .h42-story-img { max-height: 400px !important; } }
@media (max-width: 600px) { .h42-htu-grid { grid-template-columns: 1fr !important; } .h42-story-title, .h42-story-sub { font-size: 2.8rem !important; } }

/* --- REVIEWS, CROSS-SELL, CTA --- */
.h42-rev-wrapper { background-color: #faf9f6 !important; padding: 5rem 1rem !important; text-align: center !important; font-family: 'Inter', system-ui, -apple-system, sans-serif !important; border-top: 1px solid #e2ddd6 !important; }
.h42-rev-inner { max-width: 1200px !important; margin: 0 auto !important; }
.h42-rev-eyebrow { color: #b49b73 !important; font-size: 0.7rem !important; font-weight: 700 !important; letter-spacing: 0.15em !important; text-transform: uppercase !important; margin: 0 0 1rem 0 !important; display: block !important; }
.h42-rev-title { font-family: 'Cormorant Garamond', serif !important; font-size: 3.5rem !important; font-weight: 400 !important; color: #1a2e1f !important; margin: 0 0 1.5rem 0 !important; }
.h42-rev-divider { width: 40px !important; height: 1px !important; background-color: #b49b73 !important; margin: 0 auto 1.5rem auto !important; }
.h42-rev-agg { margin-bottom: 3rem !important; text-align: center !important; }
.h42-rev-score { font-size: 1.5rem !important; font-weight: 600 !important; color: #1a2e1f !important; display: flex !important; align-items: center !important; justify-content: center !important; gap: 0.5rem !important; margin-bottom: 0.5rem !important; flex-wrap: wrap !important; }
.h42-rev-stars { color: #1a2e1f !important; letter-spacing: 0.1em !important; display: inline-flex !important; }
.h42-rev-count { font-size: 0.75rem !important; color: #5a5a5a !important; }

.h42-rev-grid { display: grid !important; grid-template-columns: repeat(3, 1fr) !important; gap: 2rem !important; }
.h42-rev-card { background-color: #ffffff !important; padding: 2.5rem 2rem !important; text-align: left !important; display: flex !important; flex-direction: column !important; box-shadow: 0 4px 20px rgba(0,0,0,0.03) !important; }
.h42-rev-card-stars { color: #1a2e1f !important; font-size: 0.9rem !important; margin-bottom: 1rem !important; letter-spacing: 0.1em !important; }
.h42-rev-text { font-size: 0.9rem !important; color: #5a5a5a !important; line-height: 1.6 !important; margin: 0 0 2rem 0 !important; flex-grow: 1 !important; font-style: italic !important; }
.h42-rev-author { font-size: 0.8rem !important; font-weight: 700 !important; color: #1a2e1f !important; display: flex !important; align-items: center !important; gap: 0.5rem !important; margin: 0 !important; }
.h42-rev-verified { font-size: 0.7rem !important; font-weight: 400 !important; color: #b49b73 !important; display: flex !important; align-items: center !important; gap: 0.2rem !important; }

@media (max-width: 900px) { .h42-rev-grid { grid-template-columns: 1fr !important; } .h42-rev-title { font-size: 2.8rem !important; } }

.h42-cross-wrapper { background-color: #faf9f6 !important; padding: 5rem 1rem !important; text-align: center !important; font-family: 'Inter', system-ui, -apple-system, sans-serif !important; box-sizing: border-box !important; border-top: 1px solid #e2ddd6 !important; }
.h42-cross-inner { max-width: 1200px !important; margin: 0 auto !important; }
.h42-cross-eyebrow { color: #b49b73 !important; font-size: 0.7rem !important; font-weight: 700 !important; letter-spacing: 0.15em !important; text-transform: uppercase !important; margin: 0 0 1rem 0 !important; display: block !important; }
.h42-cross-title { font-family: 'Cormorant Garamond', serif !important; font-size: 3.5rem !important; font-weight: 400 !important; color: #1a2e1f !important; margin: 0 0 1.5rem 0 !important; }
.h42-cross-divider { width: 40px !important; height: 1px !important; background-color: #b49b73 !important; margin: 0 auto 3rem auto !important; }
.h42-cross-grid { display: grid !important; grid-template-columns: repeat(4, 1fr) !important; gap: 2rem !important; }
.h42-cross-card { display: flex !important; flex-direction: column !important; align-items: center !important; text-decoration: none !important; }
.h42-cross-img-wrap { background-color: #f2efe9 !important; width: 100% !important; aspect-ratio: 1/1 !important; display: flex !important; align-items: center !important; justify-content: center !important; margin-bottom: 1.5rem !important; padding: 2rem !important; box-sizing: border-box !important; }
.h42-cross-img { max-width: 100% !important; max-height: 100% !important; object-fit: contain !important; mix-blend-mode: multiply !important; }
.h42-cross-card-title { font-family: 'Cormorant Garamond', serif !important; font-size: 1.3rem !important; color: #1a2e1f !important; margin: 0 0 0.5rem 0 !important; font-weight: 400 !important; }
.h42-cross-price { font-size: 0.9rem !important; font-weight: 600 !important; color: #5a5a5a !important; margin: 0 0 1.5rem 0 !important; }
.h42-cross-btn { background: transparent !important; border: 1px solid #1a2e1f !important; color: #1a2e1f !important; font-size: 0.75rem !important; font-weight: 600 !important; letter-spacing: 0.1em !important; text-transform: uppercase !important; padding: 0.8rem 1.5rem !important; cursor: pointer !important; transition: all 0.3s ease !important; text-decoration: none !important; display: inline-block !important; }
.h42-cross-btn:hover { background-color: #1a2e1f !important; color: #ffffff !important; }
@media (max-width: 900px) { .h42-cross-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 3rem 1.5rem !important; } }
@media (max-width: 600px) { .h42-cross-grid { grid-template-columns: 1fr !important; } .h42-cross-title { font-size: 2.8rem !important; } }

.h42-cta-wrapper { background-color: #1a2e1f !important; padding: 6rem 1rem !important; text-align: center !important; font-family: 'Inter', system-ui, -apple-system, sans-serif !important; box-sizing: border-box !important; }
.h42-cta-inner { max-width: 800px !important; margin: 0 auto !important; display: flex !important; flex-direction: column !important; align-items: center !important; }
.h42-cta-title { font-family: 'Cormorant Garamond', serif !important; font-size: 3.5rem !important; font-weight: 400 !important; color: #ffffff !important; margin: 0 0 1rem 0 !important; }
.h42-cta-subtitle { font-family: 'Cormorant Garamond', serif !important; font-size: 1.4rem !important; font-weight: 400 !important; font-style: italic !important; color: #b0b5b2 !important; margin: 0 0 3rem 0 !important; line-height: 1.4 !important; }
.h42-cta-btn { background-color: #b49b73 !important; border: none !important; color: #1a2e1f !important; font-size: 0.85rem !important; font-weight: 700 !important; letter-spacing: 0.1em !important; text-transform: uppercase !important; padding: 1.1rem 2.5rem !important; cursor: pointer !important; transition: background-color 0.3s ease !important; text-decoration: none !important; display: inline-block !important; }
.h42-cta-btn:hover { background-color: #d1b890 !important; }
@media (max-width: 600px) { .h42-cta-title { font-size: 2.8rem !important; } .h42-cta-subtitle { font-size: 1.2rem !important; } }

/* --- ACCORDION DETAILS --- */
.h42-acc-wrapper { font-family: 'Inter', system-ui, -apple-system, sans-serif !important; color: #5a5a5a !important; max-width: 100% !important; -webkit-font-smoothing: antialiased !important; line-height: 1.6 !important; background: transparent !important; padding: 1rem 0 !important; }
.h42-trust-bar { display: flex !important; gap: 1.5rem !important; flex-wrap: wrap !important; padding: 0 0 1.5rem 0 !important; border-bottom: 1px solid #e2ddd6 !important; margin-bottom: 1rem !important; }
.h42-trust-bar span { display: flex !important; align-items: center !important; gap: 0.4rem !important; font-size: 0.75rem !important; font-weight: 500 !important; color: #5a5a5a !important; }
.h42-acc-item { border-bottom: 1px solid #e2ddd6 !important; margin: 0 !important; padding: 0 !important; }
.h42-acc-item details { width: 100% !important; }
.h42-acc-item summary { list-style: none !important; width: 100% !important; display: flex !important; align-items: center !important; justify-content: space-between !important; padding: 1.25rem 0 !important; font-size: 0.95rem !important; font-weight: 600 !important; color: #1c1c1c !important; cursor: pointer !important; background: transparent !important; border: none !important; }
.h42-acc-item summary::-webkit-details-marker { display: none !important; }
.h42-acc-icon { font-size: 1.2rem !important; font-weight: 300 !important; color: #1c1c1c !important; display: inline-flex !important; transition: transform 0.3s ease !important; line-height: 1 !important; }
.h42-acc-item details[open] .h42-acc-icon { transform: rotate(45deg) !important; }
.h42-acc-content { padding: 0 0 1.5rem 0 !important; font-size: 0.9rem !important; color: #5a5a5a !important; }
.h42-acc-content p { margin: 0 0 1rem 0 !important; line-height: 1.7 !important; }
.h42-acc-content p:last-child { margin-bottom: 0 !important; }
.h42-acc-content ul { margin: 0 !important; padding-left: 1.2rem !important; }
.h42-acc-content li { margin-bottom: 0.5rem !important; line-height: 1.6 !important; }

/* --- BENEFITS STRIP --- */
.h42-bstrip-wrapper { background-color: #faf9f6 !important; padding: 4rem 1rem !important; border-bottom: 1px solid #e2ddd6 !important; font-family: 'Inter', system-ui, -apple-system, sans-serif !important; }
.h42-bstrip-inner { max-width: 1200px !important; margin: 0 auto !important; display: grid !important; grid-template-columns: repeat(4, 1fr) !important; gap: 2rem !important; text-align: center !important; }
.h42-bstrip-item { display: flex !important; flex-direction: column !important; align-items: center !important; }
.h42-bstrip-icon { font-size: 1.8rem !important; margin-bottom: 1rem !important; }
.h42-bstrip-title { font-family: 'Cormorant Garamond', serif !important; font-size: 1rem !important; font-weight: 700 !important; letter-spacing: 0.1em !important; color: #1a2e1f !important; text-transform: uppercase !important; margin: 0 0 0.5rem 0 !important; }
.h42-bstrip-text { font-size: 0.85rem !important; color: #5a5a5a !important; line-height: 1.6 !important; margin: 0 !important; max-width: 250px !important; }
@media (max-width: 900px) { .h42-bstrip-inner { grid-template-columns: repeat(2, 1fr) !important; gap: 3rem 2rem !important; } }
@media (max-width: 500px) { .h42-bstrip-inner { grid-template-columns: 1fr !important; gap: 2.5rem !important; } }

/* --- CLINICAL RESULTS (DARK) --- */
.h42-dark-sec { background-color: #0e1813 !important; padding: 5rem 1rem !important; font-family: 'Inter', system-ui, -apple-system, sans-serif !important; box-sizing: border-box !important; color: #f8f6f0 !important; }
.h42-ds-inner { max-width: 1000px !important; margin: 0 auto !important; text-align: center !important; }
.h42-ds-eyebrow { display: inline-block !important; background-color: #b49b73 !important; color: #0e1813 !important; font-size: 0.65rem !important; font-weight: 700 !important; letter-spacing: 0.15em !important; text-transform: uppercase !important; padding: 0.4rem 1rem !important; margin-bottom: 1.5rem !important; }
.h42-ds-title { font-family: 'Cormorant Garamond', serif !important; font-size: 3.2rem !important; font-weight: 400 !important; margin: 0 0 1.5rem 0 !important; color: #f8f6f0 !important; }
.h42-ds-divider { width: 40px !important; height: 1px !important; background-color: #5a665e !important; margin: 0 auto 1.5rem auto !important; }
.h42-ds-sub { font-size: 0.85rem !important; color: #b0b5b2 !important; max-width: 600px !important; margin: 0 auto 3rem auto !important; line-height: 1.6 !important; }
.h42-results-grid { display: grid !important; grid-template-columns: repeat(3, 1fr) !important; gap: 1.5rem !important; }
.h42-res-card { background-color: #1a241f !important; padding: 3rem 2rem !important; text-align: center !important; display: flex !important; flex-direction: column !important; align-items: center !important; }
.h42-res-num { font-family: 'Cormorant Garamond', serif !important; font-size: 4.5rem !important; font-style: italic !important; color: #b49b73 !important; margin: 0 0 1rem 0 !important; font-weight: 400 !important; line-height: 1 !important; }
.h42-res-title { font-size: 0.75rem !important; font-weight: 700 !important; letter-spacing: 0.1em !important; text-transform: uppercase !important; margin: 0 0 1rem 0 !important; color: #f8f6f0 !important; }
.h42-res-text { font-size: 0.85rem !important; color: #b0b5b2 !important; line-height: 1.6 !important; margin: 0 !important; }
@media (max-width: 800px) { .h42-results-grid { grid-template-columns: 1fr !important; } .h42-ds-title { font-size: 2.5rem !important; } }

/* --- INGREDIENTS GRID (DARK) --- */
.h42-ing-wrapper { background-color: #0e1813 !important; padding: 5rem 1rem !important; font-family: 'Inter', system-ui, -apple-system, sans-serif !important; box-sizing: border-box !important; color: #f8f6f0 !important; border-top: 1px solid #1a241f !important; }
.h42-ing-inner { max-width: 1100px !important; margin: 0 auto !important; text-align: center !important; }
.h42-ing-title { font-family: 'Cormorant Garamond', serif !important; font-size: 3.2rem !important; font-weight: 400 !important; margin: 0 0 1rem 0 !important; color: #f8f6f0 !important; }
.h42-ing-divider { width: 40px !important; height: 1px !important; background-color: #b49b73 !important; margin: 0 auto 1.5rem auto !important; }
.h42-ing-sub { font-size: 0.85rem !important; color: #b0b5b2 !important; max-width: 600px !important; margin: 0 auto 4rem auto !important; line-height: 1.6 !important; }
.h42-ing-grid { display: grid !important; grid-template-columns: repeat(3, 1fr) !important; gap: 1.5rem !important; }
.h42-ing-card { background-color: #1a241f !important; padding: 2.5rem 2rem !important; text-align: center !important; display: flex !important; flex-direction: column !important; align-items: center !important; }
.h42-ing-icon { font-size: 1.5rem !important; margin-bottom: 1rem !important; }
.h42-ing-card-title { font-family: 'Cormorant Garamond', serif !important; font-size: 1.4rem !important; font-weight: 400 !important; margin: 0 0 1rem 0 !important; color: #b49b73 !important; letter-spacing: 0.05em !important; }
.h42-ing-card-text { font-size: 0.85rem !important; color: #b0b5b2 !important; line-height: 1.6 !important; margin: 0 !important; }
.h42-ing-inci { text-align: center !important; font-size: 0.75rem !important; color: #5a665e !important; margin-top: 4rem !important; line-height: 1.8 !important; max-width: 800px !important; margin-left: auto !important; margin-right: auto !important; text-transform: uppercase !important; letter-spacing: 0.05em !important; }
@media (max-width: 900px) { .h42-ing-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 1rem !important; } .h42-ing-title { font-size: 2.5rem !important; } }
@media (max-width: 600px) { .h42-ing-grid { grid-template-columns: 1fr !important; } }

/* --- HOW TO USE & STORY --- */
.h42-htu-wrapper { background-color: #faf9f6 !important; padding: 5rem 1rem !important; font-family: 'Inter', system-ui, -apple-system, sans-serif !important; text-align: center !important; }
.h42-htu-inner { max-width: 1000px !important; margin: 0 auto !important; }
.h42-htu-title { font-family: 'Cormorant Garamond', serif !important; font-size: 2.8rem !important; font-weight: 400 !important; color: #1a2e1f !important; margin: 0 0 1.5rem 0 !important; }
.h42-htu-divider { width: 40px !important; height: 1px !important; background-color: #b49b73 !important; margin: 0 auto 4rem auto !important; }
.h42-htu-grid { display: grid !important; grid-template-columns: repeat(4, 1fr) !important; gap: 2rem !important; }
.h42-htu-step { display: flex !important; flex-direction: column !important; align-items: center !important; }
.h42-htu-circle { width: 40px !important; height: 40px !important; border-radius: 50% !important; background-color: #1a2e1f !important; color: #ffffff !important; display: flex !important; align-items: center !important; justify-content: center !important; font-family: 'Cormorant Garamond', serif !important; font-size: 1.2rem !important; margin-bottom: 1.5rem !important; font-style: italic !important; }
.h42-htu-step-title { font-family: 'Cormorant Garamond', serif !important; font-size: 1.3rem !important; color: #1a2e1f !important; margin: 0 0 1rem 0 !important; font-weight: 400 !important; }
.h42-htu-step-text { font-size: 0.85rem !important; color: #5a5a5a !important; line-height: 1.6 !important; margin: 0 !important; }

.h42-story-wrapper { background-color: #ffffff !important; padding: 6rem 1rem !important; font-family: 'Inter', system-ui, -apple-system, sans-serif !important; }
.h42-story-inner { max-width: 1200px !important; margin: 0 auto !important; display: grid !important; grid-template-columns: 1fr 1fr !important; gap: 4rem !important; align-items: center !important; }
.h42-story-img-col { display: flex !important; justify-content: center !important; }
.h42-story-img { max-width: 100% !important; height: auto !important; mix-blend-mode: multiply !important; }
.h42-story-eyebrow { font-size: 0.7rem !important; font-weight: 700 !important; letter-spacing: 0.15em !important; text-transform: uppercase !important; color: #9da8a2 !important; margin: 0 0 1rem 0 !important; display: block !important; }
.h42-story-title { font-family: 'Cormorant Garamond', serif !important; font-size: 3.5rem !important; font-weight: 400 !important; color: #1a2e1f !important; margin: 0 0 0.5rem 0 !important; line-height: 1.1 !important; }
.h42-story-sub { font-family: 'Cormorant Garamond', serif !important; font-size: 3.5rem !important; font-weight: 400 !important; font-style: italic !important; color: #b49b73 !important; margin: 0 0 2rem 0 !important; line-height: 1.1 !important; }
.h42-story-divider { width: 40px !important; height: 1px !important; background-color: #1a2e1f !important; margin: 0 0 2rem 0 !important; }
.h42-story-text { font-size: 0.95rem !important; color: #5a5a5a !important; line-height: 1.7 !important; margin: 0 0 1.5rem 0 !important; }
@media (max-width: 900px) { .h42-htu-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 3rem 2rem !important; } .h42-story-inner { grid-template-columns: 1fr !important; gap: 3rem !important; } .h42-story-img { max-height: 400px !important; } }
@media (max-width: 600px) { .h42-htu-grid { grid-template-columns: 1fr !important; } .h42-story-title, .h42-story-sub { font-size: 2.8rem !important; } }

/* --- REVIEWS, CROSS-SELL, CTA --- */
.h42-rev-wrapper { background-color: #faf9f6 !important; padding: 5rem 1rem !important; text-align: center !important; font-family: 'Inter', system-ui, -apple-system, sans-serif !important; border-top: 1px solid #e2ddd6 !important; }
.h42-rev-inner { max-width: 1200px !important; margin: 0 auto !important; }
.h42-rev-eyebrow { color: #b49b73 !important; font-size: 0.7rem !important; font-weight: 700 !important; letter-spacing: 0.15em !important; text-transform: uppercase !important; margin: 0 0 1rem 0 !important; display: block !important; }
.h42-rev-title { font-family: 'Cormorant Garamond', serif !important; font-size: 3.5rem !important; font-weight: 400 !important; color: #1a2e1f !important; margin: 0 0 1.5rem 0 !important; }
.h42-rev-divider { width: 40px !important; height: 1px !important; background-color: #b49b73 !important; margin: 0 auto 1.5rem auto !important; }
.h42-rev-agg { margin-bottom: 3rem !important; text-align: center !important; }
.h42-rev-score { font-size: 1.5rem !important; font-weight: 600 !important; color: #1a2e1f !important; display: flex !important; align-items: center !important; justify-content: center !important; gap: 0.5rem !important; margin-bottom: 0.5rem !important; flex-wrap: wrap !important; }
.h42-rev-stars { color: #1a2e1f !important; letter-spacing: 0.1em !important; display: inline-flex !important; }
.h42-rev-count { font-size: 0.75rem !important; color: #5a5a5a !important; }
.h42-rev-grid { display: grid !important; grid-template-columns: repeat(3, 1fr) !important; gap: 2rem !important; }
.h42-rev-card { background-color: #ffffff !important; padding: 2.5rem 2rem !important; text-align: left !important; display: flex !important; flex-direction: column !important; box-shadow: 0 4px 20px rgba(0,0,0,0.03) !important; }
.h42-rev-card-stars { color: #1a2e1f !important; font-size: 0.9rem !important; margin-bottom: 1rem !important; letter-spacing: 0.1em !important; }
.h42-rev-text { font-size: 0.9rem !important; color: #5a5a5a !important; line-height: 1.6 !important; margin: 0 0 2rem 0 !important; flex-grow: 1 !important; font-style: italic !important; }
.h42-rev-author { font-size: 0.8rem !important; font-weight: 700 !important; color: #1a2e1f !important; display: flex !important; align-items: center !important; gap: 0.5rem !important; margin: 0 !important; }
.h42-rev-verified { font-size: 0.7rem !important; font-weight: 400 !important; color: #b49b73 !important; display: flex !important; align-items: center !important; gap: 0.2rem !important; }
@media (max-width: 900px) { .h42-rev-grid { grid-template-columns: 1fr !important; } .h42-rev-title { font-size: 2.8rem !important; } }

.h42-cross-wrapper { background-color: #faf9f6 !important; padding: 5rem 1rem !important; text-align: center !important; font-family: 'Inter', system-ui, -apple-system, sans-serif !important; box-sizing: border-box !important; border-top: 1px solid #e2ddd6 !important; }
.h42-cross-inner { max-width: 1200px !important; margin: 0 auto !important; }
.h42-cross-eyebrow { color: #b49b73 !important; font-size: 0.7rem !important; font-weight: 700 !important; letter-spacing: 0.15em !important; text-transform: uppercase !important; margin: 0 0 1rem 0 !important; display: block !important; }
.h42-cross-title { font-family: 'Cormorant Garamond', serif !important; font-size: 3.5rem !important; font-weight: 400 !important; color: #1a2e1f !important; margin: 0 0 1.5rem 0 !important; }
.h42-cross-divider { width: 40px !important; height: 1px !important; background-color: #b49b73 !important; margin: 0 auto 3rem auto !important; }
.h42-cross-grid { display: grid !important; grid-template-columns: repeat(4, 1fr) !important; gap: 2rem !important; }
.h42-cross-card { display: flex !important; flex-direction: column !important; align-items: center !important; text-decoration: none !important; }
.h42-cross-img-wrap { background-color: #f2efe9 !important; width: 100% !important; aspect-ratio: 1/1 !important; display: flex !important; align-items: center !important; justify-content: center !important; margin-bottom: 1.5rem !important; padding: 2rem !important; box-sizing: border-box !important; }
.h42-cross-img { max-width: 100% !important; max-height: 100% !important; object-fit: contain !important; mix-blend-mode: multiply !important; }
.h42-cross-card-title { font-family: 'Cormorant Garamond', serif !important; font-size: 1.3rem !important; color: #1a2e1f !important; margin: 0 0 0.5rem 0 !important; font-weight: 400 !important; }
.h42-cross-price { font-size: 0.9rem !important; font-weight: 600 !important; color: #5a5a5a !important; margin: 0 0 1.5rem 0 !important; }
.h42-cross-btn { background: transparent !important; border: 1px solid #1a2e1f !important; color: #1a2e1f !important; font-size: 0.75rem !important; font-weight: 600 !important; letter-spacing: 0.1em !important; text-transform: uppercase !important; padding: 0.8rem 1.5rem !important; cursor: pointer !important; transition: all 0.3s ease !important; text-decoration: none !important; display: inline-block !important; }
.h42-cross-btn:hover { background-color: #1a2e1f !important; color: #ffffff !important; }
@media (max-width: 900px) { .h42-cross-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 3rem 1.5rem !important; } }
@media (max-width: 600px) { .h42-cross-grid { grid-template-columns: 1fr !important; } .h42-cross-title { font-size: 2.8rem !important; } }

.h42-cta-wrapper { background-color: #1a2e1f !important; padding: 6rem 1rem !important; text-align: center !important; font-family: 'Inter', system-ui, -apple-system, sans-serif !important; box-sizing: border-box !important; }
.h42-cta-inner { max-width: 800px !important; margin: 0 auto !important; display: flex !important; flex-direction: column !important; align-items: center !important; }
.h42-cta-title { font-family: 'Cormorant Garamond', serif !important; font-size: 3.5rem !important; font-weight: 400 !important; color: #ffffff !important; margin: 0 0 1rem 0 !important; }
.h42-cta-subtitle { font-family: 'Cormorant Garamond', serif !important; font-size: 1.4rem !important; font-weight: 400 !important; font-style: italic !important; color: #b0b5b2 !important; margin: 0 0 3rem 0 !important; line-height: 1.4 !important; }
.h42-cta-btn { background-color: #b49b73 !important; border: none !important; color: #1a2e1f !important; font-size: 0.85rem !important; font-weight: 700 !important; letter-spacing: 0.1em !important; text-transform: uppercase !important; padding: 1.1rem 2.5rem !important; cursor: pointer !important; transition: background-color 0.3s ease !important; text-decoration: none !important; display: inline-block !important; }
.h42-cta-btn:hover { background-color: #d1b890 !important; }
@media (max-width: 600px) { .h42-cta-title { font-size: 2.8rem !important; } .h42-cta-subtitle { font-size: 1.2rem !important; } }
