/** Shopify CDN: Minification failed

Line 22:18 Expected identifier but found whitespace
Line 22:20 Unexpected "{"
Line 22:30 Expected ":"
Line 23:20 Expected identifier but found whitespace
Line 23:22 Unexpected "{"
Line 23:32 Expected ":"
Line 24:21 Expected identifier but found whitespace
Line 24:23 Unexpected "{"
Line 24:33 Expected ":"
Line 25:27 Expected identifier but found whitespace
... and 17 more hidden warnings

**/
/* ============================================
   FortiFem Theme — Light Rose
   ============================================ */

/* --- CSS Custom Properties --- */
:root {
  --color-primary: {{ settings.color_primary }};
  --color-secondary: {{ settings.color_secondary }};
  --color-background: {{ settings.color_background }};
  --color-background-light: {{ settings.color_background_light }};
  --color-text: {{ settings.color_text }};
  --color-text-secondary: {{ settings.color_text_secondary }};
  --color-accent-lavender: {{ settings.color_accent_lavender }};
  --color-accent-pink: {{ settings.color_accent_pink }};
  --color-accent-peach: {{ settings.color_accent_peach }};

  --font-heading: 'Poppins', sans-serif;
  --font-body: 'Nunito Sans', sans-serif;
  --font-accent: 'Oswald', sans-serif;
  --font-heading-weight: 700;

  /* Matching men's site dimensions */
  --container-width: 1200px;
  --header-height: 72px;
  --transition: 0.3s ease;

  /* Per-product accent colors */
  --accent-dream: #C4B0D6;
  --accent-femme: #E8A0A0;
  --accent-young: #f7baa5;

  /* Light Rose theme */
  --bg-dark: #fff8f8;
  --bg-card: #fef5f6;
  --bg-card-hover: #fcedef;
  --gradient-accent: #E07A9A;
  --bg-header: #7d5a6a;
  --text-color: #333;
  --text-muted: rgba(0, 0, 0, 0.5);
}

/* --- Reset & Base --- */
:where(*, *::before, *::after) {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  color: #fff;
  background-color: var(--bg-dark);
  line-height: 1.6;
}

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

a {
  color: inherit;
  text-decoration: none;
}

ul, ol {
  list-style: none;
}

:where(button) {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
}

input, textarea, select {
  font-family: inherit;
  font-size: inherit;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: var(--font-heading-weight);
  line-height: 1.2;
}

.skip-to-content {
  position: absolute;
  top: -100%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-primary);
  color: #fff;
  padding: 8px 16px;
  z-index: 9999;
  border-radius: 4px;
}

.skip-to-content:focus {
  top: 8px;
}

/* ============================================
   ANNOUNCEMENT BAR
   Desktop: all messages side by side with dividers
   Mobile: rotating slider with arrows
   ============================================ */
.announcement-bar {
  background-color: #fff;
  color: #000;
  padding: 14px 0;
  text-align: center;
  position: relative;
  z-index: 1;
  font-family: var(--font-accent);
  font-size: 0.8125rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-bottom: 1px solid #eee;
}

/* Desktop: side by side */
.announcement-bar__desktop {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 32px;
}

.announcement-bar__item {
  flex: 1;
  text-align: center;
  padding: 0 20px;
  white-space: nowrap;
}

.announcement-bar__item + .announcement-bar__item {
  border-left: 1px solid #ccc;
}

/* Mobile: slider */
.announcement-bar__mobile {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 0 20px;
}

.announcement-bar__slider {
  position: relative;
  height: 1.4em;
  overflow: hidden;
  flex: 1;
  text-align: center;
}

.announcement-bar__message {
  position: absolute;
  width: 100%;
  text-align: center;
  transform: translateY(100%);
  opacity: 0;
  transition: transform 0.5s ease, opacity 0.5s ease;
}

.announcement-bar__message.is-active {
  position: relative;
  transform: translateY(0);
  opacity: 1;
}

.announcement-bar__message.is-exiting {
  position: absolute;
  transform: translateY(-100%);
  opacity: 0;
}

.announcement-bar__arrow {
  color: #000;
  padding: 4px;
  opacity: 0.5;
  transition: opacity var(--transition);
  flex-shrink: 0;
  cursor: pointer;
}

.announcement-bar__arrow:hover {
  opacity: 1;
}

@media (max-width: 768px) {
  .announcement-bar__desktop {
    display: none;
  }

  .announcement-bar__mobile {
    display: flex;
  }
}

/* ============================================
   HEADER — matches men's site: hamburger+search left, logo center, account+cart right
   ============================================ */
.site-header {
  background-color: var(--bg-header);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
}

/* Header section wrapper gets high z-index, announcement gets lower */
.shopify-section-group-header-group .shopify-section:first-child {
  position: relative;
  z-index: 1001;
}

.shopify-section-group-header-group .shopify-section:last-child {
  position: relative;
  z-index: 1;
  padding-top: 72px;
}

.site-header--sticky {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
}

.site-header__container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 20px;
  height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-header__left {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 80px;
}

.site-header__menu-toggle {
  display: none;
  color: #fff;
  padding: 4px;
}

.site-header__logo {}

.site-header__logo img,
.site-header__logo-text,
.site-header__logo-img {
  display: block;
}

.site-header__logo-img {
  height: 48px;
  width: auto;
  opacity: 1 !important;
  filter: brightness(1.2) !important;
}

.site-header__logo {
  opacity: 1 !important;
}

/* Prevent Shopify preview bar from dimming content */
.shopify-preview-bar ~ * .site-header__logo-img,
[data-shopify] .site-header__logo-img {
  opacity: 1 !important;
  filter: brightness(1.2) !important;
}

.site-header__logo-text {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: var(--font-heading-weight);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #fff;
}

.site-header__nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.site-header__nav-link {
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 8px 0;
  position: relative;
  transition: color var(--transition);
  display: flex;
  align-items: center;
  gap: 4px;
  color: #fff;
}

.site-header__dropdown-arrow {
  transition: transform var(--transition);
}

.site-header__nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #fff;
  transition: width var(--transition);
}

.site-header__nav-link:hover::after,
.site-header__nav-link--active::after {
  width: 100%;
}

/* Dropdown */
.site-header__dropdown {
  position: relative;
}

.site-header__dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 200px;
  background-color: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all var(--transition);
  z-index: 100;
}

.site-header__dropdown:hover .site-header__dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.site-header__dropdown:hover .site-header__dropdown-arrow {
  transform: rotate(180deg);
}

.site-header__dropdown-link {
  display: block;
  padding: 8px 20px;
  font-size: 0.8125rem;
  font-weight: 500;
  color: #fff;
  transition: background-color var(--transition);
}

.site-header__dropdown-link:hover {
  background-color: rgba(255, 255, 255, 0.05);
}

.site-header__actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.site-header__action-link {
  padding: 4px;
  color: #fff;
  transition: opacity var(--transition);
  display: flex;
  align-items: center;
}

.site-header__action-link:hover {
  opacity: 0.7;
}

.site-header__cart {
  padding: 4px;
  color: #fff;
  transition: opacity var(--transition);
  display: flex;
  align-items: center;
  gap: 3px;
}

.site-header__cart:hover {
  opacity: 0.7;
}

.site-header__cart-count {
  font-size: 0.8125rem;
  font-weight: 600;
  color: #fff;
}

/* Search toggle button */
.site-header__search-toggle {
  display: flex;
  padding: 4px;
  color: #fff;
  transition: opacity var(--transition);
  align-items: center;
}

.site-header__search-toggle:hover {
  opacity: 0.7;
}

/* Mobile search on left, desktop search on right */
.site-header__search-toggle--mobile {
  display: none;
}

.site-header__search-toggle--desktop {
  display: flex;
}

@media (max-width: 990px) {
  .site-header__search-toggle--mobile {
    display: flex;
  }

  .site-header__search-toggle--desktop {
    display: none;
  }
}

/* Sign In link */
.site-header__signin {
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #fff;
  padding: 4px 0;
  transition: opacity var(--transition);
}

.site-header__signin:hover {
  opacity: 0.7;
}

.site-header__signin-wrapper {
  position: relative;
}

/* Desktop login dropdown */
.site-header__login-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  width: 280px;
  background: #fff;
  border-radius: 6px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
  z-index: 200;
  margin-top: 12px;
}

.site-header__login-dropdown.is-open {
  display: block;
}

.login-dropdown__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid #eee;
}

.login-dropdown__title {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  color: #333;
}

.login-dropdown__close {
  font-size: 1.25rem;
  color: #999;
  padding: 2px;
  line-height: 1;
  transition: color 0.2s;
}

.login-dropdown__close:hover {
  color: #333;
}

.login-dropdown__form {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.login-dropdown__field {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.login-dropdown__field label {
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #333;
}

.login-dropdown__required {
  color: #e00;
}

.login-dropdown__field input {
  padding: 10px 12px;
  border: 1px solid #ccc;
  border-radius: 3px;
  font-size: 0.8125rem;
  color: #333;
  outline: none;
}

.login-dropdown__field input:focus {
  border-color: #333;
}

.login-dropdown__field input::placeholder {
  color: #aaa;
}

.login-dropdown__submit {
  padding: 12px;
  background: #fff;
  border: 1px solid #333;
  color: #333;
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: all 0.3s;
}

.login-dropdown__submit:hover {
  background: #333;
  color: #fff;
}

.login-dropdown__forgot {
  text-align: center;
  font-size: 0.75rem;
  color: #666;
}

.login-dropdown__forgot:hover {
  color: #333;
}

.login-dropdown__create {
  display: block;
  width: 100%;
  padding: 12px;
  background: #333;
  color: #fff;
  text-align: center;
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: 3px;
  transition: background 0.3s;
}

.login-dropdown__create:hover {
  background: #000;
}

/* Account icon — mobile only (replaces SIGN IN text) */
.site-header__account-icon {
  display: none;
  padding: 4px;
  color: #fff;
  transition: opacity var(--transition);
}

.site-header__account-icon:hover {
  opacity: 0.7;
}

/* Search overlay — replaces announcement bar */
.site-search {
  display: none;
  background-color: var(--bg-header);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  padding: 10px 20px;
  position: fixed;
  top: var(--header-height);
  left: 0;
  width: 100%;
  z-index: 999;
}

.site-search.is-open {
  display: block;
}

.site-search__form {
  display: flex;
  align-items: center;
  max-width: var(--container-width);
  margin: 0 auto;
}

.site-search__input {
  flex: 1;
  padding: 8px 0;
  background: none;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  font-family: var(--font-accent);
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  outline: none;
}

.site-search__input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.site-search__submit {
  padding: 8px;
  color: rgba(255, 255, 255, 0.5);
  display: flex;
  align-items: center;
  transition: color var(--transition);
}

.site-search__submit:hover {
  color: #fff;
}

@media (max-width: 990px) {
  .site-header__signin {
    display: none;
  }

  .site-header__account-icon {
    display: flex;
    align-items: center;
  }

  .site-header__actions {
    gap: 12px;
  }
}

/* Mobile nav — white bg, dark text, matches men's site */
.site-header__mobile-nav {
  display: none;
  flex-direction: column;
  padding: 0;
  background-color: var(--bg-header);
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 999;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.site-header__mobile-nav.is-open {
  display: flex;
}

.site-header__mobile-nav-link {
  padding: 16px 24px;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  text-transform: uppercase;
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.site-header__mobile-nav-link:hover {
  background-color: rgba(255, 255, 255, 0.08);
}

.site-header__mobile-nav-link--icon {
  display: flex;
  align-items: center;
  gap: 10px;
}

.site-header__mobile-nav-link--icon svg {
  color: #fff;
}

/* Desktop: logo left, nav center, actions right — hide hamburger+search */
@media (min-width: 991px) {
  .site-header__left {
    display: none;
  }

  .site-header__container {
    gap: 32px;
  }

  .site-header__nav {
    flex: 1;
    justify-content: center;
  }
}

/* Tablet/Mobile: hamburger+search left, logo centered, actions right */
@media (max-width: 990px) {
  .site-header__menu-toggle {
    display: block;
  }

  .site-header__nav {
    display: none;
  }

  .site-header__container {
    position: relative;
  }

  .site-header__logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }
}

/* ============================================
   HERO — split layout: text left, product right
   Matches men's site: radial-gradient bg, product with badge
   ============================================ */
.hero {
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-color: var(--bg-header);
}

.hero__background {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: var(--bg-header);
  opacity: 0.75;
  z-index: 1;
}

.hero__split {
  position: relative;
  z-index: 2;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 50px 32px 120px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  width: 100%;
}

.hero__content {
  text-align: left;
}

.hero__product-name {
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #B8A0CC;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 0;
}

.hero__product-name-icon {
  flex-shrink: 0;
  margin: 0 -1px;
  filter: invert(75%) sepia(10%) saturate(1000%) hue-rotate(230deg) brightness(1);
}

.hero__heading {
  font-family: var(--font-heading);
  font-size: 2.96em;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 20px;
  line-height: 1.05;
  color: #fff;
  white-space: pre-line;
}

.hero__description {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 32px;
}

.hero__description-icon {
  flex-shrink: 0;
  margin-top: 2px;
  filter: invert(1) brightness(2);
}

.hero__text {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 420px;
  line-height: 1.6;
}

.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 20px 60px;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: 30px;
  border: 1px solid #fff;
  transition: all var(--transition);
}

.hero__button--primary {
  background-color: transparent;
  color: #fff;
  border-color: #fff;
}

.hero__button--primary:hover {
  background-color: #fff;
  color: #000;
}

/* Hero product with badge */
.hero__product {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 40px;
}

.hero__product-image {
  width: 420px;
  height: auto;
}

.hero__badge {
  position: absolute;
  top: 0;
  right: 10%;
  z-index: 3;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.3));
}

.hero__badge-svg {
  width: 80px;
  height: 80px;
}

/* Tablet — keep side by side, product right-aligned */
@media (max-width: 990px) {
  .hero__split {
    padding: 30px 20px 80px;
  }

  .hero__heading {
    font-size: 2.25rem;
  }

  .hero__product {
    justify-content: flex-end;
  }

  .hero__product-image {
    width: 350px;
  }

  .hero__button {
    padding: 16px 40px;
  }
}

/* Mobile — stack: image on top, text below */
@media (max-width: 580px) {
  .hero__split {
    grid-template-columns: 1fr;
    padding: 20px 20px 60px;
    gap: 20px;
  }

  .hero__product {
    order: -1;
    justify-content: center;
    padding-right: 10px;
    padding-left: 40px;
    margin-left: 0;
  }

  .hero__heading {
    font-size: 1.75rem;
  }

  .hero__button {
    padding: 14px 32px;
    width: 100%;
  }

  .hero__product-image {
    width: 340px;
    max-width: 90%;
  }
}

/* ============================================
   STACK & SAVE — 2-col bundle products, white background
   ============================================ */
.stack-save {
  padding: 60px 0;
  background-color: #fff;
}

.stack-save__container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 32px;
}

.stack-save__heading {
  text-align: center;
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 50px;
  color: #000;
}

.stack-save__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  max-width: 800px;
  margin: 0 auto;
  justify-items: center;
}

.stack-save__grid > *:only-child {
  grid-column: 1 / -1;
  max-width: 380px;
}

.stack-save .product-card {
  background-color: #fff;
  padding: 0;
  display: flex;
  flex-direction: column;
}

.stack-save .product-card:hover {
  box-shadow: none;
  transform: none;
}

.stack-save .product-card__link {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.stack-save .product-card__image-wrapper {
  background-color: transparent;
  border-radius: 0;
  aspect-ratio: auto;
  height: 300px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.stack-save .product-card__image {
  object-fit: contain;
  height: auto;
  max-height: 100%;
  width: auto;
  max-width: 100%;
}

.stack-save .product-card__info {
  text-align: center;
}

.stack-save .product-card:hover .product-card__image--front {
  opacity: 1;
  transform: scale(1.05);
}

.stack-save .product-card:hover .product-card__image--back {
  opacity: 0;
}

.stack-save .product-card__image--front {
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.stack-save .product-card__title {
  color: #000;
  font-size: 1.125rem;
}

.stack-save .product-card__compare-price {
  color: rgba(0, 0, 0, 0.4);
}

.stack-save .product-card__current-price {
  color: #000;
}

.stack-save .product-card__review-count {
  color: rgba(0, 0, 0, 0.4);
}

.stack-save .product-card__star--empty {
  color: rgba(0, 0, 0, 0.15);
}

.stack-save__footer {
  text-align: center;
  margin-top: 50px;
}

.stack-save__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 20px 60px;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: 30px;
  border: 1px solid #000;
  color: #000;
  background: transparent;
  transition: all 0.3s ease;
}

.stack-save__button:hover {
  background-color: #000;
  color: #fff;
}

@media (max-width: 580px) {
  .stack-save__grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .stack-save__heading {
    font-size: 2rem;
  }

  .stack-save__button {
    padding: 16px 40px;
  }
}

/* ============================================
   COLLECTION CATEGORIES — side by side cards
   Men's site: 374x337px, 10px radius, #141414 bg
   ============================================ */
.collection-categories {
  padding: 50px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.collection-categories__container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 32px;
}

.collection-categories__heading {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 50px;
  color: #fff;
}

.collection-categories__grid {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.collection-categories__card {
  position: relative;
  display: block;
  width: 374px;
  height: 337px;
  border-radius: 10px;
  overflow: hidden;
  background-color: var(--bg-card);
}

.collection-categories__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.collection-categories__card:hover .collection-categories__image {
  transform: scale(1.05);
}

.collection-categories__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.15) 100%);
}

.collection-categories__content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px;
  z-index: 1;
  text-align: center;
}

.collection-categories__title {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 4px;
  color: #fff;
}

.collection-categories__subtitle {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 990px) {
  .collection-categories__card {
    width: 100%;
    height: 280px;
  }
}

/* ============================================
   PRODUCT HIGHLIGHTS — circular letter badges (V, GF, SF, GMO)
   Matches men's site: purple circles, Oswald italic labels
   ============================================ */
.trust-badges {
  padding: 50px 0;
  background: radial-gradient(ellipse at center, var(--bg-card) 0%, var(--bg-dark) 70%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.trust-badges__container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  justify-content: center;
  gap: 80px;
  flex-wrap: wrap;
}

.trust-badges__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
}

.trust-badges__circle {
  width: 52px;
  height: 52px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.trust-badges__circle-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.trust-badges__letter {
  font-family: var(--font-accent);
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--color-accent-lavender);
  text-transform: uppercase;
}

.trust-badges__text {
  font-family: var(--font-accent);
  font-size: 1.125rem;
  font-weight: 500;
  font-style: italic;
  text-transform: uppercase;
  color: #fff;
}

@media (max-width: 768px) {
  .trust-badges__container {
    gap: 40px;
  }
}

/* ============================================
   MOST POPULAR — heading + 3-col grid
   Men's site: Poppins 3.32em heading, centered
   ============================================ */
.most-popular {
  padding: 50px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.most-popular__container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 32px;
}

.most-popular__heading {
  text-align: center;
  font-family: var(--font-heading);
  font-size: 3.32em;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 50px;
  color: #fff;
}

.most-popular__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.most-popular__footer {
  text-align: center;
  margin-top: 50px;
}

.most-popular__view-all {
  display: inline-flex;
  align-items: center;
  padding: 20px 60px;
  border: 1px solid #fff;
  color: #fff;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: 30px;
  transition: all var(--transition);
}

.most-popular__view-all:hover {
  background-color: #fff;
  color: var(--bg-dark);
}

@media (max-width: 768px) {
  .most-popular__heading {
    font-size: 2.25rem;
  }

  .most-popular__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 480px) {
  .most-popular__grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   FEATURED COLLECTION
   ============================================ */
.featured-collection {
  padding: 50px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.featured-collection__container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 32px;
}

.featured-collection__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 50px;
}

.featured-collection__heading {
  font-size: 2.5rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #fff;
}

.featured-collection__view-all {
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-accent-peach);
  transition: opacity var(--transition);
}

.featured-collection__view-all:hover {
  opacity: 0.7;
}

.featured-collection__grid {
  display: grid;
  gap: 30px;
}

.featured-collection__grid--2 { grid-template-columns: repeat(2, 1fr); }
.featured-collection__grid--3 { grid-template-columns: repeat(3, 1fr); }
.featured-collection__grid--4 { grid-template-columns: repeat(4, 1fr); }

@media (max-width: 768px) {
  .featured-collection__grid--3,
  .featured-collection__grid--4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .featured-collection__grid--2,
  .featured-collection__grid--3,
  .featured-collection__grid--4 {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   PRODUCT CARD — men's site: #141414 bg, 10px radius, 10px padding
   ============================================ */
.product-card {
  background-color: var(--bg-card);
  border-radius: 10px;
  overflow: hidden;
  padding: 10px;
  transition: transform var(--transition), box-shadow var(--transition);
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.product-card__link {
  display: block;
}

.product-card__image-wrapper {
  position: relative;
  aspect-ratio: 1;
  background-color: var(--bg-card-hover);
  border-radius: 8px;
  overflow: hidden;
}

.product-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.4s ease;
}

.product-card__image--front {
  position: relative;
  z-index: 1;
}

.product-card__image--back {
  position: absolute;
  inset: 0;
  opacity: 0;
  z-index: 2;
}

.product-card:hover .product-card__image--front {
  opacity: 0;
}

.product-card:hover .product-card__image--back {
  opacity: 1;
}

.product-card__placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-card__placeholder-svg {
  width: 60%;
  height: 60%;
  fill: rgba(255, 255, 255, 0.06);
}

.product-card__badge {
  position: absolute;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  z-index: 2;
}

.product-card__badge--sale {
  top: 12px;
  left: 0;
  background: var(--gradient-accent);
  color: #fff !important;
  padding: 6px 16px 6px 12px;
  border-radius: 0 20px 20px 0;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  line-height: 1;
  box-shadow: 0 2px 8px rgba(224, 122, 154, 0.4);
}

.product-card__badge--sold-out {
  background-color: rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.6);
}

.product-card__info {
  padding: 16px 8px 8px;
  text-align: center;
}

.product-card__title {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: #fff;
  text-transform: uppercase;
}

.product-card__reviews {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-bottom: 10px;
}

.product-card__stars {
  display: flex;
  gap: 1px;
}

.product-card__star--filled {
  color: var(--gradient-accent);
}

.product-card__star--empty {
  color: rgba(255, 255, 255, 0.2);
}

.product-card__review-count {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.4);
}

.product-card__price {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  font-size: 0.9375rem;
}

.product-card__compare-price {
  text-decoration: line-through;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.8125rem;
}

.product-card__current-price {
  font-weight: 700;
  font-size: 1.0625rem;
}

.product-card__current-price--sale {
  color: #fff;
}

/* ============================================
   PRODUCT PAGE
   ============================================ */
.product {
  padding: 50px 0;
}

.product__container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.product__gallery {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.product__main-image {
  border-radius: 10px;
  overflow: hidden;
  background-color: transparent;
  cursor: zoom-in;
}

.product__main-image img {
  width: auto;
  max-width: 100%;
  max-height: 500px;
  height: auto;
  display: block;
  margin: 0 auto;
  object-fit: contain;
}

/* PDP Lightbox */
.pdp-lightbox {
  position: fixed;
  inset: 0;
  background: #fff;
  z-index: 9999;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.pdp-lightbox.is-open {
  display: flex;
}

.pdp-lightbox__close {
  position: absolute;
  top: 16px;
  right: 20px;
  background: transparent;
  border: 0;
  font-size: 2.5rem;
  line-height: 1;
  color: #111;
  cursor: pointer;
  padding: 8px 12px;
  z-index: 2;
}

.pdp-lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.95);
  border: 1px solid rgba(0,0,0,0.12);
  box-shadow: 0 2px 10px rgba(0,0,0,0.12);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
  color: #111;
  cursor: pointer;
  padding: 0;
  z-index: 2;
  user-select: none;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s ease, transform 0.15s ease;
}

.pdp-lightbox__nav:hover {
  background: #fff;
  transform: translateY(-50%) scale(1.06);
}

.pdp-lightbox__nav--prev { left: 20px; }
.pdp-lightbox__nav--next { right: 20px; }

.pdp-lightbox__stage {
  width: 100%;
  max-width: min(90vw, 1100px);
  height: calc(100vh - 180px);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  cursor: zoom-in;
}

.pdp-lightbox__img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  user-select: none;
  -webkit-user-drag: none;
  pointer-events: none;
  will-change: transform;
}

.pdp-lightbox__stage.is-zoomed { cursor: grab; }
.pdp-lightbox__stage.is-zoomed.is-dragging { cursor: grabbing; }
.pdp-lightbox__stage.is-zoomed.is-dragging .pdp-lightbox__img {
  transition: none;
}

.pdp-lightbox__stage.is-zoomed .pdp-lightbox__img {
  transform: scale(2);
  transform-origin: center center;
}

.pdp-lightbox__hint {
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0,0,0,0.05);
  color: #555;
  font-size: 0.9rem;
  padding: 4px 12px;
  border-radius: 4px;
  pointer-events: none;
}

.pdp-lightbox__stage.is-zoomed .pdp-lightbox__hint { display: none; }

.pdp-lightbox__thumbs {
  display: flex;
  gap: 10px;
  padding: 16px;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 90vw;
}

.pdp-lightbox__thumb {
  width: 72px;
  height: 72px;
  border-radius: 6px;
  overflow: hidden;
  border: 2px solid transparent;
  background: transparent;
  padding: 0;
  cursor: pointer;
}

.pdp-lightbox__thumb.is-active { border-color: #111; }

.pdp-lightbox__thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

@media (max-width: 640px) {
  .pdp-lightbox__stage { height: calc(100vh - 160px); }
  .pdp-lightbox__nav { width: 44px; height: 44px; font-size: 1.6rem; }
  .pdp-lightbox__nav--prev { left: 10px; }
  .pdp-lightbox__nav--next { right: 10px; }
  .pdp-lightbox__thumb { width: 56px; height: 56px; }
}


.product__thumbnails {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  overflow: hidden;
}

.product__thumbnail {
  width: 72px;
  height: 72px;
  border-radius: 6px;
  overflow: hidden;
  border: 2px solid transparent;
  cursor: pointer;
  transition: border-color var(--transition);
}

.product__thumbnail.is-active,
.product__thumbnail:hover {
  border-color: #fff;
}

.product__thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product__info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.product__vendor {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-accent-peach);
}

.product__combo-label {
  font-size: 1.4rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: -14px;
}

.product__combo-label + .product__title {
  margin-top: 0 !important;
}

.product__title {
  font-size: 2.5rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #fff;
  margin-top: 0;
}

.product__price-wrapper {
  display: flex;
  align-items: center;
  gap: 16px;
}

.product__price {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
}

.product__compare-price {
  font-size: 1.125rem;
  text-decoration: line-through;
  color: rgba(255, 255, 255, 0.4);
}

.product__description-wrapper {
  position: relative;
}

.product__description {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
}

.theme-light .product__description {
  color: #444;
}

.product__description.is-collapsed {
  max-height: 220px !important;
  overflow: hidden;
  position: relative;
}

.product__description.is-collapsed::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50px;
  background: linear-gradient(to bottom, transparent, var(--bg-dark));
}

.product__description.is-expanded {
  max-height: none;
}

.product__description.is-expanded::after {
  display: none;
}

.theme-light .product__description.is-collapsed::after {
  background: linear-gradient(to bottom, transparent, var(--bg-dark));
}

.product__read-more {
  font-size: 0.8125rem;
  font-weight: 600;
  color: #B8A0CC;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 8px;
  padding: 0;
  transition: opacity 0.2s;
}

.product__read-more:hover {
  opacity: 0.7;
}

.product__form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.product__option {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.product__option select {
  padding: 12px 16px;
  background-color: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 6px;
  color: #fff;
  appearance: none;
}

.product__quantity {
  display: flex;
  align-items: center;
  gap: 8px;
}

.product__quantity-label {
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  margin-right: 16px;
  color: #fff;
}

.product__quantity-btn {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 6px;
  font-size: 1.125rem;
  color: #fff;
  transition: all var(--transition);
}

.product__quantity-btn:hover {
  border-color: #fff;
}

.product__quantity-input {
  width: 60px;
  height: 40px;
  text-align: center;
  background: none;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 6px;
  color: #fff;
  -moz-appearance: textfield;
}

.product__quantity-input::-webkit-outer-spin-button,
.product__quantity-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Add to cart — men's site: #5d6b82, 30px radius */
.product__add-to-cart {
  width: 100%;
  padding: 16px;
  background-color: #E8913A;
  color: #000;
  color: #fff;
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: 30px;
  transition: all var(--transition);
}

.product__add-to-cart:hover {
  background: #f0a04e;
  color: #fff;
}

.product__add-to-cart:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* Reviews summary on product page */
.product__reviews-summary {
  display: flex;
  align-items: center;
  gap: 8px;
}

.product__review-count {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.5);
}

/* Purchase type selector — boxed options matching men's site */
.product__purchase-type {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.product__purchase-option {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 16px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
}

.product__purchase-option--subscribe {
  border-radius: 6px 6px 0 0;
  background: rgba(255, 255, 255, 0.06);
}

.product__purchase-option--onetime {
  border-radius: 0 0 6px 6px;
  border-top: none;
}

.product__purchase-option input {
  display: none;
}

.product__purchase-check {
  width: 18px;
  height: 18px;
  border: 2px solid rgba(0, 0, 0, 0.3);
  border-radius: 3px;
  flex-shrink: 0;
  position: relative;
  margin-top: 2px;
  transition: all 0.2s;
}

.product__purchase-option input:checked + .product__purchase-check {
  background: var(--gradient-accent);
  border-color: var(--gradient-accent);
}

.product__purchase-option input:checked + .product__purchase-check::after {
  content: '✓';
  position: absolute;
  top: -1px;
  left: 2px;
  font-size: 0.75rem;
  color: #fff;
  font-weight: 700;
}

.product__purchase-details {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.product__purchase-label {
  font-size: 0.875rem;
  font-weight: 700;
  color: #fff;
}

.product__purchase-price {
  margin-left: 4px;
}

.product__purchase-price--green {
  color: #5cb85c;
}

.product__purchase-sub {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.5);
}

.product__option-label {
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 6px;
  display: block;
}

.product__guarantee {
  text-align: center;
  font-family: var(--font-accent);
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #888;
  margin-top: 2px;
}

.theme-light .product__guarantee {
  color: #999;
}

/* Trust badges on product page */
.product__trust {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-top: 20px;
  padding-bottom: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: 10px;
}

.product__trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.6);
}

.product__trust-item svg {
  color: #B8A0CC;
  flex-shrink: 0;
}

/* Trust badges row on product page */
.product__badges-row {
  background: radial-gradient(ellipse at center, var(--bg-card) 0%, var(--bg-dark) 70%);
  padding: 50px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.product__badges-container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  justify-content: center;
  gap: 80px;
  flex-wrap: wrap;
}

/* ============================================
   MARKETING SECTIONS
   ============================================ */
.mkt-container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 32px;
}

/* ------- Parallax Hero Sections ------- */
.mkt-parallax {
  position: relative;
  min-height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: scroll;
  overflow: hidden;
}

/* Desktop only: enable true parallax */
@media (min-width: 769px) {
  .mkt-parallax {
    background-attachment: fixed;
  }
}

/* Ever Young — rose-to-dark gradient with organic abstract */
.mkt-parallax--abstract-young {
  background-color: #1a1012;
  background-image:
    radial-gradient(circle 300px at 8% 40%, rgba(247,186,165,0.35) 0%, transparent 100%),
    radial-gradient(circle 220px at 20% 75%, rgba(240,168,142,0.25) 0%, transparent 100%),
    radial-gradient(circle 250px at 35% 20%, rgba(235,175,155,0.2) 0%, transparent 100%),
    radial-gradient(circle 200px at 55% 60%, rgba(180,120,80,0.18) 0%, transparent 100%),
    radial-gradient(circle 180px at 70% 25%, rgba(140,80,50,0.22) 0%, transparent 100%),
    radial-gradient(circle 250px at 80% 70%, rgba(120,65,38,0.2) 0%, transparent 100%),
    radial-gradient(circle 160px at 90% 40%, rgba(100,52,28,0.25) 0%, transparent 100%),
    radial-gradient(circle 200px at 65% 85%, rgba(130,72,45,0.18) 0%, transparent 100%),
    radial-gradient(circle 140px at 85% 10%, rgba(110,58,32,0.2) 0%, transparent 100%),
    radial-gradient(circle 200px at 75% 50%, rgba(110,55,30,0.18) 0%, transparent 100%),
    radial-gradient(circle 150px at 60% 15%, rgba(160,100,65,0.15) 0%, transparent 100%),
    conic-gradient(from 200deg at 15% 50%, rgba(247,186,165,0.18), rgba(240,168,142,0.08) 20%, transparent 40%),
    conic-gradient(from 45deg at 75% 55%, rgba(120,65,38,0.12), rgba(100,52,28,0.06) 20%, transparent 40%),
    conic-gradient(from 150deg at 90% 25%, rgba(130,72,45,0.1), rgba(110,58,32,0.05) 20%, transparent 45%),
    linear-gradient(to right, #f7baa5 0%, #d08a70 15%, #8a5040 30%, #4a2518 50%, #1a1210 70%, #111 100%);
  background-attachment: scroll !important;
}

.mkt-parallax--abstract-young .mkt-parallax__title,
.mkt-parallax--abstract-young .mkt-parallax__heading {
  color: #fff;
}

/* Ever Femme — pink-to-dark gradient with angular abstract */
.mkt-parallax--abstract-femme {
  background-color: #1a1012;
  background-image:
    radial-gradient(circle 300px at 8% 40%, rgba(232,160,160,0.35) 0%, transparent 100%),
    radial-gradient(circle 220px at 20% 75%, rgba(196,112,112,0.25) 0%, transparent 100%),
    radial-gradient(circle 250px at 35% 20%, rgba(220,140,140,0.2) 0%, transparent 100%),
    radial-gradient(circle 200px at 55% 60%, rgba(180,95,95,0.18) 0%, transparent 100%),
    radial-gradient(circle 180px at 70% 25%, rgba(150,65,65,0.22) 0%, transparent 100%),
    radial-gradient(circle 250px at 80% 70%, rgba(130,50,50,0.2) 0%, transparent 100%),
    radial-gradient(circle 160px at 90% 40%, rgba(110,38,38,0.25) 0%, transparent 100%),
    radial-gradient(circle 200px at 65% 85%, rgba(140,55,55,0.18) 0%, transparent 100%),
    radial-gradient(circle 140px at 85% 10%, rgba(120,42,42,0.2) 0%, transparent 100%),
    radial-gradient(circle 200px at 75% 50%, rgba(110,40,40,0.18) 0%, transparent 100%),
    radial-gradient(circle 150px at 60% 15%, rgba(170,75,75,0.15) 0%, transparent 100%),
    conic-gradient(from 200deg at 15% 50%, rgba(232,160,160,0.18), rgba(196,112,112,0.08) 20%, transparent 40%),
    conic-gradient(from 45deg at 75% 55%, rgba(130,50,50,0.12), rgba(110,38,38,0.06) 20%, transparent 40%),
    conic-gradient(from 150deg at 90% 25%, rgba(140,55,55,0.1), rgba(120,42,42,0.05) 20%, transparent 45%),
    linear-gradient(to right, #e8a0a0 0%, #c47070 15%, #7a3838 30%, #3e1818 50%, #1a1012 70%, #111 100%);
  background-attachment: scroll !important;
}

.mkt-parallax--abstract-femme .mkt-parallax__title,
.mkt-parallax--abstract-femme .mkt-parallax__heading {
  color: #fff;
}

.mkt-parallax--abstract-femme .mkt-gradient-text {
  background: linear-gradient(135deg, #f8abae, #f8abae);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.mkt-parallax--abstract-young::before,
.mkt-parallax--abstract-femme::before {
  display: none;
}

@media (max-width: 768px) {
  .mkt-parallax--abstract-young {
    background-image:
      linear-gradient(155deg, rgba(247,186,165,0.3) 0%, transparent 25%),
      linear-gradient(140deg, rgba(240,168,142,0.2) 5%, transparent 30%),
      linear-gradient(160deg, rgba(200,130,90,0.15) 10%, transparent 35%),
      linear-gradient(145deg, rgba(160,90,55,0.12) 15%, transparent 40%),
      linear-gradient(135deg, rgba(120,65,38,0.15) 30%, transparent 55%),
      linear-gradient(150deg, rgba(100,52,28,0.12) 40%, transparent 65%),
      linear-gradient(140deg, rgba(110,58,32,0.1) 50%, transparent 75%),
      linear-gradient(145deg, #f7baa5 0%, #c07855 12%, #7a4530 25%, #3a2010 40%, #1a1210 55%, #111 100%);
  }
  .mkt-parallax--abstract-femme {
    background-image:
      linear-gradient(155deg, rgba(232,160,160,0.3) 0%, transparent 25%),
      linear-gradient(140deg, rgba(196,112,112,0.2) 5%, transparent 30%),
      linear-gradient(160deg, rgba(180,95,95,0.15) 10%, transparent 35%),
      linear-gradient(145deg, rgba(150,65,65,0.12) 15%, transparent 40%),
      linear-gradient(135deg, rgba(130,50,50,0.15) 30%, transparent 55%),
      linear-gradient(150deg, rgba(110,38,38,0.12) 40%, transparent 65%),
      linear-gradient(140deg, rgba(120,42,42,0.1) 50%, transparent 75%),
      linear-gradient(145deg, #e8a0a0 0%, #b06060 12%, #7a3838 25%, #3e1818 40%, #1a1012 55%, #111 100%);
  }
}

.mkt-parallax::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--bg-header);
  opacity: 0.35;
  z-index: 1;
}

.mkt-parallax__content,
.mkt-parallax__inner {
  position: relative;
  z-index: 2;
  max-width: 1000px;
  padding: 60px 32px;
}

.mkt-parallax__heading,
.mkt-parallax__title {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #fff;
  margin-bottom: 16px;
  line-height: 1.15;
}

.mkt-parallax__subtext {
  font-family: var(--font-body);
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto;
}

.mkt-ingredients-section {
  padding: 80px 0 20px !important;
  background-color: var(--bg-card);
}

/* Pitch Black style ingredients — v2 */
.mkt-ingredients__intro-split {
  display: flex;
  align-items: center;
  gap: 48px;
  margin-bottom: 48px;
}

.mkt-ingredients__intro-image {
  flex: 0 0 420px;
  text-align: center;
}

.mkt-ingredients__intro-image img {
  max-width: 400px;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 12px 24px rgba(0, 0, 0, 0.1));
}

.mkt-ingredients__intro-text {
  flex: 1;
}

.mkt-ingredients__intro-text .mkt-features__title {
  text-align: left;
}

.mkt-ingredients__intro-text .mkt-features__subtitle {
  text-align: left;
}

.mkt-ingredients__intro-text p {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.75;
  color: #444;
  margin-bottom: 14px;
}

.mkt-ingredients__intro-text .mkt-features__callout {
  text-align: left;
  margin-top: 24px;
}

/* V2 ingredient cards — image left, card right (matches intro-split proportions) */
.mkt-ingredient--v2 {
  display: flex;
  align-items: center;
  gap: 48px;
  width: 100%;
  max-width: 100%;
  margin: 0 auto 48px;
  text-align: left;
}

.mkt-ingredient__float-img {
  flex: 0 0 420px;
  text-align: center;
}

.mkt-ingredient__float-img img {
  max-width: 380px;
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 0;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.08));
}

.mkt-ingredient--v2 .mkt-ingredient__card {
  flex: 1;
  border-radius: 16px;
  border: 2px solid var(--gradient-accent);
  border-top: 2px solid var(--gradient-accent);
  padding: 32px 36px;
  text-align: left;
}

.mkt-ingredient--v2 .mkt-ingredient__benefit {
  text-align: left;
}

.mkt-ingredient--v2 .mkt-ingredient__name {
  text-align: left;
  color: #555 !important;
}

.mkt-ingredient--v2 .mkt-ingredient__divider {
  background: #ddd !important;
  opacity: 1;
}

.mkt-ingredient--v2 .mkt-ingredient__divider {
  margin: 0 0 16px;
  max-width: none;
  background: var(--gradient-accent);
  opacity: 0.4;
}

.mkt-ingredient--v2 .mkt-ingredient__body p {
  text-align: left;
}

@media (max-width: 768px) {
  .mkt-ingredients__intro-split {
    flex-direction: column;
    gap: 24px;
  }
  .mkt-ingredients__intro-image {
    flex: none;
  }
  .mkt-ingredients__intro-text .mkt-features__title,
  .mkt-ingredients__intro-text .mkt-features__subtitle {
    text-align: center;
  }
  .mkt-ingredient--v2 {
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }
  .mkt-ingredient__float-img {
    flex: none;
    width: 100%;
    text-align: center;
  }
  .mkt-ingredient__float-img img {
    max-width: 60%;
    width: 60%;
    display: block;
    margin: 0 auto;
  }
  .mkt-ingredient--v2 .mkt-ingredient__card {
    padding: 32px 24px;
    width: 100%;
  }
}

/* ------- Subtle Abstract Decorations ------- */
.mkt-story,
.mkt-cta,
.mkt-trust,
.mkt-howto,
.mkt-ingredients-section {
  position: relative;
  overflow: hidden;
}

/* ===== Floating parallax dots ===== */
#mkt-floating-dots {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.mkt-float-dot {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  will-change: transform;
  transition: transform 0.1s linear;
}

/* ===== Abstract decorations — rings, dots, radial glows ===== */

/* --- Story sections (white bg) --- */
.mkt-story {
  background-image:
    radial-gradient(circle at 90% 20%, rgba(224, 122, 154, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 5% 75%, rgba(224, 122, 154, 0.08) 0%, transparent 45%);
}
.mkt-story::before {
  content: '';
  position: absolute;
  top: 40px;
  right: 60px;
  width: 140px;
  height: 140px;
  border: 2px solid rgba(224, 122, 154, 0.15);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}
.mkt-story::after {
  content: '';
  position: absolute;
  bottom: 50px;
  left: 40px;
  width: 80px;
  height: 80px;
  border: 2px solid rgba(224, 122, 154, 0.1);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

/* --- Story alt / tinted sections --- */
.mkt-story--alt {
  background-image:
    radial-gradient(circle at 80% 10%, rgba(224, 122, 154, 0.12) 0%, transparent 50%),
    radial-gradient(circle at 15% 85%, rgba(224, 122, 154, 0.1) 0%, transparent 45%),
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.3) 0%, transparent 60%);
}
.mkt-story--alt::before {
  content: '';
  position: absolute;
  top: 50px;
  right: 70px;
  width: 120px;
  height: 120px;
  border: 2px solid rgba(224, 122, 154, 0.14);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}
.mkt-story--alt::after {
  content: '';
  position: absolute;
  bottom: 40px;
  left: 50px;
  width: 90px;
  height: 90px;
  border: 2px solid rgba(224, 122, 154, 0.1);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

/* --- CTA sections --- */
.mkt-cta {
  background-image:
    radial-gradient(circle at 15% 30%, rgba(224, 122, 154, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 85% 70%, rgba(224, 122, 154, 0.08) 0%, transparent 45%);
}
.mkt-cta::before {
  content: '';
  position: absolute;
  top: 30px;
  left: 50px;
  width: 100px;
  height: 100px;
  border: 2px solid rgba(224, 122, 154, 0.12);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}
.mkt-cta::after {
  content: '';
  position: absolute;
  bottom: 20px;
  right: 60px;
  width: 150px;
  height: 150px;
  border: 2px solid rgba(224, 122, 154, 0.08);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

/* --- Trust section --- */
.mkt-trust {
  background-image:
    radial-gradient(circle at 10% 20%, rgba(224, 122, 154, 0.12) 0%, transparent 50%),
    radial-gradient(circle at 90% 80%, rgba(224, 122, 154, 0.1) 0%, transparent 45%),
    radial-gradient(circle at 50% 40%, rgba(255, 255, 255, 0.25) 0%, transparent 55%);
}
.mkt-trust::before {
  content: '';
  position: absolute;
  top: 30px;
  right: 80px;
  width: 180px;
  height: 180px;
  border: 2px solid rgba(224, 122, 154, 0.12);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}
.mkt-trust::after {
  content: '';
  position: absolute;
  bottom: 40px;
  left: 60px;
  width: 110px;
  height: 110px;
  border: 2px solid rgba(224, 122, 154, 0.09);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

/* --- Ingredients section (long section — extra decorations) --- */
.mkt-ingredients-section {
  background-image:
    radial-gradient(circle at 85% 8%, rgba(224, 122, 154, 0.12) 0%, transparent 50%),
    radial-gradient(circle at 10% 25%, rgba(224, 122, 154, 0.08) 0%, transparent 40%),
    radial-gradient(circle at 90% 45%, rgba(224, 122, 154, 0.1) 0%, transparent 45%),
    radial-gradient(circle at 5% 60%, rgba(224, 122, 154, 0.07) 0%, transparent 40%),
    radial-gradient(circle at 80% 75%, rgba(224, 122, 154, 0.09) 0%, transparent 45%),
    radial-gradient(circle at 15% 90%, rgba(224, 122, 154, 0.1) 0%, transparent 40%),
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.2) 0%, transparent 55%);
}
.mkt-ingredients-section::before {
  content: '';
  position: absolute;
  top: 80px;
  right: 40px;
  width: 160px;
  height: 160px;
  border: 2px solid rgba(224, 122, 154, 0.13);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  box-shadow:
    -200px 400px 0 0 transparent,
    -200px 400px 0 60px rgba(224, 122, 154, 0.0),
    0px 0px 0 0 transparent;
}
.mkt-ingredients-section::after {
  content: '';
  position: absolute;
  bottom: 60px;
  left: 30px;
  width: 100px;
  height: 100px;
  border: 2px solid rgba(224, 122, 154, 0.1);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

/* Extra rings and dots scattered through long ingredient sections */
.mkt-ingredient:nth-child(odd)::before {
  content: '';
  position: absolute;
  top: -20px;
  right: -30px;
  width: 80px;
  height: 80px;
  border: 2px solid rgba(224, 122, 154, 0.1);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.mkt-ingredient:nth-child(even)::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: -25px;
  width: 60px;
  height: 60px;
  border: 2px solid rgba(224, 122, 154, 0.08);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.mkt-ingredient:nth-child(3n)::before {
  content: '';
  position: absolute;
  top: 30px;
  left: -40px;
  width: 10px;
  height: 10px;
  background: rgba(224, 122, 154, 0.15);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  box-shadow:
    20px -15px 0 4px rgba(224, 122, 154, 0.08),
    -10px 30px 0 6px rgba(224, 122, 154, 0.06);
}

.mkt-ingredient {
  position: relative;
}

/* --- How To Use section --- */
.mkt-howto {
  background-image:
    radial-gradient(circle at 80% 25%, rgba(224, 122, 154, 0.11) 0%, transparent 50%),
    radial-gradient(circle at 15% 70%, rgba(224, 122, 154, 0.09) 0%, transparent 45%);
}
.mkt-howto::before {
  content: '';
  position: absolute;
  top: 50px;
  right: 50px;
  width: 130px;
  height: 130px;
  border: 2px solid rgba(224, 122, 154, 0.14);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}
.mkt-howto::after {
  content: '';
  position: absolute;
  bottom: 30px;
  left: 40px;
  width: 90px;
  height: 90px;
  border: 2px solid rgba(224, 122, 154, 0.1);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

/* --- FAQ section (long — extra decorations) --- */
.mkt-faq {
  position: relative;
  overflow: hidden;
  background-image:
    radial-gradient(circle at 90% 15%, rgba(224, 122, 154, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 5% 35%, rgba(224, 122, 154, 0.07) 0%, transparent 40%),
    radial-gradient(circle at 85% 55%, rgba(224, 122, 154, 0.08) 0%, transparent 45%),
    radial-gradient(circle at 10% 75%, rgba(224, 122, 154, 0.09) 0%, transparent 40%),
    radial-gradient(circle at 80% 90%, rgba(224, 122, 154, 0.07) 0%, transparent 45%);
}
.mkt-faq::before {
  content: '';
  position: absolute;
  top: 40px;
  right: 70px;
  width: 120px;
  height: 120px;
  border: 2px solid rgba(224, 122, 154, 0.12);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}
.mkt-faq::after {
  content: '';
  position: absolute;
  bottom: 50px;
  left: 50px;
  width: 80px;
  height: 80px;
  border: 2px solid rgba(224, 122, 154, 0.09);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

/* Rings on individual FAQ items */
.mkt-faq__list details:nth-child(odd) {
  position: relative;
}
.mkt-faq__list details:nth-child(3n)::after {
  content: '';
  position: absolute;
  top: 10px;
  right: -20px;
  width: 50px;
  height: 50px;
  border: 2px solid rgba(224, 122, 154, 0.08);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

/* --- Reviews section --- */
.mkt-reviews {
  position: relative;
  overflow: hidden;
  background-image:
    radial-gradient(circle at 85% 20%, rgba(224, 122, 154, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 10% 75%, rgba(224, 122, 154, 0.08) 0%, transparent 45%);
}
.mkt-reviews::before {
  content: '';
  position: absolute;
  top: 30px;
  right: 80px;
  width: 140px;
  height: 140px;
  border: 2px solid rgba(224, 122, 154, 0.12);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}
.mkt-reviews::after {
  content: '';
  position: absolute;
  bottom: 40px;
  left: 60px;
  width: 100px;
  height: 100px;
  border: 2px solid rgba(224, 122, 154, 0.08);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

/* --- Scattered dots on all decorated sections via container pseudo --- */
.mkt-story .mkt-container,
.mkt-cta .mkt-container,
.mkt-trust .mkt-container,
.mkt-howto .mkt-container,
.mkt-ingredients-section .mkt-container,
.mkt-faq .mkt-container,
.mkt-reviews .mkt-container {
  position: relative;
  z-index: 1;
}

.mkt-story .mkt-container::before,
.mkt-trust .mkt-container::before,
.mkt-ingredients-section .mkt-container::before,
.mkt-howto .mkt-container::before {
  content: '';
  position: absolute;
  top: 80px;
  right: 100px;
  width: 10px;
  height: 10px;
  background: rgba(224, 122, 154, 0.18);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  box-shadow:
    -50px 40px 0 5px rgba(224, 122, 154, 0.08),
    70px -30px 0 3px rgba(224, 122, 154, 0.12),
    -90px -50px 0 7px rgba(224, 122, 154, 0.06),
    130px 90px 0 4px rgba(224, 122, 154, 0.1);
}

.mkt-story .mkt-container,
.mkt-cta .mkt-container,
.mkt-trust .mkt-container,
.mkt-howto .mkt-container,
.mkt-ingredients-section .mkt-container {
  position: relative;
  z-index: 1;
}

/* ------- Story Sections ------- */
.mkt-story {
  padding: 80px 0;
  background: #fff;
}

.mkt-story--alt {
  background: var(--bg-card);
}

.mkt-story--split .mkt-container {
  display: flex;
  gap: 48px;
  align-items: center;
}

.mkt-story--split .mkt-story__media {
  flex: 0 0 45%;
  max-width: 45%;
}

.mkt-story--split .mkt-story__media img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  object-fit: cover;
}

.mkt-story--split .mkt-story__body {
  flex: 1;
}

.mkt-story--reverse .mkt-container {
  flex-direction: row-reverse;
}

/* Button hover scale — all buttons grow slightly */
.hero__button:hover,
.most-popular__view-all:hover,
.stack-save__button:hover,
.product__add-to-cart:hover,
.product__order-button:hover,
.mkt-cta__button:hover,
.mkt-faq__order-btn:hover,
.cart-drawer__checkout:hover,
.mission__button:hover {
  transform: scale(1.03);
}

.mkt-story__float-image {
  float: right;
  width: 45%;
  max-width: 400px;
  margin: 0 0 20px 32px;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.mkt-story__float-image--right {
  float: right;
  margin: 0 0 20px 32px;
}

.mkt-story__float-image--left {
  float: left;
  margin: 0 32px 20px 0;
}

@media (max-width: 768px) {
  .mkt-story__float-image {
    float: none;
    width: 100%;
    max-width: 100%;
    margin: 0 0 24px 0;
  }
}

.mkt-story--tinted {
  background: #f9f0f0;
  background-image:
    radial-gradient(circle at 85% 15%, rgba(224, 122, 154, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 10% 80%, rgba(224, 122, 154, 0.08) 0%, transparent 45%),
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.3) 0%, transparent 60%);
}

.mkt-story--tinted::before {
  content: '';
  position: absolute;
  top: 60px;
  right: 50px;
  width: 160px;
  height: 160px;
  border: 2px solid rgba(224, 122, 154, 0.15);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.mkt-story--tinted::after {
  content: '';
  position: absolute;
  bottom: 80px;
  left: 30px;
  width: 100px;
  height: 100px;
  border: 2px solid rgba(224, 122, 154, 0.1);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

/* Small decorative dots */
.mkt-story--tinted .mkt-container::before {
  content: '';
  position: absolute;
  top: 120px;
  right: 120px;
  width: 12px;
  height: 12px;
  background: rgba(224, 122, 154, 0.2);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  box-shadow:
    -40px 30px 0 6px rgba(224, 122, 154, 0.08),
    60px -20px 0 4px rgba(224, 122, 154, 0.12),
    -80px -60px 0 8px rgba(224, 122, 154, 0.06),
    120px 80px 0 5px rgba(224, 122, 154, 0.1);
}

.mkt-story--tinted .mkt-container {
  position: relative;
  z-index: 1;
}

/* Extra mid-section ring for long tinted stories */
.mkt-story--tinted .mkt-story__body::before {
  content: '';
  position: absolute;
  top: 50%;
  right: -50px;
  width: 100px;
  height: 100px;
  border: 2px solid rgba(224, 122, 154, 0.1);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.mkt-story--tinted .mkt-story__body::after {
  content: '';
  position: absolute;
  top: 30%;
  left: -40px;
  width: 8px;
  height: 8px;
  background: rgba(224, 122, 154, 0.15);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  box-shadow:
    30px 60px 0 5px rgba(224, 122, 154, 0.07),
    -15px 120px 0 3px rgba(224, 122, 154, 0.1),
    50px 200px 0 6px rgba(224, 122, 154, 0.06);
}

.mkt-story--tinted .mkt-story__body {
  position: relative;
}

.mkt-story__body p {
  margin-bottom: 20px;
  color: #444;
}

.mkt-story__body--spaced p {
  margin-bottom: 20px;
}

.mkt-features__callout {
  text-align: center;
  font-family: var(--font-heading);
  font-size: 1.2rem;
  margin-top: 40px;
  margin-bottom: 32px;
  color: #222;
}

.mkt-features__callout strong {
  color: #222 !important;
  background: none !important;
}

/* Per-product accent color overrides */
.product--ever-dream .mkt-gradient-text {
  background: linear-gradient(135deg, var(--accent-dream), #a990c0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.product--ever-dream .mkt-bold-letter {
  color: var(--accent-dream) !important;
}

.product--ever-dream .mkt-ingredient__name,
.product--ever-dream .mkt-pillar h4 {
  color: var(--accent-dream);
}

.product--ever-dream .mkt-ingredient__divider {
  background: linear-gradient(90deg, transparent, var(--accent-dream), transparent);
}

.product--ever-dream .mkt-ingredient__card {
  border-color: var(--accent-dream);
}

.product--ever-dream .formulas__icon {
  border-color: var(--accent-dream);
  color: var(--accent-dream);
}

.product--ever-dream .formulas__icon:hover {
  background: var(--accent-dream);
}

.product--ever-dream .mkt-ingredient--v2 .mkt-ingredient__card {
  border-color: var(--accent-dream);
}

.product--ever-dream .mkt-ingredient--v2 .mkt-ingredient__divider {
  background: var(--accent-dream);
}

.product--ever-young .mkt-gradient-text {
  background: linear-gradient(135deg, #f7baa5, #f0a88e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.product--ever-young .mkt-story .mkt-gradient-text,
.product--ever-young .mkt-story--tinted .mkt-gradient-text {
  background: linear-gradient(135deg, #d4856d, #b86b50);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.product--ever-young .mkt-bold-letter {
  color: #f7baa5 !important;
}

.product--ever-young .mkt-ingredient__name,
.product--ever-young .mkt-pillar h4 {
  color: var(--accent-young);
}

.product--ever-young .mkt-ingredient__divider {
  background: linear-gradient(90deg, transparent, var(--accent-young), transparent);
}

.product--ever-young .mkt-ingredient--v2 .mkt-ingredient__divider {
  background: var(--accent-young);
}

.product--ever-young .mkt-ingredient__card {
  border-color: var(--accent-young);
}

.product--ever-young .formulas__icon {
  border-color: var(--accent-young);
  color: var(--accent-young);
}

.product--ever-young .formulas__icon:hover {
  background: var(--accent-young);
}

.mkt-story__text {
  flex: 1;
}

.mkt-story__text p {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.8;
  color: #444;
  margin-bottom: 14px;
}

.mkt-story__text strong {
  color: #000;
  font-weight: 700;
}

.mkt-story__image {
  flex: 0 0 400px;
}

.mkt-story__image img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.mkt-story__heading {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 24px;
  color: #222;
  letter-spacing: 0.02em;
}

.mkt-story__content {
  max-width: 900px;
  margin: 0 auto;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.85;
  color: #444;
}

.mkt-story__content p {
  margin-bottom: 16px;
  color: #444;
}

.mkt-story__content strong {
  color: #000;
  font-weight: 700;
}

/* All bold text in marketing sections */
.mkt-howto strong,
.mkt-faq strong,
.mkt-features__intro strong,
.mkt-story__body strong,
.mkt-story__text strong,
.mkt-story__content strong {
  color: #000;
  font-size: 1.05em;
}

.mkt-story__text strong,
.mkt-story__content strong {
  font-size: 1.1em;
}

/* Letter-by-letter zoom animation */
.mkt-bold-word {
  display: inline-block;
  white-space: nowrap;
}

.mkt-bold-letter {
  display: inline-block;
  opacity: 0;
  transform: scale(0);
  transition: opacity 0.3s ease, transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  color: var(--gradient-accent) !important;
  font-weight: 900;
}

.mkt-bold-letter.is-space {
  width: 0.3em;
  opacity: 1;
  transform: scale(1);
}

.mkt-bold-letter.mkt-bold-pop {
  opacity: 1;
  transform: scale(1);
}

/* Bold text in marketing sections — plain black bold */
.mkt-story strong,
.mkt-story__content strong,
.mkt-story__text strong,
.mkt-story__body strong,
.mkt-howto strong,
.mkt-faq strong {
  background-color: transparent;
  padding: 0;
  border-radius: 0;
  box-decoration-break: initial;
  -webkit-box-decoration-break: initial;
  line-height: inherit;
  color: #000;
}

.mkt-ingredient__body strong,
.mkt-ingredient--v2 .mkt-ingredient__body strong,
.mkt-ingredient__card .mkt-ingredient__body strong,
.mkt-ingredients-section .mkt-ingredient__body strong {
  color: #333 !important;
  background: none !important;
  background-color: transparent !important;
  padding: 0 !important;
  font-weight: 700;
  font-size: inherit !important;
  line-height: inherit;
}

.product--ever-dream .mkt-story strong,
.product--ever-dream .mkt-story__content strong,
.product--ever-dream .mkt-story__text strong,
.product--ever-dream .mkt-story__body strong {
  background-color: transparent;
  color: #000;
}

.product--ever-femme .mkt-gradient-text {
  background: linear-gradient(135deg, var(--accent-femme), #c47070);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.product--ever-femme .mkt-bold-letter {
  color: var(--accent-femme) !important;
}

.product--ever-femme .mkt-ingredient__name,
.product--ever-femme .mkt-pillar h4 {
  color: var(--accent-femme);
}

.product--ever-femme .mkt-ingredient__divider {
  background: linear-gradient(90deg, transparent, var(--accent-femme), transparent);
}

.product--ever-femme .mkt-ingredient--v2 .mkt-ingredient__divider {
  background: var(--accent-femme);
}

.product--ever-femme .mkt-ingredient__card {
  border-color: var(--accent-femme);
}

.product--ever-femme .formulas__icon {
  border-color: var(--accent-femme);
  color: var(--accent-femme);
}

.product--ever-femme .formulas__icon:hover {
  background: var(--accent-femme);
}

.product--ever-femme .mkt-testimonials__heading { color: var(--accent-femme); }
.product--ever-femme .mkt-testimonials__card { border-color: var(--accent-femme); }
.product--ever-femme .mkt-testimonials__stars { color: var(--accent-femme); }
.product--ever-femme .mkt-testimonials__verified { color: var(--accent-femme); }

.product--ever-femme .mkt-reviews__bar-fill { background: var(--accent-femme); }
.product--ever-femme .mkt-reviews__bar-stars { color: var(--accent-femme); }
.product--ever-femme .mkt-reviews__summary-stars,
.product--ever-femme .mkt-reviews__item-stars { color: var(--accent-femme); }

.product--ever-femme .mkt-story strong,
.product--ever-femme .mkt-story__content strong,
.product--ever-femme .mkt-story__text strong,
.product--ever-femme .mkt-story__body strong {
  background-color: transparent;
  color: #000;
}

.product--ever-young .mkt-story strong,
.product--ever-young .mkt-story__content strong,
.product--ever-young .mkt-story__text strong,
.product--ever-young .mkt-story__body strong {
  background-color: transparent;
  color: #000 !important;
}

.mkt-story__content ul {
  list-style: none;
  padding: 0;
  margin: 16px 0;
}

.mkt-story__content ul li {
  padding: 6px 0 6px 24px;
  position: relative;
  color: #444;
}

.mkt-story__content ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 14px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gradient-accent);
}

/* ------- Feature / Ingredient Cards ------- */
.mkt-features {
  padding: 80px 0;
  background: var(--bg-card);
}

.mkt-features__title {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 8px;
  color: #222;
  letter-spacing: 0.02em;
}

.mkt-features__subtitle {
  text-align: center;
  font-family: var(--font-body);
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 16px;
  font-style: italic;
}

.mkt-features__intro {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 48px;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.75;
  color: #555;
}

.mkt-features__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.mkt-features__card {
  background: #fff;
  border-radius: 20px;
  padding: 32px;
  border: 2px solid var(--gradient-accent);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mkt-features__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(224, 122, 154, 0.15);
}

.mkt-features__card--full {
  grid-column: 1 / -1;
  max-width: 55%;
  justify-self: center;
}

.mkt-features__card-icon {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 2px solid var(--gradient-accent);
  background: var(--bg-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 28px 0 28px 28px;
  color: var(--gradient-accent);
  font-size: 1.25rem;
  transition: background 0.3s ease, color 0.3s ease;
}

.mkt-features__card:hover .mkt-features__card-icon {
  background: var(--gradient-accent);
  color: #fff;
}

.mkt-features__card-text {
  flex: 1;
  padding: 28px 28px 28px 20px;
}

.mkt-features__card-label {
  font-family: var(--font-accent);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gradient-accent);
  margin-bottom: 6px;
}

.mkt-features__card-title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 10px;
}

.mkt-features__card-body {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  line-height: 1.7;
  color: #555;
}

.mkt-features__card-body p {
  margin-bottom: 10px;
  color: #555;
}

/* Ingredient blocks — full-width stacked with image above */
.mkt-ingredients {
  padding: 80px 0;
  background: #fff;
  background-image: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 40px,
    rgba(224, 122, 154, 0.03) 40px,
    rgba(224, 122, 154, 0.03) 80px
  );
}

.mkt-ingredients__heading {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  text-transform: uppercase;
  text-align: center;
  color: #222;
  margin-bottom: 8px;
}

.mkt-ingredients__subtitle {
  text-align: center;
  font-size: 1.1rem;
  color: #666;
  font-style: italic;
  margin-bottom: 16px;
}

.mkt-ingredients__intro {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 48px;
  font-size: 1rem;
  line-height: 1.7;
  color: #555;
}

.mkt-ingredient {
  max-width: 700px;
  margin: 0 auto 48px;
  text-align: center;
}

.mkt-ingredient.mkt-ingredient--v2 {
  max-width: 100%;
  text-align: left;
}

.mkt-ingredient__image {
  text-align: center;
  margin-bottom: 0;
}

.mkt-ingredient__image img {
  width: 100%;
  max-width: 700px;
  height: 280px;
  object-fit: cover;
  border-radius: 16px 16px 0 0;
  display: block;
  margin: 0 auto;
}

.mkt-ingredient__image--inline {
  float: left;
  margin: 4px 24px 16px 0;
  position: static;
  z-index: auto;
}

.mkt-ingredient__image--inline img {
  max-width: 300px;
  max-height: 400px;
  width: auto;
  border-radius: 12px;
}

/* Full rounded corners when no image above card (inline images) */
.mkt-ingredient__card:only-child {
  border-radius: 16px;
  border-top: 2px solid var(--gradient-accent);
}

.mkt-ingredient__card {
  background: #fff;
  border: 2px solid var(--gradient-accent);
  border-top: none;
  border-radius: 0 0 16px 16px;
  padding: 32px 36px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mkt-ingredient__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(224, 122, 154, 0.15);
}

.mkt-ingredient__benefit {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: #222;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}

.mkt-ingredient__name {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--gradient-accent);
  margin-bottom: 12px;
}

.mkt-ingredient__divider {
  border: none;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gradient-accent), transparent);
  margin: 0 auto 20px;
  max-width: 120px;
}

/* Full-width divider variant (Ever Dream style) */
.mkt-ingredient__divider--full {
  max-width: none;
  background: var(--gradient-accent);
  opacity: 0.3;
  margin: 0 0 16px;
}

.mkt-ingredient__body {
  font-size: 0.9375rem;
  line-height: 1.8;
  color: #555;
}

.mkt-ingredient__body p {
  margin-bottom: 12px;
  text-align: left;
  color: #555;
}

/* ------- Pillar Cards (3-column highlight) ------- */
.mkt-pillars {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  margin: 32px auto;
  max-width: 900px;
}

.mkt-pillar {
  flex: 0 1 260px;
  background: #fff;
  border-radius: 16px;
  padding: 28px 20px;
  text-align: center;
  border: 1px solid rgba(224, 122, 154, 0.2);
  box-shadow: 0 4px 16px rgba(224, 122, 154, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.mkt-pillar:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(224, 122, 154, 0.14);
}

.mkt-pillar__icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gradient-accent), #f4a6be);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  color: #fff;
}

.mkt-pillar h4 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--gradient-accent);
  color: #222;
  margin-bottom: 8px;
}

.mkt-pillar p {
  font-family: var(--font-body);
  font-size: 0.875rem;
  line-height: 1.6;
  color: #666;
  margin: 0;
}

@media (max-width: 768px) {
  .mkt-pillars {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

/* Gradient emphasized text */
.mkt-gradient-text {
  background: linear-gradient(135deg, var(--gradient-accent), #c4547a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* How To Use with product image */
.mkt-howto__product-image {
  text-align: center;
  margin: 32px auto;
  display: flex;
  justify-content: center;
}

.mkt-howto__product-image img {
  max-width: 300px;
  width: 60%;
  height: auto;
  filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.1));
}

.mkt-howto__split {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-direction: row-reverse;
}

.mkt-howto__split .mkt-howto__product-image {
  flex: 0 0 450px;
  margin: 0;
}

.mkt-howto__split .mkt-howto__product-image img {
  width: 100%;
  max-width: 450px;
}

.mkt-howto__split .mkt-howto__text {
  flex: 1;
}

@media (max-width: 768px) {
  .mkt-howto__product-image img {
    width: 70%;
    max-width: 280px;
  }

  .mkt-howto__split {
    flex-direction: column;
  }

  .mkt-howto__split .mkt-howto__product-image {
    flex: none;
  }
}

/* ------- CTA Blocks ------- */
.mkt-cta {
  padding: 20px 0;
  background: transparent;
  text-align: center;
}

.mkt-cta--alt {
  background: var(--bg-card);
}

.mkt-cta--overlay {
  position: relative;
  z-index: 2;
  background: transparent;
}

.mkt-cta__stars {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gradient-accent);
  gap: 3px;
  margin-bottom: 20px;
}

.mkt-cta__stars svg {
  width: 22px;
  height: 22px;
}

.mkt-cta__heading {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 20px;
  color: #222;
}

.mkt-cta--overlay .mkt-cta__heading {
  color: #fff;
}

.mkt-cta__button {
  display: inline-block;
  width: 100%;
  max-width: 500px;
  padding: 18px 40px;
  background: #E8913A;
  color: #000;
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 30px;
  border: none;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.3s ease, color 0.3s ease, transform 0.2s ease;
}

.mkt-cta__button:hover {
  background: #f0a04e;
  color: #fff;
  transform: scale(1.02);
}

.mkt-cta__guarantee {
  margin-top: 14px;
  font-family: var(--font-body);
  font-size: 0.8125rem;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.mkt-cta--overlay .mkt-cta__guarantee {
  color: rgba(255, 255, 255, 0.65);
}

.mkt-cta__product-image {
  margin-bottom: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.mkt-cta__product-image img {
  width: 70%;
  max-width: 600px;
  height: auto;
  object-fit: contain;
  display: block;
  margin: 0 auto;
}

/* ------- Trust Section ------- */
.mkt-trust {
  padding: 80px 0;
  background: var(--bg-dark);
}

.mkt-trust__heading {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 4px;
  color: #222;
}

.mkt-trust__subtitle {
  text-align: center;
  font-family: var(--font-body);
  font-size: 1.05rem;
  color: #666;
  margin-bottom: 48px;
  font-style: italic;
}

.mkt-trust__cta {
  text-align: center;
  margin-top: 40px;
}

.mkt-trust__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.mkt-trust__item {
  text-align: center;
  padding: 28px 20px;
  transition: transform 0.3s ease;
}

.mkt-trust__item:hover {
  transform: translateY(-3px);
}

.mkt-trust__icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 2px solid var(--gradient-accent);
  background: var(--bg-card);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  color: var(--gradient-accent);
  font-size: 1.25rem;
  transition: background 0.3s ease, color 0.3s ease;
}

.mkt-trust__item:hover .mkt-trust__icon {
  background: var(--gradient-accent);
  color: #fff;
}

.mkt-trust__item h3 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #222;
}

.mkt-trust__item p {
  font-family: var(--font-body);
  font-size: 0.875rem;
  line-height: 1.7;
  color: #666;
}

/* ------- How To Use ------- */
.mkt-howto {
  padding: 80px 0;
  background: #fff;
}

.mkt-howto--split {
  display: flex;
  align-items: flex-start;
  gap: 48px;
}

.mkt-howto--split .mkt-howto__media {
  flex: 0 0 40%;
  max-width: 40%;
}

.mkt-howto--split .mkt-howto__media img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  object-fit: cover;
}

.mkt-howto--split .mkt-howto__body {
  flex: 1;
}

.mkt-howto__heading {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 40px;
  color: #222;
}

.mkt-howto--split .mkt-howto__heading {
  text-align: left;
}

.mkt-howto__intro {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 12px;
  font-size: 1rem;
  line-height: 1.7;
  color: #555;
}

.mkt-howto__intro + .mkt-howto__steps,
.mkt-howto__intro + .mkt-howto__intro + .mkt-howto__steps {
  margin-top: 32px;
}

.mkt-howto__steps {
  max-width: 700px;
  margin: 0 auto;
}

.mkt-howto--split .mkt-howto__steps {
  max-width: none;
  margin: 0;
}

.mkt-howto__step {
  display: flex;
  gap: 20px;
  margin-bottom: 32px;
  align-items: flex-start;
}

.mkt-howto__step-num {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gradient-accent);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  box-shadow: 0 4px 12px rgba(224, 122, 154, 0.3);
  transition: transform 0.3s ease;
}

.mkt-howto__step:hover .mkt-howto__step-num {
  transform: scale(1.1);
}

.mkt-howto__step-content h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 6px;
}

.mkt-howto__step-content p {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  line-height: 1.7;
  color: #555;
}

.mkt-howto__note {
  max-width: 700px;
  margin: 0 auto;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  line-height: 1.7;
  color: #555;
  text-align: center;
  font-style: italic;
}

/* ------- FAQ Accordion ------- */
.mkt-faq {
  padding: 80px 0;
  background: var(--bg-dark);
}

.mkt-faq__heading {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 40px;
  color: #222;
}

.mkt-faq__list {
  max-width: 800px;
  margin: 0 auto;
}

.mkt-faq__item {
  border-bottom: 2px solid rgba(224, 122, 154, 0.25);
}

.mkt-faq__item:first-child {
  border-top: 2px solid rgba(224, 122, 154, 0.25);
}

.mkt-faq__question {
  padding: 22px 0;
  cursor: pointer;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: #222;
  display: flex;
  align-items: center;
  justify-content: space-between;
  list-style: none;
  transition: color 0.3s ease;
}

.mkt-faq__question:hover {
  color: var(--gradient-accent);
}

.mkt-faq__question::-webkit-details-marker {
  display: none;
}

.mkt-faq__question::marker {
  display: none;
  content: '';
}

.mkt-faq__chevron {
  flex-shrink: 0;
  transition: transform 0.35s ease;
  color: var(--gradient-accent);
}

.mkt-faq__item[open] .mkt-faq__chevron {
  transform: rotate(180deg);
}

.mkt-faq__answer {
  padding: 0 0 22px;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  line-height: 1.75;
  color: #555;
}

.mkt-faq__answer p {
  margin-bottom: 10px;
  color: #555;
}

.mkt-faq__order-btn {
  display: inline-block;
  margin-top: 12px;
  padding: 10px 30px;
  background: #E8913A;
  color: #000;
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 30px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.mkt-faq__order-btn:hover {
  background: #f0a04e;
  color: #fff;
}

/* ------- Marketing Responsive ------- */
@media (max-width: 768px) {
  .mkt-parallax {
    min-height: 280px;
    background-size: cover;
    background-position: center center;
  }

  .mkt-parallax__heading,
  .mkt-parallax__title {
    font-size: 2rem;
  }

  .mkt-parallax__subtext {
    font-size: 1rem;
  }

  .mkt-parallax__content {
    padding: 40px 20px;
  }

  .mkt-story--split .mkt-container,
  .mkt-story--split.mkt-story--reverse .mkt-container,
  .mkt-story--reverse .mkt-container {
    flex-direction: column;
  }

  .mkt-story--split .mkt-story__media {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .mkt-story__image {
    flex: none;
    width: 100%;
    order: -1;
  }

  .mkt-ingredients__heading {
    font-size: 1.75rem;
  }

  .mkt-ingredient__image img {
    height: 200px;
  }

  .mkt-ingredient__card {
    padding: 24px 20px;
  }

  .mkt-features__grid {
    grid-template-columns: 1fr;
  }

  .mkt-features__card {
    flex-direction: column;
  }

  .mkt-features__card-icon {
    margin: 24px 0 0 24px;
  }

  .mkt-features__card-text {
    padding: 16px 24px 24px;
  }

  .mkt-features__card--full {
    max-width: 100%;
  }

  .mkt-trust__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .mkt-howto--split {
    flex-direction: column;
  }

  .mkt-howto--split .mkt-howto__media {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .mkt-howto--split .mkt-howto__heading {
    text-align: center;
  }

  .mkt-story__heading,
  .mkt-features__title,
  .mkt-trust__heading,
  .mkt-howto__heading,
  .mkt-faq__heading {
    font-size: 1.5rem;
  }

  .mkt-features__title {
    font-size: 1.75rem;
  }

  .mkt-cta__heading {
    font-size: 1.25rem;
  }

  .mkt-cta__button {
    font-size: 1.1rem;
    padding: 16px 32px;
  }

  .mkt-story,
  .mkt-features,
  .mkt-trust,
  .mkt-howto,
  .mkt-faq,
  .mkt-cta {
    padding: 48px 0;
  }

  .mkt-container {
    padding: 0 20px;
  }
}

/* Order Now CTA */
.product__order-cta {
  background: #f5f5f5;
  padding: 50px 0;
}

.product__order-container {
  max-width: 500px;
  margin: 0 auto;
  text-align: center;
  padding: 0 32px;
}

.product__order-stars {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
  margin-bottom: 24px;
}

.product__order-reviews {
  font-size: 0.9375rem;
  font-weight: 600;
  color: #333;
  margin-left: 8px;
}

.product__order-button {
  display: block;
  width: 100%;
  max-width: 400px;
  margin: 0 auto 16px;
  padding: 20px;
  background: #E8913A;
  color: #000;
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 40px;
  text-align: center;
  transition: background 0.3s;
}

.product__order-button:hover {
  background: #f0a04e;
  color: #fff;
}

.product__order-guarantee {
  font-size: 0.8125rem;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Customer Reviews */
.product__reviews-section {
  padding: 60px 0;
  background-color: #fff;
}

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

.mkt-reviews {
  padding: 60px 0;
  background: #fff;
  text-align: center;
}

.mkt-reviews__heading {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #222;
  margin-bottom: 12px;
}

.mkt-reviews__stars {
  display: flex;
  justify-content: center;
  gap: 4px;
  color: var(--gradient-accent);
  margin-bottom: 16px;
}

.mkt-reviews__placeholder {
  font-family: var(--font-body);
  font-size: 1rem;
  color: #999;
  font-style: italic;
  margin-bottom: 16px;
}

/* Reviews summary bar */
.mkt-reviews__summary {
  display: flex;
  align-items: flex-start;
  gap: 32px;
  padding: 24px 0;
  border-bottom: 1px solid #eee;
  margin-bottom: 24px;
  text-align: left;
}

.mkt-reviews__summary-left {
  min-width: 140px;
}

.mkt-reviews__summary-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 4px;
  color: var(--gradient-accent);
}

.mkt-reviews__based-on {
  font-size: 0.85rem;
  color: #666;
}

.mkt-reviews__summary-bars {
  flex: 1;
}

.mkt-reviews__bar-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 4px;
  font-size: 0.8rem;
  color: #666;
}

.mkt-reviews__bar-stars {
  min-width: 36px;
  color: var(--gradient-accent);
  font-size: 0.75rem;
}

.mkt-reviews__bar {
  flex: 1;
  height: 10px;
  background: #eee;
  border-radius: 5px;
  overflow: hidden;
}

.mkt-reviews__bar-fill {
  height: 100%;
  background: var(--gradient-accent);
  border-radius: 5px;
}

/* Per-product review star/bar colors */
.product--ever-dream .mkt-reviews__bar-fill { background: var(--accent-dream); }
.product--ever-dream .mkt-reviews__bar-stars { color: var(--accent-dream); }

.product--ever-young .mkt-reviews__bar-fill { background: var(--accent-young); }
.product--ever-young .mkt-reviews__bar-stars { color: var(--accent-young); }

.mkt-reviews__bar-pct {
  min-width: 30px;
  text-align: right;
}

.mkt-reviews__bar-count {
  min-width: 24px;
  color: #999;
}

.mkt-reviews__summary-right {
  display: flex;
  align-items: center;
}

/* Individual review items */
.mkt-reviews__list {
  text-align: left;
}

.mkt-reviews__item {
  padding: 24px 0;
  border-bottom: 1px solid #eee;
}

.mkt-reviews__item-header {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
}

.mkt-reviews__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #e0e0e0;
  color: #555;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
  position: relative;
}

.mkt-reviews__avatar::after {
  content: '✓';
  position: absolute;
  bottom: -2px;
  right: -2px;
  width: 16px;
  height: 16px;
  background: #4A90D9;
  color: #fff;
  border-radius: 50%;
  font-size: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #fff;
}

.mkt-reviews__item-meta {
  flex: 1;
}

.mkt-reviews__item-stars {
  display: flex;
  align-items: center;
  gap: 2px;
  margin-bottom: 4px;
  color: var(--gradient-accent);
}

/* Per-product review colors */
.product--ever-dream .mkt-reviews__summary-stars,
.product--ever-dream .mkt-reviews__item-stars { color: var(--accent-dream); }

.product--ever-young .mkt-reviews__summary-stars,
.product--ever-young .mkt-reviews__item-stars { color: var(--accent-young); }

.mkt-reviews__date {
  margin-left: 8px;
  font-size: 0.8rem;
  color: #999;
}

.mkt-reviews__verified {
  display: inline-block;
  background: #4CAF50;
  color: #fff;
  font-size: 0.6rem;
  padding: 1px 5px;
  border-radius: 3px;
  margin-right: 4px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  font-weight: 600;
  vertical-align: middle;
}

.mkt-reviews__item-title {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 8px;
}

.mkt-reviews__item-body {
  font-family: var(--font-body);
  font-size: 0.9rem;
  line-height: 1.7;
  color: #555;
}

@media (max-width: 768px) {
  .mkt-reviews__summary {
    flex-direction: column;
    gap: 16px;
  }
  .mkt-reviews__summary-right {
    width: 100%;
  }
  .mkt-reviews__write-btn {
    width: 100%;
    text-align: center;
  }
}

.mkt-reviews__write-btn {
  display: inline-block;
  padding: 12px 32px;
  border: 2px solid var(--gradient-accent);
  border-radius: 30px;
  color: var(--gradient-accent);
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-decoration: none;
  transition: all 0.3s ease;
  margin-bottom: 24px;
}

.mkt-reviews__write-btn:hover {
  background: var(--gradient-accent);
  color: #fff;
  transform: scale(1.03);
}

.mkt-reviews__cta-spacer {
  height: 40px;
}

/* Testimonial cards — "Our Customers" section */
.mkt-testimonials {
  padding: 60px 0;
  background: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.mkt-testimonials__heading {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--gradient-accent);
  margin-bottom: 40px;
  font-style: italic;
}

.mkt-testimonials__list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
  text-align: left;
}

.mkt-testimonials__card {
  display: flex;
  border: 2px solid var(--gradient-accent);
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
}

.mkt-testimonials__card-left {
  flex: 0 0 200px;
  padding: 24px;
  background: var(--bg-card);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.mkt-testimonials__card-right {
  flex: 1;
  padding: 24px;
}

.mkt-testimonials__name {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 8px;
}

.mkt-testimonials__verified {
  display: block;
  font-size: 0.8rem;
  color: var(--gradient-accent);
  font-weight: 600;
  margin-bottom: 4px;
}

.mkt-testimonials__recommend {
  display: block;
  font-size: 0.8rem;
  color: #666;
}

.mkt-testimonials__stars {
  color: var(--gradient-accent);
  font-size: 1.2rem;
  margin-bottom: 8px;
  letter-spacing: 2px;
}

.mkt-testimonials__title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 8px;
}

.mkt-testimonials__card-right p {
  font-family: var(--font-body);
  font-size: 0.9rem;
  line-height: 1.7;
  color: #555;
}

/* Per-product testimonial colors */
.product--ever-dream .mkt-testimonials__heading { color: var(--accent-dream); }
.product--ever-dream .mkt-testimonials__card { border-color: var(--accent-dream); }
.product--ever-dream .mkt-testimonials__stars { color: var(--accent-dream); }
.product--ever-dream .mkt-testimonials__verified { color: var(--accent-dream); }

.product--ever-young .mkt-testimonials__heading { color: var(--accent-young); }
.product--ever-young .mkt-testimonials__card { border-color: var(--accent-young); }
.product--ever-young .mkt-testimonials__stars { color: var(--accent-young); }
.product--ever-young .mkt-testimonials__verified { color: var(--accent-young); }

@media (max-width: 768px) {
  .mkt-testimonials__card {
    flex-direction: column;
  }
  .mkt-testimonials__card-left {
    flex: none;
    padding: 16px 20px;
  }
  .mkt-testimonials__card-right {
    padding: 16px 20px;
  }
  .mkt-testimonials__heading {
    font-size: 1.75rem;
  }
}

/* Judge.me overrides */
.product__reviews-container {
  border: 1px solid #ddd;
  border-radius: 4px;
  padding: 24px 32px;
}

.jdgm-widget {
  color: #333 !important;
}

.jdgm-rev-widg__header {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  flex-wrap: wrap !important;
}

.jdgm-rev-widg__title {
  color: #000 !important;
  font-family: 'Poppins', sans-serif !important;
  font-weight: 700 !important;
  font-size: 1.1rem !important;
  text-transform: uppercase !important;
  letter-spacing: 0.5px !important;
}

.jdgm-rev-widg__summary-text {
  color: #333 !important;
}

.jdgm-write-rev-link,
button.jdgm-btn {
  background-color: transparent !important;
  border: 1px solid #333 !important;
  border-radius: 4px !important;
  color: #333 !important;
  padding: 8px 20px !important;
  font-family: 'Poppins', sans-serif !important;
  font-weight: 500 !important;
  font-size: 0.875rem !important;
  text-transform: none !important;
  letter-spacing: 0 !important;
}

.jdgm-write-rev-link:hover,
button.jdgm-btn:hover {
  background-color: #333 !important;
  color: #fff !important;
}

.jdgm-submit-rev {
  background-color: #333 !important;
  border: none !important;
  border-radius: 4px !important;
  color: #fff !important;
  padding: 10px 24px !important;
  font-family: 'Poppins', sans-serif !important;
  font-weight: 600 !important;
}

.jdgm-rev-widg__no-reviews {
  color: #666 !important;
}

.jdgm-rev__author,
.jdgm-rev__body,
.jdgm-rev__timestamp {
  color: #444 !important;
}

.jdgm-rev {
  border-bottom-color: rgba(0, 0, 0, 0.1) !important;
}

.jdgm-form input,
.jdgm-form textarea {
  background: #f5f5f5 !important;
  border-color: #ddd !important;
  color: #333 !important;
  border-radius: 4px !important;
}

.jdgm-form label {
  color: #333 !important;
}

.product__reviews-heading {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;
  color: #fff;
  margin-bottom: 40px;
}

/* Related products */
.product__related {
  max-width: var(--container-width);
  margin: 60px auto 0;
  padding: 60px 32px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.product__related-heading {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;
  color: #fff;
  margin-bottom: 40px;
}

.product__related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

@media (max-width: 768px) {
  .product__container {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .product__main-image {
    display: flex;
    justify-content: center;
  }

  .product__main-image img {
    width: auto !important;
    max-width: 65% !important;
    max-height: 400px;
    object-fit: contain;
  }

  .product__title {
    font-size: 1.75rem;
  }

  .product__related-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 480px) {
  .product__related-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   COLLECTION PAGE
   ============================================ */
.collection {
  padding: 50px 0;
}

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

.collection__header {
  text-align: center;
  margin-bottom: 40px;
}

.collection__title {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 16px;
  color: #fff;
  color: #fff;
}

.collection__description {
  color: rgba(27, 61, 47, 0.85);
  max-width: 600px;
  margin: 0 auto;
}

.collection__toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.collection__count {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
}

.collection__sort {
  display: flex;
  align-items: center;
  gap: 10px;
}

.collection__sort label {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.5);
}

.collection__sort select {
  padding: 8px 14px;
  background-color: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 6px;
  color: #fff;
  font-size: 0.8125rem;
  appearance: none;
  cursor: pointer;
  padding-right: 30px;
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l4 4 4-4' stroke='white' stroke-width='1.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
}

.collection__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  justify-items: center;
}

.collection__grid > *:only-child {
  grid-column: 1 / -1;
  max-width: 380px;
}

.collection__empty {
  text-align: center;
  padding: 96px 0;
  color: rgba(255, 255, 255, 0.5);
}

.collection__continue {
  display: inline-flex;
  margin-top: 24px;
  padding: 16px 48px;
  border: 1px solid #fff;
  color: #fff;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: 30px;
  transition: all var(--transition);
}

.collection__continue:hover {
  background-color: #fff;
  color: #000;
}

.collection__pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 50px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.collection__pagination a,
.collection__pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  transition: all var(--transition);
}

.collection__pagination a:hover {
  background-color: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.collection__pagination span.current {
  background-color: #fff;
  color: #000;
  font-weight: 700;
}

@media (max-width: 768px) {
  .collection__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .collection__toolbar {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
  }

  .collection__title {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .collection__grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   CART
   ============================================ */
.cart {
  padding: 50px 0;
}

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

.cart__title {
  font-size: 2.5rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 50px;
  text-align: center;
  color: #fff;
}

.cart__empty {
  text-align: center;
  padding: 96px 0;
}

.cart__empty p {
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 32px;
}

.cart__items {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 50px;
}

.cart__item {
  display: grid;
  grid-template-columns: 100px 1fr auto;
  gap: 32px;
  align-items: center;
  padding: 16px;
  background-color: var(--bg-card);
  border-radius: 10px;
}

.cart__item-image {
  width: 100px;
  height: 100px;
  border-radius: 6px;
  overflow: hidden;
}

.cart__item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cart__item-title {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: #fff;
}

.cart__item-price {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
}

.cart__item-remove {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: color var(--transition);
}

.cart__item-remove:hover {
  color: var(--color-accent-pink);
}

.cart__footer {
  max-width: 400px;
  margin-left: auto;
  text-align: right;
}

.cart__subtotal {
  display: flex;
  justify-content: space-between;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
}

.cart__checkout {
  width: 100%;
  padding: 16px;
  background-color: #5d6b82;
  color: #fff;
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: 30px;
  transition: all var(--transition);
}

.cart__checkout:hover {
  background-color: #fff;
  color: #000;
}

.cart__continue {
  display: inline-block;
  margin-top: 16px;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
  transition: color var(--transition);
}

.cart__continue:hover {
  color: #fff;
}

@media (max-width: 480px) {
  .cart__item {
    grid-template-columns: 80px 1fr;
  }

  .cart__item-remove {
    grid-column: 1 / -1;
    text-align: right;
  }
}

/* ============================================
   MISSION STATEMENT — text left, image right
   ============================================ */
.mission {
  padding: 80px 0;
  background: radial-gradient(ellipse at center, var(--bg-card) 0%, var(--bg-dark) 70%);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.mission__container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.mission__subheading {
  font-family: var(--font-accent);
  font-size: 0.875rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--color-accent-lavender);
  margin-bottom: 16px;
}

.mission__heading {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 24px;
}

.mission__text {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
  margin-bottom: 32px;
}

.mission__text p {
  margin-bottom: 16px;
}

.mission__text p:last-child {
  margin-bottom: 0;
}

.mission__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 20px 60px;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: 30px;
  border: 1px solid #fff;
  color: #fff;
  background: transparent;
  transition: all 0.3s ease;
}

.mission__button:hover {
  background-color: #fff;
  color: #000;
}

.mission__image {
  display: flex;
  justify-content: center;
}

.mission__img {
  width: 100%;
  max-width: 450px;
  border-radius: 20px;
  object-fit: cover;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .mission {
    padding: 50px 0;
  }

  .mission__container {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .mission__heading {
    font-size: 1.75rem;
  }

  .mission__image {
    order: 1;
  }

  .mission__button {
    padding: 16px 40px;
  }
}

/* ============================================
   FOOTER — logo, 3 columns, copyright, payments, FDA box
   ============================================ */
.site-footer {
  background: var(--bg-header);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 60px 0 40px;
}

.site-footer__container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 32px;
}

.site-footer__logo {
  margin-bottom: 40px;
}

.site-footer__logo-img {
  height: 80px;
  width: auto;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1fr 1fr 2fr;
  gap: 60px;
  margin-bottom: 50px;
}

.site-footer__heading {
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 20px;
  color: #fff;
}

.site-footer__menu li {
  margin-bottom: 12px;
}

.site-footer__menu a {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.55);
  transition: color var(--transition);
}

.site-footer__menu a:hover {
  color: #fff;
}

.site-footer__contact {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 10px;
}

.site-footer__contact a {
  color: rgba(255, 255, 255, 0.55);
  transition: color var(--transition);
}

.site-footer__contact a:hover {
  color: #fff;
}

.site-footer__newsletter-text {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  margin-top: 20px;
  margin-bottom: 16px;
}

.site-footer__newsletter {
  display: flex;
  gap: 0;
}

.site-footer__newsletter-input {
  flex: 1;
  padding: 14px 18px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-right: none;
  border-radius: 0;
  color: #fff;
  font-size: 0.875rem;
  outline: none;
}

.site-footer__newsletter-input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.site-footer__newsletter-input:focus {
  border-color: rgba(255, 255, 255, 0.5);
}

.site-footer__newsletter-button {
  padding: 14px 28px;
  background-color: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: none;
  transition: all var(--transition);
  white-space: nowrap;
}

.site-footer__newsletter-button:hover {
  background-color: #fff;
  color: #000;
}

.site-footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 30px;
}

.site-footer__copyright {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 20px;
}

.site-footer__payments {
  display: flex;
  gap: 8px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.payment-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 32px;
  border-radius: 4px;
  font-size: 0.5rem;
  font-weight: 700;
  text-align: center;
  line-height: 1.1;
  color: #fff;
  overflow: hidden;
  text-overflow: ellipsis;
}

.payment-icon--visa {
  background: #1A1F71;
  font-size: 0.7rem;
  font-style: italic;
  letter-spacing: 0.05em;
}

.payment-icon--mastercard {
  background: #252525;
  font-size: 0.4rem;
  background-image: radial-gradient(circle at 35% 50%, #EB001B 30%, transparent 30%),
                     radial-gradient(circle at 65% 50%, #F79E1B 30%, transparent 30%);
  color: transparent;
}

.payment-icon--amex {
  background: #016FD0;
  font-size: 0.35rem;
  letter-spacing: 0.02em;
}

.payment-icon--discover {
  background: #F48120;
  font-size: 0.45rem;
}

.payment-icon--jcb {
  background: linear-gradient(135deg, #0B7BC1 33%, #C41F3E 33%, #C41F3E 66%, #009B3A 66%);
  font-size: 0.55rem;
}

.payment-icon--paypal {
  background: #003087;
  font-size: 0.5rem;
}

.site-footer__disclaimer-box {
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 6px;
  padding: 24px 28px;
}

.site-footer__disclaimer-box p {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.7;
}

@media (max-width: 768px) {
  .site-footer__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .site-footer__logo-img {
    height: 60px;
  }
}

/* ============================================
   PAGE (generic)
   ============================================ */
.page {
  padding: 50px 0;
}

.page__container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 32px;
}

.page__title {
  font-size: 3rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 32px;
  text-align: center;
  color: #fff;
}

.page__content {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
}

.page__content h2,
.page__content h3 {
  color: #fff;
  margin-top: 32px;
  margin-bottom: 16px;
}

.page__content p {
  margin-bottom: 16px;
}

.page__content a {
  color: var(--color-accent-peach);
  text-decoration: underline;
}

/* ============================================
   404
   ============================================ */
.not-found {
  text-align: center;
  padding: 96px 32px;
}

.not-found__title {
  font-size: 6rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 16px;
  color: #fff;
}

.not-found__text {
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 32px;
}

.not-found__link {
  display: inline-flex;
  padding: 20px 60px;
  background-color: #fff;
  color: #000;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.875rem;
  border-radius: 30px;
  border: 1px solid #fff;
  transition: all var(--transition);
}

.not-found__link:hover {
  background-color: transparent;
  color: #fff;
}

/* ============================================
   LOGIN SIDE PANEL
   ============================================ */
.login-panel__overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1100;
}

.login-panel__overlay.is-open {
  display: block;
}

.login-panel {
  position: fixed;
  top: 0;
  right: -320px;
  width: 320px;
  height: 100%;
  background: #fff;
  z-index: 1200;
  transition: right 0.3s ease;
  overflow-y: auto;
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.2);
}

.login-panel.is-open {
  right: 0;
}

.login-panel__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid #eee;
}

.login-panel__title {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: #333;
}

.login-panel__close {
  font-size: 1.5rem;
  color: #666;
  padding: 4px;
  line-height: 1;
  transition: color 0.2s;
}

.login-panel__close:hover {
  color: #000;
}

.login-panel__form {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.login-panel__field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.login-panel__field label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #333;
}

.login-panel__required {
  color: #e00;
}

.login-panel__field input {
  padding: 12px 14px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 0.875rem;
  color: #333;
  outline: none;
  transition: border-color 0.2s;
}

.login-panel__field input:focus {
  border-color: #333;
}

.login-panel__field input::placeholder {
  color: #aaa;
}

.login-panel__submit {
  padding: 14px;
  background: #fff;
  border: 1px solid #333;
  color: #333;
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: all 0.3s ease;
}

.login-panel__submit:hover {
  background: #333;
  color: #fff;
}

.login-panel__forgot {
  text-align: center;
  font-size: 0.8125rem;
  color: #666;
  transition: color 0.2s;
}

.login-panel__forgot:hover {
  color: #333;
}

.login-panel__create {
  display: block;
  width: 100%;
  padding: 14px;
  background: #333;
  color: #fff;
  text-align: center;
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: 4px;
  transition: background 0.3s ease;
}

.login-panel__create:hover {
  background: #000;
}

/* ============================================
   CART DRAWER — Side panel cart
   ============================================ */
.cart-drawer__overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 9998;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.cart-drawer__overlay.is-active {
  opacity: 1;
  visibility: visible;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 400px;
  max-width: 90vw;
  height: 100%;
  background: #fff;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  color: #333;
}

.cart-drawer.is-open {
  transform: translateX(0);
}

.cart-drawer__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid #eee;
}

.cart-drawer__title {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin: 0;
  color: #000;
}

.cart-drawer__close {
  background: none;
  border: none;
  font-size: 1.75rem;
  cursor: pointer;
  color: #333;
  line-height: 1;
  padding: 0;
}

.cart-drawer__shipping-bar {
  padding: 16px 24px;
  border-bottom: 1px solid #eee;
}

.cart-drawer__shipping-progress {
  margin-bottom: 8px;
}

.cart-drawer__shipping-fill {
  height: 100%;
  background: var(--gradient-accent, #4A7A62);
  border-radius: 4px;
  width: 0%;
}

.cart-drawer__shipping-icon--truck {
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  border: 2px solid #e5e5e5;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  left: 0%;
  color: #999;
  transition: none;
}

.cart-drawer__shipping-icon--truck.is-animating {
  transition: left 2s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.cart-drawer__shipping-fill {
  transition: none;
}

.cart-drawer__shipping-fill.is-animating {
  transition: width 2s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.cart-drawer__shipping-icon--truck.is-complete {
  border-color: var(--gradient-accent, #4A7A62);
  color: var(--gradient-accent, #4A7A62);
}

.cart-drawer__shipping-track {
  position: relative;
  height: 8px;
  background: #e5e5e5;
  border-radius: 4px;
  margin-bottom: 0;
}


.cart-drawer__shipping-message {
  text-align: center;
  font-size: 0.8rem;
  color: #666;
  margin: 20px 0 0;
}

.cart-drawer__shipping-message strong {
  font-weight: 700;
}

.cart-drawer__body {
  flex: 1;
  overflow-y: auto;
  padding: 20px 24px;
}

.cart-drawer__empty {
  text-align: center;
  padding: 60px 20px;
  color: #999;
}

.cart-drawer__empty p {
  margin-bottom: 8px;
  font-weight: 700;
  font-size: 0.95rem;
  color: #000;
}

.cart-drawer__empty-sub {
  font-weight: 400 !important;
  color: #999 !important;
  font-size: 0.85rem !important;
  margin-bottom: 20px !important;
}

.cart-drawer .cart-drawer__empty a,
.cart-drawer__empty a {
  display: inline-block;
  padding: 12px 28px;
  background: var(--gradient-accent, #4A7A62);
  color: #fff !important;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.875rem;
}

.cart-drawer__item {
  display: flex;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid #f0f0f0;
}

.cart-drawer__item-image {
  width: 80px;
  height: 80px;
  object-fit: contain;
  border-radius: 4px;
  background: #f9f9f9;
  flex-shrink: 0;
}

.cart-drawer__item-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.cart-drawer__item-title {
  font-weight: 600;
  font-size: 0.875rem;
  color: #000;
  text-decoration: none;
}

.cart-drawer__item-variant {
  font-size: 0.75rem;
  color: #999;
}

.cart-drawer__item-subscription {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 4px;
  flex-wrap: wrap;
}

.cart-drawer .cart-drawer__item-sub-badge,
.cart-drawer__item-sub-badge {
  display: inline-block;
  background: var(--gradient-accent);
  color: #fff !important;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 999px;
  line-height: 1.2;
}

.cart-drawer__item-sub-freq {
  font-size: 0.75rem;
  color: #666;
}

.cart-drawer__item-price {
  font-weight: 600;
  font-size: 0.875rem;
  color: #000;
}

.cart-drawer__item-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 4px;
}

.cart-drawer__qty-btn {
  width: 28px;
  height: 28px;
  border: 1px solid #ddd;
  background: #fff;
  border-radius: 4px;
  cursor: pointer;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #333;
}

.cart-drawer__qty {
  font-size: 0.875rem;
  min-width: 20px;
  text-align: center;
}

.cart-drawer__item-remove {
  margin-left: auto;
  background: none;
  border: none;
  color: #999;
  font-size: 0.75rem;
  cursor: pointer;
  text-decoration: underline;
}

.cart-drawer__item-remove:hover {
  color: #333;
}

.cart-drawer__footer {
  padding: 20px 24px;
  border-top: 1px solid #eee;
}

.cart-drawer__subtotal {
  display: flex;
  justify-content: space-between;
  font-weight: 700;
  font-size: 1rem;
  color: #000;
  margin-bottom: 4px;
}

.cart-drawer__shipping-note {
  font-size: 0.75rem;
  color: #999;
  margin-bottom: 16px;
}

.cart-drawer__checkout {
  display: block;
  width: 100%;
  padding: 14px;
  background: var(--gradient-accent, #4A7A62);
  color: #fff;
  text-align: center;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}

.cart-drawer__checkout:hover {
  filter: brightness(1.15);
}

.cart-drawer__view-cart {
  display: block;
  text-align: center;
  color: #666;
  font-size: 0.8rem;
  text-decoration: underline;
}

/* ============================================
   FLOATING BUTTONS — Claim 15% Off + Rewards
   ============================================ */
.floating-buttons {
  position: fixed;
  bottom: 15px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding: 0 20px;
  z-index: 900;
  pointer-events: none;
}

.floating-btn {
  pointer-events: auto;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 24px;
  border-radius: 30px;
  font-size: 0.875rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.floating-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.4);
}

.floating-btn--promo {
  background-color: #E07A9A;
  color: #fff;
  animation: floatPulse 2s ease-in-out infinite;
  position: relative;
  margin-bottom: -5px;
}

.floating-btn__close {
  background: none;
  border: none;
  color: #fff;
  font-size: 1.25rem;
  cursor: pointer;
  padding: 0 0 0 4px;
  line-height: 1;
  opacity: 0.8;
  transition: opacity 0.2s;
}

.floating-btn__close:hover {
  opacity: 1;
}

.floating-btn--rewards {
  background-color: #c25a7a;
  color: #fff;
}

.floating-btn--promo.is-hidden {
  display: none;
}

@keyframes floatPulse {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact {
  padding: 60px 0 80px;
}

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

.contact__header {
  text-align: center;
  margin-bottom: 50px;
}

.contact__title {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 16px;
}

.contact__text {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.6);
  max-width: 500px;
  margin: 0 auto;
}

.contact__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact__field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 20px;
}

.contact__field label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #fff;
}

.contact__required {
  color: #e06060;
}

.contact__field input,
.contact__field textarea {
  padding: 14px 16px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 6px;
  color: var(--color-text, #1B3D2F);
  font-size: 0.875rem;
  outline: none;
  transition: border-color 0.3s;
  resize: vertical;
}

.contact__field input:focus,
.contact__field textarea:focus {
  border-color: var(--bg-header);
}

.contact__field input::placeholder,
.contact__field textarea::placeholder {
  color: rgba(0, 0, 0, 0.4);
}

.contact__submit {
  width: 100%;
  padding: 16px;
  background: var(--bg-header);
  border: 1px solid var(--bg-header);
  color: #fff;
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s;
  margin-top: 10px;
}

.contact__submit:hover {
  background: #fff;
  color: var(--bg-header);
}

.contact__success {
  background: rgba(74, 122, 98, 0.3);
  border: 1px solid rgba(74, 122, 98, 0.5);
  border-radius: 6px;
  padding: 16px 20px;
  margin-bottom: 20px;
  color: #fff;
  font-size: 0.875rem;
}

.contact__errors {
  background: rgba(200, 60, 60, 0.2);
  border: 1px solid rgba(200, 60, 60, 0.4);
  border-radius: 6px;
  padding: 16px 20px;
  margin-bottom: 20px;
  color: #fff;
  font-size: 0.875rem;
}

.contact__info {
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding-top: 10px;
}

.contact__info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact__info-item svg {
  color: #B8A0CC;
  flex-shrink: 0;
  margin-top: 2px;
}

.contact__info-item h4 {
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 4px;
}

.contact__info-item p,
.contact__info-item a {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.6);
}

.contact__info-item a:hover {
  color: #fff;
}

@media (max-width: 768px) {
  .contact__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact__title {
    font-size: 2rem;
  }

  .contact__info {
    order: -1;
  }
}

/* ============================================
   SEARCH PAGE
   ============================================ */
.search-page {
  padding: 60px 0;
}

.search-page__container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 32px;
  text-align: center;
}

.search-page__title {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 32px;
  color: #fff;
}

.search-page__form {
  display: flex;
  max-width: 500px;
  margin: 0 auto 40px;
}

.search-page__input {
  flex: 1;
  padding: 14px 18px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-right: none;
  border-radius: 30px 0 0 30px;
  color: #fff;
  font-size: 0.875rem;
  outline: none;
}

.search-page__input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.search-page__submit {
  padding: 14px 28px;
  background-color: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-left: none;
  border-radius: 0 30px 30px 0;
  color: #fff;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
}

.search-page__submit:hover {
  background-color: #fff;
  color: #000;
}

.search-page__count {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 32px;
}

.search-page__no-results {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.5);
  padding: 40px 0;
}

.search-page__results {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  text-align: center;
}

.search-page__result-item {
  padding: 20px;
  background-color: var(--bg-card);
  border-radius: 10px;
}

.search-page__result-item a {
  color: #fff;
}

.search-page__result-item h3 {
  font-size: 1rem;
  margin-bottom: 8px;
}

.search-page__result-item p {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.5);
}

@media (max-width: 768px) {
  .search-page__results {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 480px) {
  .search-page__results {
    grid-template-columns: 1fr;
  }
}




/* Login dropdown & panel — force dark text (overrides header white) */
body.theme-light .site-header .site-header__login-dropdown,
body.theme-light .site-header .site-header__login-dropdown h3,
body.theme-light .site-header .site-header__login-dropdown label,
body.theme-light .site-header .site-header__login-dropdown input,
body.theme-light .site-header .site-header__login-dropdown a,
body.theme-light .site-header .site-header__login-dropdown button,
body.theme-light .site-header .site-header__login-dropdown span {
  color: #333 !important;
}

body.theme-light .site-header .login-dropdown__required {
  color: #333 !important;
}

body.theme-light .site-header .login-dropdown__forgot {
  color: #666 !important;
}

body.theme-light .site-header .login-dropdown__submit {
  background: #fff !important;
  border: 1px solid #333 !important;
  color: #333 !important;
}

body.theme-light .site-header .login-dropdown__submit:hover {
  background: var(--gradient-accent) !important;
  color: #fff !important;
  border-color: var(--gradient-accent) !important;
}

body.theme-light .site-header .login-dropdown__create,
body.theme-light .login-panel__create {
  background: var(--gradient-accent) !important;
  color: #fff !important;
  border: none !important;
}

body.theme-light .login-panel__submit {
  background: #fff !important;
  border: 1px solid #333 !important;
  color: #333 !important;
}

body.theme-light .login-panel__forgot {
  color: #666 !important;
}

body.theme-light .login-panel__required {
  color: #333 !important;
}


/* ============================================
   WISHLIST
   ============================================ */

/* Wishlist button (heart) */
.wishlist-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  transition: all var(--transition);
  flex-shrink: 0;
  cursor: pointer;
  border: none;
}

.wishlist-btn:hover {
  background: rgba(255, 255, 255, 0.15);
  color: #E8A0A0;
}

.wishlist-btn.is-active {
  color: #E8A0A0;
  background: rgba(232, 160, 160, 0.15);
}

/* Wishlist button on product card — inside image wrapper, no cutoff */
.wishlist-btn--card {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 36px;
  height: 36px;
  z-index: 5;
  opacity: 0;
  background: rgba(255, 255, 255, 0.85);
  color: #999;
  transition: all var(--transition);
}

.wishlist-btn--card:hover {
  color: #E8A0A0;
  background: rgba(255, 255, 255, 0.95);
}

.product-card:hover .wishlist-btn--card,
.wishlist-btn--card.is-active {
  opacity: 1;
}

.wishlist-btn--card.is-active {
  color: #E8A0A0;
  background: rgba(255, 255, 255, 0.9);
}

/* Product title row with wishlist */
.product__title-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.product__title-row .product__title {
  flex: 1;
}

/* Wishlist page */
.wishlist { padding: 60px 0 80px; }
.wishlist__container { max-width: var(--container-width); margin: 0 auto; padding: 0 32px; }
.wishlist__title { font-family: var(--font-heading); font-size: 2.5rem; font-weight: 700; text-transform: uppercase; color: #fff; margin-bottom: 8px; }
.wishlist__text { font-size: 0.9375rem; color: rgba(255, 255, 255, 0.5); margin-bottom: 40px; }
.wishlist__grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 24px; }
.wishlist__card { background: var(--bg-card); border-radius: 10px; overflow: hidden; position: relative; transition: transform var(--transition); }
.wishlist__card:hover { transform: translateY(-4px); }
.wishlist__remove { position: absolute; top: 10px; right: 10px; width: 32px; height: 32px; border-radius: 50%; background: rgba(0, 0, 0, 0.5); color: #fff; display: flex; align-items: center; justify-content: center; z-index: 5; transition: all var(--transition); cursor: pointer; border: none; }
.wishlist__remove:hover { background: rgba(200, 60, 60, 0.8); }
.wishlist__card-link { display: block; color: #fff; }
.wishlist__card-image { aspect-ratio: 1; overflow: hidden; background: rgba(255, 255, 255, 0.04); }
.wishlist__card-image img { width: 100%; height: 100%; object-fit: cover; }
.wishlist__card-info { padding: 16px 20px; }
.wishlist__card-title { font-family: var(--font-heading); font-size: 0.9375rem; font-weight: 700; margin-bottom: 6px; }
.wishlist__card-price { font-size: 0.875rem; color: rgba(255, 255, 255, 0.6); }
.wishlist__empty { text-align: center; padding: 60px 0; }
.wishlist__empty svg { margin: 0 auto 20px; color: rgba(255, 255, 255, 0.3); }
.wishlist__empty p { font-size: 1.125rem; color: rgba(255, 255, 255, 0.5); margin-bottom: 24px; }
.wishlist__shop-btn { display: inline-block; padding: 14px 32px; border: 1px solid #fff; border-radius: 30px; color: #fff; font-size: 0.875rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; transition: all var(--transition); }
.wishlist__shop-btn:hover { background: #fff; color: #000; }

@media (max-width: 768px) {
  .wishlist__title { font-size: 2rem; }
  .wishlist__grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
}

@media (max-width: 480px) {
  .wishlist__grid { grid-template-columns: 1fr; }
}

/* ============================================
   UTILITIES
   ============================================ */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

/* ============================================
   LIGHT THEME OVERRIDES
   ============================================ */
body.theme-light {
  color: #333;
}
body.theme-light #privy-widget {
  color: initial;
}


.theme-light :is(h1, h2, h3, h4, p, a, span, label, li, td, th, input, select, textarea):not(#privy-widget *):not(#privy-widget-container *):not(#privy-widget-inner-modal-container *) {
  color: #333;
}

.theme-light .product-card__star--empty {
  color: #ccc;
}

.theme-light .product-card__star--filled {
  color: var(--gradient-accent);
}

.theme-light .product-card__compare-price {
  color: #999;
}

.theme-light .product__compare-price {
  color: #999;
}

.theme-light .product__combo-label {
  color: rgba(0, 0, 0, 0.45);
}

.theme-light .product__purchase-sub {
  color: #888;
}

.theme-light .product__trust-item span {
  color: #555;
}

.theme-light .product__quantity-btn {
  border-color: #ddd;
  color: #333;
}

.theme-light .product__quantity-input {
  border-color: #ddd;
  color: #333;
}

.theme-light .product__option-label {
  color: #333;
}

.theme-light .product__option select {
  color: #333;
  border-color: #ddd;
}

.theme-light .product__read-more {
  color: #666;
}

.theme-light .product__thumbnail {
  border-color: transparent;
}

.theme-light .product__thumbnail.is-active,
.theme-light .product__thumbnail:hover {
  border-color: #333;
}

.theme-light .collection__count,
.theme-light .collection__sort label,
.theme-light .collection__sort select {
  color: #555;
}

.theme-light .most-popular__view-all,
.theme-light .stack-save__button {
  border-color: #333;
  color: #333;
}

.theme-light .most-popular__view-all:hover,
.theme-light .stack-save__button:hover {
  background-color: #fff;
  color: var(--bg-header);
}

.theme-light .hero__button--primary {
  background-color: transparent;
  color: #fff !important;
  border-color: #fff;
}

.theme-light .hero__button--primary:hover {
  background-color: #fff;
  color: var(--bg-header) !important;
}

.theme-light .product__main-image {
  background-color: transparent;
}

.theme-light .product-card {
  background-color: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 10px;
}

.theme-light .product-card__image-wrapper {
  background-color: #f9f9f9;
}

/* Light theme section fixes */
.theme-light .trust-badges {
  background: #fff;
  border-bottom: 1px solid #eee;
}

.theme-light .most-popular {
  background: none;
}

/* Gleeful-style formula badges */
.product__formulas-section {
  padding: 48px 0;
  text-align: center;
  background: #fff;
}

.formulas__heading {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 32px;
}

.formulas__grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 32px 40px;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}

.formulas__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  min-width: 100px;
}

.formulas__icon {
  width: 72px;
  height: 72px;
  border: 2px solid var(--gradient-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gradient-accent);
  transition: all 0.3s ease;
}

.formulas__icon:hover {
  background: var(--gradient-accent);
  color: #fff;
}

.formulas__label {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  color: #333;
  text-align: center;
}

@media (max-width: 768px) {
  .formulas__grid {
    gap: 24px 20px;
  }
  .formulas__icon {
    width: 60px;
    height: 60px;
  }
  .formulas__icon svg {
    width: 32px;
    height: 32px;
  }
  .formulas__label {
    font-size: 0.75rem;
  }
}

.theme-light .product__badges-row {
  background: #fff;
  border-top: 1px solid #eee;
}

/* Announcement bar — ALWAYS white bg, black text */
.announcement-bar {
  background-color: #fff !important;
}

.announcement-bar,
.announcement-bar span,
.announcement-bar__item,
.announcement-bar__arrow {
  color: #000 !important;
}

/* Trusted shield in announcement bar */
.announcement-bar__shield-svg {
  display: inline-block;
  vertical-align: middle;
  margin-right: 6px;
}

/* Areas that ALWAYS keep white text (dark backgrounds) */
.theme-light .site-header,
.theme-light .site-header > .site-header__container a,
.theme-light .site-header > .site-header__container > button,
.theme-light .site-header > .site-header__container span:not(.login-dropdown__required),
.theme-light .site-header__nav-link,
.theme-light .site-header__signin,
.theme-light .site-header__cart,
.theme-light .site-header__cart-count,
.theme-light .site-header__search-toggle,
.theme-light .site-header__account-icon,
.theme-light .site-header__mobile-nav-link,
.theme-light .site-footer,
.theme-light .site-footer a,
.theme-light .site-footer h4,
.theme-light .site-footer p,
.theme-light .site-footer span,
.theme-light .site-footer li,
.theme-light .site-footer input,
.theme-light .site-footer label,
.theme-light .hero,
.theme-light .hero h1,
.theme-light .hero h2,
.theme-light .hero p,
.theme-light .hero a,
.theme-light .hero span,
.theme-light .floating-btn,
.theme-light .floating-btn span,
.theme-light .cart-drawer__checkout,
.theme-light .login-dropdown__title,
.theme-light .site-header__mobile-nav a,
.theme-light .product__order-button,
.theme-light .product__add-to-cart,
.theme-light .mkt-parallax h2,
.theme-light .mkt-parallax p,
.theme-light .mkt-parallax span,
.theme-light .mkt-parallax__title,
.theme-light .mkt-parallax__subtitle,
.theme-light .mkt-parallax__heading,
.theme-light .mkt-parallax__subtext,
.theme-light .mkt-cta__button {
  color: #fff !important;
}

/* --- Hide Privy tab visually (keep in DOM for JS .click() trigger) --- */
.privy-tab-container {
  position: fixed !important;
  left: -9999px !important;
}
