/* ============================================================
   BUBBLESKIN — Global Stylesheet
   Palette: Blush · Tan · Dusty Rose · Mauve · Baby Blue
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Manufacturing+Consent&family=Caudex:ital,wght@0,400;0,700;1,400;1,700&display=swap');

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

:root {
  /* ── Brand palette from moodboard ── */
  --white:        #FFFFFF;
  --blush:        #EDD5C4;        /* very light peachy pink  */
  --tan:          #CDA07A;        /* warm tan / sand         */
  --rose:         #CC8898;        /* dusty rose              */
  --rose-dark:    #B07080;        /* deeper rose for hover   */
  --rose-light:   #F5E4DC;        /* pale blush              */
  --rose-pale:    #FBF5F2;        /* almost white blush      */
  --mauve:        #A899B4;        /* soft lavender-mauve     */
  --mauve-lt:     #E8E2F0;        /* light mauve tint        */
  --blue:         #C4D8EA;        /* baby blue               */
  --blue-light:   #E5EFF7;        /* very light blue         */
  --cream:        #FBF7F5;        /* warm near-white         */

  /* ── Aliases for compatibility ── */
  --pink:         var(--rose);
  --pink-dark:    var(--rose-dark);
  --pink-light:   var(--rose-light);
  --pink-pale:    var(--rose-pale);
  --lavender:     var(--mauve);
  --lavender-lt:  var(--mauve-lt);
  --blue-light:   #E5EFF7;

  /* ── Typography ── */
  --text:         #3D2830;
  --text-mid:     #7A6068;
  --text-light:   #A89098;
  --border:       #EDD8D0;

  /* ── Effects ── */
  --shadow:       0 4px 28px rgba(204,136,152,0.15);
  --shadow-soft:  0 2px 16px rgba(168,153,180,0.12);
  --radius:       20px;
  --radius-sm:    12px;
  --radius-pill:  100px;
  --transition:   0.28s ease;
  --font:         'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
  --font-gothic:  'Manufacturing Consent', 'Engravers Old English BT', serif;
  --font-title:   'Caudex', serif;
}

html { scroll-behavior: smooth; scrollbar-width: none; }
html::-webkit-scrollbar { display: none; }

body {
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.75;
  color: var(--text);
  background: var(--cream);
}

img { max-width: 100%; display: block; }
a  { color: inherit; text-decoration: none; }
h1, h2, h3, h4 {
  line-height: 1.25;
  color: var(--text);
  font-family: var(--font-title);
  font-weight: 400;
  letter-spacing: 0.02em;
}

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 28px;
}

.section { padding: 96px 0; }
.section--pink { background: var(--pink-pale); }
.section--white { background: var(--white); }

/* --- Category Nav (filter bar on services/shop pages) ------ */
.cat-nav {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  padding: 24px 28px;
}

.cat-nav__btn {
  padding: 10px 28px;
  border-radius: var(--radius-pill);
  border: 1.5px solid var(--border);
  background: var(--white);
  color: var(--text-mid);
  font-family: var(--font);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  letter-spacing: 0.02em;
}
.cat-nav__btn:hover,
.cat-nav__btn.active {
  background: linear-gradient(135deg, var(--rose), var(--mauve));
  border-color: transparent;
  color: var(--white);
  box-shadow: 0 4px 16px rgba(204,136,152,0.28);
}

/* --- Labels & Titles --------------------------------------- */
.label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--rose-dark);
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--text);
}

.section-sub {
  font-size: 1.05rem;
  color: var(--text-mid);
  max-width: 520px;
  line-height: 1.8;
}

/* --- Buttons ----------------------------------------------- */
.btn {
  display: inline-block;
  padding: 14px 34px;
  border-radius: var(--radius-pill);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  cursor: pointer;
  border: none;
  transition: var(--transition);
}

.btn-primary {
  background: linear-gradient(135deg, var(--rose), var(--mauve));
  color: var(--white);
  box-shadow: 0 6px 24px rgba(204,136,152,0.32);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 32px rgba(204,136,152,0.45);
}

.btn-outline {
  background: rgba(255,255,255,0.25);
  border: 2px solid rgba(255,255,255,0.7);
  color: var(--white);
  backdrop-filter: blur(6px);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.45);
  transform: translateY(-3px);
}

.btn-soft {
  background: var(--rose-light);
  color: var(--rose-dark);
}
.btn-soft:hover {
  background: var(--rose);
  color: var(--white);
  transform: translateY(-2px);
}

/* --- Navigation -------------------------------------------- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 2000;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
}

.nav.scrolled {
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 20px rgba(240, 168, 192, 0.12);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
  width: 100%;
  padding: 0 48px;
  max-width: none;
  margin: 0;
}

/* ── Logo images ── */
.nav-logo-img {
  height: 64px;
  width: auto;
  display: block;
  margin: auto 0;
  transform: translateY(10px);
  transition: filter 0.4s ease;
}

/* White logo on home hero, fades to rose-pink on scroll */
.page-home .nav:not(.scrolled) .nav-logo-img {
  filter: brightness(0) invert(1);
}
.footer-logo-img {
  height: clamp(28px, 4vw, 48px);
  width: auto;
  display: block;
  margin-bottom: 4px;
  /* White letters need to show on dark footer */
  filter: brightness(1);
}
.auth-wordmark-img {
  max-width: 80%;
  height: auto;
  opacity: 0.22;
}
.auth-brand__logo-img {
  height: 50px;
  width: auto;
  display: block;
  margin-bottom: 20px;
}
/* Bottle label image on shop hero */
.products-hero__bottle-label {
  position: absolute;
  top: 26%;
  right: 10.2%;
  width: 38px;
  height: auto;
  z-index: 5;
  pointer-events: none;
  transform: translateX(50%);
  opacity: 0.82;
}

/* Nav logo */
.nav__logo {
  display: flex;
  align-items: center;
  align-self: stretch;
  line-height: 1;
}
.nav__logo .brand-name {
  color: var(--mauve);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-family: var(--font);
  font-weight: 600;
}

.nav__links {
  display: flex;
  gap: 44px;
  list-style: none;
}
.nav__links a {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text);
  display: inline-flex;
  align-items: center;
  transition: color var(--transition);
  padding-bottom: 3px;
  border-bottom: 2px solid transparent;
}
.nav__links a:hover,
.nav__links a.active {
  color: var(--rose-dark);
  border-bottom-color: var(--rose);
}

.nav__cta {
  font-size: 1rem !important;
  color: var(--text) !important;
  font-weight: 500;
  border-bottom: 2px solid transparent !important;
  background: none !important;
  padding: 0 !important;
  border-radius: 0 !important;
  transition: color 0.2s, border-color 0.2s;
}
.nav__cta:hover {
  color: var(--rose-dark) !important;
  border-bottom-color: var(--rose) !important;
  transform: none;
  opacity: 1;
}

.nav__icons {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: 16px;
}
.nav__icon-btn {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-pill);
  border: none;
  background: linear-gradient(135deg, var(--rose), var(--mauve));
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #ffffff;
  transition: opacity 0.2s, transform 0.2s;
  flex-shrink: 0;
  box-shadow: 0 2px 12px rgba(204,136,152,0.25);
}
.nav__icon-btn:hover {
  opacity: 0.88;
  transform: translateY(-1px);
}
.nav__icon-btn svg {
  width: 17px;
  height: 17px;
  stroke: currentColor;
}
.page-home .nav:not(.scrolled) .nav__links a,
.page-home .nav:not(.scrolled) .nav__cta {
  color: #ffffff !important;
}
.page-home .nav:not(.scrolled) .nav__links a:hover,
.page-home .nav:not(.scrolled) .nav__links a.active,
.page-home .nav:not(.scrolled) .nav__cta:hover {
  color: rgba(255,255,255,0.75) !important;
  border-bottom-color: rgba(255,255,255,0.6) !important;
}

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
}
.nav__toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--pink-dark);
  border-radius: 2px;
}

/* --- Hero -------------------------------------------------- */
.hero {
  position: relative;
  height: 100vh;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-image: url('public/hero-angels.jpg');
  background-size: cover;
  background-position: center center;
  z-index: 0;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(253,244,247,0.10) 0%,
    rgba(200,184,232,0.05) 50%,
    rgba(253,244,247,0.20) 100%
  );
  z-index: 1;
}

/* Hero logo — top center */
.hero__logo {
  position: absolute;
  top: 115px;
  left: 50%;
  transform: translateX(-47%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  font-family: var(--font-gothic);
  z-index: 3;
  white-space: nowrap;
}
.hero-wordmark-img {
  width: clamp(300px, 58vw, 860px);
  height: auto;
  opacity: 0.92;
}

/* Hero cherubs — flanking the scene */
.hero__scene {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}
.hero__cherub {
  position: absolute;
  width: clamp(100px, 11vw, 170px);
  filter: drop-shadow(0 8px 24px rgba(168,153,180,0.3));
}
.hero__cherub--left {
  left: 26%;
  bottom: 26%;
}
.hero__cherub--right {
  right: 22%;
  bottom: 26%;
  transform: scaleX(-1);
}

/* CTA buttons — bottom center */
.hero__cta {
  position: absolute;
  bottom: 60px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 16px;
  justify-content: center;
  z-index: 3;
  white-space: nowrap;
}

/* --- Bubble Badge ------------------------------------------ */
.bubble-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-pill);
  padding: 8px 18px;
  font-size: 0.83rem;
  font-weight: 600;
  color: var(--text-mid);
  box-shadow: var(--shadow-soft);
}
.bubble-badge span { font-size: 1.1rem; }

/* --- Product Cards ----------------------------------------- */
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

a.product-card {
  text-decoration: none;
  color: inherit;
  display: block;
}

.product-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: transform var(--transition), box-shadow var(--transition);
  border: 1px solid var(--border);
}
.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
}

.product-card__img {
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  position: relative;
  overflow: hidden;
}

.product-card__img--pink    { background: linear-gradient(135deg, var(--rose-light), var(--blush)); }
.product-card__img--blue    { background: linear-gradient(135deg, var(--blue-light), var(--blue)); }
.product-card__img--lavender{ background: linear-gradient(135deg, var(--mauve-lt), #D8C8E0); }
.product-card__img--mint    { background: linear-gradient(135deg, #E0F0EA, #C8E0D4); }
.product-card__img--peach   { background: linear-gradient(135deg, #FAF0E4, var(--blush)); }

/* Dual image product cards */
.product-card__img--dual {
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  overflow: hidden;
}
.product-card__img--dual img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.product-card__img--dual img:first-child {
  border-radius: var(--radius) 0 0 0;
}
.product-card__img--dual img:last-child {
  border-radius: 0 var(--radius) 0 0;
}
.product-card__img--dual img:hover {
  transform: scale(1.04);
}

/* Real photo product cards */
.product-card__img--photo,
.shop-card__img--photo {
  padding: 0;
  justify-content: unset;
  align-items: unset;
  font-size: unset;
}
.product-card__img--photo img,
.shop-card__img--photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: var(--radius) var(--radius) 0 0;
}

.product-card__body {
  padding: 24px;
}

.product-card__cat {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--pink-dark);
  margin-bottom: 6px;
}

.product-card__name {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0;
}

.product-card__name-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
}

.product-card__heart {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 3;
  background: rgba(255,255,255,0.88);
  border: 1.5px solid var(--border);
  border-radius: 50%;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--text-light);
  transition: border-color 0.2s, color 0.2s, background 0.2s;
  backdrop-filter: blur(4px);
}
.product-card__heart:hover { border-color: var(--rose-dark); color: var(--rose-dark); background: #fdf0f4; }
.product-card__heart.active { border-color: var(--rose-dark); color: var(--rose-dark); background: #fdf0f4; }
.product-card__heart.active svg { fill: var(--rose-dark); }

.product-card__desc {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 16px;
}

.product-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.product-card__price {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--pink-dark);
}

/* --- Values Cards ------------------------------------------ */
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.value-card {
  background: var(--pink-pale);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--border);
  transition: transform var(--transition);
}
.value-card:hover { transform: translateY(-4px); }

.value-card__icon {
  font-size: 2.2rem;
  margin-bottom: 14px;
  display: block;
}
.value-card__title {
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}
.value-card__text {
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 1.7;
}

/* --- Ingredients strip ------------------------------------- */
.ingredient-strip {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.ingredient-tag {
  background: var(--pink-light);
  color: var(--pink-dark);
  border-radius: var(--radius-pill);
  padding: 7px 18px;
  font-size: 0.85rem;
  font-weight: 600;
}

/* --- About Hero -------------------------------------------- */
.about-hero {
  margin-top: 84px;
  background: #dce9f5;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  gap: 0;
  overflow: hidden;
  position: relative;
}
.about-hero__angel {
  width: clamp(90px, 10vw, 160px);
  flex-shrink: 0;
  filter: drop-shadow(0 4px 16px rgba(180,160,200,0.18));
  margin: 0 -6px;
}
.about-hero__title {
  font-family: var(--font-gothic);
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 400;
  color: rgba(255,255,255,0.92);
  letter-spacing: 0.08em;
  text-align: center;
  white-space: nowrap;
  padding: 0 24px;
  text-shadow: 0 2px 18px rgba(150,130,180,0.25);
  text-transform: uppercase;
}

/* --- Products Hero ----------------------------------------- */
.products-hero {
  margin-top: 84px;
  padding-top: 0;
  position: relative;
  height: 70vh;
  min-height: 420px;
  background-image: url('public/shop pic hero.jpg');
  background-size: cover;
  background-position: center 55%;
  overflow: hidden;
}
.products-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(220,233,245,0.55) 0%,
    rgba(220,233,245,0.20) 45%,
    rgba(220,233,245,0.00) 100%
  );
}
.products-hero__text {
  position: absolute;
  top: 88px;
  left: 64px;
  z-index: 2;
  max-width: 500px;
}
.products-hero__title {
  font-family: var(--font-gothic);
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 400;
  color: #ffffff;
  line-height: 1;
  margin-bottom: 16px;
  white-space: nowrap;
  text-shadow: 0 0 18px rgba(239,201,210,0.7), 0 2px 8px rgba(239,201,210,0.5);
}
.products-hero__sub {
  font-size: 1rem;
  color: var(--text-mid);
  line-height: 1.7;
}

/* --- Contact Hero ------------------------------------------ */
.contact-hero {
  margin-top: 84px;
  position: relative;
  height: 70vh;
  min-height: 420px;
  background-image: url('public/tel.jpg');
  background-size: cover;
  background-position: center 55%;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  overflow: hidden;
}
.contact-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to left,
    rgba(251,245,242,0.72) 0%,
    rgba(251,245,242,0.30) 50%,
    rgba(251,245,242,0.05) 100%
  );
}
.contact-hero__text {
  position: relative;
  z-index: 2;
  text-align: right;
  padding: 60px 64px;
  max-width: 480px;
}
.contact-hero__title {
  font-family: var(--font-gothic);
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 400;
  color: var(--rose-dark);
  line-height: 1;
  margin-bottom: 16px;
}
.contact-hero__sub {
  font-size: 1rem;
  color: var(--text-mid);
  line-height: 1.7;
}

/* --- Page Hero (inner pages) ------------------------------- */
.page-hero {
  margin-top: 84px; /* compensate for fixed nav */
  background: linear-gradient(135deg, var(--rose-pale) 0%, var(--blue-light) 60%, var(--mauve-lt) 100%);
  padding: 80px 0;
  text-align: center;
  border-bottom: 1px solid var(--border);
}
.page-hero__title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  margin-bottom: 12px;
}
.page-hero__sub {
  font-size: 1.05rem;
  color: var(--text-mid);
}

.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--text-light);
  margin-bottom: 16px;
}
.breadcrumb a { color: var(--pink-dark); }

/* --- CTA Banner -------------------------------------------- */
.cta-banner {
  background: linear-gradient(135deg, var(--rose) 0%, var(--mauve) 100%);
  padding: 80px 0;
  text-align: center;
}
.cta-banner h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  color: var(--white);
  margin-bottom: 14px;
}
.cta-banner p {
  color: rgba(255,255,255,0.88);
  font-size: 1.05rem;
  margin-bottom: 36px;
}

/* --- Contact Form ------------------------------------------ */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 56px;
  align-items: start;
}

.contact-info__item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 28px;
}
.contact-info__icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--rose-light), var(--mauve-lt));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
  border: 1px solid var(--border);
}
.contact-info__label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--pink-dark);
  margin-bottom: 4px;
}
.contact-info__value {
  font-size: 0.96rem;
  color: var(--text-mid);
}

.form {
  background: var(--white);
  border-radius: var(--radius);
  padding: 44px 40px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}
.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.form__group { margin-bottom: 20px; }
.form__group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 7px;
}
.form__group input,
.form__group textarea,
.form__group select {
  width: 100%;
  padding: 13px 18px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font);
  font-size: 0.95rem;
  color: var(--text);
  background: var(--cream);
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.form__group input:focus,
.form__group textarea:focus,
.form__group select:focus {
  border-color: var(--pink);
  box-shadow: 0 0 0 3px rgba(240,168,192,0.18);
}
.form__group textarea { resize: vertical; min-height: 130px; }

/* --- Footer ------------------------------------------------ */
.footer {
  background: var(--mauve);
  color: rgba(255,255,255,0.9);
  padding: 64px 0 32px;
  position: relative;
  z-index: 2;
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer__logo {
  font-family: var(--font-gothic);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.90);
  margin-bottom: 14px;
  letter-spacing: 0.02em;
  line-height: 1;
  /* Subtle glow matching the brand palette */
  text-shadow: 0 0 32px rgba(239,201,210,0.35), 0 2px 8px rgba(0,0,0,0.25);
}
.footer__desc {
  font-size: 0.9rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.75);
}
.footer__col-title {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--white);
  margin-bottom: 16px;
}
.footer__links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer__links a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.75);
  transition: color var(--transition);
}
.footer__links a:hover { color: var(--white); }
.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 28px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.6);
}

/* --- Sparkles & Bubbles ------------------------------------ */

/* Floating iridescent bubbles */
.bubbles-wrap {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 1;
}

.bubble {
  position: absolute;
  bottom: -80px;
  border-radius: 50%;
  animation: floatBubble linear infinite;
  opacity: 0;
}

.bubble::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: conic-gradient(
    from 0deg,
    rgba(255,255,255,0.9),
    rgba(240,168,192,0.7),
    rgba(168,200,232,0.7),
    rgba(200,184,232,0.7),
    rgba(255,255,200,0.6),
    rgba(200,240,220,0.6),
    rgba(255,255,255,0.9)
  );
  animation: rotateBubble 4s linear infinite;
}

.bubble::after {
  content: '';
  position: absolute;
  inset: 15%;
  border-radius: 50%;
  background: radial-gradient(
    circle at 35% 35%,
    rgba(255,255,255,0.95) 0%,
    rgba(255,255,255,0.4) 30%,
    transparent 70%
  );
}

/* Individual bubble sizes & timings */
.bubble:nth-child(1)  { left: 8%;  width: 40px; height: 40px; animation-duration: 8s;  animation-delay: 0s;    opacity: 0; }
.bubble:nth-child(2)  { left: 18%; width: 20px; height: 20px; animation-duration: 10s; animation-delay: 1.5s;  opacity: 0; }
.bubble:nth-child(3)  { left: 28%; width: 56px; height: 56px; animation-duration: 12s; animation-delay: 3s;    opacity: 0; }
.bubble:nth-child(4)  { left: 42%; width: 28px; height: 28px; animation-duration: 9s;  animation-delay: 0.8s;  opacity: 0; }
.bubble:nth-child(5)  { left: 55%; width: 48px; height: 48px; animation-duration: 11s; animation-delay: 2.2s;  opacity: 0; }
.bubble:nth-child(6)  { left: 65%; width: 18px; height: 18px; animation-duration: 7s;  animation-delay: 4s;    opacity: 0; }
.bubble:nth-child(7)  { left: 75%; width: 36px; height: 36px; animation-duration: 13s; animation-delay: 1s;    opacity: 0; }
.bubble:nth-child(8)  { left: 85%; width: 60px; height: 60px; animation-duration: 10s; animation-delay: 3.5s;  opacity: 0; }
.bubble:nth-child(9)  { left: 92%; width: 24px; height: 24px; animation-duration: 8s;  animation-delay: 5s;    opacity: 0; }
.bubble:nth-child(10) { left: 35%; width: 14px; height: 14px; animation-duration: 6s;  animation-delay: 2.5s;  opacity: 0; }

@keyframes floatBubble {
  0%   { transform: translateY(0) translateX(0) scale(0.6);  opacity: 0; }
  10%  { opacity: 0.85; }
  50%  { transform: translateY(-45vh) translateX(20px) scale(1); opacity: 0.7; }
  90%  { opacity: 0.5; }
  100% { transform: translateY(-100vh) translateX(-10px) scale(0.8); opacity: 0; }
}

@keyframes rotateBubble {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* Sparkle particles */
.sparkles-wrap {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 1;
}

.sparkle {
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  animation: sparklePop ease-in-out infinite;
  opacity: 0;
}

.sparkle::before,
.sparkle::after {
  content: '✦';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 14px;
  animation: sparkleRotate linear infinite;
}

.sparkle:nth-child(1)  { top: 15%; left: 10%;  animation-duration: 2.4s; animation-delay: 0s;    color: var(--rose); }
.sparkle:nth-child(2)  { top: 30%; left: 25%;  animation-duration: 3.1s; animation-delay: 0.7s;  color: var(--mauve); }
.sparkle:nth-child(3)  { top: 20%; left: 55%;  animation-duration: 2.7s; animation-delay: 1.3s;  color: var(--blue); }
.sparkle:nth-child(4)  { top: 60%; left: 80%;  animation-duration: 3.5s; animation-delay: 0.3s;  color: var(--rose-dark); }
.sparkle:nth-child(5)  { top: 75%; left: 40%;  animation-duration: 2.2s; animation-delay: 1.8s;  color: var(--blush); }
.sparkle:nth-child(6)  { top: 45%; left: 70%;  animation-duration: 3.8s; animation-delay: 0.5s;  color: var(--mauve); }
.sparkle:nth-child(7)  { top: 10%; left: 90%;  animation-duration: 2.9s; animation-delay: 2.1s;  color: var(--rose); }
.sparkle:nth-child(8)  { top: 85%; left: 15%;  animation-duration: 3.3s; animation-delay: 1.1s;  color: var(--blue); }
.sparkle:nth-child(9)  { top: 55%; left: 5%;   animation-duration: 2.6s; animation-delay: 0.9s;  color: var(--tan); }
.sparkle:nth-child(10) { top: 40%; left: 48%;  animation-duration: 4.0s; animation-delay: 1.5s;  color: var(--rose-dark); }
.sparkle:nth-child(11) { top: 70%; left: 62%;  animation-duration: 2.3s; animation-delay: 2.4s;  color: var(--mauve); }
.sparkle:nth-child(12) { top: 25%; left: 75%;  animation-duration: 3.6s; animation-delay: 0.2s;  color: var(--rose); }

@keyframes sparklePop {
  0%   { opacity: 0;    transform: scale(0.4); }
  25%  { opacity: 1;    transform: scale(1.2); }
  50%  { opacity: 0.8;  transform: scale(0.9); }
  75%  { opacity: 1;    transform: scale(1.1); }
  100% { opacity: 0;    transform: scale(0.4); }
}

@keyframes sparkleRotate {
  from { transform: translate(-50%, -50%) rotate(0deg) scale(1); }
  50%  { transform: translate(-50%, -50%) rotate(180deg) scale(1.3); }
  to   { transform: translate(-50%, -50%) rotate(360deg) scale(1); }
}

/* Iridescent shimmer on cards */
.product-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius);
  background: linear-gradient(
    135deg,
    transparent 0%,
    rgba(255,255,255,0.05) 30%,
    rgba(200,184,232,0.08) 50%,
    rgba(168,200,232,0.06) 70%,
    transparent 100%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
  z-index: 1;
}
.product-card { position: relative; }
.product-card:hover::before { opacity: 1; }

/* Section shimmer divider */
.shimmer-divider {
  height: 3px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--pink) 15%,
    var(--lavender) 35%,
    var(--blue) 50%,
    rgba(255,220,240,0.8) 65%,
    var(--pink) 85%,
    transparent
  );
  background-size: 200% 100%;
  animation: shimmerSlide 3s ease-in-out infinite;
  border-radius: 2px;
  margin: 0 auto;
  max-width: 300px;
}

@keyframes shimmerSlide {
  0%   { background-position: 200% center; }
  100% { background-position: -200% center; }
}

/* Cloud sparkles — lens flare style */
.cloud-sparkles {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}
.cs {
  position: absolute;
  transform: translate(-50%, -50%);
}
/* Center bright dot */
.cs::before {
  content: '';
  position: absolute;
  width: 6px; height: 6px;
  background: white;
  border-radius: 50%;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  box-shadow:
    0 0 6px 3px rgba(255,255,255,0.9),
    0 0 14px 6px rgba(220,200,255,0.5),
    0 0 28px 10px rgba(255,200,230,0.25);
}
/* Cross arms */
.cs::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  background:
    linear-gradient(to right, transparent 0%, rgba(255,255,255,0.9) 50%, transparent 100%),
    linear-gradient(to bottom, transparent 0%, rgba(255,255,255,0.9) 50%, transparent 100%);
  background-blend-mode: screen;
  width: var(--arm); height: var(--arm);
  clip-path: polygon(
    50% 0%, 52% 48%, 100% 50%, 52% 52%,
    50% 100%, 48% 52%, 0% 50%, 48% 48%
  );
  filter: blur(0.5px);
}

/* Size & colour variations */
.cs:nth-child(1)  { --arm:60px;  left:4%;  top:14%; animation: csFlash 3.2s 0.0s ease-in-out infinite; }
.cs:nth-child(2)  { --arm:30px;  left:10%; top:35%; animation: csFlash 2.8s 1.3s ease-in-out infinite; }
.cs:nth-child(3)  { --arm:80px;  left:7%;  top:58%; animation: csFlash 3.6s 0.6s ease-in-out infinite; }
.cs:nth-child(4)  { --arm:40px;  left:19%; top:18%; animation: csFlash 2.5s 2.1s ease-in-out infinite; }
.cs:nth-child(5)  { --arm:24px;  left:23%; top:48%; animation: csFlash 3.0s 0.9s ease-in-out infinite; }
.cs:nth-child(6)  { --arm:70px;  left:36%; top:9%;  animation: csFlash 3.4s 1.7s ease-in-out infinite; }
.cs:nth-child(7)  { --arm:36px;  left:44%; top:28%; animation: csFlash 2.7s 0.4s ease-in-out infinite; }
.cs:nth-child(8)  { --arm:28px;  left:53%; top:65%; animation: csFlash 3.1s 2.5s ease-in-out infinite; }
.cs:nth-child(9)  { --arm:90px;  left:62%; top:20%; animation: csFlash 3.8s 0.2s ease-in-out infinite; }
.cs:nth-child(10) { --arm:32px;  left:69%; top:45%; animation: csFlash 2.6s 1.5s ease-in-out infinite; }
.cs:nth-child(11) { --arm:55px;  left:76%; top:12%; animation: csFlash 3.3s 0.8s ease-in-out infinite; }
.cs:nth-child(12) { --arm:26px;  left:81%; top:60%; animation: csFlash 2.9s 2.2s ease-in-out infinite; }
.cs:nth-child(13) { --arm:75px;  left:88%; top:30%; animation: csFlash 3.5s 1.0s ease-in-out infinite; }
.cs:nth-child(14) { --arm:22px;  left:93%; top:72%; animation: csFlash 2.8s 1.8s ease-in-out infinite; }
.cs:nth-child(15) { --arm:45px;  left:30%; top:78%; animation: csFlash 3.0s 0.5s ease-in-out infinite; }
.cs:nth-child(16) { --arm:20px;  left:47%; top:52%; animation: csFlash 2.4s 2.8s ease-in-out infinite; }
.cs:nth-child(17) { --arm:60px;  left:58%; top:85%; animation: csFlash 3.2s 1.2s ease-in-out infinite; }
.cs:nth-child(18) { --arm:38px;  left:74%; top:80%; animation: csFlash 2.7s 0.7s ease-in-out infinite; }
.cs:nth-child(19) { --arm:50px;  left:14%; top:68%; animation: csFlash 3.1s 1.9s ease-in-out infinite; }
.cs:nth-child(20) { --arm:28px;  left:26%; top:22%; animation: csFlash 2.6s 0.3s ease-in-out infinite; }
.cs:nth-child(21) { --arm:65px;  left:40%; top:62%; animation: csFlash 3.4s 2.3s ease-in-out infinite; }
.cs:nth-child(22) { --arm:22px;  left:51%; top:38%; animation: csFlash 2.5s 1.1s ease-in-out infinite; }
.cs:nth-child(23) { --arm:42px;  left:64%; top:72%; animation: csFlash 3.0s 2.7s ease-in-out infinite; }
.cs:nth-child(24) { --arm:30px;  left:85%; top:48%; animation: csFlash 2.8s 0.6s ease-in-out infinite; }
.cs:nth-child(25) { --arm:55px;  left:2%;  top:82%; animation: csFlash 3.3s 1.4s ease-in-out infinite; }
.cs:nth-child(26) { --arm:20px;  left:33%; top:44%; animation: csFlash 2.4s 3.0s ease-in-out infinite; }
.cs:nth-child(27) { --arm:48px;  left:96%; top:18%; animation: csFlash 3.6s 0.9s ease-in-out infinite; }

@keyframes csFlash {
  0%        { opacity: 0;   transform: translate(-50%,-50%) scale(0.2) rotate(0deg); }
  8%        { opacity: 1;   transform: translate(-50%,-50%) scale(1.1) rotate(10deg); }
  18%       { opacity: 0.9; transform: translate(-50%,-50%) scale(1)   rotate(15deg); }
  45%       { opacity: 0.4; transform: translate(-50%,-50%) scale(0.8) rotate(20deg); }
  70%, 100% { opacity: 0;   transform: translate(-50%,-50%) scale(0.1) rotate(30deg); }
}

/* Iridescent hero title glow pulse */
@keyframes logoPulse {
  0%, 100% { filter: drop-shadow(0 2px 20px rgba(212,128,154,0.4)) drop-shadow(0 0 60px rgba(200,184,232,0.5)); }
  50%       { filter: drop-shadow(0 2px 40px rgba(212,128,154,0.7)) drop-shadow(0 0 80px rgba(168,200,232,0.7)); }
}

/* --- Shop-Products merged page ----------------------------- */

/* Fixed glitter layer behind all content */
.page-glitter {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

/* Hero-specific sparkles — absolute inside the hero, scroll with image */
.hero-sparkles {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  overflow: hidden;
}

/* Section sparkles — absolute inside the section, behind product cards */
.section-sparkles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

/* Sections need relative positioning to contain their own sparkle layers */
.products-page .section {
  position: relative;
}

/* Tighter section padding on shop page */
.products-page .section {
  padding: 48px 0;
}

/* Images on shop page */
.products-page .product-card__img {
  height: 240px;
}
.products-page .product-card__img--dual img {
  height: 240px;
}

/* 3-column grid */
.products-page .product-grid {
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* Single-product sections: centre the card */
.products-page .product-grid--solo {
  grid-template-columns: minmax(0, 520px);
  justify-content: center;
}

/* Add-to-cart button on product cards */
.product-card__add {
  flex: 0 0 auto;
  padding: 8px 16px;
  background: linear-gradient(135deg, var(--rose), var(--mauve));
  color: var(--white);
  border: none;
  border-radius: var(--radius-pill);
  font-family: var(--font);
  font-size: 0.82rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}
.product-card__add:hover {
  opacity: 0.88;
  transform: translateY(-1px);
}

/* Floating cart bar */
.cart-bar {
  position: fixed;
  bottom: 28px;
  right: 28px;
  background: linear-gradient(135deg, var(--rose-dark), var(--mauve));
  color: var(--white);
  border-radius: var(--radius-pill);
  padding: 14px 28px;
  font-size: 0.92rem;
  font-weight: 700;
  box-shadow: 0 8px 32px rgba(176,112,128,0.4);
  cursor: pointer;
  z-index: 300;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: var(--transition);
}
.cart-bar:hover { transform: translateY(-3px); }
.cart-bar__count {
  background: var(--white);
  color: var(--rose-dark);
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 800;
}

/* ── Mobile ─────────────────────────────────────────────────────────────── */
@media (max-width: 768px) {

  /* --- Nav --- */
  .nav__inner {
    padding: 0 20px;
    height: 64px;
  }
  .nav__links {
    display: none;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    background: rgba(255,255,255,0.98);
    border-bottom: 1px solid var(--border);
    padding: 8px 0 16px;
    z-index: 999;
    box-shadow: 0 8px 24px rgba(204,136,152,0.10);
    backdrop-filter: blur(12px);
  }
  .nav--open .nav__links {
    display: flex;
  }
  .nav__links a {
    font-size: 0.95rem;
    padding: 12px 20px;
    border-bottom: 1px solid var(--border);
    color: var(--text) !important;
    border-bottom-color: var(--border) !important;
  }
  .nav__links li:last-child a { border-bottom: none; }
  .page-home .nav.nav--open .nav__links a,
  .page-home .nav.nav--open .nav__links a:hover {
    color: var(--text) !important;
    border-bottom-color: var(--rose) !important;
  }
  .nav__icons { display: none; }
  .nav__toggle { display: flex; }
  .nav__toggle span { background: var(--rose-dark); }

  /* --- Hero --- */
  .hero-wordmark-img {
    width: 90vw;
    max-width: none;
  }
  .hero__logo {
    top: 185px;
    left: 50%;
    transform: translateX(-50%);
    width: 90vw;
  }
  .hero__cta {
    flex-direction: column;
    align-items: center;
    bottom: 32px;
    gap: 10px;
    white-space: normal;
  }
  .hero__cta .btn {
    padding: 11px 26px;
    font-size: 0.84rem;
  }
  .hero__cherub {
    width: clamp(56px, 13vw, 80px);
  }
  .hero__cherub--left  { left: 2%;  bottom: 20%; }
  .hero__cherub--right { right: 0%; bottom: 20%; }

  /* --- Sections --- */
  .section { padding: 48px 0; }
  .container { padding: 0 16px; }

  /* --- Product grid --- */
  .product-grid,
  .products-page .product-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  /* --- About page grids (story + ingredients) → single column --- */
  .about-grid {
    grid-template-columns: 1fr !important;
    gap: 28px !important;
  }

  /* --- Values grid --- */
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .value-card { padding: 24px 16px; }

  /* --- About hero --- */
  .about-hero { display: none; }

  /* --- Products hero --- */
  .products-hero {
    height: 52vw;
    min-height: 200px;
  }
  .products-hero__text {
    top: 20px;
    left: 16px;
    max-width: calc(100% - 32px);
  }
  .products-hero__title {
    font-size: clamp(1.5rem, 6.5vw, 2.4rem);
    white-space: normal;
    margin-bottom: 8px;
  }
  .products-hero__sub { font-size: 0.85rem; }

  /* --- Contact hero --- */
  .contact-hero {
    height: 52vw;
    min-height: 200px;
    justify-content: flex-start;
    align-items: flex-end;
  }
  .contact-hero__text {
    text-align: left;
    padding: 16px 20px;
    max-width: 100%;
  }
  .contact-hero__title {
    font-size: clamp(1.5rem, 6.5vw, 2.4rem);
    margin-bottom: 6px;
  }
  .contact-hero__sub { font-size: 0.85rem; }

  /* --- Contact layout --- */
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  /* --- Form --- */
  .form__row { grid-template-columns: 1fr; gap: 0; }
  .form { padding: 24px 16px; }

  /* --- Page hero (inner pages) --- */
  .page-hero { padding: 48px 0; margin-top: 64px; }

  /* --- Products / Contact page top margin --- */
  .products-hero,
  .contact-hero { margin-top: 64px; }
  /* About page: first visible section compensates for hidden hero */
  .about-hero + .section { margin-top: 64px; }

  /* --- Footer --- */
  .footer__grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .footer__bottom {
    flex-direction: column;
    gap: 6px;
    text-align: center;
  }

  /* --- Brand banner section --- */
  .brand-banner-section { padding: 20px 16px !important; }

  /* --- Cat nav --- */
  .cat-nav { padding: 16px; gap: 8px; }
  .cat-nav__btn { padding: 8px 18px; font-size: 0.82rem; }

  /* --- Badges strip --- */
  .bubble-badge { font-size: 0.78rem; padding: 7px 14px; }

  /* --- CTA banner --- */
  .cta-banner { padding: 52px 0; }
}
