/* GlowItSkincare — Main Styles (Monica Home-3 inspired) */

:root {
  --glowit-bg: #f4faf5;
  --glowit-accent: #0d7a3f;
  --glowit-accent-dark: #01411c;
  --glowit-text: #0a1f12;
  --glowit-muted: #4a6b55;
  --glowit-white: #ffffff;
  --glowit-line: #cfe0d4;
  --glowit-dark: #01411c;
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-script: "Great Vibes", cursive;
  --font-body: "Outfit", system-ui, sans-serif;
  --container: 1280px;
  --radius: 0;
  --header-h: 78px;
}

*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--glowit-text);
  background: var(--glowit-bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color .25s ease, opacity .25s ease; }
ul { margin: 0; padding: 0; list-style: none; }
h1,h2,h3,h4 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.15;
  margin: 0 0 .5em;
}

.container {
  width: min(100% - 2.5rem, var(--container));
  margin-inline: auto;
}

.section { padding: 4.5rem 0; }

.section-head { margin-bottom: 2.5rem; }
.section-head.center { text-align: center; }
.section-head--split {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.section-head h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin: 0;
}
.eyebrow {
  display: inline-block;
  font-size: .75rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--glowit-muted);
  margin-bottom: .75rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .95rem 1.75rem;
  font-family: var(--font-body);
  font-size: .8rem;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background .3s ease, color .3s ease, border-color .3s ease, transform .3s ease;
}
.btn--light { background: var(--glowit-white); color: var(--glowit-dark); }
.btn--light:hover { background: var(--glowit-accent); color: var(--glowit-white); }
.btn--dark { background: var(--glowit-dark); color: var(--glowit-white); }
.btn--dark:hover { background: var(--glowit-accent); }
.btn--outline {
  background: transparent;
  border-color: var(--glowit-dark);
  color: var(--glowit-dark);
}
.btn--outline:hover { background: var(--glowit-dark); color: var(--glowit-white); }

.link-arrow {
  font-size: .75rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
}

/* Announcement */
.announce-bar {
  background: var(--glowit-dark);
  color: var(--glowit-white);
  overflow: hidden;
  white-space: nowrap;
  font-size: .75rem;
  letter-spacing: .08em;
  padding: .65rem 0;
}
.announce-track {
  display: inline-flex;
  align-items: center;
  gap: 1.5rem;
  animation: marquee 35s linear infinite;
}
.announce-dot { opacity: .4; }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(244, 250, 245, .94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--glowit-line);
}
.header-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 1.25rem;
  min-height: var(--header-h);
}
.header-brand {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.header-brand .site-brand,
.header-brand .custom-logo-link,
.header-brand .site-brand--img,
.header-brand .site-brand--text {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.site-brand--text {
  flex-direction: column;
  gap: 0;
  line-height: 1;
  text-align: center;
  background: none !important;
  text-decoration: none;
  color: var(--glowit-dark);
}
.site-brand__title {
  font-family: var(--font-script);
  font-size: clamp(2rem, 3.2vw, 2.65rem);
  font-weight: 400;
  letter-spacing: .02em;
  line-height: .95;
  color: var(--glowit-dark);
}
.site-brand__tag {
  font-family: var(--font-script);
  font-size: clamp(.95rem, 1.5vw, 1.15rem);
  font-weight: 400;
  letter-spacing: .04em;
  line-height: 1;
  margin-top: .05rem;
  color: var(--glowit-accent-dark);
  text-align: center;
  display: block;
  width: 100%;
}
.site-brand__name,
.custom-logo-link {
  font-family: var(--font-display);
  font-size: 1.85rem;
  font-weight: 600;
  letter-spacing: .04em;
}
.custom-logo { max-height: 52px; width: auto; }
.site-brand--img {
  display: inline-flex;
  align-items: center;
  line-height: 0;
}
.site-brand__logo,
.footer-logo {
  display: block;
  max-height: 58px;
  width: auto;
  object-fit: contain;
}
.header-brand .site-brand__logo,
.header-brand .custom-logo {
  max-height: 52px;
  width: auto;
  margin: 0 auto;
}
.footer-logo { max-height: 72px; }
.footer-brand-col .site-brand--text {
  align-items: flex-start;
  text-align: left;
  margin-bottom: .75rem;
}
.footer-brand-col .site-brand__tag {
  text-align: left;
}

.primary-nav {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}
.nav-menu {
  display: flex;
  gap: 1.75rem;
  align-items: center;
  margin: 0;
  padding: 0;
  list-style: none;
}
.nav-menu a {
  font-size: .85rem;
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.nav-menu a:hover { color: var(--glowit-accent-dark); }

.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-left: auto;
  z-index: 2;
}
.header-link {
  font-size: .8rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.header-account {
  display: none;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: var(--glowit-dark);
}
.header-cart {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
}
.cart-count {
  position: absolute;
  top: 2px;
  right: 0;
  min-width: 18px;
  height: 18px;
  padding: 0 4px;
  border-radius: 999px;
  background: var(--glowit-accent);
  color: #fff;
  font-size: .65rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.nav-toggle {
  display: none;
  position: relative;
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
  z-index: 220;
}
.nav-toggle span {
  position: absolute;
  left: 11px;
  display: block;
  width: 22px;
  height: 2px;
  background: var(--glowit-dark);
  border-radius: 1px;
  transition: transform .28s ease, opacity .2s ease, top .28s ease;
}
.nav-toggle span:nth-child(1) { top: 15px; }
.nav-toggle span:nth-child(2) { top: 21px; }
.nav-toggle span:nth-child(3) { top: 27px; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  top: 21px;
  transform: rotate(45deg);
}
.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  top: 21px;
  transform: rotate(-45deg);
}

.nav-backdrop,
.nav-mobile-extra {
  display: none;
}

/* Back to top */
.glowit-top {
  position: fixed;
  right: 1.15rem;
  bottom: 6.25rem;
  z-index: 9990;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 50%;
  background: var(--glowit-dark);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 28px rgba(0,0,0,.18);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity .25s ease, transform .25s ease, visibility .25s ease, background .2s ease;
}
.glowit-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.glowit-top:hover { background: var(--glowit-accent); }

/* Floating Azadi sale card (right) */
.glowit-sale-float {
  position: fixed;
  top: 38%;
  right: 1rem;
  z-index: 9980;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  animation: saleFloat 3.2s ease-in-out infinite;
}
.glowit-sale-float__string {
  width: 2px;
  height: 28px;
  background: linear-gradient(180deg, transparent, #c9a227 30%, #c9a227);
  border-radius: 2px;
}
.glowit-sale-float__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .15rem;
  width: 92px;
  min-height: 110px;
  padding: .85rem .45rem .7rem;
  background: linear-gradient(160deg, #0d7a3f 0%, #01411c 100%);
  color: #fff;
  text-align: center;
  clip-path: polygon(50% 0, 100% 12%, 92% 100%, 8% 100%, 0 12%);
  box-shadow: 0 14px 28px rgba(1, 65, 28, .35);
  border: 1px solid rgba(255,255,255,.18);
}
.glowit-sale-float__card strong {
  font-family: var(--font-body);
  font-size: .62rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-weight: 700;
}
.glowit-sale-float__card em {
  font-style: normal;
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: .02em;
  color: #f5e6a8;
  line-height: 1.1;
}
.glowit-sale-float__card small {
  font-size: .55rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  opacity: .9;
}
@keyframes saleFloat {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  50% { transform: translateY(-10px) rotate(2deg); }
}
.glowit-sale-float:hover {
  animation-play-state: paused;
  transform: scale(1.05);
}

/* Instagram collabs */
.home-collabs .section-head--center {
  text-align: center;
  margin-bottom: 2rem;
}
.home-collabs .section-head--center p {
  max-width: 42ch;
  margin: .5rem auto 0;
  color: var(--glowit-muted);
}
.glowit-collab-grid {
  display: grid;
  gap: 1.25rem;
}
.glowit-collab-grid--1 { grid-template-columns: minmax(0, 520px); justify-content: center; }
.glowit-collab-grid--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.glowit-collab-grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.glowit-collab-card {
  margin: 0;
  background: #fff;
  border: 1px solid var(--glowit-line);
  overflow: hidden;
}
.glowit-collab-card__media {
  position: relative;
  aspect-ratio: 9 / 16;
  max-height: 560px;
  background: #0a1f12;
}
.glowit-collab__frame,
.glowit-collab__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  object-fit: cover;
}
.glowit-collab__frame--ig {
  background: #fff;
}
.glowit-collab-card figcaption {
  padding: .85rem 1rem;
  font-size: .85rem;
  letter-spacing: .04em;
  text-align: center;
}
@media (max-width: 900px) {
  .glowit-collab-grid--2,
  .glowit-collab-grid--3 { grid-template-columns: 1fr; max-width: 380px; margin: 0 auto; }
  .glowit-sale-float {
    top: auto;
    bottom: 6.5rem;
    right: .65rem;
    transform: scale(.88);
  }
  @keyframes saleFloat {
    0%, 100% { transform: scale(.88) translateY(0) rotate(-2deg); }
    50% { transform: scale(.88) translateY(-8px) rotate(2deg); }
  }
}

/* 14 August Independence banner */
.home-aug14 {
  padding-top: 0;
  padding-bottom: 1.5rem;
}
.home-aug14__link {
  display: block;
  overflow: hidden;
  border: 1px solid var(--glowit-line);
  box-shadow: 0 12px 36px rgba(1, 65, 28, .12);
  transition: transform .35s ease, box-shadow .35s ease;
}
.home-aug14__link:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 44px rgba(1, 65, 28, .18);
}
.home-aug14__img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 16 / 7;
  object-fit: cover;
  object-position: center;
}
@media (max-width: 700px) {
  .home-aug14__img {
    aspect-ratio: 16 / 9;
    object-position: left center;
  }
}

/* Hero — Azadi slider */
.home-hero,
.home-hero--azadi,
.home-hero--slider {
  position: relative;
  min-height: 0;
  height: auto;
  display: block;
  overflow: hidden;
  background: #01411c;
}
.home-hero__track {
  position: relative;
  width: 100%;
}
.home-hero__slide {
  display: none;
  line-height: 0;
  animation: heroFadeIn .55s ease both;
}
.home-hero__slide.is-active {
  display: block;
}
.home-hero__slide-img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 1920 / 820;
  object-fit: cover;
  object-position: center;
}
.home-hero__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 4;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 50%;
  background: rgba(255,255,255,.92);
  color: #01411c;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(0,0,0,.18);
  transition: background .2s ease, transform .2s ease;
}
.home-hero__nav:hover {
  background: #fff;
  transform: translateY(-50%) scale(1.05);
}
.home-hero__nav--prev { left: 1rem; }
.home-hero__nav--next { right: 1rem; }
.home-hero__dots {
  position: absolute;
  left: 50%;
  bottom: 1.1rem;
  transform: translateX(-50%);
  z-index: 4;
  display: flex;
  gap: .45rem;
}
.home-hero__dot {
  width: 10px;
  height: 10px;
  border: 0;
  border-radius: 50%;
  background: rgba(255,255,255,.45);
  cursor: pointer;
  padding: 0;
}
.home-hero__dot.is-active {
  background: #fff;
  box-shadow: 0 0 0 2px rgba(1,65,28,.35);
}
@keyframes heroFadeIn {
  from { opacity: .35; }
  to { opacity: 1; }
}
@media (max-width: 700px) {
  .home-hero__slide-img {
    aspect-ratio: 4 / 5;
    object-position: left center;
  }
  .home-hero__nav {
    width: 38px;
    height: 38px;
  }
  .home-hero__nav--prev { left: .5rem; }
  .home-hero__nav--next { right: .5rem; }
}

/* Circles */
.circles-track {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.5rem;
}
.circle-item {
  text-align: center;
  transition: transform .35s ease;
}
.circle-item:hover { transform: translateY(-6px); }
.circle-item__img {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 1rem;
  background: #dceee2;
}
.circle-item__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.circle-item:hover .circle-item__img img { transform: scale(1.08); }
.circle-item__count {
  display: block;
  font-size: .75rem;
  color: var(--glowit-muted);
  margin-bottom: .35rem;
}
.circle-item__title {
  font-size: 1.15rem;
  margin: 0;
}

/* Offer */
.home-offer__grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 0;
  background: #f1ebe3;
  overflow: hidden;
}
.home-offer__content {
  padding: clamp(2rem, 5vw, 4rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.home-offer__content h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
}
.home-offer__content p {
  color: var(--glowit-muted);
  max-width: 36ch;
  margin-bottom: 1.75rem;
}
.home-offer__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 420px;
}

/* Ads */
.home-ads__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.ad-banner {
  position: relative;
  overflow: hidden;
  min-height: 320px;
  display: block;
}
.ad-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  transition: transform .6s ease;
}
.ad-banner:hover img { transform: scale(1.06); }
.ad-banner__content {
  position: relative;
  z-index: 2;
  padding: 2rem;
  color: var(--glowit-white);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: linear-gradient(180deg, transparent 30%, rgba(0,0,0,.45));
  min-height: 320px;
}
.ad-banner__content h3 {
  font-size: 2rem;
  text-transform: lowercase;
  margin-bottom: .5rem;
}
.ad-banner__content span {
  font-size: .75rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  border-bottom: 1px solid currentColor;
  width: fit-content;
}

/* Beauty cats — Monica split + slider */
.home-beauty {
  background: #fff;
  padding: 0;
}
.home-beauty__grid {
  display: grid;
  grid-template-columns: minmax(280px, .9fr) minmax(320px, 1.15fr);
  min-height: min(78vh, 720px);
  align-items: stretch;
}
.home-beauty__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(2.5rem, 6vw, 5rem) clamp(1.5rem, 5vw, 4.5rem);
  max-width: 560px;
  margin-left: auto;
  width: 100%;
}
.home-beauty__content .eyebrow {
  color: var(--glowit-dark);
  margin-bottom: 1rem;
  letter-spacing: .2em;
}
.home-beauty__title {
  font-family: var(--font-body);
  font-size: clamp(1.6rem, 3.2vw, 2.55rem);
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  line-height: 1.2;
  margin: 0 0 1.1rem;
}
.home-beauty__title-main { color: var(--glowit-dark); }
.home-beauty__title-muted {
  display: block;
  font-weight: 400;
  color: #b7b0a8;
}
.home-beauty__content p {
  margin: 0 0 1.75rem;
  color: #6a635c;
  font-size: .98rem;
  line-height: 1.7;
  max-width: 38ch;
}
.home-beauty__content .btn {
  align-self: flex-start;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .78rem;
}
.home-beauty__slider {
  position: relative;
  overflow: hidden;
  background: #dceee2;
  min-height: 420px;
}
.beauty-slider__viewport {
  height: 100%;
  overflow: hidden;
}
.beauty-slider__track {
  display: flex;
  height: 100%;
  transition: transform .55s ease;
  will-change: transform;
}
.beauty-slide {
  position: relative;
  flex: 0 0 100%;
  min-width: 100%;
  height: 100%;
  min-height: min(78vh, 720px);
}
.beauty-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}
.beauty-slide__caption {
  position: absolute;
  left: 0;
  right: 90px;
  bottom: 0;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  gap: 1rem;
  padding: 1.35rem 1.5rem;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,.45));
  color: #fff;
}
.beauty-slide__caption strong {
  font-family: var(--font-body);
  font-size: .85rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  white-space: nowrap;
  flex-shrink: 0;
}
.beauty-slide__caption span {
  font-size: .82rem;
  line-height: 1.45;
  opacity: .92;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.beauty-slider__nav {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 3;
  display: flex;
  background: #c8e6d3;
}
.beauty-slider__nav button {
  width: 54px;
  height: 48px;
  border: 0;
  background: transparent;
  color: #1c1814;
  font-size: 1.15rem;
  cursor: pointer;
  line-height: 1;
}
.beauty-slider__nav button:hover { background: rgba(0,0,0,.06); }

/* legacy grid kept harmless */
.beauty-cats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.beauty-cat__img {
  overflow: hidden;
  margin-bottom: 1.25rem;
  aspect-ratio: 4/5;
  background: #dceee2;
}
.beauty-cat__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .55s ease;
}
.beauty-cat:hover .beauty-cat__img img { transform: scale(1.05); }
.beauty-cat__body h3 {
  font-size: 1.5rem;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.beauty-cat__body p {
  color: var(--glowit-muted);
  font-size: .95rem;
  margin-bottom: 1rem;
}

/* Results */
.home-results__banner {
  min-height: 420px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
}
.home-results__banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(28,24,20,.35);
}
.home-results__banner-inner {
  position: relative;
  z-index: 1;
  color: #fff;
  padding: 2rem;
}
.home-results__banner-inner h2 {
  font-family: var(--font-body);
  font-size: clamp(1.6rem, 4vw, 3rem);
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
  max-width: 16ch;
  margin-left: auto;
  margin-right: auto;
}
.home-results__partner {
  padding: 3.5rem 0;
  max-width: 720px;
  text-align: center;
}
.home-results__partner h3 {
  font-size: 1.1rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-family: var(--font-body);
  font-weight: 500;
}
.home-results__partner p { color: var(--glowit-muted); }

/* Skin */
.skin-layout {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 2rem;
  align-items: start;
}
.skin-layout__main img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
}
.skin-layout__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
.skin-card__img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
  margin-bottom: .85rem;
  background: #dceee2;
}
.skin-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.skin-card__shop {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: .75rem;
  text-align: center;
  background: rgba(28,24,20,.75);
  color: #fff;
  font-size: .7rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  transform: translateY(100%);
  transition: transform .35s ease;
}
.skin-card:hover .skin-card__shop { transform: translateY(0); }
.skin-card h3 { font-size: 1.35rem; margin-bottom: .25rem; }
.skin-card p { color: var(--glowit-muted); font-size: .9rem; margin: 0; }

/* Testimonials */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.testimonial-card {
  background: var(--glowit-white);
  padding: 1.25rem;
}
.testimonial-card__product {
  display: flex;
  gap: .85rem;
  align-items: center;
  margin-bottom: 1rem;
}
.testimonial-card__product img {
  width: 56px;
  height: 56px;
  object-fit: cover;
}
.testimonial-card__product span {
  display: block;
  font-size: .8rem;
  color: var(--glowit-muted);
}
.testimonial-card__photo {
  aspect-ratio: 4/5;
  overflow: hidden;
  margin-bottom: 1rem;
}
.testimonial-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.testimonial-card blockquote {
  margin: 0;
}
.testimonial-card blockquote p {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-style: italic;
  margin-bottom: 1rem;
}
.testimonial-card footer {
  display: flex;
  flex-direction: column;
  gap: .15rem;
}
.testimonial-card footer span {
  font-size: .8rem;
  color: var(--glowit-muted);
}

/* Featured product on home */
.home-featured {
  background: #f3ece4;
  background-size: cover;
}
.home-featured__grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 3rem;
  align-items: center;
}
.home-featured__img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
}
.home-featured__thumbs {
  display: flex;
  gap: .75rem;
  margin-top: 1rem;
}
.home-featured__thumbs img {
  width: 72px;
  height: 72px;
  object-fit: cover;
}
.home-featured__summary h2 {
  font-size: clamp(2rem, 4vw, 3rem);
}
.home-featured__summary .price {
  font-size: 1.25rem;
  margin: .75rem 0;
}
.home-featured__actions {
  display: flex;
  gap: .75rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}
.product-cat-label {
  font-size: .85rem;
  color: var(--glowit-muted);
}

/* Collection */
.home-collection__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.collection-item {
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--glowit-line);
}
.collection-item h3 {
  font-size: 1.4rem;
  margin-bottom: .35rem;
}
.collection-item p {
  color: var(--glowit-muted);
  margin: 0;
}
.home-collection__media {
  position: relative;
  min-height: 520px;
}
.home-collection__img {
  position: absolute;
  object-fit: cover;
  box-shadow: 0 20px 50px rgba(0,0,0,.12);
}
.home-collection__img--1 {
  width: 68%;
  aspect-ratio: 4/5;
  left: 0;
  top: 0;
}
.home-collection__img--2 {
  width: 48%;
  aspect-ratio: 4/5;
  right: 0;
  bottom: 0;
}

/* Support */
.support-track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  text-align: center;
  padding: 1rem 0 2rem;
  border-top: 1px solid var(--glowit-line);
}
.support-item__icon {
  display: block;
  width: 36px;
  height: 36px;
  margin: 0 auto 1rem;
  border: 1px solid var(--glowit-accent);
  border-radius: 50%;
  position: relative;
}
.support-item__icon::after {
  content: "";
  position: absolute;
  inset: 8px;
  border-radius: 50%;
  background: var(--glowit-accent);
  opacity: .35;
}
.support-item strong {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
}

/* Footer */
.site-footer {
  background: #f3ece4;
  padding-top: 4rem;
  margin-top: 2rem;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: 3rem;
  padding-bottom: 3rem;
}
.footer-about {
  color: var(--glowit-muted);
  max-width: 36ch;
  margin: 1rem 0 1.5rem;
}
.footer-social,
.glowit-social {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem 1rem;
  align-items: center;
  font-size: .85rem;
}
.footer-social a,
.glowit-social a { text-decoration: underline; text-underline-offset: 3px; }
.glowit-social__links {
  display: inline-flex;
  flex-wrap: wrap;
  gap: .65rem 1rem;
}
.glowit-popup__social {
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid var(--glowit-line);
}
.glowit-popup__social .glowit-social__label {
  display: block;
  width: 100%;
  margin-bottom: .5rem;
  font-size: .75rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--glowit-muted);
}
.footer-cols {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.footer-cols--three {
  grid-template-columns: repeat(3, 1fr);
}
.footer-col h4 {
  font-family: var(--font-body);
  font-size: .75rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}
.footer-menu li { margin-bottom: .55rem; }
.footer-menu a {
  font-size: .9rem;
  color: var(--glowit-muted);
}
.footer-menu a:hover { color: var(--glowit-dark); }
.footer-bottom {
  border-top: 1px solid var(--glowit-line);
  padding: 1.25rem 0;
}
.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: .85rem;
  color: var(--glowit-muted);
}
.footer-legal {
  display: flex;
  gap: 1.25rem;
}

/* Popup */
.glowit-popup[hidden] { display: none !important; }
.glowit-popup {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
}
.glowit-popup__overlay {
  position: absolute;
  inset: 0;
  background: rgba(20,16,12,.55);
}
.glowit-popup__dialog {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: min(920px, 100%);
  max-height: min(90vh, 560px);
  background: var(--glowit-white);
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,.25);
  animation: fadeUp .4s ease;
}
.glowit-popup__close {
  position: absolute;
  top: .5rem;
  right: .75rem;
  border: 0;
  background: none;
  font-size: 1.75rem;
  cursor: pointer;
  line-height: 1;
  z-index: 2;
}
.glowit-popup__media {
  position: relative;
  min-height: 280px;
  background: #01411c;
}
.glowit-popup__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 280px;
}
.glowit-popup__badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: #fff;
  color: #01411c;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .12em;
  padding: .4rem .7rem;
}
.glowit-popup--azadi .glowit-popup__dialog {
  border: 1px solid #cfe0d4;
}
.glowit-popup--azadi .glowit-popup__body {
  background: #f4faf5;
}
.glowit-popup__eyebrow {
  display: inline-block;
  font-size: .72rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #0d7a3f;
  font-weight: 600;
  margin-bottom: .5rem;
}
.glowit-popup--azadi .glowit-popup__body h2 {
  color: #01411c;
}
.glowit-popup--azadi .glowit-popup__form button {
  background: #01411c;
}
.glowit-popup--azadi .glowit-popup__offer {
  color: #0d7a3f;
  font-weight: 600;
}
.glowit-popup__msg {
  margin: .65rem 0 0;
  font-size: .9rem;
}
.glowit-popup__msg.is-ok { color: #0d7a3f; }
.glowit-popup__msg.is-error { color: #b32d2e; }
.glowit-popup__body {
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.glowit-popup__body h2 {
  font-family: var(--font-body);
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  letter-spacing: .06em;
  text-transform: uppercase;
  margin: 0 0 .75rem;
}
.glowit-popup__body > p {
  margin: 0 0 1.25rem;
  color: var(--glowit-muted);
  font-size: .95rem;
}
.glowit-popup__form {
  display: flex;
  gap: 0;
  margin: 0;
  width: 100%;
}
.glowit-popup__form input {
  flex: 1;
  border: 1px solid #d8d2cb;
  border-right: 0;
  padding: .95rem 1rem;
  font: inherit;
  min-width: 0;
}
.glowit-popup__form button {
  background: var(--glowit-dark);
  color: #fff;
  border: 0;
  padding: .95rem 1.35rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .75rem;
  cursor: pointer;
  white-space: nowrap;
}
.glowit-popup__offer {
  margin: 1rem 0 0;
  font-size: .9rem;
  color: var(--glowit-accent-dark);
}

/* Generic page */
.glowit-main { padding: 3rem 0 4rem; }
.page-title {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1.5rem;
}

/* Responsive */
@media (max-width: 1100px) {
  .circles-track { grid-template-columns: repeat(3, 1fr); }
  .beauty-cats-grid,
  .testimonial-grid,
  .support-track { grid-template-columns: repeat(2, 1fr); }
  .footer-cols,
  .footer-cols--three { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .nav-toggle { display: inline-flex; }
  .header-link { display: none; }
  .header-account { display: inline-flex; }
  .header-inner {
    justify-content: space-between;
  }
  .header-brand {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    max-width: min(46vw, 180px);
    margin: 0;
  }
  .header-brand .site-brand__title {
    font-size: 1.85rem;
  }
  .header-brand .site-brand__tag {
    font-size: .9rem;
  }
  .header-actions {
    gap: .35rem;
  }

  .nav-backdrop {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 10050;
    background: rgba(28, 24, 20, .45);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .3s ease, visibility .3s ease;
  }
  body.nav-open .nav-backdrop {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  body.nav-open {
    overflow: hidden;
  }
  body.nav-open .site-header {
    z-index: 10060;
  }

  .primary-nav {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    width: min(88vw, 320px);
    height: 100dvh;
    z-index: 10070;
    display: flex;
    flex-direction: column;
    background: #f4faf5;
    border-right: 1px solid var(--glowit-line);
    padding: calc(var(--header-h) + 1rem) 1.35rem 1.5rem;
    box-shadow: 16px 0 40px rgba(0, 0, 0, .14);
    transform: translateX(-110%);
    transition: transform .32s cubic-bezier(.22, 1, .36, 1);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    pointer-events: none;
  }
  .primary-nav.is-open {
    transform: translateX(0);
    pointer-events: auto;
  }
  .nav-menu {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    width: 100%;
  }
  .nav-menu li {
    width: 100%;
    border-bottom: 1px solid var(--glowit-line);
  }
  .nav-menu a {
    display: block;
    padding: .95rem 0;
    font-size: .92rem;
    letter-spacing: .08em;
  }
  .nav-menu a:hover,
  .nav-menu .current-menu-item > a {
    color: var(--glowit-accent-dark);
  }
  .nav-mobile-extra {
    display: flex;
    margin-top: 1.5rem;
    flex-direction: column;
    gap: .75rem;
  }
  .nav-mobile-extra .btn {
    width: 100%;
    text-align: center;
  }

  .home-offer__grid,
  .home-ads__grid,
  .skin-layout,
  .home-featured__grid,
  .home-collection__grid,
  .footer-top,
  .glowit-popup__dialog { grid-template-columns: 1fr; }
  .home-collection__media { min-height: 380px; }
  .home-hero {
    height: auto;
    min-height: 72vh;
  }
  .home-hero__hotspot {
    top: auto;
    bottom: 28%;
    right: 1.25rem;
    left: auto;
    max-width: 260px;
    min-width: 0;
  }
  .home-hero__scroll { bottom: 34%; }
  .home-hero__bar { padding-bottom: 1.5rem; }
  .home-hero__bar-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
  .home-hero__title { max-width: 18ch; font-size: clamp(1.15rem, 5vw, 1.6rem); }
  .home-results__banner { min-height: 360px; }
}

@media (max-width: 640px) {
  .circles-track,
  .beauty-cats-grid,
  .testimonial-grid,
  .skin-layout__grid,
  .support-track,
  .footer-cols { grid-template-columns: 1fr 1fr; }
  .header-link { display: none; }
  .glowit-popup__form { flex-direction: column; }
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* ========== Monica Home-3 rebuilt sections ========== */
.home-cats { padding-top: 3rem; }
.home-cats__row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  align-items: start;
}
.home-cats__row--two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 880px;
  margin: 0 auto;
  gap: 2rem;
}
.cat-tile {
  min-width: 0;
  text-align: center;
  width: 100%;
}
.cat-tile__frame {
  position: relative;
  aspect-ratio: 1;
  background: #e8f3eb;
  margin-bottom: .85rem;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cat-tile:nth-child(even) .cat-tile__frame { background: #dceee2; }
.cat-tile__frame img {
  width: 88%;
  height: 88%;
  object-fit: contain;
  transition: transform .45s ease;
}
.cat-tile:hover .cat-tile__frame img { transform: scale(1.06); }
.cat-tile__count { display: none !important; }
.cat-tile__title {
  font-family: var(--font-body);
  font-size: .95rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin: 0 0 .25rem;
}
.cat-tile__sub {
  margin: 0;
  font-size: .85rem;
  color: var(--glowit-muted);
}

.home-promo { padding-top: 1rem; }
.home-promo__grid {
  display: grid;
  grid-template-columns: .9fr 1.4fr;
  gap: 1.25rem;
  align-items: stretch;
}
.promo-tall {
  position: relative;
  display: block;
  overflow: hidden;
  min-height: 560px;
  background: #ebe4dc;
}
.promo-tall img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}
.promo-tall__text { display: none !important; }
.promo-tall__text span,
.promo-tall__text strong,
.promo-tall__text em { display: none !important; }
.promo-right {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.promo-offer {
  background-color: #c8e6d3;
  background-size: cover;
  background-position: center;
  padding: clamp(1.75rem, 4vw, 3rem);
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: .75rem;
}
.promo-offer .eyebrow { color: var(--glowit-dark); }
.promo-offer h2 {
  font-family: var(--font-body);
  font-size: clamp(1.4rem, 2.6vw, 2rem);
  font-weight: 600;
  letter-spacing: .02em;
  text-transform: uppercase;
  margin: 0;
  max-width: 18ch;
}
.promo-offer p {
  margin: 0;
  max-width: 46ch;
  color: #5c534c;
  font-size: .95rem;
}
.promo-offer .btn { align-self: flex-start; margin-top: .5rem; }
.promo-ads {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
.promo-ad {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/11;
  background: #f0e8e0;
  display: block;
}
.promo-ad img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.promo-ad:hover img { transform: scale(1.05); }
.promo-ad__label {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  background: rgba(255,255,255,.85);
  padding: .4rem .7rem;
  font-size: .7rem;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.home-partners {
  background: #c8e6d3;
  background-image: radial-gradient(circle at 20% 40%, rgba(255,255,255,.45), transparent 55%);
  padding: 3rem 0 2.5rem;
}
.home-partners__head {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  align-items: flex-start;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}
.home-partners__head h3 {
  font-family: var(--font-body);
  font-size: .8rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  margin: 0;
}
.home-partners__head p {
  margin: 0;
  max-width: 42ch;
  font-size: .9rem;
  color: #5c534c;
}
.partners-marquee { overflow: hidden; }
.partners-track {
  display: flex;
  gap: 3.5rem;
  align-items: center;
  width: max-content;
  animation: marquee 28s linear infinite;
}
.partner-logo {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 600;
  letter-spacing: .06em;
  color: #2a2420;
  opacity: .75;
  white-space: nowrap;
}
.partner-logo img { height: 28px; width: auto; filter: grayscale(1); }

.skin-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: stretch;
  max-width: none;
  width: 100%;
  padding: 0;
}
.home-skin.section { padding: 0; }
.home-skin > .container {
  width: 100%;
  max-width: none;
  padding: 0;
  margin: 0;
}
.skin-hero {
  position: relative;
  overflow: hidden;
  min-height: 620px;
}
.skin-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}
.skin-hero__bar {
  display: none;
}
.skin-panel {
  background: #fff;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.skin-panel__title {
  text-align: center;
  font-family: var(--font-body);
  font-size: .92rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  margin: 0 0 1.5rem;
  color: #111;
}
.skin-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .85rem;
}
.skin-type p {
  display: none;
}
.skin-type__img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 5/4;
  background: #dceee2;
}
.skin-type__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.skin-type__bar {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: .65rem .4rem;
  text-align: center;
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  background: #c8e6d3;
  color: #111;
  z-index: 2;
}
.skin-type:nth-child(2) .skin-type__bar,
.skin-type:nth-child(3) .skin-type__bar { background: #f29f93; color: #fff; }
.skin-type__shop {
  position: absolute;
  left: 50%;
  top: 42%;
  z-index: 3;
  transform: translate(-50%, -50%) scale(.9);
  background: #111;
  color: #fff;
  font-size: .65rem;
  letter-spacing: .12em;
  padding: .55rem .9rem;
  opacity: 0;
  transition: .3s ease;
}
.skin-type:hover .skin-type__shop { opacity: 1; transform: translate(-50%, -50%) scale(1); }

/* Testimonials carousel */
.home-testimonials .section-head h2 {
  text-transform: uppercase;
  letter-spacing: .04em;
}
.testimonial-slider { position: relative; }
.testimonial-slider__viewport { overflow: hidden; }
.testimonial-slider__track {
  display: flex;
  transition: transform .45s ease;
}
.testimonial-slide {
  flex: 0 0 100%;
  display: grid;
  grid-template-columns: 160px 1fr 280px;
  gap: 1.5rem;
  align-items: center;
  background: #c8e6d3;
  padding: 1.75rem;
  min-height: 340px;
}
.testimonial-slide__product {
  text-align: center;
}
.testimonial-slide__product img {
  width: 110px;
  height: auto;
  margin: 0 auto .75rem;
  object-fit: contain;
}
.testimonial-slide__product span {
  display: block;
  font-size: .72rem;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.testimonial-slide__quote p {
  font-family: var(--font-body);
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 500;
  letter-spacing: .04em;
  text-transform: uppercase;
  line-height: 1.55;
  margin: 0 0 1.25rem;
}
.testimonial-slide__quote footer {
  display: flex;
  flex-direction: column;
  gap: .2rem;
}
.testimonial-slide__quote footer span {
  font-size: .85rem;
  color: var(--glowit-muted);
}
.testimonial-slide__photo {
  height: 100%;
  min-height: 280px;
  overflow: hidden;
}
.testimonial-slide__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.testimonial-slider__nav {
  display: flex;
  justify-content: flex-end;
  gap: .35rem;
  margin-top: .75rem;
}
.testimonial-slider__nav button {
  width: 42px;
  height: 36px;
  border: 0;
  background: #d8d2cb;
  color: #111;
  font-size: 1.4rem;
  cursor: pointer;
  line-height: 1;
}
.testimonial-slider__nav button:hover { background: #111; color: #fff; }

.home-collection__content h2 {
  font-family: var(--font-body);
  font-size: clamp(1.2rem, 2.4vw, 1.6rem);
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.collection-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.1rem 0;
  border-bottom: 1px solid var(--glowit-line);
}
.collection-item__icon { flex-shrink: 0; margin-top: .15rem; }
.collection-item h3 {
  font-family: var(--font-body);
  font-size: .85rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin: 0 0 .35rem;
}
.home-collection__media { position: relative; min-height: 520px; }
.home-collection__main {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}
.home-collection__inset {
  position: absolute;
  left: 1.25rem;
  bottom: 1.25rem;
  width: 42%;
  max-width: 220px;
  background: #c8e6d3;
  padding: 1rem;
  box-shadow: 0 12px 40px rgba(0,0,0,.12);
}
.home-collection__inset img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: contain;
}

.home-support {
  background: #c8e6d3;
  background-image: radial-gradient(circle at 70% 30%, rgba(255,255,255,.5), transparent 50%);
  padding: 2.75rem 0;
  margin-top: 0;
}
.home-support .support-track {
  border: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1.5rem;
}
.home-support .support-item {
  flex: 1 1 180px;
  text-align: center;
}
.home-support .support-item__icon {
  display: inline-flex;
  margin-bottom: .85rem;
  border: 0;
  width: auto;
  height: auto;
  color: #111;
}
.home-support .support-item__icon::after { display: none; }
.home-support .support-item strong {
  font-family: var(--font-body);
  font-size: .78rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 500;
}

/* WhatsApp float */
.glowit-wa {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 9998;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(37, 211, 102, .45);
  transition: transform .25s ease;
}
.glowit-wa:hover { transform: scale(1.08); color: #fff; }
.glowit-wa svg { width: 30px; height: 30px; fill: currentColor; }
.glowit-wa__pulse {
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid #25d366;
  animation: waPulse 1.8s ease infinite;
}
@keyframes waPulse {
  0% { transform: scale(.9); opacity: .8; }
  100% { transform: scale(1.35); opacity: 0; }
}

.glowit-page-hero {
  background: #c8e6d3;
  padding: 4rem 0 3rem;
  text-align: center;
}
.glowit-page-hero h1 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  margin: 0 0 .5rem;
}
.glowit-page-hero p { margin: 0; color: #5c534c; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 2.5rem;
}
.contact-card {
  background: #fff;
  padding: 1.5rem;
  border: 1px solid var(--glowit-line);
}
.contact-form label { display: block; font-size: .8rem; margin-bottom: .35rem; letter-spacing: .06em; text-transform: uppercase; }
.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--glowit-line);
  padding: .85rem 1rem;
  margin-bottom: 1rem;
  font: inherit;
  background: #fff;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 2.5rem;
  align-items: start;
  padding: 1rem 0 3rem;
}
.about-grid img { width: 100%; }

/* Modern About page */
.about-page { overflow: hidden; }
.about-hero {
  position: relative;
  min-height: clamp(340px, 52vh, 520px);
  display: flex;
  align-items: center;
  color: #fff;
  text-align: center;
}
.about-hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 20%, rgba(255,255,255,.18), transparent 55%),
    linear-gradient(135deg, #01411C 0%, #0a5c2c 45%, #1a7a45 100%);
}
.about-hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 12% 80%, rgba(255,255,255,.08) 0 2px, transparent 3px),
    radial-gradient(circle at 88% 30%, rgba(255,255,255,.1) 0 1.5px, transparent 3px);
  background-size: 48px 48px, 36px 36px;
  opacity: .7;
  pointer-events: none;
}
.about-hero__inner {
  position: relative;
  z-index: 1;
  padding: 4.5rem 0 3.5rem;
  max-width: 720px;
  margin-inline: auto;
}
.about-hero__brand {
  font-family: "Great Vibes", cursive;
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  margin: 0 0 .35rem;
  line-height: 1;
  color: #fff;
}
.about-hero h1 {
  font-family: var(--font-body);
  font-size: clamp(1.6rem, 3.2vw, 2.4rem);
  letter-spacing: .06em;
  text-transform: uppercase;
  margin: 0 0 .85rem;
  font-weight: 600;
}
.about-hero__lead {
  margin: 0 auto 1.75rem;
  max-width: 34rem;
  color: rgba(255,255,255,.88);
  line-height: 1.6;
  font-size: 1.05rem;
}
.about-hero .btn--dark {
  background: #fff;
  color: #01411C;
}
.about-hero .btn--dark:hover {
  background: #e8f3eb;
  color: #01411C;
}
.about-story { padding-top: 4rem; }
.about-story__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: center;
}
.about-story__media {
  margin: 0;
  background:
    linear-gradient(160deg, #d9efe0 0%, #eef7f1 55%, #f7fbf8 100%);
  padding: clamp(1.25rem, 3vw, 2.25rem);
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-story__media img {
  width: 100%;
  max-height: 520px;
  object-fit: contain;
  display: block;
}
.about-story__content .eyebrow {
  display: inline-block;
  margin-bottom: .65rem;
}
.about-story__content h2 {
  font-size: clamp(1.75rem, 3.2vw, 2.6rem);
  line-height: 1.2;
  margin: 0 0 1.15rem;
}
.about-story__content p {
  color: #5c534c;
  line-height: 1.75;
  margin: 0 0 1rem;
}
.about-values {
  background: #f3faf5;
  padding: 4rem 0;
}
.about-values__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.5rem;
}
.about-value {
  background: #fff;
  padding: 1.5rem 1.35rem 1.65rem;
  border-top: 3px solid #01411C;
}
.about-value__num {
  display: block;
  font-size: .75rem;
  letter-spacing: .14em;
  color: #01411C;
  margin-bottom: .75rem;
  font-weight: 600;
}
.about-value h3 {
  font-family: var(--font-body);
  font-size: 1.05rem;
  letter-spacing: .03em;
  margin: 0 0 .55rem;
}
.about-value p {
  margin: 0;
  color: #5c534c;
  line-height: 1.6;
  font-size: .95rem;
}
.about-products .section-head--split {
  align-items: flex-end;
}
@media (max-width: 1000px) {
  .about-story__grid,
  .about-values__grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 700px) {
  .about-story__grid,
  .about-values__grid {
    grid-template-columns: 1fr;
  }
  .about-story__media { min-height: 300px; }
}

@media (max-width: 1000px) {
  .home-promo__grid,
  .skin-split,
  .home-collection__grid,
  .contact-grid,
  .about-grid,
  .about-story__grid,
  .home-beauty__grid { grid-template-columns: 1fr; }
  .home-cats__row { grid-template-columns: repeat(2, 1fr); }
  .testimonial-slide { grid-template-columns: 120px 1fr; }
  .testimonial-slide__photo { display: none; }
  .promo-tall { min-height: 420px; }
  .beauty-slide { min-height: 480px; }
  .home-beauty__content {
    max-width: none;
    margin: 0;
    text-align: center;
    align-items: center;
  }
  .home-beauty__content p { max-width: 46ch; }
  .home-beauty__content .btn { align-self: center; }
  .skin-hero { min-height: 420px; }
}
@media (max-width: 700px) {
  .cat-tile { width: 100%; }
  .home-cats__row { grid-template-columns: 1fr; gap: 1.25rem; }
  .promo-ads { grid-template-columns: 1fr; }
  .testimonial-slide { grid-template-columns: 1fr; text-align: center; }
  .home-partners__head { flex-direction: column; }
  .home-hero {
    min-height: 100svh;
    height: 100svh;
  }
  .home-hero__hotspot {
    top: 12%;
    right: 1rem;
    left: 1rem;
    bottom: auto;
    max-width: none;
    width: auto;
  }
  .home-hero__scroll { display: none; }
  .home-hero__bar {
    padding: 0 0 1.25rem;
    background: linear-gradient(180deg, transparent, rgba(0,0,0,.35) 70%);
  }
  .home-hero__cta { width: 100%; }
  .beauty-slide { min-height: 380px; }
  .beauty-slide__caption {
    flex-direction: column;
    align-items: flex-start;
    gap: .35rem;
    right: 108px;
  }
  .skin-grid { grid-template-columns: 1fr 1fr; }
  .home-collection__media { min-height: 320px; }
  .home-support .support-item { flex: 1 1 140px; }
}

.promo-offer { position: relative; overflow: hidden; }
.promo-offer__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: .35;
}
.promo-offer__inner { position: relative; z-index: 1; display: flex; flex-direction: column; gap: .75rem; }

/* About + legal pages */
.about-media {
  background: #e8f3eb;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 1.5rem;
}
.about-media img {
  width: 100%;
  max-height: 560px;
  aspect-ratio: auto;
  object-fit: contain;
  object-position: center;
}
.about-why-title {
  font-family: var(--font-body);
  font-size: 1.15rem;
  letter-spacing: .04em;
  margin: 2rem 0 .85rem;
}
.about-why-list {
  margin: 0 0 1.5rem;
  padding-left: 1.2rem;
}
.about-why-list li {
  color: #5c534c;
  line-height: 1.7;
  margin-bottom: .55rem;
}
.about-tagline {
  font-size: 1.05rem;
  margin: 1.25rem 0 1.75rem;
}
.entry-content p { color: #5c534c; line-height: 1.75; }
.about-products { padding-top: 1rem; }
.about-offer-cta { margin: 0 0 3rem; }
.legal-content {
  max-width: 760px;
  padding: 1rem 0 3rem;
}
.legal-content h2 {
  font-family: var(--font-body);
  font-size: 1.15rem;
  letter-spacing: .04em;
  margin: 2rem 0 .75rem;
}
.legal-content p { color: #5c534c; line-height: 1.75; }
.legal-content ul {
  margin: 0 0 1.5rem;
  padding-left: 1.25rem;
}
.legal-content li {
  color: #5c534c;
  line-height: 1.75;
  margin-bottom: .85rem;
}
.legal-divider {
  border: 0;
  border-top: 1px solid var(--glowit-line);
  margin: 2.5rem 0;
}
.legal-contact { margin-top: 2rem; }
.legal-content a { text-decoration: underline; text-underline-offset: 3px; }

/* Single product offer CTA */
.glowit-sp-offer {
  margin: 3rem 0 1rem;
  background: #c8e6d3;
  padding: clamp(2rem, 5vw, 3.5rem);
  text-align: center;
}
.glowit-sp-offer__inner { max-width: 640px; margin: 0 auto; }
.glowit-sp-offer h2 {
  font-family: var(--font-body);
  font-size: clamp(1.4rem, 3vw, 2rem);
  text-transform: uppercase;
  letter-spacing: .04em;
  margin: .35rem 0 1rem;
}
.glowit-sp-offer p {
  color: #5c534c;
  margin: 0 0 1.5rem;
}
.related.products > h2,
.woocommerce .related.products > h2 {
  font-family: var(--font-body);
  font-size: 1.35rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

/* Before & After — full width */
.home-before-after {
  padding-bottom: 3rem;
}
.home-before-after__head {
  margin-bottom: 2rem;
}
.home-before-after__head h2 {
  font-family: var(--font-body);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  margin: 0;
}
.ba-compare--full {
  width: 100%;
  max-width: none;
  margin: 0;
}
.ba-compare--full .ba-compare__media {
  position: relative;
  width: 100%;
  aspect-ratio: 2.35 / 1;
  min-height: 360px;
  max-height: min(72vh, 720px);
  overflow: hidden;
  background: #dceee2;
  user-select: none;
  touch-action: none;
}
.ba-compare__after,
.ba-compare__before {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  pointer-events: none;
}
.ba-compare__before-wrap {
  position: absolute;
  inset: 0 auto 0 0;
  width: 50%;
  overflow: hidden;
  z-index: 2;
}
.ba-compare--full .ba-compare__before {
  width: 100vw;
  max-width: none;
  height: 100%;
  left: 0;
  top: 0;
  right: auto;
  bottom: 0;
}
.ba-compare__note {
  position: absolute;
  top: 1.25rem;
  right: 1.5rem;
  z-index: 4;
  color: #fff;
  font-size: .72rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  text-shadow: 0 2px 12px rgba(0,0,0,.45);
  max-width: 16ch;
  text-align: right;
  line-height: 1.4;
}
.ba-compare__label {
  position: absolute;
  bottom: 1.25rem;
  z-index: 4;
  background: transparent;
  color: #fff;
  font-size: .75rem;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  padding: 0;
  text-shadow: 0 2px 10px rgba(0,0,0,.4);
}
.ba-compare__label--before { left: 1.5rem; top: auto; }
.ba-compare__label--after { right: 1.5rem; top: auto; }
.ba-compare__range {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  opacity: 0;
  cursor: ew-resize;
  z-index: 5;
}
.ba-compare__handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  background: #fff;
  z-index: 3;
  pointer-events: none;
  transform: translateX(-50%);
}
.ba-compare__handle i,
.ba-compare__handle::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 44px;
  height: 44px;
  border-radius: 4px;
  background: #fff;
  border: 0;
  transform: translate(-50%, -50%);
  box-shadow: 0 8px 24px rgba(0,0,0,.18);
}
.ba-compare__handle i {
  display: block;
}
.ba-compare__handle i::before,
.ba-compare__handle i::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 0;
  height: 0;
  border-style: solid;
  transform: translateY(-50%);
}
.ba-compare__handle i::before {
  left: 10px;
  border-width: 6px 7px 6px 0;
  border-color: transparent #1c1814 transparent transparent;
}
.ba-compare__handle i::after {
  right: 10px;
  border-width: 6px 0 6px 7px;
  border-color: transparent transparent transparent #1c1814;
}
.ba-compare__cta {
  text-align: center;
  margin-top: 1.75rem;
}
@media (max-width: 700px) {
  .ba-compare--full .ba-compare__media {
    aspect-ratio: 4/5;
    max-height: 560px;
    min-height: 420px;
  }
  .ba-compare--full .ba-compare__before { width: 100vw; }
  .ba-compare__note {
    font-size: .62rem;
    top: .85rem;
    right: .85rem;
  }
}
