/*
Theme Name: Aliza Beauty Dotkey
Theme URI: https://alizabeauty.com
Author: Markova Digital
Author URI: https://markovadigital.com
Description: Aliza by Dr. Shaista Sayyed – Premium skincare brand theme. Science-backed beauty for every skin type. Fully Customizer editable.
Version: 4.0.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 8.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: aliza-beauty
Tags: e-commerce, beauty, skincare, woocommerce, custom-logo, custom-menu
*/

/* =========================================================
   BRAND TOKENS — PINK & WHITE (Customizer overrides via wp_head)
   ========================================================= */
:root {
  /* Primary pink palette */
  --pink:        #e8609a;
  --pink-dark:   #c94e84;
  --pink-light:  #f082b5;
  --pink-pale:   #fde8f2;
  --pink-ultra:  #fff5fa;
  --pink-mid:    #f5a0c8;

  /* Text */
  --text:        #1a0a10;
  --text-mid:    #4a2035;
  --text-soft:   #6b3850;
  --text-muted:  #aa88a0;

  /* UI */
  --border:      #f0dcea;
  --border-mid:  #e0c8d8;
  --white:       #ffffff;
  --bg:          #fafafa;
  --yellow:      #ffd000;
  --yellow-star: #f5a623;
  --green:       #1a8a50;

  /* Shadows */
  --shadow-sm:   0 1px 4px rgba(232,96,154,.06);
  --shadow-md:   0 4px 16px rgba(232,96,154,.10);
  --shadow-lg:   0 8px 32px rgba(232,96,154,.16);
}

/* =========================================================
   RESET & BASE
   ========================================================= */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; }
body {
  font-family:'DM Sans',-apple-system,BlinkMacSystemFont,'Segoe UI',sans-serif;
  background:var(--white);
  color:var(--text);
  font-size:14px;
  line-height:1.6;
  -webkit-font-smoothing:antialiased;
  overflow-x: hidden;
}
a { text-decoration:none; color:inherit; transition:color .15s; }
img { display:block; max-width:100%; }
ul { list-style:none; }
button { font-family:inherit; cursor:pointer; border:none; background:none; }
input, select, textarea { font-family:inherit; }

/* =========================================================
   ANNOUNCEMENT / PROMO TOP BAR
   ========================================================= */
.topbar {
  background: linear-gradient(90deg, #ffd6eb, #ffe8f4, #ffd6eb);
  border-bottom: 1px solid #f5c8e0;
  padding: 9px 0;
  overflow: hidden;
  cursor: pointer;
}
.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  font-size: 12px;
  font-weight: 700;
  color: #c04080;
  letter-spacing: .02em;
  white-space: nowrap;
}
.topbar-badge {
  background: linear-gradient(90deg, var(--pink), #f060a0);
  color: #fff;
  padding: 2px 12px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .07em;
  text-transform: uppercase;
}
.topbar-sep { opacity: .4; }
.topbar-arrow {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--pink);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px;
  flex-shrink: 0;
}

/* =========================================================
   SITE HEADER
   ========================================================= */
.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 999;
  transition: box-shadow .2s;
}
.site-header.scrolled { box-shadow: 0 2px 16px rgba(232,96,154,.14); }

.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

/* ── Logo — good size, not too big ── */
.site-logo {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -.01em;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  text-decoration: none;
  line-height: 1;
}
.site-logo span { color: var(--pink); }

/* Custom logo image — nice size that looks good */
.site-logo .custom-logo-link,
.custom-logo-link {
  display: inline-flex;
  align-items: center;
}
.site-logo .custom-logo-link img,
.site-logo img.custom-logo,
.custom-logo-link img,
img.custom-logo,
.logo-img {
  height: 74px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
  display: block;
}

/* ── Primary nav ── */
.primary-nav { display: flex; align-items: center; }
.primary-nav ul { display: flex; align-items: center; gap: 0; list-style: none; margin: 0; padding: 0; }
.primary-nav ul li { position: relative; }
.primary-nav ul li > a {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-mid);
  padding: 8px 14px;
  border-radius: 8px;
  transition: .15s;
  display: flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
  letter-spacing: .02em;
  text-decoration: none;
}
.primary-nav ul li > a:hover,
.primary-nav ul li.current-menu-item > a,
.primary-nav ul li.current-menu-ancestor > a {
  color: var(--pink);
  background: var(--pink-ultra);
}
/* Dropdown arrow on items with children */
.primary-nav ul li:has(> ul) > a::after {
  content: '';
  display: inline-block;
  width: 6px; height: 6px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  margin-left: 4px;
  opacity: .5;
  transition: transform .2s;
}
.primary-nav ul li:hover:has(> ul) > a::after { transform: rotate(225deg) translateY(-2px); opacity: .8; }

/* ── BASE dropdown — all sub-menus (clean simple list) ── */
.primary-nav ul li ul {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 14px;
  padding: 6px;
  min-width: 220px;
  box-shadow: 0 12px 40px rgba(26,10,16,.10), 0 2px 8px rgba(232,96,154,.06);
  z-index: 200;
  list-style: none;
  margin: 0;
}
/* Pink top accent */
.primary-nav ul li ul::before {
  content: '';
  position: absolute;
  top: -1.5px; left: 16px; right: 16px;
  height: 2.5px;
  background: linear-gradient(90deg, var(--pink), #f082b5);
  border-radius: 999px;
}
.primary-nav ul li:hover > ul { display: block; }

/* ── MEGA — 2 columns for Shop All (has 6+ children) ── */
.primary-nav ul li ul:has(li:nth-child(6)) {
  display: none;
  grid-template-columns: 1fr 1fr;
  min-width: 400px;
}
.primary-nav ul li:hover > ul:has(li:nth-child(6)) {
  display: grid;
}
/* remove dividers inside mega grid so columns look clean */
.primary-nav ul li ul:has(li:nth-child(6)) li + li {
  border-top: none;
}

/* ── Simple list items ── */
.primary-nav ul li ul li { list-style: none; }
.primary-nav ul li ul li > a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px;
  border-radius: 8px;
  text-transform: none;
  letter-spacing: 0;
  font-size: 13.5px;
  font-weight: 500;
  color: #3d1a26;
  white-space: nowrap;
  transition: .12s;
  text-decoration: none;
}
.primary-nav ul li ul li > a:hover {
  color: var(--pink);
  background: var(--pink-ultra);
  padding-left: 18px;
}
/* Remove arrow pseudo on sub-items */
.primary-nav ul li ul li > a::before { display: none !important; }
/* Subtle divider between simple list items */
.primary-nav ul li ul li + li {
  border-top: 1px solid #faf0f5;
}

/* ── Nav right ── */
.nav-right { display: flex; align-items: center; gap: 2px; }

/* Search box */
.search-box {
  display: flex;
  align-items: center;
  gap: 7px;
  border: 1.5px solid var(--border-mid);
  border-radius: 999px;
  padding: 7px 16px;
  background: var(--bg);
  transition: .15s;
}
.search-box:focus-within { border-color: var(--pink); background: #fff; box-shadow: 0 0 0 3px rgba(232,96,154,.08); }
.search-box .search-icon { color: var(--text-muted); display: flex; align-items: center; }
.search-box .search-icon svg { width: 15px; height: 15px; }
.search-box input {
  border: none;
  background: transparent;
  outline: none;
  font-size: 12.5px;
  color: var(--text);
  width: 150px;
}
.search-box input::placeholder { color: var(--text-muted); }

/* Nav icon buttons — wishlist, cart, account */
.nav-icon {
  width: 40px; height: 40px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  color: var(--text-mid);
  transition: .15s;
  position: relative;
  text-decoration: none;
  flex-shrink: 0;
}
.nav-icon:hover { background: var(--pink-pale); color: var(--pink); }
.nav-icon svg { width: 20px; height: 20px; stroke: currentColor; fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }

/* Cart/wishlist count badge */
.nav-badge {
  position: absolute;
  top: 4px; right: 4px;
  min-width: 17px; height: 17px;
  border-radius: 999px;
  background: var(--pink);
  color: #fff;
  font-size: 9px;
  font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  border: 2px solid #fff;
  padding: 0 3px;
  line-height: 1;
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 6px;
  cursor: pointer;
  border-radius: 8px;
  transition: .15s;
}
.nav-toggle:hover { background: var(--pink-pale); }
.nav-toggle span {
  display: block;
  width: 22px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: .25s;
}

/* =========================================================
   HERO SLIDER — True full-width, edge to edge, no gaps
   ========================================================= */
.hero {
  position: relative;
  width: 100vw;
  margin-left: calc(-1 * (100vw - 100%) / 2);
  margin-right: calc(-1 * (100vw - 100%) / 2);
  display: block;
  line-height: 0;
  background: var(--pink-ultra);
  overflow: hidden;
}
.hero-slide {
  display: none;
  width: 100%;
  position: relative;
  line-height: 0;
  /* Cap height so empty whitespace gets cropped; products stay centered */
  max-height: 520px;
  overflow: hidden;
}
.hero-slide.active { display: block; }

/* Image fills the area, excess whitespace cropped from top/bottom */
.hero-full-img {
  display: block;
  width: 100%;
  height: 520px;
  max-width: 100%;
  object-fit: cover;
  object-position: center;
  vertical-align: bottom;
}

/* Placeholder when no image uploaded yet */
.hero-placeholder {
  width: 100%;
  height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--pink-ultra);
}

/* Dots navigation */
.hero-dots {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 10;
}
.hero-dot { width: 8px; height: 8px; border-radius: 999px; background: rgba(232,96,154,.5); transition: .3s; cursor: pointer; border: none; }
.hero-dot.active { background: var(--pink); width: 24px; }

/* Single banner mode — no slider dots needed */
.hero-single .hero-dots { display: none; }

/* =========================================================
   HERO TEXT OVERLAY — sits on top of banner image (slide 1)
   ========================================================= */
.hero-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0 5%;
  pointer-events: none;
  z-index: 5;
  line-height: 1.4;
}
.hero-overlay-inner {
  max-width: 580px;
  width: 45%;
  pointer-events: auto;
}
.hero-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(28px, 3.6vw, 56px);
  font-weight: 700;
  line-height: 1.15;
  margin: 0 0 18px;
  letter-spacing: -0.5px;
}
.hero-title-dark {
  display: block;
  color: #1a1a1a;
}
.hero-title-pink {
  display: block;
  color: var(--pink, #e8609a);
}
.hero-sub {
  font-size: clamp(13px, 1.05vw, 17px);
  color: #555;
  margin: 0 0 24px;
  max-width: 480px;
  line-height: 1.55;
}
.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  text-decoration: none;
  transition: transform .2s, box-shadow .2s, background .2s, color .2s;
  cursor: pointer;
}
.hero-btn-primary {
  background: var(--pink, #e8609a);
  color: #fff;
  box-shadow: 0 6px 18px rgba(232,96,154,.35);
}
.hero-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(232,96,154,.45);
  color: #fff;
}
.hero-btn-secondary {
  background: transparent;
  color: var(--pink, #e8609a);
  border: 2px solid var(--pink, #e8609a);
}
.hero-btn-secondary:hover {
  background: var(--pink, #e8609a);
  color: #fff;
  transform: translateY(-2px);
}
.hero-features {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  align-items: center;
}
.hero-feat {
  display: flex;
  align-items: center;
  gap: 8px;
}
.hero-feat-ico {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1.5px solid var(--pink, #e8609a);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
  background: rgba(255,255,255,.6);
}
.hero-feat-txt {
  font-size: 12px;
  color: #444;
  font-weight: 500;
  line-height: 1.25;
}

/* Tablet */
@media (max-width: 1024px) {
  .hero-overlay-inner { width: 48%; max-width: 480px; }
  .hero-title { font-size: clamp(24px, 3.2vw, 42px); }
  .hero-sub { font-size: 13px; margin-bottom: 18px; }
  .hero-btns { gap: 10px; margin-bottom: 18px; }
  .hero-btn { padding: 11px 22px; font-size: 12px; }
  .hero-features { gap: 14px; }
  .hero-feat-ico { width: 30px; height: 30px; font-size: 13px; }
  .hero-feat-txt { font-size: 10.5px; }
}

/* ──────────────────────────────────────────────────────
   MOBILE — Stack layout (text on top, image below)
   This avoids any overlap with products in the image.
   ────────────────────────────────────────────────────── */
@media (max-width: 768px) {
  /* Switch slide from overlay-mode to stacked-mode */
  .hero-slide {
    max-height: none;
    background: #fff;
  }
  /* Image becomes a normal block below the text */
  .hero-full-img {
    width: 100%;
    height: auto;
    max-height: 340px;
    object-fit: contain;
    object-position: center bottom;
    background: #fff;
  }
  .hero-placeholder {
    height: 200px;
  }

  /* Overlay is no longer absolutely positioned — it sits above image */
  .hero-overlay {
    position: static;
    inset: auto;
    padding: 22px 18px 14px;
    background: #fff;
    text-align: center;
    align-items: stretch;
    justify-content: flex-start;
  }
  .hero-overlay-inner {
    width: 100%;
    max-width: 100%;
  }
  .hero-title { font-size: 26px; margin-bottom: 10px; line-height: 1.2; }
  .hero-sub { font-size: 13px; margin: 0 auto 16px; max-width: 92%; line-height: 1.5; }
  .hero-btns { justify-content: center; gap: 10px; margin-bottom: 16px; flex-wrap: wrap; }
  .hero-btn { padding: 10px 18px; font-size: 11.5px; flex: 0 1 auto; }
  .hero-features {
    display: flex;
    justify-content: center;
    gap: 14px 18px;
    flex-wrap: wrap;
    margin-bottom: 4px;
  }
  .hero-feat { gap: 6px; }
  .hero-feat-ico { width: 28px; height: 28px; font-size: 12px; }
  .hero-feat-txt { font-size: 10px; text-align: left; }
}

/* Very small phones — keep all 4 features but tighten spacing */
@media (max-width: 480px) {
  .hero-overlay { padding: 18px 14px 12px; }
  .hero-title { font-size: 22px; }
  .hero-sub { font-size: 12px; margin-bottom: 14px; }
  .hero-btn { padding: 9px 14px; font-size: 11px; }
  .hero-btn svg { width: 14px; height: 14px; }
  .hero-features { gap: 10px 12px; }
  .hero-feat-ico { width: 26px; height: 26px; font-size: 11px; }
  .hero-feat-txt { font-size: 9.5px; }
  .hero-full-img { max-height: 280px; }
}
/* End hero overlay
   ========================================================= */

/* =========================================================
   OFFER TIMER STRIP — below hero
   ========================================================= */
.offer-strip {
  background: linear-gradient(90deg, var(--pink-dark), var(--pink), #f060a0);
  color: #fff;
  padding: 14px 20px;
  overflow: hidden;
}
.offer-strip-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}
.offer-strip-badge {
  background: var(--yellow);
  color: #5a3000;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 999px;
}
.offer-strip-text { font-size: 13px; font-weight: 600; letter-spacing: .02em; }
.offer-timer { display: flex; align-items: center; gap: 4px; }
.timer-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(255,255,255,.18);
  border-radius: 6px;
  padding: 4px 10px;
  min-width: 46px;
}
.timer-num { font-size: 18px; font-weight: 900; line-height: 1; font-family: 'Playfair Display', serif; }
.timer-label { font-size: 9px; font-weight: 700; letter-spacing: .1em; opacity: .85; margin-top: 2px; }
.timer-sep { font-size: 20px; font-weight: 900; opacity: .7; padding-bottom: 4px; }
.offer-strip-cta {
  background: #fff;
  color: var(--pink-dark);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 10px 22px;
  border-radius: 999px;
  transition: .2s;
  white-space: nowrap;
}
.offer-strip-cta:hover { background: var(--yellow); color: var(--text); }

/* =========================================================
   CATEGORY ICON ROW
   ========================================================= */
.cat-icon-row {
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
  background: var(--white);
}
.cat-icon-row-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  gap: 4px;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.cat-icon-row-inner::-webkit-scrollbar { display: none; }
.cat-icon-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  padding: 8px 14px;
  border-radius: 12px;
  transition: .15s;
  text-decoration: none;
  min-width: 76px;
}
.cat-icon-item:hover, .cat-icon-item.active { background: var(--pink-ultra); }
.cat-icon-circle {
  width: 62px; height: 62px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--border);
  transition: .2s;
  background: var(--pink-ultra);
  display: flex; align-items: center; justify-content: center;
  font-size: 26px;
}
.cat-icon-item:hover .cat-icon-circle,
.cat-icon-item.active .cat-icon-circle { border-color: var(--pink); }
.cat-icon-circle img { width: 100%; height: 100%; object-fit: cover; }
.cat-icon-label { font-size: 11px; font-weight: 700; color: var(--text-mid); text-align: center; line-height: 1.2; }

/* =========================================================
   SECTION COMMON
   ========================================================= */
.section { padding: 52px 24px; max-width: 1280px; margin: 0 auto; }
.section-title-row { display: flex; align-items: center; justify-content: space-between; margin-bottom: 22px; }
.section-title { font-family: 'Playfair Display', serif; font-size: 26px; font-weight: 700; color: var(--text); }
.section-link {
  font-size: 12px;
  font-weight: 700;
  color: var(--pink);
  text-transform: uppercase;
  letter-spacing: .06em;
  display: flex;
  align-items: center;
  gap: 4px;
  border-bottom: 1.5px solid var(--pink);
  padding-bottom: 1px;
}
.section-link:hover { color: var(--pink-dark); border-color: var(--pink-dark); }
.eyebrow {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.eyebrow::before, .eyebrow::after {
  content: '';
  flex: 0 0 28px;
  height: 1.5px;
  background: var(--pink);
  border-radius: 2px;
}

/* =========================================================
   CATEGORY FILTER TABS
   ========================================================= */
.cat-tabs { display: flex; gap: 8px; margin-bottom: 22px; flex-wrap: wrap; }
.cat-tab {
  padding: 7px 18px;
  border-radius: 999px;
  font-size: 12.5px;
  font-weight: 700;
  cursor: pointer;
  border: 1.5px solid var(--border-mid);
  color: var(--text-soft);
  background: #fff;
  transition: .15s;
}
.cat-tab.active { background: var(--pink); color: #fff; border-color: var(--pink); box-shadow: 0 4px 14px rgba(232,96,154,.3); }
.cat-tab:hover:not(.active) { border-color: var(--pink); color: var(--pink); background: var(--pink-ultra); }

/* =========================================================
   PRODUCT GRID & CARD
   ========================================================= */
.products-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; }
.product-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  transition: .25s;
  position: relative;
  cursor: pointer;
  display: flex;
  flex-direction: column;
}
.product-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); border-color: var(--pink-mid); }
.product-img-wrap { position: relative; aspect-ratio: 1/1; overflow: hidden; background: var(--pink-ultra); display: block; flex-shrink: 0; }
.product-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.product-card:hover .product-img-wrap img { transform: scale(1.05); }
.product-badge { position: absolute; top: 8px; left: 8px; font-size: 9px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; padding: 3px 9px; border-radius: 999px; }
.badge-bestseller { background: var(--yellow); color: #5a3000; }
.badge-new        { background: var(--pink);   color: #fff; }
.badge-invivo     { background: #0a5c36;       color: #fff; }
.product-body { padding: 12px 14px 16px; display: flex; flex-direction: column; flex: 1; }
.product-skin { font-size: 10px; font-weight: 700; color: var(--text-muted); text-transform: uppercase; letter-spacing: .08em; margin-bottom: 3px; }
.product-name { font-size: 13px; font-weight: 600; color: var(--text); line-height: 1.4; margin-bottom: 6px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; min-height: 2.8em; }
.product-name a { color: inherit; }
.product-name a:hover { color: var(--pink); }
.stars { display: flex; align-items: center; gap: 4px; margin-bottom: 6px; }
.stars-icons { color: var(--yellow-star); font-size: 11px; letter-spacing: 1px; }
.stars-count { font-size: 11px; color: var(--text-muted); }
.product-variants { display: flex; gap: 4px; margin-bottom: 8px; flex-wrap: wrap; }
.variant { padding: 2px 9px; border: 1.5px solid var(--border); border-radius: 999px; font-size: 10px; font-weight: 700; color: var(--text-soft); cursor: pointer; transition: .12s; background: none; }
.variant:hover, .variant.active { border-color: var(--pink); color: var(--pink); background: var(--pink-ultra); }
.price-row { display: flex; align-items: center; gap: 6px; margin-bottom: 10px; flex-wrap: wrap; margin-top: auto; }
.price     { font-size: 15px; font-weight: 800; color: var(--text); }
.price-old { font-size: 12px; color: var(--text-muted); text-decoration: line-through; }
.price-off { font-size: 11px; font-weight: 700; color: var(--green); }
.atc-btn {
  width: 100%;
  background: var(--pink);
  color: #fff;
  border: none;
  border-radius: 999px;
  padding: 10px 16px;
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  transition: .2s;
  font-family: 'DM Sans', sans-serif;
  margin-top: auto;
  flex-shrink: 0;
}
.atc-btn:hover { background: var(--pink-dark); transform: translateY(-1px); box-shadow: 0 4px 14px rgba(232,96,154,.4); }

/* =========================================================
   PROMO STRIP
   ========================================================= */
.promo-strip { background: linear-gradient(90deg, var(--pink-ultra), var(--pink-pale), var(--pink-ultra)); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); cursor: pointer; overflow: hidden; }
.promo-strip-inner { max-width: 1280px; margin: 0 auto; padding: 18px 24px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.promo-left { display: flex; align-items: center; gap: 16px; }
.promo-big { font-size: 22px; font-weight: 900; color: var(--pink); font-family: 'Playfair Display', serif; font-style: italic; }
.promo-big span { color: var(--text); font-style: normal; }
.promo-sub { font-size: 13px; font-weight: 600; color: var(--text-soft); margin-top: 2px; }
.promo-cta { background: var(--pink); color: #fff; padding: 10px 24px; border-radius: 999px; font-size: 12px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; display: flex; align-items: center; gap: 8px; white-space: nowrap; transition: .2s; }
.promo-cta:hover { background: var(--pink-dark); color: #fff; transform: translateY(-1px); }
.promo-arrow { width: 32px; height: 32px; border-radius: 50%; background: var(--pink); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 16px; flex-shrink: 0; transition: .2s; }
.promo-strip:hover .promo-arrow { transform: scale(1.1); }

/* =========================================================
   AM / PM ROUTINE SECTION
   ========================================================= */
.routine-section { background: var(--pink-ultra); padding: 36px 0; }
.routine-hd { text-align: center; margin-bottom: 20px; }
.routine-hd h2 { font-family: 'Playfair Display', serif; font-size: 24px; font-weight: 700; color: var(--text); margin-bottom: 4px; }
.routine-hd p { font-size: 13px; color: var(--text-soft); }
.routine-grid { max-width: 1280px; margin: 0 auto; padding: 0 24px; display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; }
.routine-card { position: relative; border-radius: 16px; overflow: hidden; aspect-ratio: 4/3; display: block; cursor: pointer; }
.routine-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.routine-card:hover img { transform: scale(1.06); }
.routine-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(26,10,16,.78) 0%, rgba(26,10,16,.2) 50%, transparent 100%); }
.routine-content { position: absolute; bottom: 0; left: 0; right: 0; padding: 24px 22px; z-index: 2; }
.routine-tag { display: inline-block; background: rgba(255,255,255,.22); border: 1px solid rgba(255,255,255,.5); color: #fff; font-size: 12px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; padding: 6px 16px; border-radius: 999px; margin-bottom: 10px; backdrop-filter: blur(4px); }
.routine-content h3 { font-family: 'Playfair Display', serif; font-size: 26px; font-weight: 700; color: #fff; margin-bottom: 6px; line-height: 1.2; }
.routine-content p { font-size: 14px; color: rgba(255,255,255,.85); line-height: 1.5; margin-bottom: 14px; }
.routine-btn { display: inline-flex; align-items: center; gap: 6px; background: #fff; color: var(--pink-dark); font-size: 12px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; padding: 9px 20px; border-radius: 999px; transition: .2s; }
.routine-card:hover .routine-btn { background: var(--pink); color: #fff; }

/* =========================================================
   VIDEO SECTION
   ========================================================= */
.video-section { background: linear-gradient(135deg, var(--text) 0%, var(--text-mid) 100%); padding: 60px 24px; text-align: center; position: relative; overflow: hidden; }
.video-section::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 30% 50%, rgba(232,96,154,.14) 0%, transparent 60%), radial-gradient(ellipse at 70% 50%, rgba(232,96,154,.08) 0%, transparent 60%); }
.video-section-inner { max-width: 900px; margin: 0 auto; position: relative; z-index: 1; }
.video-section .eyebrow { color: var(--pink-light); }
.video-section .eyebrow::before, .video-section .eyebrow::after { background: var(--pink-light); }
.video-section h2 { font-family: 'Playfair Display', serif; font-size: 32px; font-weight: 700; color: #fff; margin-bottom: 12px; margin-top: 8px; }
.video-section p { font-size: 14px; color: rgba(255,255,255,.7); margin-bottom: 36px; max-width: 560px; margin-left: auto; margin-right: auto; line-height: 1.7; }
.video-wrap { position: relative; border-radius: 20px; overflow: hidden; aspect-ratio: 16/9; background: #000; box-shadow: 0 20px 60px rgba(0,0,0,.5); }
.video-wrap iframe, .video-wrap video { width: 100%; height: 100%; display: block; border: none; }
.video-thumbnail { position: absolute; inset: 0; background-size: cover; background-position: center; display: flex; align-items: center; justify-content: center; }
.video-thumbnail::before { content: ''; position: absolute; inset: 0; background: rgba(26,10,16,.4); }
.video-play-btn {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: rgba(255,255,255,.95);
  display: flex; align-items: center; justify-content: center;
  position: relative; z-index: 1;
  box-shadow: 0 8px 32px rgba(0,0,0,.3);
  transition: .25s;
  border: none; cursor: pointer;
}
.video-play-btn::after { content: ''; border-left: 26px solid var(--pink); border-top: 16px solid transparent; border-bottom: 16px solid transparent; margin-left: 4px; }
.video-play-btn:hover { transform: scale(1.1); background: var(--pink); }
.video-play-btn:hover::after { border-left-color: #fff; }

/* =========================================================
   CLEAN BEAUTY SECTION
   ========================================================= */
.pure-section { background: var(--white); padding: 60px 24px; }
.pure-hd { text-align: center; margin-bottom: 40px; max-width: 560px; margin-left: auto; margin-right: auto; }
.pure-hd h2 { font-family: 'Playfair Display', serif; font-size: 30px; font-weight: 700; color: var(--text); margin-bottom: 10px; }
.pure-hd p { font-size: 14px; color: var(--text-soft); line-height: 1.7; }
.pure-grid { max-width: 1280px; margin: 0 auto; display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
.pure-card { background: var(--pink-ultra); border: 1.5px solid var(--pink-pale); border-radius: 18px; padding: 32px 24px; text-align: center; transition: .25s; }
.pure-card:hover { border-color: var(--pink-light); box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.pure-icon { font-size: 40px; margin-bottom: 16px; display: block; }
.pure-card h3 { font-size: 15px; font-weight: 800; color: var(--text); margin-bottom: 8px; }
.pure-card p { font-size: 13px; color: var(--text-soft); line-height: 1.65; }

/* =========================================================
   SKIN CONCERNS
   ========================================================= */
.concerns-wrap { background: #fafafa; padding: 8px 0; }
.cat-grid { display: grid; grid-template-columns: repeat(6,1fr); gap: 12px; }
.cat-card { position: relative; border-radius: 14px; overflow: hidden; aspect-ratio: 3/4; display: block; cursor: pointer; }
.cat-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.cat-card:hover img { transform: scale(1.06); }
.cat-card-over { position: absolute; inset: 0; background: linear-gradient(to top, rgba(26,10,16,.75) 0%, transparent 55%); transition: .3s; }
.cat-card:hover .cat-card-over { background: linear-gradient(to top, rgba(232,96,154,.75) 0%, rgba(232,96,154,.15) 55%); }
.cat-card-info { position: absolute; bottom: 0; left: 0; right: 0; padding: 16px 12px; }
.cat-card-info h4 { font-size: 13px; font-weight: 800; color: #fff; margin-bottom: 2px; }
.cat-card-info p  { font-size: 10px; color: rgba(255,255,255,.75); font-weight: 600; }

/* =========================================================
   STORY BANNER
   ========================================================= */
.story-wrap { overflow: hidden; }
.story-banner { position: relative; height: 420px; overflow: hidden; display: flex; align-items: center; }
.story-banner-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.story-content { position: relative; z-index: 2; background: rgba(255,255,255,.92); backdrop-filter: blur(8px); border-radius: 20px; margin-left: 60px; padding: 44px 48px; box-shadow: var(--shadow-lg); max-width: 480px; }
.story-content .eyebrow { justify-content: flex-start; }
.story-content .eyebrow::before { display: none; }
.story-content h2 { font-family: 'Playfair Display', serif; font-size: 36px; font-weight: 700; color: var(--text); line-height: 1.2; margin-bottom: 12px; }
.story-content h2 em { display: block; font-style: italic; color: var(--pink); }
.story-content p { font-size: 14px; color: var(--text-soft); line-height: 1.7; margin-bottom: 24px; max-width: 320px; }
.story-btn { display: inline-flex; align-items: center; gap: 8px; background: var(--pink); color: #fff; font-size: 12px; font-weight: 800; letter-spacing: .07em; text-transform: uppercase; padding: 13px 28px; border-radius: 999px; transition: .2s; }
.story-btn:hover { background: var(--pink-dark); color: #fff; transform: translateY(-2px); }

/* =========================================================
   TESTIMONIALS
   ========================================================= */
.reviews-section { background: var(--pink-ultra); padding: 60px 24px; }
.reviews-hd { text-align: center; margin-bottom: 36px; }
.reviews-hd h2 { font-family: 'Playfair Display', serif; font-size: 28px; font-weight: 700; color: var(--text); }
.reviews-grid { max-width: 1280px; margin: 0 auto; display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.review-card { background: #fff; border: 1px solid var(--border); border-radius: 16px; padding: 28px; transition: .2s; box-shadow: var(--shadow-sm); }
.review-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.review-stars { color: var(--yellow-star); font-size: 15px; letter-spacing: 2px; margin-bottom: 12px; }
.review-text { font-size: 13.5px; color: var(--text-soft); line-height: 1.7; margin-bottom: 18px; font-style: italic; }
.review-author { display: flex; align-items: center; gap: 12px; }
.review-ava { width: 42px; height: 42px; border-radius: 50%; background: var(--pink-pale); display: flex; align-items: center; justify-content: center; font-size: 18px; border: 2px solid var(--border); flex-shrink: 0; }
.review-name { font-size: 14px; font-weight: 800; color: var(--text); }
.review-skin { font-size: 11px; color: var(--text-muted); }

/* =========================================================
   APP DOWNLOAD BANNER
   ========================================================= */
.app-banner { background: linear-gradient(90deg, var(--pink-dark), var(--pink), var(--pink-light)); padding: 22px 0; position: relative; overflow: hidden; }
.app-banner::before { content: ''; position: absolute; right: -60px; top: -80px; width: 340px; height: 340px; border-radius: 50%; background: rgba(255,255,255,.07); }
.app-banner-inner { max-width: 1280px; margin: 0 auto; padding: 0 24px; display: flex; align-items: center; justify-content: space-between; position: relative; z-index: 1; gap: 20px; }
.app-banner h3 { font-family: 'Playfair Display', serif; font-size: 22px; font-weight: 700; color: #fff; }
.app-banner p { font-size: 13px; color: rgba(255,255,255,.85); font-weight: 500; margin-top: 4px; }
.app-btns { display: flex; gap: 10px; }
.app-btn { display: flex; align-items: center; gap: 10px; background: rgba(255,255,255,.15); border: 1.5px solid rgba(255,255,255,.4); color: #fff; padding: 10px 20px; border-radius: 12px; font-size: 12px; font-weight: 700; transition: .2s; text-decoration: none; }
.app-btn:hover { background: rgba(255,255,255,.25); color: #fff; }
.app-btn .icon { font-size: 22px; }
.app-btn .txt div:first-child { font-size: 9px; opacity: .8; }
.app-btn .txt div:last-child  { font-size: 13px; font-weight: 800; }

/* =========================================================
   NEWSLETTER
   ========================================================= */
.newsletter { background: linear-gradient(135deg, var(--pink-ultra), var(--pink-pale)); padding: 56px 24px; text-align: center; border-top: 1px solid var(--border); }
.newsletter .nl-icon { font-size: 40px; margin-bottom: 14px; }
.newsletter h2 { font-family: 'Playfair Display', serif; font-size: 26px; font-weight: 700; color: var(--text); margin-bottom: 8px; }
.newsletter p { font-size: 13px; color: var(--text-soft); margin-bottom: 28px; }
.nl-form { display: flex; gap: 10px; max-width: 460px; margin: 0 auto; }
.nl-form input { flex: 1; border: 1.5px solid var(--border-mid); border-radius: 999px; padding: 12px 20px; font-size: 13px; outline: none; font-family: 'DM Sans', sans-serif; background: #fff; }
.nl-form input:focus { border-color: var(--pink); box-shadow: 0 0 0 3px rgba(232,96,154,.1); }
.nl-form button { background: var(--pink); color: #fff; border: none; border-radius: 999px; padding: 12px 26px; font-size: 12px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; white-space: nowrap; transition: .2s; font-family: 'DM Sans', sans-serif; }
.nl-form button:hover { background: var(--pink-dark); }
.nl-disc { font-size: 11px; color: var(--text-muted); margin-top: 12px; }

/* =========================================================
   FOOTER — dark with pink accents
   ========================================================= */
.site-footer { background: #1a0a10; color: rgba(255,255,255,.6); padding: 56px 0 0; }
.footer-inner { max-width: 1280px; margin: 0 auto; padding: 0 24px 48px; display: grid; grid-template-columns: 2fr 1fr 1fr 1.2fr; gap: 44px; }
.footer-brand p { font-size: 12.5px; line-height: 1.8; color: rgba(255,255,255,.5); margin-top: 14px; max-width: 260px; }
.footer-logo span { color: var(--pink-light); }

.socials { display: flex; gap: 8px; margin-top: 20px; }
.social { width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.12); display: flex; align-items: center; justify-content: center; transition: .15s; cursor: pointer; color: #fff; text-decoration: none; }
.social:hover { background: var(--pink); border-color: var(--pink); transform: translateY(-2px); }
.social svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.footer-col h5 { font-size: 11px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; color: #fff; margin-bottom: 18px; padding-bottom: 12px; border-bottom: 1.5px solid rgba(255,255,255,.1); }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a { font-size: 12.5px; color: rgba(255,255,255,.52); transition: .15s; }
.footer-col ul a:hover { color: var(--pink-light); padding-left: 4px; }
.footer-payments { margin-top: 20px; }
.pay-label { font-size: 10px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.5); margin-bottom: 10px; }
.pay-icons { display: flex; gap: 7px; flex-wrap: wrap; margin-top: 8px; align-items: center; }
.pay-icon { display: inline-flex; align-items: center; justify-content: center; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); border-radius: 5px; padding: 4px 6px; transition: .2s; }
.pay-icon:hover { background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.2); }
.pay-icon svg { display: block; height: auto; }
.footer-payments h5 { font-size: 10px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; color: #fff; margin-bottom: 10px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.07); padding: 18px 24px; max-width: 1280px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 10px; }
.footer-bottom p { font-size: 12px; color: rgba(255,255,255,.3); }
.footer-bottom-links { display: flex; align-items: center; gap: 16px; }
.footer-bottom-links ul { display: flex; flex-direction: row; align-items: center; gap: 16px; list-style: none; margin: 0; padding: 0; flex-wrap: nowrap; }
.footer-bottom-links ul li { display: inline-flex; white-space: nowrap; }
.footer-bottom-links a, .footer-bottom-links ul li a { font-size: 12px; color: rgba(255,255,255,.3); transition: .15s; text-decoration: none; white-space: nowrap; }
.footer-bottom-links a:hover, .footer-bottom-links ul li a:hover { color: var(--pink-light); }
.footer-trust { display: flex; gap: 14px; }
.footer-trust span { font-size: 11px; color: rgba(255,255,255,.3); }

/* =========================================================
   BREADCRUMB
   ========================================================= */
.breadcrumb-bar { background: #fff; border-bottom: 1px solid var(--border); padding: 10px 0; }
.breadcrumb-inner { max-width: 1280px; margin: 0 auto; padding: 0 24px; display: flex; align-items: center; gap: 6px; font-size: 12px; color: var(--text-muted); }
.breadcrumb-inner a { color: var(--text-muted); transition: .15s; }
.breadcrumb-inner a:hover { color: var(--pink); }
.breadcrumb-sep { font-size: 10px; opacity: .4; }
.breadcrumb-current { color: var(--text); font-weight: 600; }

/* =========================================================
   SINGLE PRODUCT PAGE
   ========================================================= */
.product-page { max-width: 1280px; margin: 0 auto; padding: 32px 24px; display: grid; grid-template-columns: 1fr 1fr; gap: 52px; align-items: start; }
.gallery { position: sticky; top: 80px; }
.gallery-main { border-radius: 20px; overflow: hidden; aspect-ratio: 1/1; background: var(--pink-ultra); margin-bottom: 12px; position: relative; cursor: zoom-in; }
.gallery-main img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.gallery-main:hover img { transform: scale(1.03); }
.gallery-badge { position: absolute; top: 14px; left: 14px; display: flex; flex-direction: column; gap: 6px; }
.gallery-badge span { padding: 4px 12px; border-radius: 999px; font-size: 10px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.badge-bs { background: var(--yellow); color: #5a3000; }
.badge-iv { background: #0a5c36; color: #fff; }
.gallery-thumbs { display: flex; gap: 8px; }
.thumb { width: 76px; height: 76px; border-radius: 12px; overflow: hidden; cursor: pointer; border: 2px solid var(--border); transition: .2s; flex-shrink: 0; }
.thumb.active, .thumb:hover { border-color: var(--pink); }
.thumb img { width: 100%; height: 100%; object-fit: cover; }
.pinfo-badges { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 12px; }
.pinfo-badge { padding: 4px 12px; border-radius: 999px; font-size: 10px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; border: 1.5px solid; }
.pinfo-badge.bestseller { background: var(--yellow); color: #5a3000; border-color: var(--yellow); }
.pinfo-badge.invivo     { background: #0a5c36; color: #fff; border-color: #0a5c36; }
.pinfo h1 { font-family: 'Playfair Display', serif; font-size: 26px; font-weight: 700; color: var(--text); line-height: 1.25; margin-bottom: 10px; }
.suitable { font-size: 12px; font-weight: 600; color: var(--text-soft); margin-bottom: 12px; }
.suitable span { color: var(--pink); font-weight: 700; }
.stars-row { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; padding-bottom: 16px; border-bottom: 1px solid var(--border); }
.stars-big { color: var(--yellow-star); font-size: 15px; letter-spacing: 1px; }
.stars-num { font-size: 14px; font-weight: 800; color: var(--text); }
.stars-count { font-size: 13px; color: var(--text-muted); }
.stars-verified { font-size: 12px; font-weight: 600; color: var(--green); }
.concern-tags { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 16px; }
.concern-tag { padding: 5px 14px; border-radius: 999px; font-size: 12px; font-weight: 700; background: var(--pink); color: #fff; cursor: pointer; transition: .15s; border: none; }
.concern-tag.outline { background: #fff; color: var(--text-mid); border: 1.5px solid var(--border); }
.concern-tag.outline:hover { border-color: var(--pink); color: var(--pink); }
.size-label { font-size: 12px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; color: var(--text-mid); margin-bottom: 10px; }
.size-chips { display: flex; gap: 8px; margin-bottom: 20px; flex-wrap: wrap; }
.size-chip { padding: 8px 20px; border-radius: 999px; font-size: 13px; font-weight: 700; border: 1.5px solid var(--border); color: var(--text-soft); cursor: pointer; transition: .2s; background: #fff; }
.size-chip.active { border-color: var(--pink); color: var(--pink); background: var(--pink-pale); box-shadow: 0 0 0 3px rgba(232,96,154,.1); }
.size-chip:hover:not(.active) { border-color: var(--text-muted); color: var(--text); }
.price-block { margin-bottom: 20px; }
.price-main { font-size: 28px; font-weight: 900; color: var(--text); }
.price-sub { font-size: 12px; color: var(--text-muted); margin-top: 3px; }
.price-off-tag { display: inline-block; background: #e6f9ee; color: var(--green); padding: 3px 10px; border-radius: 999px; font-size: 12px; font-weight: 700; margin-left: 8px; }
.cta-row { display: flex; gap: 12px; margin-bottom: 20px; }
.btn-atc { flex: 1; background: var(--pink); color: #fff; border: none; border-radius: 999px; padding: 15px 24px; font-size: 13px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; transition: .2s; font-family: 'DM Sans', sans-serif; cursor: pointer; }
.btn-atc:hover { background: var(--pink-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(232,96,154,.4); }
.btn-wishlist { width: 50px; height: 50px; border-radius: 50%; border: 1.5px solid var(--border); background: #fff; display: flex; align-items: center; justify-content: center; font-size: 20px; transition: .2s; cursor: pointer; flex-shrink: 0; }
.btn-wishlist:hover { border-color: var(--pink); background: var(--pink-pale); }
.delivery-badges { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 20px; }
.del-badge { display: flex; align-items: center; gap: 6px; background: var(--pink-ultra); border: 1px solid var(--pink-pale); border-radius: 8px; padding: 8px 14px; font-size: 12px; font-weight: 700; color: var(--text-mid); }
.del-badge .di { font-size: 16px; }
.product-tabs { margin-top: 32px; border-top: 1px solid var(--border); }
.tab-nav { display: flex; gap: 0; border-bottom: 2px solid var(--border); margin-bottom: 24px; }
.tab-btn { padding: 14px 20px; font-size: 13px; font-weight: 700; color: var(--text-soft); border: none; background: none; cursor: pointer; position: relative; transition: .15s; font-family: 'DM Sans', sans-serif; }
.tab-btn.active { color: var(--pink); }
.tab-btn.active::after { content: ''; position: absolute; bottom: -2px; left: 0; right: 0; height: 2px; background: var(--pink); border-radius: 2px; }
.tab-pane { display: none; }
.tab-pane.active { display: block; }

/* =========================================================
   ARCHIVE / CATEGORY PAGE
   ========================================================= */
.cat-banner { width: 100%; height: 280px; position: relative; overflow: hidden; display: flex; align-items: center; background: linear-gradient(135deg, var(--pink-ultra), var(--pink-pale)); }
.cat-banner-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.cat-banner-overlay { position: absolute; inset: 0; background: linear-gradient(to right, rgba(255,245,250,.88) 0%, rgba(255,245,250,.5) 50%, transparent 100%); }
.cat-banner-content { position: relative; z-index: 2; padding: 0 60px; max-width: 600px; }
.cat-banner-content h1 { font-family: 'Playfair Display', serif; font-size: 46px; font-weight: 700; color: var(--text); line-height: 1.1; margin-bottom: 8px; }
.cat-banner-content h1 em { font-style: italic; color: var(--pink); display: block; font-size: 32px; }
.cat-banner-content p { font-size: 14px; color: var(--text-soft); max-width: 380px; line-height: 1.65; }
.cat-page { max-width: 1280px; margin: 0 auto; padding: 28px 24px; }
.cat-page-title { font-family: 'Playfair Display', serif; font-size: 22px; font-weight: 700; color: var(--text); text-align: center; margin-bottom: 28px; }
.concern-tabs { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 28px; justify-content: center; }
.ctab { padding: 7px 18px; border-radius: 999px; font-size: 13px; font-weight: 700; cursor: pointer; border: 1.5px solid var(--border); color: var(--text-soft); background: #fff; transition: .15s; }
.ctab.active { background: var(--pink); color: #fff; border-color: var(--pink); box-shadow: 0 4px 14px rgba(232,96,154,.28); }
.ctab:hover:not(.active) { border-color: var(--pink); color: var(--pink); }
.sort-bar { display: flex; align-items: center; justify-content: space-between; margin-bottom: 24px; padding: 12px 16px; background: var(--pink-ultra); border-radius: 12px; border: 1px solid var(--border); flex-wrap: wrap; gap: 12px; }
.sort-left  { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.filter-btn { display: flex; align-items: center; gap: 6px; padding: 7px 16px; border: 1.5px solid var(--border); border-radius: 999px; font-size: 12.5px; font-weight: 700; color: var(--text-mid); cursor: pointer; background: #fff; transition: .15s; }
.filter-btn:hover { border-color: var(--pink); color: var(--pink); }
.filter-btn.active { background: var(--pink-pale); border-color: var(--pink); color: var(--pink); }
.filter-count { width: 18px; height: 18px; border-radius: 50%; background: var(--pink); color: #fff; font-size: 10px; font-weight: 800; display: flex; align-items: center; justify-content: center; }
.sort-right { display: flex; align-items: center; gap: 10px; }
.sort-count { font-size: 12.5px; color: var(--text-muted); }
.sort-select { border: 1.5px solid var(--border); border-radius: 999px; padding: 7px 16px; font-size: 12.5px; font-family: 'DM Sans', sans-serif; outline: none; color: var(--text-mid); cursor: pointer; background: #fff; }
.sort-select:focus { border-color: var(--pink); }
.aliza-pagination { display: flex; justify-content: center; gap: 6px; margin-top: 44px; padding-bottom: 44px; }
.aliza-pagination .page-numbers { width: 38px; height: 38px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 700; border: 1.5px solid var(--border); color: var(--text-mid); transition: .15s; }
.aliza-pagination .page-numbers.current,
.aliza-pagination .page-numbers:hover { background: var(--pink); color: #fff; border-color: var(--pink); }

/* WP / WooCommerce cart & checkout quick fix */
.woocommerce .button,.woocommerce button.button,.woocommerce input.button { background: var(--pink); color: #fff; border-radius: 999px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; font-family: 'DM Sans', sans-serif; padding: 12px 28px; transition: .2s; border: none; }
.woocommerce .button:hover,.woocommerce button.button:hover { background: var(--pink-dark); color: #fff; }
.woocommerce #payment #place_order { background: var(--pink); border-radius: 999px; font-family: 'DM Sans', sans-serif; font-weight: 800; font-size: 14px; }
.woocommerce #payment #place_order:hover { background: var(--pink-dark); }
.woocommerce-message,.woocommerce-info { border-top-color: var(--pink); }
.woocommerce-message::before,.woocommerce-info::before { color: var(--pink); }

/* WP CORE */
.wp-block-image,.wp-block-cover { margin-bottom: 1.5rem; }
.entry-content p { margin-bottom: 1rem; color: var(--text-soft); line-height: 1.8; }
.entry-content h2,.entry-content h3 { font-family: 'Playfair Display', serif; color: var(--text); margin-bottom: .5rem; }
.screen-reader-text { clip: rect(1px,1px,1px,1px); position: absolute !important; height: 1px; width: 1px; overflow: hidden; }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width:1024px) {
  .products-grid { grid-template-columns: repeat(3,1fr); }
  .cat-grid      { grid-template-columns: repeat(3,1fr); }
  .pure-grid     { grid-template-columns: repeat(2,1fr); }
  .reviews-grid  { grid-template-columns: repeat(2,1fr); }
  .footer-inner  { grid-template-columns: 1fr 1fr; gap: 28px; }
  .product-page  { grid-template-columns: 1fr; gap: 28px; }
  .gallery       { position: static; }
  .routine-grid  { grid-template-columns: repeat(2,1fr); }
}
@media (max-width:768px) {
  .products-grid { grid-template-columns: repeat(2,1fr); }
  .cat-grid      { grid-template-columns: repeat(2,1fr); }
  .hero              { width: 100vw; }


  .primary-nav   { display: none; }
  .nav-toggle    { display: flex; }
  /* Old nav never shows on mobile — new drawer handles navigation */
  .primary-nav.open { display: none !important; }
  .cat-banner-content h1 { font-size: 32px; }
  .routine-grid  { grid-template-columns: 1fr; }
  .footer-inner  { grid-template-columns: 1fr; gap: 24px; }
  .promo-strip-inner { flex-direction: column; text-align: center; }
  .app-banner-inner  { flex-direction: column; text-align: center; }
  .story-content { margin-left: 16px; margin-right: 16px; padding: 32px 24px; }
  .video-section h2 { font-size: 24px; }
  .offer-strip-inner { flex-direction: column; gap: 10px; }
}
@media (max-width:480px) {
  .products-grid  { grid-template-columns: 1fr 1fr; gap: 10px; }
  .nl-form        { flex-direction: column; }
  .nl-form input, .nl-form button { width: 100%; }
  .search-box     { display: none; }
  .cat-icon-row-inner { gap: 2px; }
  .cat-icon-item  { padding: 6px 8px; min-width: 64px; }
  .cat-icon-circle { width: 52px; height: 52px; }

}

/* =========================================================
   GOOGLE MY BUSINESS REVIEWS SECTION
   ========================================================= */
.gmb-reviews-section {
  background: var(--white);
  padding: 64px 24px;
  border-top: 1px solid var(--border);
}
.gmb-reviews-inner { max-width: 1280px; margin: 0 auto; }

/* Header row */
.gmb-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}
.gmb-header-left h2 {
  font-family: 'Playfair Display', serif;
  font-size: 30px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
  margin-top: 6px;
}
.gmb-header-left p { font-size: 14px; color: var(--text-soft); }

/* Score card */
.gmb-score-card {
  background: var(--pink-ultra);
  border: 1.5px solid var(--border);
  border-radius: 20px;
  padding: 24px 32px;
  text-align: center;
  min-width: 180px;
  box-shadow: var(--shadow-sm);
  flex-shrink: 0;
}
.gmb-score-num {
  font-family: 'Playfair Display', serif;
  font-size: 52px;
  font-weight: 700;
  color: var(--text);
  line-height: 1;
  margin-bottom: 8px;
}
.gmb-score-stars { display: flex; justify-content: center; gap: 3px; margin-bottom: 8px; }
.gmb-score-count { font-size: 12px; font-weight: 700; color: var(--text-muted); margin-bottom: 16px; letter-spacing: .04em; }
.gmb-view-all-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--pink);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 999px;
  transition: .2s;
  text-decoration: none;
}
.gmb-view-all-btn:hover { background: var(--pink-dark); color: #fff; transform: translateY(-1px); }

/* Stars */
.gmb-star { font-size: 16px; color: #ddd; line-height: 1; }
.gmb-star.filled { color: #f5a623; }
.gmb-stars-row { display: flex; gap: 2px; margin-bottom: 12px; }
.gmb-stars-row .gmb-star { font-size: 14px; }

/* Reviews grid */
.gmb-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 36px;
}

/* Single review card */
.gmb-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px;
  transition: .25s;
  box-shadow: var(--shadow-sm);
  position: relative;
}
.gmb-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
  border-color: var(--pink-mid);
}
.gmb-card-top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.gmb-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 17px;
  font-weight: 800;
  color: #fff;
  font-family: 'DM Sans', sans-serif;
  flex-shrink: 0;
}
.gmb-meta { flex: 1; }
.gmb-reviewer-name { font-size: 14px; font-weight: 800; color: var(--text); line-height: 1.2; }
.gmb-reviewer-ago  { font-size: 11px; color: var(--text-muted); margin-top: 2px; }
.gmb-google-icon { margin-left: auto; flex-shrink: 0; opacity: .85; }
.gmb-review-text {
  font-size: 13.5px;
  color: var(--text-soft);
  line-height: 1.7;
  font-style: italic;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Bottom CTA */
.gmb-footer-cta { text-align: center; }
.gmb-write-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  color: var(--pink);
  border: 2px solid var(--pink);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .05em;
  text-transform: uppercase;
  padding: 13px 32px;
  border-radius: 999px;
  transition: .2s;
  text-decoration: none;
}
.gmb-write-btn:hover {
  background: var(--pink);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(232,96,154,.35);
}

/* Responsive */
@media (max-width: 1024px) { .gmb-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 640px)  { .gmb-grid { grid-template-columns: 1fr; } .gmb-header { flex-direction: column; } .gmb-score-card { width: 100%; } }

/* =========================================================
   FOOTER LOGO — Consistent 82px on ALL pages (single source of truth)
   ========================================================= */
.footer-logo,
.footer-logo-link {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}
.footer-logo img,
.footer-logo-img,
.site-footer img.custom-logo,
.site-footer .custom-logo-link img {
  height: 82px !important;
  width: auto !important;
  max-width: 220px;
  object-fit: contain;
  filter: brightness(0) invert(1) !important;
  mix-blend-mode: screen;
  background: transparent !important;
  display: block;
}
.footer-logo span { color: var(--pink-light); }
.footer-logo-text { font-family: 'Playfair Display', serif; font-size: 22px; font-weight: 700; color: #fff; }
.footer-tagline   { font-size: 12.5px; line-height: 1.8; color: rgba(255,255,255,.5); margin-top: 14px; max-width: 260px; }


/* ── Footer column title editable ── */
.footer-col h5 { font-size:11px; font-weight:800; letter-spacing:.14em; text-transform:uppercase; color:#fff; margin-bottom:18px; padding-bottom:12px; border-bottom:1.5px solid rgba(255,255,255,.1); }

/* ── Header height increase for bigger logo ── */
.header-inner { height:82px; }

/* =========================================================
   SLIDING TOPBAR (v2.4)
   ========================================================= */
.topbar {
  background: linear-gradient(90deg,#ffd6eb,#ffe8f4,#ffd6eb);
  border-bottom: 1px solid #f5c8e0;
  padding: 0;
  position: relative;
  overflow: hidden;
  cursor: default;
}
.topbar-slide-wrap {
  overflow: hidden;
  width: 100%;
}
.topbar-track {
  display: flex;
  transition: transform .5s ease;
  will-change: transform;
}
.topbar-slide {
  min-width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 9px 20px;
  font-size: 12px;
  font-weight: 700;
  color: #c04080;
  letter-spacing: .02em;
  white-space: nowrap;
}
.topbar-badge {
  background: linear-gradient(90deg,var(--pink),#f060a0);
  color: #fff;
  padding: 2px 12px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .07em;
  text-transform: uppercase;
  flex-shrink: 0;
}
.topbar-msg { overflow: hidden; text-overflow: ellipsis; }
/* Dots — hidden, auto-slides without visible dots */
.topbar-dots { display: none !important; }
.topbar-dot  { display: none !important; }

/* =========================================================
   MOBILE HEADER — hamburger LEFT, logo CENTER, icons RIGHT
   ========================================================= */
@media (max-width: 768px) {
  /* Header layout */
  .header-inner {
    padding: 0 14px;
    height: 90px;
    position: relative;
  }
  /* Hamburger */
  .nav-toggle { display: flex !important; }
  /* Logo: perfectly centered using both X and Y */
  .site-logo {
    position: absolute !important;
    left: 50% !important;
    top: 50% !important;
    transform: translate(-50%, -50%) !important;
    margin: 0 !important;
    z-index: 0 !important;
  }
  /* WP custom logo link wrapper */
  .site-logo .custom-logo-link,
  .site-logo a { display: block !important; }
  /* Logo image */
  .site-logo .custom-logo-link img,
  .site-logo img.custom-logo,
  .custom-logo-link img,
  img.custom-logo { height: 72px !important; width: auto !important; max-width: 180px !important; object-fit: contain !important; display: block !important; margin: 0 auto !important; }
  /* Hide desktop nav and search */
  .primary-nav { display: none !important; }
  .search-box { display: none !important; }
  /* Right icons */
  .nav-right { gap: 2px; margin-left: auto; }
  .nav-icon { width: 36px; height: 36px; }
  .topbar-slide { white-space: normal; text-align: center; }
  /* Old nav never shows */
  .primary-nav.open { display: none !important; }
  /* Hamburger → X */
  .nav-toggle span { transition: transform .3s ease, opacity .3s ease; }
  .nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
  .nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
}
@media (max-width: 480px) {
  .site-logo .custom-logo-link img,
  .site-logo img.custom-logo,
  .custom-logo-link img,
  img.custom-logo { height: 72px !important; max-width: 180px !important; object-fit: contain !important; display: block !important; margin: 0 auto !important; }
  .topbar-slide { font-size: 11px; gap: 8px; padding: 8px 12px; }
}

