/** Shopify CDN: Minification failed

Line 1931:0 Unexpected "}"

**/
:root {
  --hg-pink-soft: #F4A7BB;   /* soft blush — fills, light accents */
  --hg-pink-primary: #D4708F; /* brand pink — large surfaces */
  --hg-pink-ink: #B85478;    /* AA-safe — small text, badges, hovers */
}
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  color: #1a1a1a;
  background: #ffffff;
  font-size: 15px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body.no-scroll {
  overflow: hidden;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

ul {
  list-style: none;
}

h1, h2, h3, h4, h5 {
  font-family: 'Playfair Display', serif;
  font-weight: 500;
}

.btn {
  display: inline-block;
  background: #F4A7BB;
  color: #1a1a1a;
  padding: 14px 36px;
  font-size: 12px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  border-radius: 0;
  border: none;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease;
}

.btn:hover {
  background: #D4708F;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}

/* ============================================
   1. ANNOUNCEMENT BAR
   ============================================ */
.announcement-bar {
  background: #1a1a1a;
  color: #fff;
  padding: 9px 0;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 600;
  overflow: hidden;
}
.announcement-bar-inner {
  display: flex;
  white-space: nowrap;
  animation: announcement-scroll 30s linear infinite;
}
.announcement-bar-inner span {
  padding: 0 28px;
  color: #fff;
}
.announcement-bar-inner span.sep { color: #F4A7BB; }
.announcement-bar-static { text-align: center; font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: #fff; font-weight: 500; padding: 11px 20px; }
.announcement-bar-rotating { padding: 11px 20px; overflow: hidden; position: relative; height: 38px; }
.announcement-rotator { position: relative; width: 100%; height: 100%; }
.announcement-rotator .ab-msg { position: absolute; left: 0; right: 0; top: 50%; transform: translateY(-50%); text-align: center; font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: #fff; font-weight: 500; opacity: 0; animation: abRotate 10s infinite; }
.announcement-rotator .ab-msg-1 { animation-delay: 0s; }
.announcement-rotator .ab-msg-2 { animation-delay: 5s; }
@keyframes abRotate {
  0%, 45% { opacity: 1; transform: translateY(-50%); }
  50%, 95% { opacity: 0; transform: translateY(-70%); }
  100% { opacity: 0; transform: translateY(-50%); }
}
@keyframes announcement-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============================================
   2. HEADER
   ============================================ */
.site-header {
  background: #fff;
  border-bottom: 1px solid #e5e5e5;
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: box-shadow 0.3s ease;
}

.site-header.scrolled {
  box-shadow: 0 2px 20px rgba(0,0,0,0.06);
}

/* Accessibility helpers */
.sr-only { position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.skip-link { position: absolute; left: -9999px; top: 0; z-index: 10001; background: #1a1a1a; color: #fff; padding: 12px 22px; font-size: 14px; font-weight: 600; text-decoration: none; border-radius: 0 0 8px 0; }
.skip-link:focus { left: 0; outline: 2px solid #F4A7BB; outline-offset: 2px; }

.header-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 40px 8px;
}

.header-logo { display: flex; align-items: center; }
.hg-logo-img { height: 46px; width: auto; display: block; }
.header-logo a {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  font-weight: 500;
  color: #1a1a1a;
}
@media (max-width: 768px) { .hg-logo-img { height: 32px; } }

.header-icons {
  display: flex;
  align-items: center;
  gap: 20px;
}

.hg-lang-switch { position: relative; }
.hg-lang-btn { display: inline-flex; align-items: center; gap: 5px; font-family: 'Inter', sans-serif; font-size: 11px; font-weight: 600; letter-spacing: 0.14em; color: #1a1a1a; padding: 6px 10px; border: 1px solid #e5e5e5; border-radius: 999px; background: transparent; cursor: pointer; transition: border-color 0.2s ease; }
.hg-lang-btn:hover { border-color: #1a1a1a; }
.hg-lang-btn svg { stroke: #1a1a1a; width: 9px; height: 9px; fill: none; }
.hg-lang-menu { position: absolute; top: calc(100% + 6px); right: 0; background: #fff; border: 1px solid #e5e5e5; min-width: 140px; opacity: 0; visibility: hidden; transform: translateY(-4px); transition: all 0.2s ease; z-index: 200; box-shadow: 0 10px 28px rgba(0,0,0,0.08); }
.hg-lang-menu.open { opacity: 1; visibility: visible; transform: translateY(0); }
.hg-lang-opt { display: block; padding: 11px 16px; font-family: 'Inter', sans-serif; font-size: 12px; color: #1a1a1a; letter-spacing: 0.02em; text-decoration: none; transition: background 0.15s ease; }
.hg-lang-opt:hover { background: #fafafa; color: #D4708F; }
.hg-lang-opt.active { color: #D4708F; font-weight: 600; }

.header-icons button,
.header-icons a {
  position: relative;
  display: flex;
  align-items: center;
}

.header-icons svg {
  width: 20px;
  height: 20px;
  stroke: #1a1a1a;
  fill: none;
  stroke-width: 1.5;
}

.cart-count {
  position: absolute;
  top: -6px;
  right: -8px;
  background: #F4A7BB;
  color: #1a1a1a;
  font-size: 10px;
  font-weight: 600;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.cart-count.bump {
  transform: scale(1.3);
}

.header-nav { display: flex; justify-content: center; padding: 0 40px 14px; gap: 36px; }
.header-nav > li { position: relative; }
.header-nav > li > a { font-size: 13px; text-transform: uppercase; letter-spacing: 0.12em; color: #1a1a1a; padding: 6px 0; display: block; transition: color 0.3s ease; font-family: 'Inter', sans-serif; }
.header-nav > li > a:hover { color: #D4708F; }
.nav-dropdown { position: absolute; top: 100%; left: 0; background: #fff; box-shadow: 0 8px 30px rgba(0,0,0,0.08); padding: 16px 24px; min-width: 200px; opacity: 0; visibility: hidden; transform: translateY(6px); transition: all 0.3s ease; z-index: 100; }
.header-nav > li:hover .nav-dropdown,
.header-nav > li:focus-within .nav-dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.nav-dropdown a { display: block; font-size: 13px; letter-spacing: 0.08em; padding: 8px 0; color: #555; transition: color 0.3s ease; font-family: 'Inter', sans-serif; }
.nav-dropdown a:hover { color: #1a1a1a; }

.hamburger { display: none; flex-direction: column; gap: 5px; padding: 4px; }
.hamburger span { display: block; width: 22px; height: 1.5px; background: #1a1a1a; transition: all 0.3s ease; }

/* Mobile menu overlay */
.mobile-menu-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: #fff; z-index: 2000; display: flex; flex-direction: column; padding: 0; opacity: 0; visibility: hidden; transition: opacity 0.3s ease; }
.mobile-menu-overlay.open { opacity: 1; visibility: visible; }
.mobile-menu-header { display: flex; justify-content: space-between; align-items: center; padding: 18px 24px; border-bottom: 1px solid #e5e5e5; }
.mobile-menu-close { font-size: 28px; line-height: 1; }
.mobile-menu-nav { padding: 30px 24px; flex: 1; overflow-y: auto; }
.mobile-menu-nav a { display: block; font-size: 16px; text-transform: uppercase; letter-spacing: 0.12em; padding: 14px 0; border-bottom: 1px solid #f0f0f0; color: #1a1a1a; font-family: 'Inter', sans-serif; }
.mobile-menu-nav .sub-link { padding-left: 20px; font-size: 14px; color: #555; }
.mobile-menu-lang { padding: 22px 24px; border-top: 1px solid #f0f0f0; }
.mm-lang-label { display: block; font-size: 11px; text-transform: uppercase; letter-spacing: 0.16em; color: #999; margin-bottom: 12px; }
.mm-lang-row { display: flex; flex-wrap: wrap; gap: 10px; }
.mm-lang { display: inline-block; padding: 9px 16px; border: 1px solid #e5e5e5; border-radius: 999px; font-size: 13px; color: #1a1a1a; text-decoration: none; }
.mm-lang.active { border-color: #1a1a1a; font-weight: 600; background: #1a1a1a; color: #fff; }

/* 3. HERO SLIDESHOW */
.hero { position: relative; width: 100%; height: 70vh; max-height: 700px; overflow: hidden; }
.hero-slide { position: absolute; top: 0; left: 0; width: 100%; height: 100%; opacity: 0; transition: opacity 0.8s ease; }
.hero-slide.active { opacity: 1; z-index: 1; }
.hero-slide img { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(90deg, rgba(243,217,218,0.94) 0%, rgba(243,217,218,0.55) 32%, rgba(243,217,218,0) 60%); display: flex; flex-direction: column; align-items: flex-start; justify-content: center; text-align: left; padding: 40px clamp(36px, 7vw, 112px); z-index: 2; }
.hero-overlay h1 { font-family: 'Playfair Display', serif; font-size: 54px; color: #241319; font-weight: 500; letter-spacing: 0.02em; line-height: 1.05; margin-bottom: 16px; max-width: 540px; }
.hero-overlay p { color: #5a4a50; font-size: 16px; letter-spacing: 0.04em; margin-bottom: 26px; max-width: 440px; line-height: 1.55; }
.hero-overlay .btn { background: #1a1a1a; color: #fff; }
.hero-overlay .btn:hover { background: #B85478; color: #fff; }
.hero-secondary-cta { display: inline-block; margin-top: 16px; color: #fff; font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase; font-weight: 600; border-bottom: 1px solid rgba(255,255,255,0.6); padding-bottom: 3px; transition: border-color 0.3s ease, color 0.3s ease; }
.hero-secondary-cta:hover { color: #F4A7BB; border-color: #F4A7BB; }
.hero-rating { display: inline-flex; align-items: center; gap: 10px; margin-bottom: 18px; padding: 8px 16px; background: rgba(255,255,255,0.92); backdrop-filter: blur(6px); border-radius: 999px; }
.hero-rating .hr-stars { color: #F4A7BB; font-size: 14px; letter-spacing: 2px; }
.hero-rating .hr-text { font-size: 12px; color: #1a1a1a; letter-spacing: 0.04em; }
.hero-rating .hr-text strong { font-weight: 700; }
.hero-trustline { margin-top: 18px; display: flex; flex-wrap: wrap; gap: 10px; align-items: center; justify-content: flex-start; color: #6a5560; font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; font-weight: 500; }
.hero-trustline .sep { opacity: 0.6; }
.card-rating { display: flex; align-items: center; gap: 6px; margin-top: 4px; font-size: 11px; color: #555; }
.card-rating .cr-stars { color: #F4A7BB; letter-spacing: 1px; font-size: 11px; }

/* AS SEEN IN press strip */
.hg-pressbar { background: #fff; border-top: 1px solid #f0f0f0; border-bottom: 1px solid #f0f0f0; padding: 18px 20px; }
.hg-pressbar-inner { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; justify-content: center; gap: 28px; flex-wrap: wrap; font-family: 'Inter', sans-serif; }
.hg-pressbar-label { font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: #999; font-weight: 600; }
.hg-pressbar-logos { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; font-size: 14px; letter-spacing: 0.08em; color: #333; font-weight: 600; }
.hg-pressbar-logos span.sep { color: #ccc; letter-spacing: 0; margin: 0 -4px; }
@media (max-width: 720px) { .hg-pressbar-inner { gap: 12px; } .hg-pressbar-logos { font-size: 12px; gap: 10px; } }

/* SHOP BY COLOR */
.hg-colorshop { padding: 80px 0; background: #fff; }
.hg-colorshop .container { max-width: 1200px; margin: 0 auto; padding: 0 40px; }
.hg-colorshop-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; margin-top: 40px; }
.hg-colorshop-tile { text-align: center; text-decoration: none; color: inherit; display: flex; flex-direction: column; align-items: center; gap: 12px; padding: 16px 8px; border: 1px solid transparent; transition: all 0.3s ease; }
.hg-colorshop-tile:hover { border-color: #F4A7BB; transform: translateY(-3px); }
.hg-cs-swatch { width: 92px; height: 92px; border-radius: 50%; box-shadow: inset 0 2px 6px rgba(255,255,255,0.2), 0 6px 14px rgba(0,0,0,0.12); transition: transform 0.3s ease; }
.hg-colorshop-tile:hover .hg-cs-swatch { transform: scale(1.08); }
.hg-colorshop-tile strong { font-family: 'Playfair Display', serif; font-size: 22px; color: #1a1a1a; font-weight: 500; }
.hg-colorshop-tile span { font-size: 12px; color: #777; letter-spacing: 0.04em; }
@media (max-width: 720px) {
  .hg-colorshop-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .hg-cs-swatch { width: 70px; height: 70px; }
}

/* PRODUCT CARDS (KawaBeauty/Rapunzel-inspired) */
.hg-cards-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 28px 20px; }
.hg-card { display: block; text-decoration: none; color: inherit; cursor: pointer; }
.hg-card-media { position: relative; overflow: hidden; background: #fafafa; aspect-ratio: 3/4; }
.hg-card-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: opacity 0.4s ease, transform 0.5s ease; }
.hg-card-img-primary { opacity: 1; z-index: 1; }
.hg-card-img-secondary { opacity: 0; z-index: 2; transform: scale(1.02); }
.hg-card:hover .hg-card-img-primary { opacity: 0; }
.hg-card:hover .hg-card-img-secondary { opacity: 1; transform: scale(1); }
.hg-card:not(:has(.hg-card-img-secondary)):hover .hg-card-img-primary { transform: scale(1.04); }

/* Badges — minimal, subtle, layered (Rapunzel pattern) */
.hg-badge { position: absolute; z-index: 4; font-family: 'Inter', sans-serif; font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; font-weight: 600; padding: 5px 10px; }
.hg-badge-best { top: 12px; left: 12px; background: #1a1a1a; color: #fff; }
.hg-badge-fast { top: 40px; left: 12px; background: #fff; color: #1a1a1a; border: 1px solid rgba(0,0,0,0.08); }
.hg-badge-new { top: 12px; right: 12px; background: #F4A7BB; color: #fff; }
.hg-badge-sale { display: none; } /* Sale% hidden — compare-at-price already shows the discount */

/* Quick shop overlay */
.hg-card-quick { position: absolute; left: 12px; right: 12px; bottom: 12px; z-index: 3; background: #fff; color: #1a1a1a; font-family: 'Inter', sans-serif; font-size: 11px; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; text-align: center; padding: 11px 12px; opacity: 0; transform: translateY(10px); transition: opacity 0.3s ease, transform 0.3s ease, background 0.2s ease; }
.hg-card:hover .hg-card-quick { opacity: 1; transform: translateY(0); }
.hg-card-quick:hover { background: #F4A7BB; color: #1a1a1a; }
@media (hover: none) { .hg-card-quick { display: none; } }

/* Body */
.hg-card-body { padding: 14px 0 0; }
.hg-card-title { font-family: 'Inter', sans-serif; font-size: 14px; font-weight: 500; color: #1a1a1a; margin-bottom: 8px; line-height: 1.4; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; min-height: 2.8em; letter-spacing: 0.01em; }
/* Desktop: hide all clutter except name + price (premium minimal) */
.hg-card-rating { display: none; }
.hg-card-price-row { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; margin-bottom: 0; }
.hg-card-price { font-size: 14px; font-weight: 600; color: #1a1a1a; letter-spacing: 0.01em; }
.hg-card-compare { font-size: 12px; color: #999; text-decoration: line-through; }
.hg-card-swatches { display: none; }
.hg-swatch { width: 14px; height: 14px; border-radius: 50%; border: 1px solid rgba(0,0,0,0.08); background: #ddd; box-shadow: inset 0 0 0 1px rgba(255,255,255,0.6); }
.hg-swatch-more { font-size: 11px; color: #777; margin-left: 2px; letter-spacing: 0.02em; }

/* Social-proof toast CSS removed 2026-06-23 (popup deleted — fabricated purchase notices, UWG). */

/* COOKIE CONSENT BANNER */
.hg-cookie { position: fixed; left: 16px; right: 16px; bottom: 16px; max-width: 520px; background: #fff; box-shadow: 0 20px 50px rgba(0,0,0,0.18); border: 1px solid #eee; z-index: 9000; font-family: 'Inter', sans-serif; display: none; animation: hgSlideUp 0.3s ease; }
.hg-cookie.visible { display: block; }
@media (min-width: 640px) { .hg-cookie { left: 20px; right: auto; bottom: 20px; } }
.hg-cookie-inner { padding: 18px 20px; }
.hg-cookie-body .hg-cookie-title { font-family: 'Inter', sans-serif; font-size: 15px; font-weight: 700; color: #1a1a1a; margin: 0 0 6px; }
.hg-cookie-body p { font-size: 12px; color: #666; line-height: 1.6; margin: 0 0 14px; }
.hg-cookie-body a { color: #D4708F; text-decoration: underline; }
.hg-cookie-actions { display: flex; gap: 8px; flex-wrap: wrap; }
.hg-cookie-btn { flex: 1; min-width: 100px; padding: 10px 14px; font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; cursor: pointer; border: 1px solid #1a1a1a; background: #fff; color: #1a1a1a; transition: background 0.2s ease, color 0.2s ease; }
.hg-cookie-btn.hg-cookie-accept { background: #1a1a1a; color: #fff; border-color: #1a1a1a; }
.hg-cookie-btn.hg-cookie-accept:hover { background: #F4A7BB; color: #1a1a1a; border-color: #F4A7BB; }
.hg-cookie-btn.hg-cookie-reject:hover { background: #f5f5f5; }
.hg-cookie-btn.hg-cookie-custom:hover { background: #f5f5f5; }
.hg-cookie-panel { display: none; border-top: 1px solid #eee; padding: 16px 20px; background: #fafafa; max-height: 300px; overflow-y: auto; }
.hg-cookie.expanded .hg-cookie-panel { display: block; }
.hg-cookie-cat { display: flex; justify-content: space-between; align-items: flex-start; padding: 10px 0; border-bottom: 1px solid #eee; gap: 14px; }
.hg-cookie-cat:last-child { border-bottom: none; }
.hg-cookie-cat strong { font-size: 13px; color: #1a1a1a; display: block; margin-bottom: 2px; }
.hg-cookie-cat p { font-size: 11px; color: #777; line-height: 1.5; margin: 0; }
.hg-cookie-panel-actions { margin-top: 14px; }
.hg-switch { position: relative; display: inline-block; width: 38px; height: 22px; flex-shrink: 0; }
.hg-switch input { opacity: 0; width: 0; height: 0; }
.hg-switch span { position: absolute; inset: 0; background: #ccc; border-radius: 22px; cursor: pointer; transition: background 0.2s; }
.hg-switch span::before { content: ''; position: absolute; height: 16px; width: 16px; left: 3px; top: 3px; background: #fff; border-radius: 50%; transition: transform 0.2s; }
.hg-switch input:checked + span { background: #F4A7BB; }
.hg-switch input:checked + span::before { transform: translateX(16px); }
.hg-switch input:disabled + span { background: #e5e5e5; cursor: not-allowed; }

/* Stock scarcity disabled — too pushy, not premium */
.hg-stock-low { display: none !important; }
.hg-stock-low-keep { font-size: 11px; color: #D4708F; font-weight: 600; letter-spacing: 0.04em; margin-top: 6px; display: flex; align-items: center; gap: 5px; }
.hg-stock-low::before { content: ''; display: inline-block; width: 6px; height: 6px; border-radius: 50%; background: #D4708F; animation: hgPulse 1.6s ease-in-out infinite; }
@keyframes hgPulse { 0%, 100% { opacity: 0.5; } 50% { opacity: 1; } }
.hero-dots { position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%); z-index: 5; display: flex; gap: 10px; }
.hero-dot { width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,0.4); cursor: pointer; transition: background 0.3s ease; }
.hero-dot.active { background: #fff; }
.hero-arrow { position: absolute; top: 50%; transform: translateY(-50%); z-index: 5; background: rgba(255,255,255,0.15); border: none; width: 48px; height: 48px; display: flex; align-items: center; justify-content: center; cursor: pointer; opacity: 0; transition: opacity 0.3s ease, background 0.3s ease; }
.hero:hover .hero-arrow { opacity: 1; }
.hero-arrow:hover { background: rgba(255,255,255,0.35); }
.hero-arrow svg { width: 20px; height: 20px; stroke: #fff; fill: none; stroke-width: 2; }
.hero-arrow.prev { left: 20px; }
.hero-arrow.next { right: 20px; }

/* 4. MARQUEE */
.marquee { background: #F4A7BB; overflow: hidden; padding: 14px 0; }
.marquee-inner { display: flex; white-space: nowrap; animation: marquee-scroll 25s linear infinite; }
.marquee-inner span { font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase; color: #1a1a1a; padding: 0 30px; font-weight: 400; font-family: 'Inter', sans-serif; }
@keyframes marquee-scroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* 5. BESTSELLERS */
.section-heading { text-align: center; font-family: 'Playfair Display', serif; font-size: 36px; font-weight: 500; margin-bottom: 40px; color: #1a1a1a; }
.bestsellers { padding: 80px 0; }
.product-carousel-wrap { position: relative; }
.product-carousel { display: flex; gap: 20px; overflow-x: auto; scroll-behavior: smooth; padding: 0 40px 10px; -ms-overflow-style: none; scrollbar-width: none; }
.product-carousel::-webkit-scrollbar { display: none; }
.product-card { flex: 0 0 calc(25% - 15px); min-width: 260px; cursor: pointer; position: relative; }
.product-card-img { width: 100%; aspect-ratio: 3/4; overflow: hidden; background: #f8f8f8; }
.product-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.product-card:hover .product-card-img img { transform: scale(1.05); }
.product-card-info { padding: 14px 0; }
.product-card-info h4 { font-family: 'Inter', sans-serif; font-size: 14px; font-weight: 400; color: #1a1a1a; margin-bottom: 4px; line-height: 1.4; }
.product-card-info .price { font-size: 14px; font-weight: 600; color: #1a1a1a; }
.product-sale-badge { position: absolute; top: 12px; left: 12px; background: #F4A7BB; color: #fff; padding: 4px 10px; font-size: 11px; font-weight: 600; letter-spacing: 0.1em; z-index: 2; text-transform: uppercase; }
.price-row { display: flex; align-items: center; gap: 10px; }
.price-compare { text-decoration: line-through; color: #999; font-size: 13px; font-weight: 400; }
.product-card-link { display: block; text-align: center; font-size: 11px; color: #999; text-transform: uppercase; letter-spacing: 0.1em; margin-top: 8px; text-decoration: none; transition: color 0.3s ease; }
.product-card-link:hover { color: #F4A7BB; }
.carousel-arrow { position: absolute; top: 40%; transform: translateY(-50%); width: 42px; height: 42px; background: #fff; border: 1px solid #e5e5e5; display: flex; align-items: center; justify-content: center; z-index: 5; cursor: pointer; transition: all 0.3s ease; }
.carousel-arrow:hover { background: #f5f5f5; }
.carousel-arrow svg { width: 16px; height: 16px; stroke: #1a1a1a; fill: none; stroke-width: 2; }
.carousel-arrow.left { left: 8px; }
.carousel-arrow.right { right: 8px; }

/* ===== PREMIUM POLISH: focus-visible, reduced-motion, type tracking ===== */
:focus-visible { outline: 2px solid #D4708F; outline-offset: 2px; border-radius: 2px; }
a:focus:not(:focus-visible), button:focus:not(:focus-visible), input:focus:not(:focus-visible), select:focus:not(:focus-visible) { outline: none; }
.section-heading, .hero-overlay h1, .pp-title, .hg-why-heading { letter-spacing: -0.01em; }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
}

/* TRANSFORMATIONS (Before/After) */
.hg-transformations { padding: 90px 0; background: #fafafa; }
.hg-transformations .container { max-width: 1280px; margin: 0 auto; padding: 0 40px; text-align: center; }
.hg-eyebrow { font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase; color: #B85478; font-weight: 600; margin-bottom: 10px; }
.hg-transformations .section-heading { font-family: 'Playfair Display', serif; font-size: 42px; color: #1a1a1a; margin-bottom: 12px; font-weight: 500; }
.hg-subhead { color: #555; font-size: 15px; margin-bottom: 44px; }
.hg-ba-carousel { position: relative; }
.hg-ba-grid { display: flex; gap: 28px; overflow-x: auto; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; scrollbar-width: none; padding-bottom: 6px; text-align: left; }
.hg-ba-grid::-webkit-scrollbar { display: none; }
.hg-ba-card { flex: 0 0 100%; scroll-snap-align: center; background: transparent; }
.hg-ba-duo { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.hg-ba-shot { margin: 0; }
.hg-ba-img { position: relative; aspect-ratio: 3/4; overflow: hidden; background: #eee; border-radius: 4px; }
.hg-ba-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hg-ba-state { position: absolute; top: 12px; left: 12px; font-size: 11px; letter-spacing: 0.12em; font-weight: 700; text-transform: uppercase; background: rgba(255,255,255,0.92); color: #1a1a1a; padding: 5px 12px; border-radius: 999px; }
.hg-ba-state--after { background: #B85478; color: #fff; }
.hg-ba-cap { margin-top: 12px; font-size: 13px; color: #666; line-height: 1.55; min-height: 40px; }
.hg-ba-cap strong { color: #1a1a1a; font-weight: 600; font-style: normal; }
.hg-ba-disc { font-size: 11px; color: #aaa; margin-top: 20px; font-style: italic; }
.hg-ba-nav { position: absolute; top: calc(50% - 32px); transform: translateY(-50%); width: 46px; height: 46px; border-radius: 50%; border: none; background: #fff; box-shadow: 0 4px 16px rgba(0,0,0,0.14); cursor: pointer; font-size: 22px; line-height: 1; color: #1a1a1a; z-index: 3; }
.hg-ba-nav:hover { background: #fdeef4; }
.hg-ba-prev { left: -16px; } .hg-ba-next { right: -16px; }
@media (max-width: 900px) { .hg-ba-nav { display: none; } }
@media (max-width: 540px) { .hg-transformations .section-heading { font-size: 30px; } }

/* COMPARISON TABLE */
.hg-compare { padding: 90px 0; background: #fff; }
.hg-compare .container { max-width: 1200px; margin: 0 auto; padding: 0 40px; text-align: center; }
.hg-compare .section-heading { font-family: 'Playfair Display', serif; font-size: 42px; color: #1a1a1a; margin-bottom: 12px; font-weight: 500; }
.hg-compare-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 50px; text-align: left; }
.hg-compare-col { background: #fafafa; border: 1px solid #eee; padding: 28px 24px 32px; display: flex; flex-direction: column; align-items: center; text-align: center; position: relative; transition: transform 0.3s ease, box-shadow 0.3s ease; }
.hg-compare-col:hover { transform: translateY(-4px); box-shadow: 0 14px 30px rgba(0,0,0,0.06); }
.hg-compare-col.hg-featured { background: #fff; border: 2px solid #F4A7BB; transform: scale(1.02); }
.hg-compare-col.hg-featured:hover { transform: scale(1.02) translateY(-4px); }
.hg-most-popular { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: #F4A7BB; color: #fff; font-size: 10px; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; padding: 6px 14px; white-space: nowrap; }
.hg-compare-img { width: 160px; height: 160px; border-radius: 50%; overflow: hidden; margin-bottom: 22px; background: #f0f0f0; }
.hg-compare-img img { width: 100%; height: 100%; object-fit: cover; }
.hg-compare-col h3 { font-family: 'Playfair Display', serif; font-size: 26px; color: #1a1a1a; margin-bottom: 4px; font-weight: 500; }
.hg-compare-sub { font-size: 13px; color: #D4708F; font-weight: 600; letter-spacing: 0.05em; margin-bottom: 22px; }
.hg-compare-specs { list-style: none; padding: 0; margin: 0 0 26px; width: 100%; border-top: 1px solid #e8e8e8; }
.hg-compare-specs li { display: flex; justify-content: space-between; align-items: center; padding: 11px 4px; border-bottom: 1px solid #e8e8e8; font-size: 13px; }
.hg-compare-specs li span { color: #777; }
.hg-compare-specs li strong { color: #1a1a1a; font-weight: 600; }
.hg-compare-specs li.hg-compare-price strong { font-size: 22px; color: #D4708F; font-family: 'Inter', sans-serif; }
.hg-compare-col .btn { width: 100%; padding: 14px 20px; font-size: 11px; }
.hg-compare-note { margin-top: 36px; font-size: 13px; color: #666; }
.hg-compare-note a { color: #D4708F; text-decoration: underline; font-weight: 600; }
@media (max-width: 900px) { .hg-compare-grid { grid-template-columns: 1fr; gap: 18px; } .hg-compare-col.hg-featured { transform: none; } .hg-compare-col.hg-featured:hover { transform: translateY(-4px); } }

/* LASHES BUNDLE */
.hg-bundle { padding: 70px 0; background: linear-gradient(135deg, #FFF5F8 0%, #FDE8EF 100%); }
.hg-bundle .container { max-width: 1100px; margin: 0 auto; padding: 0 40px; }
.hg-bundle-card { display: grid; grid-template-columns: 1fr 1.2fr; gap: 48px; align-items: center; background: #fff; padding: 40px 44px; box-shadow: 0 24px 50px rgba(212, 112, 143, 0.12); }
.hg-bundle-visual { position: relative; aspect-ratio: 1/1; background: #FAFAFA; display: grid; grid-template-columns: 1fr 1fr; align-items: center; justify-items: center; gap: 0; overflow: hidden; border: 1px solid #f0f0f0; }
.hg-bundle-img-1, .hg-bundle-img-2 { width: 88%; height: 88%; object-fit: cover; }
/* Old absolute-positioned bundle-plus removed — was rendering as a stray pink circle on hero. Use inline rule below. */
.hg-bundle-eyebrow { display: inline-block; background: #1a1a1a; color: #fff; font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; padding: 6px 12px; font-weight: 700; margin-bottom: 14px; }
.hg-bundle-body h2 { font-family: 'Playfair Display', serif; font-size: 42px; color: #1a1a1a; margin-bottom: 10px; font-weight: 500; }
.hg-bundle-desc { color: #555; font-size: 15px; line-height: 1.7; margin-bottom: 22px; }
.hg-bundle-items { list-style: none; padding: 0; margin: 0 0 24px; border-top: 1px solid #eee; }
.hg-bundle-items li { display: flex; justify-content: space-between; padding: 12px 0; border-bottom: 1px solid #eee; font-size: 14px; color: #1a1a1a; }
.hg-bundle-items li span { color: #777; font-weight: 600; }
.hg-bundle-price-row { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; margin-bottom: 12px; }
.hg-bundle-prices { display: flex; flex-direction: column; gap: 2px; }
.hg-bundle-sum-label { font-size: 11px; color: #777; letter-spacing: 0.1em; text-transform: uppercase; }
.hg-bundle-sum { font-size: 26px; color: #1a1a1a; font-family: 'Inter', sans-serif; font-weight: 700; }
.hg-bundle-save { font-size: 12px; color: #D4708F; font-weight: 600; letter-spacing: 0.02em; margin-top: 2px; }
.hg-bundle-save strong { font-weight: 700; }
.hg-bundle-btn { padding: 16px 32px; font-size: 12px; background: #1a1a1a; color: #fff; }
.hg-bundle-btn:hover { background: #D4708F; color: #fff; }
.hg-bundle-btn:disabled { background: #ccc; color: #666; cursor: not-allowed; }
.hg-bundle-note { font-size: 12px; color: #777; margin-top: 10px; }
.hg-bundle-note strong { color: #D4708F; letter-spacing: 0.08em; }

/* EXIT-INTENT POPUP */
.hg-exit-overlay { position: fixed; inset: 0; background: rgba(26,26,26,0.55); backdrop-filter: blur(3px); z-index: 2000; display: none; align-items: center; justify-content: center; padding: 20px; animation: hgFadeIn 0.3s ease; }
.hg-exit-overlay.open { display: flex; }
@keyframes hgFadeIn { from { opacity: 0; } to { opacity: 1; } }
.hg-exit-modal { background: #fff; max-width: 440px; width: 100%; padding: 0; position: relative; border-radius: 0; box-shadow: 0 30px 80px rgba(0,0,0,0.35); animation: hgSlideUp 0.4s cubic-bezier(0.2, 0.8, 0.3, 1); overflow: hidden; }
@keyframes hgSlideUp { from { transform: translateY(30px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
.hg-exit-close { position: absolute; top: 12px; right: 14px; background: none; border: none; color: #999; font-size: 28px; cursor: pointer; width: 36px; height: 36px; display: flex; align-items: center; justify-content: center; line-height: 1; transition: color 0.2s ease; z-index: 2; }
.hg-exit-close:hover { color: #1a1a1a; }
.hg-exit-body { padding: 44px 36px 32px; text-align: center; background: linear-gradient(180deg, #FFF5F8 0%, #ffffff 70%); }
.hg-exit-eyebrow { display: inline-block; font-size: 11px; color: #D4708F; letter-spacing: 0.18em; text-transform: uppercase; font-weight: 700; margin-bottom: 12px; }
.hg-exit-body .hg-exit-title { font-family: 'Playfair Display', serif; font-size: 34px; color: #1a1a1a; font-weight: 500; line-height: 1.15; margin-bottom: 12px; }
.hg-exit-body .hg-exit-title span { color: #D4708F; font-weight: 600; }
.hg-exit-body > p { font-size: 13px; color: #555; margin-bottom: 22px; line-height: 1.6; }
.hg-exit-form { display: flex; flex-direction: column; gap: 10px; max-width: 320px; margin: 0 auto 14px; }
.hg-exit-form input { padding: 14px 18px; border: 1px solid #e5e5e5; font-size: 14px; font-family: 'Inter', sans-serif; outline: none; border-radius: 0; transition: border-color 0.2s ease; }
.hg-exit-form input:focus { border-color: #F4A7BB; }
.hg-exit-form button { padding: 14px 20px; background: #1a1a1a; color: #fff; font-size: 12px; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; border: none; cursor: pointer; transition: background 0.3s ease; }
.hg-exit-form button:hover { background: #D4708F; }
.hg-exit-code { background: #FFF5F8; border: 1px dashed #F4A7BB; padding: 12px 16px; margin: 0 auto 12px; font-size: 13px; color: #1a1a1a; max-width: 320px; }
.hg-exit-code strong { color: #D4708F; letter-spacing: 0.12em; font-weight: 700; }
.hg-exit-tiny { font-size: 11px; color: #999; letter-spacing: 0.04em; }
@media (max-width: 820px) {
  .hg-bundle-card { grid-template-columns: 1fr; gap: 32px; padding: 28px 22px; }
  .hg-bundle-body h2 { font-size: 32px; }
  .hg-bundle-final { font-size: 26px; }
}

/* 7. COLLECTION TILES */
.collections { padding: 0 40px 80px; max-width: 1200px; margin: 0 auto; }
.collections-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.collection-tile { position: relative; overflow: hidden; cursor: pointer; aspect-ratio: 4/5; max-height: 520px; display: block; }
.collection-tile img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.collection-tile:hover img { transform: scale(1.06); }
.collection-tile-overlay { position: absolute; bottom: 0; left: 0; width: 100%; padding: 40px 30px; background: linear-gradient(to top, rgba(0,0,0,0.55) 0%, transparent 100%); display: flex; flex-direction: column; align-items: flex-start; justify-content: flex-end; height: 100%; transition: background 0.3s ease; }
.collection-tile:hover .collection-tile-overlay { background: linear-gradient(to top, rgba(0,0,0,0.40) 0%, transparent 100%); }
.collection-tile-overlay h3 { font-family: 'Playfair Display', serif; font-size: 26px; color: #fff; font-weight: 500; margin-bottom: 12px; }
.collection-tile-overlay span { font-size: 11px; text-transform: uppercase; letter-spacing: 0.15em; color: #fff; border-bottom: 1px solid rgba(255,255,255,0.6); padding-bottom: 2px; transition: border-color 0.3s ease; font-family: 'Inter', sans-serif; }
.collection-tile:hover .collection-tile-overlay span { border-color: #fff; }

/* 10. COLOR MATCH */
.color-match { padding: 80px 0; background: #FDF2F8; }
.cm-wizard { max-width: 900px; margin: 0 auto; }
.cm-header { text-align: center; margin-bottom: 10px; }
.cm-header h2 { font-size: 36px; font-family: 'Playfair Display', serif; font-weight: 500; margin-bottom: 12px; }
.cm-header p { color: #555; font-size: 14px; max-width: 520px; margin: 0 auto; line-height: 1.7; }
.cm-progress { display: flex; justify-content: center; gap: 12px; margin: 28px 0 40px; }
.cm-dot { width: 10px; height: 10px; border-radius: 50%; border: 2px solid #D4708F; background: transparent; transition: all 0.4s ease; }
.cm-dot.active { background: #D4708F; }
.cm-step { display: none; }
.cm-step.active { display: block; animation: cmFadeIn 0.4s ease-out; }
@keyframes cmFadeIn { from { opacity: 0; transform: translateX(30px); } to { opacity: 1; transform: translateX(0); } }
@keyframes cmFadeOut { from { opacity: 1; transform: translateX(0); } to { opacity: 0; transform: translateX(-30px); } }
@keyframes cmSweep { 0% { background-position: -200% center; } 100% { background-position: 200% center; } }
@keyframes cmSlideUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes cmConfidenceFill { from { width: 0%; } to { width: 97%; } }
.cm-step-heading { font-family: 'Playfair Display', serif; font-size: 20px; font-weight: 500; text-align: center; margin-bottom: 8px; }
.cm-step-tip { font-size: 12px; color: #999; font-style: italic; text-align: center; margin-bottom: 24px; }
.cm-product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.cm-product-card { display: flex; flex-direction: column; align-items: center; padding: 16px; border: 1px solid #e5e5e5; background: #fff; cursor: pointer; transition: all 0.4s ease; position: relative; border-radius: 4px; }
.cm-product-card:hover { border-color: #D4708F; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,0.08); }
.cm-product-card.selected { border-color: #D4708F; border-width: 2px; }
.cm-product-card .cm-check { position: absolute; top: 10px; right: 10px; width: 24px; height: 24px; border-radius: 50%; background: #D4708F; display: flex; align-items: center; justify-content: center; opacity: 0; transform: scale(0); transition: all 0.3s ease; }
.cm-product-card.selected .cm-check { opacity: 1; transform: scale(1); }
.cm-product-card .cm-check svg { width: 14px; height: 14px; fill: #fff; }
.cm-product-card img { width: 160px; height: 160px; object-fit: cover; border-radius: 4px; margin-bottom: 12px; }
.cm-product-card span { font-size: 14px; font-weight: 600; font-family: 'Inter', sans-serif; text-align: center; }
.cm-color-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; margin-bottom: 24px; }
.cm-swatch { display: flex; flex-direction: column; align-items: center; gap: 8px; cursor: pointer; transition: all 0.4s ease; }
.cm-swatch:hover .cm-swatch-circle { transform: scale(1.1); box-shadow: 0 4px 12px rgba(0,0,0,0.15); }
.cm-swatch-circle { width: 56px; height: 56px; border-radius: 50%; transition: all 0.4s ease; border: 3px solid transparent; }
.cm-swatch.selected .cm-swatch-circle { border-color: #D4708F; box-shadow: 0 0 0 2px #fff, 0 0 0 5px #D4708F; }
.cm-swatch span { font-size: 11px; color: #555; text-align: center; transition: color 0.4s ease; }
.cm-swatch.selected span { color: #1a1a1a; font-weight: 600; }
.cm-back-link { background: none; border: none; font-size: 13px; color: #999; cursor: pointer; padding: 8px 0; font-family: 'Inter', sans-serif; transition: color 0.3s ease; }
.cm-back-link:hover { color: #1a1a1a; }
.cm-loading { text-align: center; padding: 60px 0; }
.cm-loading-text { font-family: 'Playfair Display', serif; font-size: 22px; color: #1a1a1a; display: inline-block; position: relative; }
.cm-loading-text::after { content: ''; position: absolute; bottom: -4px; left: 0; width: 100%; height: 2px; background: linear-gradient(90deg, transparent, #D4708F, transparent); background-size: 200% 100%; animation: cmSweep 1.5s ease infinite; }
.cm-result-wrap { display: none; }
.cm-result-wrap.visible { display: block; animation: cmSlideUp 0.5s ease-out; }
.cm-result-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
.cm-result-left h3 { font-family: 'Playfair Display', serif; font-size: 28px; font-weight: 500; margin-bottom: 20px; }
.cm-result-color-lg { width: 80px; height: 80px; border-radius: 50%; margin-bottom: 12px; border: 3px solid #D4708F; }
.cm-result-color-name { font-size: 16px; font-weight: 600; margin-bottom: 4px; }
.cm-result-shade-code { font-size: 13px; color: #999; margin-bottom: 20px; }
.cm-confidence { margin-bottom: 20px; }
.cm-confidence-bar { width: 100%; height: 8px; background: #e5e5e5; border-radius: 4px; overflow: hidden; margin-bottom: 6px; }
.cm-confidence-fill { height: 100%; background: #D4708F; border-radius: 4px; width: 0%; transition: width 1s ease-out; }
.cm-confidence-fill.animate { animation: cmConfidenceFill 1s ease-out forwards; }
.cm-confidence-label { font-size: 12px; color: #555; }
.cm-pro-tip { background: #fff; border: 1px solid #e5e5e5; border-radius: 4px; padding: 16px; margin-top: 16px; }
.cm-pro-tip strong { font-size: 12px; text-transform: uppercase; letter-spacing: 0.1em; color: #D4708F; display: block; margin-bottom: 6px; }
.cm-pro-tip p { font-size: 13px; color: #555; line-height: 1.6; margin: 0; }
.cm-result-right { display: flex; flex-direction: column; align-items: center; }
.cm-result-right img { width: 100%; max-width: 320px; border-radius: 8px; margin-bottom: 16px; object-fit: cover; }
.cm-result-product-name { font-family: 'Playfair Display', serif; font-size: 20px; font-weight: 500; text-align: center; margin-bottom: 4px; }
.cm-result-price { font-size: 18px; font-weight: 600; color: #1a1a1a; margin-bottom: 16px; }
.cm-btn-primary { display: block; width: 100%; padding: 14px; background: #F4A7BB; color: #1a1a1a; font-size: 12px; font-family: 'Inter', sans-serif; font-weight: 600; text-transform: uppercase; letter-spacing: 0.15em; border: none; cursor: pointer; transition: background 0.4s ease; text-align: center; margin-bottom: 10px; }
.cm-btn-primary:hover { background: #D4708F; }
.cm-btn-outline { display: block; width: 100%; padding: 14px; background: transparent; color: #1a1a1a; font-size: 12px; font-family: 'Inter', sans-serif; font-weight: 600; text-transform: uppercase; letter-spacing: 0.15em; border: 1px solid #1a1a1a; cursor: pointer; transition: all 0.4s ease; text-align: center; }
.cm-btn-outline:hover { background: #1a1a1a; color: #fff; }
.cm-divider { text-align: center; margin: 28px 0; position: relative; }
.cm-divider::before { content: ''; position: absolute; top: 50%; left: 0; right: 0; height: 1px; background: #e5e5e5; }
.cm-divider span { background: #FDF2F8; padding: 0 16px; position: relative; font-size: 13px; color: #999; }
.cm-footer-help { text-align: center; margin-top: 32px; }
.cm-footer-help p { font-size: 13px; color: #555; line-height: 1.7; margin-bottom: 8px; }
.cm-footer-help a { color: #D4708F; text-decoration: underline; font-weight: 600; }
.cm-footer-help a:hover { color: #1a1a1a; }
.cm-start-over { background: none; border: none; font-size: 13px; color: #999; cursor: pointer; font-family: 'Inter', sans-serif; margin-top: 12px; transition: color 0.3s ease; }
.cm-start-over:hover { color: #1a1a1a; }

@media (max-width: 768px) {
  .cm-product-grid { grid-template-columns: repeat(2, 1fr); }
  .cm-color-grid { grid-template-columns: repeat(3, 1fr); }
  .cm-result-grid { grid-template-columns: 1fr; gap: 30px; }
  .cm-result-left { text-align: center; }
  .cm-result-left h3 { text-align: center; }
  .cm-result-color-lg { margin-left: auto; margin-right: auto; }
}
@media (max-width: 480px) {
  .cm-header h2 { font-size: 28px; }
  .cm-product-card img { width: 120px; height: 120px; }
}

/* 6.9 FULL GLAM BUNDLE */
.hg-bundle { padding: 90px 0; background: #fff; border-top: 1px solid #eee; border-bottom: 1px solid #eee; }
.hg-bundle .container { max-width: 1100px; margin: 0 auto; padding: 0 40px; }
.hg-bundle-head { text-align: center; margin-bottom: 44px; }
.hg-bundle-head .hg-subhead { max-width: 520px; margin-left: auto; margin-right: auto; color: #555; font-size: 15px; line-height: 1.7; }
.hg-bundle-stack { display: flex; align-items: center; justify-content: center; gap: 16px; margin-bottom: 44px; flex-wrap: wrap; }
.hg-bundle-item { flex: 0 1 240px; display: flex; flex-direction: column; background: #fafafa; text-decoration: none; color: #1a1a1a; transition: transform 0.2s ease, box-shadow 0.2s ease; }
.hg-bundle-item:hover { transform: translateY(-3px); box-shadow: 0 10px 24px rgba(0,0,0,0.06); }
.hg-bundle-img { aspect-ratio: 1/1; overflow: hidden; background: #f0f0f0; }
.hg-bundle-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hg-bundle-item-meta { padding: 14px 16px 16px; display: flex; flex-direction: column; gap: 4px; }
.hg-bundle-item-title { font-family: 'Inter', sans-serif; font-size: 12px; font-weight: 500; line-height: 1.35; color: #1a1a1a; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.hg-bundle-item-price { font-family: 'Inter', sans-serif; font-size: 13px; font-weight: 600; color: #1a1a1a; }
.hg-bundle-plus { font-family: 'Playfair Display', serif; font-size: 26px; font-weight: 400; color: #D4708F; line-height: 1; }
.hg-bundle-summary { max-width: 440px; margin: 0 auto; background: #1a1a1a; color: #fff; padding: 32px 32px 28px; text-align: center; }
.hg-bundle-prices { margin-bottom: 20px; }
.hg-bundle-price-row { display: flex; justify-content: space-between; align-items: baseline; padding: 6px 0; font-family: 'Inter', sans-serif; }
.hg-bundle-price-label { font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase; color: #999; font-weight: 500; }
.hg-bundle-price-regular { font-size: 14px; color: #999; text-decoration: line-through; font-weight: 500; }
.hg-bundle-price-total { font-family: 'Playfair Display', serif; font-size: 28px; font-weight: 500; color: #fff; letter-spacing: -0.01em; }
.bundle-total-row { border-top: 1px solid rgba(255,255,255,0.12); padding-top: 12px; margin-top: 4px; }
.hg-bundle-save-pill { display: inline-flex; align-items: center; gap: 6px; background: #F4A7BB; color: #1a1a1a; padding: 6px 12px; font-family: 'Inter', sans-serif; font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; margin-top: 14px; }
.hg-bundle-add { display: block; width: 100%; background: #F4A7BB !important; color: #1a1a1a !important; padding: 17px 22px; font-family: 'Inter', sans-serif; font-size: 12px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; border: none; cursor: pointer; transition: background 0.2s ease; margin-top: 4px; }
.hg-bundle-add:hover { background: #fff !important; color: #1a1a1a !important; }
.hg-bundle-add.added { background: #2e7d46 !important; color: #fff !important; }
.hg-bundle-add.loading { opacity: 0.65; pointer-events: none; }
.hg-bundle-perks { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; margin-top: 18px; font-family: 'Inter', sans-serif; font-size: 10.5px; letter-spacing: 0.08em; color: #aaa; }
.hg-bundle-perks span { white-space: nowrap; }
@media (max-width: 900px) {
  .hg-bundle { padding: 54px 0 !important; }
  .hg-bundle .container { padding: 0 14px !important; }
  .hg-bundle-head { margin-bottom: 28px !important; }
  .hg-bundle-stack { gap: 6px !important; margin-bottom: 28px !important; }
  .hg-bundle-item { flex: 1 1 calc(33% - 14px); min-width: 0 !important; }
  .hg-bundle-item-meta { padding: 10px 10px 12px !important; }
  .hg-bundle-item-title { font-size: 10px !important; -webkit-line-clamp: 2; }
  .hg-bundle-item-price { font-size: 11px !important; }
  .hg-bundle-plus { font-size: 14px !important; }
  .hg-bundle-summary { padding: 24px 22px 22px !important; max-width: 100%; }
  .hg-bundle-price-total { font-size: 24px !important; }
  .hg-bundle-save-pill { font-size: 10px !important; padding: 5px 10px !important; letter-spacing: 0.08em !important; }
  .hg-bundle-add { padding: 15px 18px !important; font-size: 11px !important; letter-spacing: 0.16em !important; }
  .hg-bundle-perks { font-size: 9.5px !important; gap: 10px !important; }
}
@media (max-width: 540px) {
  .hg-bundle-item { flex: 1 1 calc(33% - 8px); min-width: 0 !important; }
  .hg-bundle-item-title { font-size: 9px !important; -webkit-line-clamp: 2; }
  .hg-bundle-item-price { font-size: 10px !important; }
  .hg-bundle-img { aspect-ratio: 1/1 !important; }
  .hg-bundle-plus { font-size: 14px !important; }
  .hg-bundle-summary { padding: 20px 16px 18px !important; }
  .hg-bundle-price-total { font-size: 22px !important; }
  .hg-bundle-price-label { font-size: 9px !important; letter-spacing: 0.1em !important; }
  .hg-bundle-price-regular { font-size: 12px !important; }
}

/* 12.5 ABOUT / BRAND STORY */
.hg-about { padding: 90px 0; background: #fafafa; }
.hg-about .container { max-width: 1280px; margin: 0 auto; padding: 0 40px; }
.hg-about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.hg-about-image { aspect-ratio: 4/5; overflow: hidden; background: #eee; }
.hg-about-image img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hg-about-copy .hg-eyebrow { margin-bottom: 14px; }
.hg-about-copy .section-heading { font-size: 40px; margin-bottom: 22px; line-height: 1.1; }
.hg-about-para { font-size: 15px; line-height: 1.8; color: #555; margin-bottom: 18px; max-width: 520px; }
.hg-about-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin: 32px 0 28px; border-top: 1px solid #e5e5e5; padding-top: 28px; max-width: 520px; }
.hg-stat { display: flex; flex-direction: column; gap: 4px; }
.hg-stat strong { font-family: 'Playfair Display', serif; font-size: 32px; font-weight: 500; color: #1a1a1a; letter-spacing: -0.01em; }
.hg-stat span { font-family: 'Inter', sans-serif; font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: #888; }
.hg-about-cta { margin-top: 6px; }
.hg-about-readmore { display: none; } /* mobile-only — overridden below 540px */
@media (max-width: 900px) {
  .hg-about { padding: 54px 0 !important; }
  .hg-about .container { padding: 0 22px !important; }
  .hg-about-grid { grid-template-columns: 1fr !important; gap: 24px !important; }
  .hg-about-image { aspect-ratio: 4/3; max-height: 280px; }
  .hg-about-copy .section-heading { font-size: 26px !important; margin-bottom: 14px !important; }
  .hg-about-para { font-size: 13px !important; line-height: 1.7 !important; margin-bottom: 14px !important; }
  .hg-about-stats { gap: 14px !important; margin: 22px 0 22px !important; padding-top: 20px !important; }
  .hg-stat strong { font-size: 22px !important; }
  .hg-stat span { font-size: 9px !important; letter-spacing: 0.12em !important; }
}
@media (max-width: 540px) {
  .hg-about-image { max-height: 240px; }
  .hg-about-stats { grid-template-columns: repeat(3, 1fr) !important; }
  .hg-stat strong { font-size: 20px !important; }
  .hg-stat span { font-size: 8.5px !important; }
}

/* 13. FAQ */
.faq-section { padding: 80px 0; }
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid #e5e5e5; }
.faq-question { display: flex; justify-content: space-between; align-items: center; padding: 20px 0; cursor: pointer; width: 100%; background: none; border: none; font-family: 'Inter', sans-serif; font-size: 15px; font-weight: 600; color: #1a1a1a; text-align: left; }
.faq-question .faq-icon { font-size: 22px; font-weight: 300; transition: transform 0.3s ease; color: #999; flex-shrink: 0; margin-left: 20px; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.3s ease; }
.faq-answer-inner { padding: 0 0 20px; color: #555; font-size: 14px; line-height: 1.8; }

/* 14. NEWSLETTER */
.newsletter { padding: 70px 0; background: #1a1a1a; text-align: center; }
.newsletter h2 { color: #fff; font-size: 32px; margin-bottom: 16px; }
.newsletter p { color: #999; margin-bottom: 30px; font-size: 14px; }
.newsletter-form { display: flex; max-width: 480px; margin: 0 auto; }
.newsletter-form input { flex: 1; padding: 14px 18px; border: 1px solid #333; background: #fff; font-size: 13px; font-family: 'Inter', sans-serif; border-radius: 0; outline: none; }
.newsletter-form button { padding: 14px 28px; background: #F4A7BB; color: #1a1a1a; font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.12em; border: none; border-radius: 0; cursor: pointer; transition: background 0.3s ease; font-family: 'Inter', sans-serif; }
.newsletter-form button:hover { background: #D4708F; }

/* 15. FOOTER */
.site-footer { background: #1a1a1a; color: #999; padding: 60px 0 0; }
.footer-logo { text-align: center; margin-bottom: 50px; }
.footer-logo a { font-family: 'Playfair Display', serif; font-size: 26px; letter-spacing: 0.35em; text-transform: uppercase; color: #fff; display: block; }
.footer-logo-img { height: 42px; width: auto; display: inline-block; }
@media (max-width: 768px) { .footer-logo-img { height: 32px; } }
.footer-tagline { display: block; margin-top: 10px; font-family: 'Inter', sans-serif; font-size: 12px; letter-spacing: 0.15em; text-transform: uppercase; color: #999; font-weight: 400; }
.footer-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 30px; max-width: 1180px; margin: 0 auto; padding: 0 40px 50px; }
.footer-grid h4 { color: #fff; font-family: 'Inter', sans-serif; font-size: 12px; text-transform: uppercase; letter-spacing: 0.12em; font-weight: 600; margin-bottom: 18px; }
.footer-grid a { display: block; font-size: 13px; color: #999; padding: 4px 0; transition: color 0.3s ease; }
.footer-grid a:hover { color: #F4A7BB; }
.footer-bottom { border-top: 1px solid #333; text-align: center; padding: 20px 40px; font-size: 12px; color: #666; }
.footer-bottom span { margin: 0 10px; }
.footer-payments { display: flex; justify-content: center; align-items: center; flex-wrap: wrap; gap: 10px; padding: 24px 20px 12px; border-top: 1px solid #333; }
.footer-payments .pay-badge { background: #fff; border-radius: 4px; padding: 6px 10px; min-width: 48px; height: 28px; display: inline-flex; align-items: center; justify-content: center; font-family: 'Inter', sans-serif; font-size: 11px; font-weight: 700; color: #1a1a1a; letter-spacing: 0.03em; }
.footer-payments .pay-badge.klarna { background: #FFA8CD; color: #17120F; }
.footer-payments .pay-badge.paypal { background: #fff; color: #003087; }
.footer-payments .pay-badge.paypal em { color: #009CDE; font-style: normal; }
.footer-payments .pay-badge.applepay { background: #000; color: #fff; font-size: 13px; padding: 5px 12px; }
.footer-payments .pay-badge.googlepay { background: #fff; color: #5F6368; font-size: 12px; }
.footer-payments .pay-badge.visa { background: #1A1F71; color: #F7B600; font-size: 12px; }
.footer-payments .pay-badge.mastercard { background: #fff; padding: 4px 8px; }
.footer-payments .pay-badge.mastercard .mc-dots { display: inline-flex; gap: -4px; }
.footer-payments .pay-badge.mastercard .mc-dots span { width: 16px; height: 16px; border-radius: 50%; display: inline-block; }
.footer-payments .pay-badge.mastercard .mc-red { background: #EB001B; margin-right: -6px; }
.footer-payments .pay-badge.mastercard .mc-yellow { background: #F79E1B; opacity: 0.9; }
.footer-payments .pay-badge.amex { background: #006FCF; color: #fff; font-size: 10px; }
.footer-payments .pay-badge.shoppay { background: #5A31F4; color: #fff; font-size: 11px; }

/* TOAST */
.toast { position: fixed; top: 20px; right: 20px; background: #1a1a1a; color: #fff; padding: 14px 28px; font-size: 13px; letter-spacing: 0.05em; z-index: 9999; transform: translateX(120%); transition: transform 0.4s ease; font-family: 'Inter', sans-serif; }
.toast.show { transform: translateX(0); }

/* SEARCH OVERLAY */
.search-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(255,255,255,0.97); z-index: 3000; display: flex; align-items: flex-start; justify-content: center; padding-top: 140px; opacity: 0; visibility: hidden; transition: all 0.3s ease; }
.search-overlay.open { opacity: 1; visibility: visible; }
.search-overlay-inner { width: 90%; max-width: 600px; }
.search-overlay input { width: 100%; border: none; border-bottom: 2px solid #1a1a1a; padding: 16px 0; font-size: 24px; font-family: 'Playfair Display', serif; outline: none; background: transparent; }
.search-close { position: absolute; top: 30px; right: 40px; font-size: 32px; cursor: pointer; background: none; border: none; color: inherit; line-height: 1; padding: 0; }
.search-popular { margin-top: 30px; }
.search-popular .search-popular-title { font-family: 'Inter', sans-serif; font-size: 11px; text-transform: uppercase; letter-spacing: 0.12em; font-weight: 600; color: #999; margin-bottom: 16px; }
.search-popular-tags { display: flex; flex-wrap: wrap; gap: 10px; }
.search-popular-tags a { display: inline-block; padding: 8px 18px; border: 1px solid #e5e5e5; font-size: 13px; font-family: 'Inter', sans-serif; color: #1a1a1a; transition: all 0.3s ease; cursor: pointer; }
.search-popular-tags a:hover { background: #F4A7BB; border-color: #F4A7BB; }

/* TRUST BAND — editorial inline strip */
.hg-trustband { background: #1a1a1a; color: #fff; padding: 14px 20px; text-align: center; }
.hg-trustband-inner { display: inline-flex; align-items: center; flex-wrap: wrap; gap: 14px; justify-content: center; font-family: 'Inter', sans-serif; font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; font-weight: 500; }
.hg-tb-item { white-space: nowrap; }
.hg-tb-soon { color: #D4708F; font-weight: 600; }
.hg-tb-sep { opacity: 0.4; }
@media (max-width: 900px) {
  .hg-trustband { padding: 11px 14px; }
  .hg-trustband-inner { font-size: 9px !important; letter-spacing: 0.12em !important; gap: 8px !important; }
}
@media (max-width: 540px) {
  .hg-trustband-inner { font-size: 8.5px !important; gap: 6px !important; }
  .hg-tb-sep { display: none; }
}

/* TRUST BADGES */
.trust-badges {
  padding: 50px 0;
  border-top: 1px solid #e5e5e5;
  border-bottom: 1px solid #e5e5e5;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
  max-width: 960px;
  margin: 0 auto;
}
.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.trust-item svg {
  width: 32px;
  height: 32px;
  stroke: #D4708F;
  fill: none;
  stroke-width: 1.5;
}
.trust-item h5 {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
  color: #1a1a1a;
}
.trust-item p {
  font-size: 12px;
  color: #999;
  line-height: 1.5;
}

/* TESTIMONIALS */
.testimonials {
  padding: 80px 0;
  background: #FDF2F8;
}
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1080px;
  margin: 0 auto;
}
.testimonial-card {
  background: #fff;
  padding: 36px 30px;
  text-align: center;
}
.testimonial-stars {
  color: #F4A7BB;
  font-size: 18px;
  letter-spacing: 4px;
  margin-bottom: 18px;
}
.testimonial-card blockquote {
  font-size: 14px;
  color: #555;
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 20px;
}
.testimonial-author {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
  color: #1a1a1a;
}
.testimonial-detail {
  font-size: 11px;
  color: #999;
  margin-top: 4px;
}

/* BACK TO TOP */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 44px;
  height: 44px;
  background: #F4A7BB;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 900;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  border: none;
  border-radius: 0;
}
.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}
.back-to-top:hover {
  background: #D4708F;
}
.back-to-top svg {
  width: 18px;
  height: 18px;
  stroke: #1a1a1a;
  fill: none;
  stroke-width: 2;
}
/* Lift back-to-top + social proof above sticky mobile ATC on PDPs */
body.has-pp-sticky .back-to-top { bottom: 100px; }
@media (max-width: 900px) {
}

/* ============================================
   CART DRAWER
   ============================================ */
.cart-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.45);
  z-index: 4000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.cart-overlay.open {
  opacity: 1;
  visibility: visible;
}
.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 400px;
  max-width: 100%;
  height: 100%;
  background: #fff;
  z-index: 4001;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
}
.cart-drawer.open {
  transform: translateX(0);
}
.cart-drawer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  border-bottom: 1px solid #e5e5e5;
  flex-shrink: 0;
}
.cart-drawer-header .cart-drawer-title {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 500;
}
.cart-drawer-close {
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
  color: #1a1a1a;
  background: none;
  border: none;
  padding: 4px;
}
.cart-drawer-body {
  flex: 1 1 auto;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding: 0;
  min-height: 200px; /* keep line items visible even when the footer is tall (mobile fix) */
}
.cart-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 40px 24px;
  text-align: center;
}
.cart-empty svg {
  width: 60px;
  height: 60px;
  stroke: #ccc;
  fill: none;
  stroke-width: 1;
  margin-bottom: 20px;
}
.cart-empty p {
  font-size: 16px;
  color: #999;
  margin-bottom: 24px;
  font-family: 'Playfair Display', serif;
  font-weight: 500;
}
.cart-empty .btn {
  font-size: 11px;
}
.cart-item {
  display: flex;
  gap: 14px;
  padding: 18px 24px;
  border-bottom: 1px solid #f0f0f0;
  position: relative;
}
.cart-item-img {
  width: 72px;
  height: 90px;
  flex-shrink: 0;
  overflow: hidden;
  background: #f8f8f8;
}
.cart-item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cart-item-details {
  flex: 1;
  min-width: 0;
}
.cart-item-title {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 4px;
  line-height: 1.4;
}
.cart-item-variant {
  font-size: 11px;
  color: #999;
  margin-bottom: 10px;
}
.cart-item-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cart-item-qty {
  display: flex;
  align-items: center;
  gap: 0;
}
.cart-item-qty button {
  width: 28px;
  height: 28px;
  border: 1px solid #e5e5e5;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  background: #fff;
  cursor: pointer;
  transition: background 0.2s;
}
.cart-item-qty button:hover {
  background: #f5f5f5;
}
.cart-item-qty span {
  width: 32px;
  height: 28px;
  border-top: 1px solid #e5e5e5;
  border-bottom: 1px solid #e5e5e5;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 600;
}
.cart-item-price {
  font-size: 14px;
  font-weight: 600;
  color: #1a1a1a;
}
.cart-item-remove {
  position: absolute;
  top: 16px;
  right: 20px;
  font-size: 18px;
  color: #999;
  cursor: pointer;
  background: none;
  border: none;
  padding: 2px 4px;
  line-height: 1;
  transition: color 0.2s;
}
.cart-item-remove:hover {
  color: #1a1a1a;
}
.cart-drawer-footer {
  border-top: 1px solid #e5e5e5;
  padding: 20px 24px 24px;
  flex-shrink: 1;      /* yield vertical space to the item list on short screens */
  min-height: 0;
  overflow-y: auto;    /* if the footer is still taller than its share, scroll it internally */
  -webkit-overflow-scrolling: touch;
}
.cart-shipping-bar {
  margin-bottom: 16px;
}
.cart-shipping-text {
  font-size: 12px;
  color: #555;
  margin-bottom: 6px;
  text-align: center;
}
.cart-shipping-text strong {
  color: #1a1a1a;
}
.cart-shipping-track {
  width: 100%;
  height: 4px;
  background: #e5e5e5;
  border-radius: 2px;
  overflow: hidden;
}
.cart-shipping-fill {
  height: 100%;
  background: #F4A7BB;
  border-radius: 2px;
  transition: width 0.4s ease;
  width: 0%;
}
.cart-subtotal {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid #e5e5e5;
}
.cart-subtotal-label {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.cart-subtotal-value {
  font-size: 18px;
  font-weight: 600;
}
.cart-checkout-btn {
  width: 100%;
  padding: 16px;
  background: #F4A7BB;
  color: #1a1a1a;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  border: none;
  border-radius: 0;
  cursor: pointer;
  transition: background 0.3s ease;
  font-family: 'Inter', sans-serif;
  margin-bottom: 10px;
}
.cart-checkout-btn:hover {
  background: #D4708F;
}
.cart-continue {
  display: block;
  text-align: center;
  font-size: 12px;
  color: #999;
  text-decoration: underline;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  background: none;
  border: none;
  width: 100%;
  padding: 4px;
  transition: color 0.2s;
}
.cart-continue:hover {
  color: #1a1a1a;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .container { padding: 0 20px; }
  .header-top { padding: 14px 20px 8px; }
  .header-nav { display: none; }
  .hamburger { display: flex; }
  .header-top { justify-content: space-between; }
  .header-logo { order: 1; flex: 1; text-align: center; }
  .hamburger { order: 0; }
  .header-icons { order: 2; }
  .hero { height: 60vh; }
  .hero-overlay h1 { font-size: 32px; }
  .hero-overlay p { font-size: 14px; }
  .product-card { flex: 0 0 75%; min-width: 220px; }
  .collections-grid { grid-template-columns: 1fr; }
  .collection-tile { aspect-ratio: 4/3; }
  /* color-match responsive handled in cm- section */
  .footer-grid { grid-template-columns: repeat(3, 1fr); gap: 28px; }
  .product-carousel { padding: 0 20px 10px; }
  .collections { padding: 0 20px 60px; }
  .carousel-arrow.left { left: 2px; }
  .carousel-arrow.right { right: 2px; }
  .newsletter-form { flex-direction: column; gap: 10px; }
  .newsletter-form input, .newsletter-form button { width: 100%; }
  .header-logo a { font-size: 22px; letter-spacing: 0.25em; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .testimonial-grid { grid-template-columns: 1fr; max-width: 480px; }
  .cart-drawer { width: 100%; }
}

@media (max-width: 480px) {
  .hero { height: 50vh; }
  .hero-overlay h1 { font-size: 26px; }
  .hero-overlay p { font-size: 13px; margin-bottom: 20px; }
  .btn { padding: 12px 28px; font-size: 11px; }
  .section-heading { font-size: 28px; margin-bottom: 30px; }
  .trust-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
  /* color-match responsive handled in cm- section */
  .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 22px 18px; text-align: left; }
}

/* ============================================
   PRODUCT PAGE
   ============================================ */
.product-page { padding: 40px 0 0; }
.product-page .container { max-width: 1280px; margin: 0 auto; padding: 0 40px; }

.pp-breadcrumb { font-size: 12px; color: #999; letter-spacing: 0.05em; margin-bottom: 24px; text-transform: uppercase; }
.pp-breadcrumb a { color: #999; transition: color 0.3s ease; }
.pp-breadcrumb a:hover { color: #D4708F; }
.pp-breadcrumb span.sep { margin: 0 8px; color: #ccc; }
.pp-breadcrumb span.current { color: #1a1a1a; }

.pp-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }

/* Gallery */
.pp-gallery { position: sticky; top: 140px; }
.pp-main-image { width: 100%; aspect-ratio: 4/5; background: #f8f8f8; overflow: hidden; margin-bottom: 16px; position: relative; }
.pp-main-image img { width: 100%; height: 100%; object-fit: contain; transition: transform 0.5s ease; }
.pp-main-image:hover img { transform: scale(1.1); }
.pp-thumbs-wrap { position: relative; }
.pp-thumbs { display: flex; gap: 8px; overflow-x: auto; scrollbar-width: none; scroll-behavior: smooth; padding: 4px 0; }
.pp-thumbs::-webkit-scrollbar { display: none; }
.pp-thumb { flex: 0 0 80px; width: 80px; height: 80px; background: #f8f8f8; cursor: pointer; border: 2px solid transparent; transition: border-color 0.2s ease; overflow: hidden; }
.pp-thumb img { width: 100%; height: 100%; object-fit: cover; }
.pp-thumb.active { border-color: #F4A7BB; }
.pp-thumb:hover { border-color: #D4708F; }
.pp-thumb-arrow { position: absolute; top: 50%; transform: translateY(-50%); width: 32px; height: 32px; background: rgba(255,255,255,0.9); border: 1px solid #e5e5e5; border-radius: 50%; cursor: pointer; display: flex; align-items: center; justify-content: center; z-index: 3; transition: all 0.2s ease; }
.pp-thumb-arrow:hover { background: #F4A7BB; border-color: #F4A7BB; }
.pp-thumb-arrow:hover svg { stroke: #fff; }
.pp-thumb-arrow svg { width: 14px; height: 14px; stroke: #1a1a1a; stroke-width: 2; fill: none; }
.pp-thumb-arrow.left { left: -8px; }
.pp-thumb-arrow.right { right: -8px; }

/* Info */
.pp-info { padding: 8px 0; }
.pp-title { font-family: 'Playfair Display', serif; font-size: 38px; font-weight: 500; color: #1a1a1a; line-height: 1.15; margin-bottom: 14px; }
.pp-rating { display: flex; align-items: center; gap: 10px; margin-bottom: 20px; }
.pp-stars { color: #F4A7BB; font-size: 15px; letter-spacing: 2px; }
.pp-rating-text { font-size: 13px; color: #555; }
.pp-price-row { display: flex; align-items: center; gap: 14px; margin-bottom: 18px; }
.pp-price { font-family: 'Inter', sans-serif; font-size: 26px; font-weight: 600; color: #1a1a1a; }
.pp-compare { font-size: 18px; color: #999; text-decoration: line-through; font-weight: 400; }
.pp-save-badge { background: #F4A7BB; color: #fff; padding: 5px 11px; font-size: 11px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; }
.pp-short-desc { color: #555; font-size: 14px; line-height: 1.7; margin-bottom: 28px; padding-bottom: 28px; border-bottom: 1px solid #e5e5e5; }

.pp-option-group { margin-bottom: 24px; }
.pp-option-label { display: block; font-size: 12px; text-transform: uppercase; letter-spacing: 0.12em; color: #1a1a1a; font-weight: 600; margin-bottom: 12px; }
.pp-option-label .selected-value { color: #555; font-weight: 400; text-transform: none; letter-spacing: 0; margin-left: 6px; }
.pp-pills { display: flex; flex-wrap: wrap; gap: 10px; }
.pp-pill { padding: 10px 18px; border: 1px solid #e5e5e5; background: #fff; font-size: 13px; color: #1a1a1a; cursor: pointer; transition: all 0.2s ease; font-family: 'Inter', sans-serif; letter-spacing: 0.02em; min-width: 54px; text-align: center; }
.pp-pill:hover { border-color: #D4708F; }
.pp-pill.selected { border: 2px solid #F4A7BB; padding: 9px 17px; font-weight: 600; }
.pp-pill.sold-out { opacity: 0.4; text-decoration: line-through; cursor: not-allowed; }
/* Color swatches with images */
.pp-pills.has-images { gap: 8px; }
.pp-pill.has-img { padding: 4px; width: 72px; min-width: 72px; display: flex; flex-direction: column; align-items: center; gap: 4px; }
.pp-pill.has-img img { width: 60px; height: 60px; object-fit: cover; border-radius: 2px; transition: transform 0.2s ease; pointer-events: none; }
.pp-pill.has-img:hover img { transform: scale(1.05); }
.pp-pill.has-img .pill-label { font-size: 9px; line-height: 1.2; text-align: center; max-width: 64px; overflow: hidden; white-space: nowrap; text-overflow: ellipsis; }
.pp-pill.has-img.selected { border: 2px solid #F4A7BB; padding: 3px; }
@media (max-width: 480px) {
  .pp-pill.has-img { width: 64px; min-width: 64px; }
  .pp-pill.has-img img { width: 52px; height: 52px; }
}

.pp-qty-wrap { display: flex; align-items: center; gap: 20px; margin-bottom: 20px; }
.pp-qty { display: inline-flex; align-items: center; border: 1px solid #e5e5e5; }
.pp-qty button { width: 44px; height: 48px; background: #fff; font-size: 18px; color: #1a1a1a; display: flex; align-items: center; justify-content: center; transition: background 0.2s ease; }
.pp-qty button:hover { background: #f5f5f5; }
.pp-qty input { width: 50px; height: 48px; text-align: center; border: none; border-left: 1px solid #e5e5e5; border-right: 1px solid #e5e5e5; font-size: 15px; font-family: 'Inter', sans-serif; color: #1a1a1a; -moz-appearance: textfield; }
.pp-qty input::-webkit-outer-spin-button, .pp-qty input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }

.pp-add-cart, .pp-buy-now { width: 100%; height: 56px; font-family: 'Inter', sans-serif; font-size: 16px; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; border-radius: 0; border: none; cursor: pointer; transition: background 0.3s ease, transform 0.2s ease; display: flex; align-items: center; justify-content: center; margin-bottom: 12px; }
.pp-add-cart { background: #F4A7BB; color: #fff; }
.pp-add-cart:hover { background: #D4708F; }
.pp-add-cart:disabled { background: #ccc; cursor: not-allowed; }
.pp-buy-now { background: #1a1a1a; color: #fff; }
.pp-buy-now:hover { background: #333; }

.pp-ship-info { font-size: 13px; color: #555; margin-top: 18px; padding-top: 18px; border-top: 1px solid #e5e5e5; line-height: 1.9; }
.pp-ship-info strong { color: #1a1a1a; font-weight: 600; }
.pp-rewards-note { font-size: 12px; color: #D4708F; margin-top: 8px; letter-spacing: 0.05em; }

/* Trust badges row */
.pp-trust-row { padding: 60px 0; border-top: 1px solid #e5e5e5; border-bottom: 1px solid #e5e5e5; margin-top: 80px; }
.pp-trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }
.pp-trust-item { text-align: center; }
.pp-trust-item svg { width: 36px; height: 36px; stroke: #F4A7BB; stroke-width: 1.5; fill: none; margin: 0 auto 14px; display: block; }
.pp-trust-item h4 { font-family: 'Inter', sans-serif; font-size: 13px; font-weight: 600; color: #1a1a1a; text-transform: uppercase; letter-spacing: 0.08em; }

/* Full description */
.pp-desc-section { padding: 80px 0; }
.pp-section-heading { font-family: 'Playfair Display', serif; font-size: 34px; font-weight: 500; color: #1a1a1a; text-align: center; margin-bottom: 36px; }
.pp-desc-content { max-width: 780px; margin: 0 auto; color: #555; font-size: 15px; line-height: 1.8; }
.pp-desc-content p { margin-bottom: 16px; }
.pp-desc-content h2, .pp-desc-content h3 { color: #1a1a1a; font-family: 'Playfair Display', serif; margin: 24px 0 12px; }
.pp-desc-content ul { margin: 12px 0 16px 20px; }
.pp-desc-content li { margin-bottom: 8px; list-style: disc; }

/* Features */
.pp-features { padding: 80px 0; background: #faf7f5; }
.pp-features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.pp-feature-card { text-align: center; padding: 10px; }
.pp-feature-icon { width: 60px; height: 60px; background: #F4A7BB; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; }
.pp-feature-icon svg { width: 26px; height: 26px; stroke: #fff; fill: none; stroke-width: 2; }
.pp-feature-card h3 { font-family: 'Playfair Display', serif; font-size: 24px; font-weight: 500; color: #1a1a1a; margin-bottom: 10px; }
.pp-feature-card p { color: #555; font-size: 14px; line-height: 1.7; }

/* FAQ */
.pp-faq { padding: 80px 0; }
.pp-faq-list { max-width: 780px; margin: 0 auto; }
.pp-faq-item { border-bottom: 1px solid #e5e5e5; }
.pp-faq-q { width: 100%; padding: 22px 0; display: flex; justify-content: space-between; align-items: center; text-align: left; font-family: 'Inter', sans-serif; font-size: 15px; font-weight: 600; color: #1a1a1a; }
.pp-faq-q .icon { font-size: 22px; color: #F4A7BB; transition: transform 0.3s ease; font-weight: 300; }
.pp-faq-item.open .pp-faq-q .icon { transform: rotate(45deg); }
.pp-faq-a { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.pp-faq-a-inner { padding: 0 0 22px; color: #555; font-size: 14px; line-height: 1.7; }
.pp-faq-item.open .pp-faq-a { max-height: 300px; }

/* Related products */
.pp-related { padding: 80px 0; background: #fafafa; }
.pp-related-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.pp-related-card { display: block; color: inherit; }
.pp-related-img { width: 100%; aspect-ratio: 3/4; background: #f0f0f0; overflow: hidden; margin-bottom: 12px; }
.pp-related-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.pp-related-card:hover .pp-related-img img { transform: scale(1.05); }
.pp-related-card h4 { font-family: 'Inter', sans-serif; font-size: 14px; font-weight: 400; color: #1a1a1a; margin-bottom: 4px; }
.pp-related-card .price { font-size: 14px; font-weight: 600; color: #1a1a1a; }

/* Reviews */
.pp-reviews { padding: 80px 0; }
.pp-reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; max-width: 1100px; margin: 0 auto; }
.pp-review-card { background: #fff; border: 1px solid #e5e5e5; padding: 28px; }
.pp-review-stars { color: #F4A7BB; font-size: 14px; letter-spacing: 2px; margin-bottom: 14px; }
.pp-review-text { color: #555; font-size: 14px; line-height: 1.7; margin-bottom: 18px; font-style: italic; }
.pp-review-author { font-size: 13px; font-weight: 600; color: #1a1a1a; letter-spacing: 0.05em; }
.pp-review-verified { font-size: 11px; color: #D4708F; text-transform: uppercase; letter-spacing: 0.12em; margin-top: 4px; }

/* Product page responsive */
@media (max-width: 900px) {
  .pp-grid { grid-template-columns: 1fr; gap: 40px; }
  .pp-gallery { position: static; }
  .pp-title { font-size: 30px; }
  .pp-trust-grid { grid-template-columns: repeat(2, 1fr); gap: 30px; }
  .pp-features-grid { grid-template-columns: 1fr; gap: 30px; }
  .pp-related-grid { grid-template-columns: repeat(2, 1fr); }
  .pp-reviews-grid { grid-template-columns: 1fr; max-width: 520px; }
}

@media (max-width: 480px) {
  .product-page .container { padding: 0 20px; }
  .pp-title { font-size: 26px; }
  .pp-price { font-size: 22px; }
  .pp-section-heading { font-size: 28px; }
  .pp-trust-row, .pp-desc-section, .pp-features, .pp-faq, .pp-related, .pp-reviews { padding: 50px 0; }
  .pp-trust-row { margin-top: 50px; }
}

/* ============================================
   MOBILE MASTER — EDITORIAL PREMIUM
   Philosophy: less clutter, more whitespace, larger type, single-column flow
   ============================================ */
@media (max-width: 900px) {
  /* Container padding unified */
  .hg-transformations .container,
  .hg-compare .container,
  .hg-bundle .container,
  .hg-lashes-section .container,
  .pp-reviews-v2 .container,
  .pp-fbt .container,
  .pp-related .container,
  .pp-recently .container,
  .container { padding: 0 22px !important; max-width: 100% !important; }

  html, body { overflow-x: hidden; max-width: 100vw; }

  /* ========== HEADER — slim mobile ========== */
  .site-header { position: sticky; top: 0; z-index: 100; background: #fff; }
  .header-top { padding: 8px 12px !important; gap: 6px !important; align-items: center; }
  .header-logo { flex: 1 1 auto; min-width: 0; text-align: center; }
  .header-logo a { font-size: 16px !important; letter-spacing: 0.12em !important; font-weight: 500; white-space: nowrap; }
  .header-icons { gap: 0 !important; }
  .hg-lang-btn { padding: 4px 6px !important; font-size: 9px !important; gap: 3px !important; letter-spacing: 0.08em !important; }
  .header-icons button, .header-icons a { padding: 6px !important; }
  .header-icons svg { width: 18px !important; height: 18px !important; }
  .header-nav { display: none !important; }
  .hamburger { width: 22px !important; height: 14px !important; }
  .hamburger span { height: 1.5px !important; }

  /* ========== ANNOUNCEMENT + MARQUEE — slim ========== */
  .announcement-bar { padding: 6px 0 !important; font-size: 9.5px !important; letter-spacing: 0.16em !important; height: auto !important; }
  .announcement-bar-rotating { height: 28px !important; padding: 0 14px !important; }
  .announcement-rotator .ab-msg { font-size: 9.5px !important; letter-spacing: 0.16em !important; }
  .announcement-bar-inner span { padding: 0 14px; }
  .marquee { font-size: 10px; padding: 8px 0; letter-spacing: 0.12em; }
  .marquee-inner span { padding: 0 14px; }

  /* ========== GLOBAL MOBILE COMPACTION (KawaBeauty/Skims-style — fits in 3-4 scrolls) ========== */
  /* Hard-stop horizontal wobble — every section + container clips x-overflow */
  html, body { overflow-x: hidden !important; max-width: 100vw !important; width: 100% !important; position: relative; }
  body { overscroll-behavior-x: none !important; touch-action: pan-y !important; }
  section, main, header, footer, .container, .pp-info, .pp-grid { overflow-x: hidden !important; max-width: 100vw !important; }
  /* Carousels need overflow-x: auto themselves but parent must clip */
  .bestsellers .container,
  .hg-transformations .container,
  .hg-lashes-section .container,
  .pp-related .container,
  .pp-form { overflow-x: clip !important; }
  body { font-size: 14px !important; line-height: 1.5 !important; }
  h1 { font-size: 24px !important; line-height: 1.15 !important; }
  h2 { font-size: 20px !important; line-height: 1.2 !important; }
  h3 { font-size: 16px !important; line-height: 1.25 !important; }
  h4 { font-size: 13px !important; line-height: 1.3 !important; }
  h5 { font-size: 12px !important; line-height: 1.3 !important; }
  p { font-size: 13px !important; line-height: 1.55 !important; }
  /* Section padding cap — never more than 32px vertical on mobile */
  section, .container { padding-top: 32px !important; padding-bottom: 32px !important; }
  .container { padding-left: 14px !important; padding-right: 14px !important; }

  /* ========== HERO — editorial, full-bleed (cap 55vh on mobile) ========== */
  .hero { height: auto !important; min-height: 55vh !important; max-height: 540px !important; padding: 0 !important; }
  .hero-slide img { object-position: 72% center !important; }
  .hero-overlay { padding: 20px 16px 28px !important; justify-content: flex-end !important; background: linear-gradient(to bottom, rgba(0,0,0,0) 30%, rgba(0,0,0,0.62) 100%) !important; align-items: flex-start !important; text-align: left !important; }
  .hero-rating { display: inline-flex !important; margin-bottom: 12px !important; padding: 5px 10px !important; gap: 6px; }
  .hero-rating .hr-stars { font-size: 11px !important; letter-spacing: 1.2px; }
  .hero-rating .hr-text { font-size: 10px !important; }
  .hero-trustline { justify-content: flex-start !important; color: rgba(255,255,255,0.92) !important; font-size: 8.5px !important; letter-spacing: 0.14em !important; gap: 5px !important; margin-top: 12px !important; max-width: 300px; }
  .hero-overlay h1 { font-size: 28px !important; line-height: 1.05 !important; letter-spacing: -0.01em !important; margin-bottom: 8px !important; font-weight: 400 !important; max-width: 260px; text-align: left !important; color: #fff !important; }
  .hero-overlay p { font-size: 12px !important; line-height: 1.4 !important; letter-spacing: 0.02em !important; margin-bottom: 14px !important; max-width: 240px; text-align: left !important; opacity: 0.95; color: #fff !important; }
  .hero-overlay .btn { padding: 11px 24px !important; font-size: 10px !important; letter-spacing: 0.18em !important; background: #fff !important; color: #1a1a1a !important; font-weight: 700 !important; height: auto !important; min-height: 0 !important; }
  .hero-overlay .btn:hover { background: #B85478 !important; }
  .hero-secondary-cta { display: none !important; }

  /* ========== GLOBAL TYPOGRAPHY SCALE ========== */
  .section-heading { font-size: 22px !important; margin-bottom: 8px !important; font-weight: 500 !important; letter-spacing: -0.01em !important; line-height: 1.15 !important; }
  .hg-eyebrow { font-size: 9px !important; letter-spacing: 0.22em !important; margin-bottom: 6px !important; }
  .hg-subhead { font-size: 12px !important; margin-bottom: 18px !important; line-height: 1.5 !important; max-width: 320px; margin-left: auto; margin-right: auto; }

  /* ========== TRUST BADGES ========== */
  .trust-badges { padding: 36px 0 !important; }
  .trust-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 22px 16px !important; max-width: 440px; margin: 0 auto !important; }
  .trust-item svg { width: 22px; height: 22px; }
  .trust-item h5 { font-size: 11px !important; margin-top: 8px; letter-spacing: 0.04em; line-height: 1.3; }
  .trust-item p { font-size: 11px !important; color: #888; line-height: 1.4; }

  /* ========== BESTSELLERS / HAIR EXTENSIONS ========== */
  .bestsellers { padding: 36px 0 !important; }
  .bestsellers .container { padding: 0 16px !important; max-width: 100% !important; }
  .bestsellers p[style*="center"] { font-size: 12px !important; color: #888; max-width: 300px; margin-left: auto !important; margin-right: auto !important; margin-bottom: 20px !important; }
  .bestsellers h2 { font-size: 24px !important; margin-bottom: 6px !important; }

  /* MOBILE BESTSELLERS — horizontal scroll carousel (peek 2.3 cards) */
  .bestsellers .hg-cards-grid { display: flex !important; grid-template-columns: none !important; overflow-x: auto !important; overflow-y: hidden; gap: 10px !important; scroll-snap-type: x mandatory; scroll-padding-left: 14px; padding: 0 14px 4px !important; margin: 0 !important; -webkit-overflow-scrolling: touch; }
  .bestsellers .hg-cards-grid::-webkit-scrollbar { display: none; }
  .bestsellers .hg-cards-grid { scrollbar-width: none; }
  .bestsellers .hg-cards-grid > .hg-card { flex: 0 0 44% !important; min-width: 0; scroll-snap-align: start; }

  /* MOBILE LASHES SECTION — also horizontal */
  .hg-lashes-section .hg-cards-grid { display: flex !important; grid-template-columns: none !important; overflow-x: auto !important; gap: 10px !important; scroll-snap-type: x mandatory; padding: 0 14px 4px !important; margin: 0 !important; -webkit-overflow-scrolling: touch; }
  .hg-lashes-section .hg-cards-grid::-webkit-scrollbar { display: none; }
  .hg-lashes-section .hg-cards-grid > .hg-card { flex: 0 0 44% !important; min-width: 0; scroll-snap-align: start; }

  /* Collection page keeps 2-col grid (different intent — browsing) */
  .collection-page .hg-cards-grid { display: grid !important; grid-template-columns: repeat(2, 1fr) !important; gap: 22px 10px !important; overflow: visible !important; padding: 0 !important; margin: 0 !important; }

  /* CARDS — compact editorial */
  .hg-card-media { aspect-ratio: 4/5 !important; background: #f5f5f5 !important; }
  .hg-card-body { padding: 8px 0 0 !important; text-align: left; }
  .hg-card-title { font-family: 'Inter', sans-serif !important; font-size: 11px !important; font-weight: 500 !important; min-height: 0 !important; margin-bottom: 3px !important; line-height: 1.3 !important; letter-spacing: 0.01em !important; color: #1a1a1a !important; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
  .hg-card-price { font-size: 11px !important; font-weight: 600 !important; color: #1a1a1a !important; letter-spacing: 0.02em; }
  .hg-card-compare { font-size: 10px !important; color: #999 !important; }
  .hg-card-price-row { margin-bottom: 0; gap: 5px; }
  /* Premium minimal — name + stars + price + swatches preview */
  .hg-card-rating { display: none !important; } /* fake card ratings hidden 2026-06-17 (EU fake-review ban) */
  .hg-card-rating .cr-stars { font-size: 9px !important; letter-spacing: 0.5px; color: #F4A7BB !important; }
  .hg-card-rating strong { font-size: 10px !important; font-weight: 600 !important; color: #1a1a1a !important; }
  .hg-card-reviews { display: inline !important; font-size: 10px !important; color: #999 !important; }
  .hg-card-swatches { display: flex !important; gap: 4px !important; margin-top: 6px !important; }
  .hg-swatch { width: 10px !important; height: 10px !important; border-radius: 50%; }
  .hg-swatch-more { font-size: 9px !important; color: #999 !important; margin-left: 2px; }
  .hg-card-quick { display: none !important; }
  .hg-stock-low { display: none !important; }
  .hg-badge-sale { display: none !important; }
  .hg-badge-fast { font-size: 9px !important; padding: 4px 8px !important; top: 36px !important; left: 10px !important; letter-spacing: 0.14em !important; }
  .hg-badge-new { font-size: 9px !important; padding: 4px 8px !important; top: 10px !important; right: 10px !important; letter-spacing: 0.14em !important; }
  /* Keep only Bestseller badge — subtle */
  .hg-badge-best { font-size: 9px !important; padding: 4px 8px !important; top: 10px !important; left: 10px !important; letter-spacing: 0.15em !important; background: #1a1a1a !important; color: #fff !important; border: none !important; font-weight: 600 !important; }

  /* ========== TRANSFORMATIONS — horizontal carousel ========== */
  .hg-transformations { padding: 32px 0 !important; background: #fafafa !important; }
  .hg-transformations .section-heading { font-size: 22px !important; }
  .hg-ba-grid { display: flex !important; grid-template-columns: none !important; overflow-x: auto !important; gap: 12px !important; scroll-snap-type: x mandatory; padding: 0 14px 4px !important; margin: 0 !important; -webkit-overflow-scrolling: touch; }
  .hg-ba-grid::-webkit-scrollbar { display: none; }
  .hg-ba-grid { scrollbar-width: none; }
  .hg-ba-grid > .hg-ba-card { flex: 0 0 90% !important; scroll-snap-align: center; min-width: 0; }
  .hg-ba-card { background: transparent; }
  .hg-ba-card:hover { transform: none; box-shadow: none; }
  .hg-ba-img { aspect-ratio: 3/4 !important; }
  .hg-ba-duo { gap: 10px !important; }
  .hg-ba-state { font-size: 9px !important; padding: 3px 8px !important; top: 8px; left: 8px; letter-spacing: 0.1em; }
  .hg-ba-cap { font-size: 11px !important; line-height: 1.45; margin-top: 8px; min-height: 32px; }

  /* ========== COMPARISON TABLE ========== */
  .hg-compare { padding: 56px 0 !important; }
  .hg-compare .section-heading { font-size: 26px !important; }
  .hg-compare-grid { gap: 24px !important; max-width: 440px; margin-left: auto !important; margin-right: auto !important; margin-top: 44px !important; }
  .hg-compare-col { padding: 28px 24px 32px !important; }
  .hg-compare-col.hg-featured { transform: none !important; }
  .hg-compare-col.hg-featured:hover { transform: none !important; }
  .hg-compare-img { width: 140px !important; height: 140px !important; margin-bottom: 20px; }
  .hg-compare-col h3 { font-size: 26px !important; }
  .hg-compare-sub { font-size: 13px !important; margin-bottom: 20px; }
  .hg-compare-specs li { padding: 12px 4px !important; font-size: 13px; }
  .hg-compare-specs li.hg-compare-price strong { font-size: 22px !important; }
  .hg-compare-note { font-size: 13px; margin-top: 40px; }

  /* ========== LASHES SECTION ========== */
  .hg-lashes-section { padding: 36px 0 !important; background: #fff !important; }
  .hg-lashes-section .section-heading { font-size: 22px !important; }

  /* ========== BUNDLE ========== */
  .hg-bundle { padding: 60px 22px !important; }
  .hg-bundle .container { padding: 0 !important; max-width: 440px !important; margin: 0 auto !important; }
  .hg-bundle-card { grid-template-columns: 1fr !important; padding: 32px 28px !important; gap: 28px !important; }
  .hg-bundle-visual { aspect-ratio: 5/3; }
  .hg-bundle-eyebrow { font-size: 9px !important; letter-spacing: 0.22em !important; }
  .hg-bundle-body h2 { font-size: 34px !important; line-height: 1.05 !important; font-weight: 400 !important; margin-bottom: 14px !important; }
  .hg-bundle-desc { font-size: 14px !important; line-height: 1.7; }
  .hg-bundle-items li { font-size: 13px !important; padding: 14px 0 !important; }
  .hg-bundle-price-row { flex-direction: column !important; align-items: flex-start !important; gap: 18px !important; margin-bottom: 14px; }
  .hg-bundle-sum { font-size: 22px !important; }
  .hg-bundle-save { font-size: 12px; }
  .hg-bundle-btn { width: 100% !important; padding: 16px 20px !important; font-size: 11px !important; letter-spacing: 0.22em !important; }
  .hg-bundle-note { font-size: 11px; line-height: 1.6; }

  /* ========== COLLECTION TILES — single column, big, editorial ========== */
  .collections { padding: 60px 22px 70px !important; }
  .collections-grid { grid-template-columns: 1fr !important; gap: 14px !important; }
  .collection-tile { aspect-ratio: 5/4 !important; }
  .collection-tile-overlay { padding: 28px 24px !important; }
  .collection-tile-overlay h3 { font-size: 26px !important; }
  .collection-tile-overlay span { font-size: 10px !important; letter-spacing: 0.22em !important; }

  /* ========== TESTIMONIALS ========== */
  .testimonials { padding: 80px 22px !important; }
  .testimonial-grid { grid-template-columns: 1fr !important; max-width: 440px !important; gap: 18px !important; }
  .testimonial-card { padding: 32px 28px !important; }
  .testimonial-card blockquote { font-size: 16px !important; line-height: 1.65 !important; }

  /* ========== COLOR MATCH ========== */
  .color-match { padding: 80px 0 !important; }
  .cm-header h2 { font-size: 34px !important; }

  /* ========== FAQ ========== */
  .faq-section { padding: 80px 0 !important; }
  .faq-section .section-heading { font-size: 38px !important; }
  .faq-question { font-size: 14px !important; padding: 22px 0 !important; }
  .faq-answer-inner { font-size: 13px !important; line-height: 1.8; }

  /* ========== FINAL CTA ========== */
  .final-cta { padding: 80px 22px !important; }
  .final-cta h2 { font-size: 40px !important; line-height: 1 !important; font-weight: 400 !important; margin-bottom: 20px !important; }
  .final-cta p { font-size: 14px !important; line-height: 1.75 !important; margin-bottom: 28px !important; }

  /* ========== NEWSLETTER ========== */
  .newsletter { padding: 80px 22px !important; }
  .newsletter h2 { font-size: 32px !important; font-weight: 400; margin-bottom: 12px !important; }
  .newsletter p { font-size: 13px; }
  .newsletter-form { flex-direction: column; gap: 10px; }
  .newsletter-form input, .newsletter-form button { width: 100% !important; padding: 16px 18px !important; font-size: 14px !important; }

  /* ========== FOOTER ========== */
  .site-footer { padding: 42px 0 0 !important; }
  .footer-logo { padding: 0 18px 28px; text-align: center; }
  .footer-logo a { font-size: 18px; letter-spacing: 0.18em; }
  .footer-tagline { font-size: 10px; margin-top: 4px; display: block; }
  .footer-grid { padding: 0 18px 28px !important; gap: 22px 14px !important; grid-template-columns: 1fr 1fr !important; }
  .footer-grid h4 { font-size: 10px; letter-spacing: 0.16em; margin-bottom: 10px; }
  .footer-grid a { font-size: 12px; padding: 4px 0; }
  .footer-payments { padding: 16px 14px 12px !important; gap: 6px !important; }
  .footer-payments .pay-badge { transform: scale(0.85); transform-origin: center; }
  .footer-bottom { padding: 14px 18px; font-size: 10px; line-height: 1.5; }

  /* ========== CART DRAWER ========== */
  .cart-drawer { width: 100% !important; max-width: 100% !important; }
  .cart-drawer-header { padding: 22px 22px 16px; }
  .cart-drawer-header .cart-drawer-title { font-size: 15px !important; letter-spacing: 0.06em; }
  .cart-drawer-close { font-size: 28px; }
  .cart-drawer-body { padding: 0 !important; }
  .cart-item { padding: 18px 22px !important; gap: 14px; }
  .cart-item-img { width: 80px; height: 80px; }
  .cart-item-title { font-size: 14px !important; line-height: 1.35; }
  .cart-item-variant { font-size: 11px !important; color: #777; }
  .cart-item-qty button { width: 32px; height: 32px; font-size: 16px; }
  .cart-item-price { font-size: 14px; font-weight: 700; }
  .cart-drawer-footer { padding: 20px 22px 24px; }
  .cart-shipping-text { font-size: 12px; margin-bottom: 10px; }
  .cart-subtotal { font-size: 14px; padding: 16px 0; }
  .cart-subtotal-value { font-size: 20px !important; font-weight: 700; }
  .cart-checkout-btn { padding: 18px !important; font-size: 13px !important; letter-spacing: 0.2em !important; }
  .cart-continue { font-size: 11px; letter-spacing: 0.18em; padding: 14px; }

  /* ========== EXIT-INTENT ========== */
  .hg-exit-overlay { padding: 24px; }
  .hg-exit-modal { max-width: 100%; }
  .hg-exit-body { padding: 48px 26px 32px; }
  .hg-exit-body .hg-exit-title { font-size: 32px !important; line-height: 1.1; }

  /* ========== COOKIE BANNER ========== */
  .hg-cookie { left: 14px !important; right: 14px !important; bottom: 14px !important; max-width: calc(100vw - 28px) !important; }
  .hg-cookie-inner { padding: 18px 20px; }
  .hg-cookie-body .hg-cookie-title { font-size: 14px; }
  .hg-cookie-body p { font-size: 12px; line-height: 1.6; margin-bottom: 14px; }
  .hg-cookie-btn { font-size: 10px !important; padding: 10px 12px !important; letter-spacing: 0.1em !important; }

  /* ========== SOCIAL PROOF — HIDDEN ON MOBILE (too intrusive, not premium) ========== */

  /* ========== PRODUCT PAGE ========== */
  .product-page { padding: 24px 0 0 !important; }
  .pp-container, .product-page .container { padding: 0 22px !important; }
  .pp-breadcrumb { font-size: 10px !important; margin-bottom: 18px; letter-spacing: 0.08em; }
  /* ============================================================
     PDP MOBILE — compact above-the-fold (KawaBeauty-style)
     Goal: title + price + variants + ATC visible in 1.5 screens
     ============================================================ */
  .pp-grid { grid-template-columns: 1fr !important; gap: 16px !important; padding: 0 16px !important; }
  .pp-gallery { position: static !important; max-width: 100% !important; }
  .pp-main-image { max-height: 360px !important; aspect-ratio: 4/5 !important; margin-bottom: 10px !important; }
  .pp-main-image img { max-height: 360px !important; object-fit: contain !important; }
  .pp-info { padding: 0 !important; }
  .pp-title { font-size: 22px !important; line-height: 1.2 !important; margin-bottom: 6px !important; font-weight: 500 !important; letter-spacing: -0.005em; }
  .pp-rating { margin-bottom: 10px !important; }
  .pp-rating-text { font-size: 10px !important; }
  .pp-stars { font-size: 12px !important; }
  .pp-price-row { gap: 10px !important; margin-bottom: 12px !important; }
  .pp-price { font-size: 20px !important; font-weight: 700 !important; }
  .pp-compare { font-size: 13px !important; }
  .pp-save-badge { font-size: 9px !important; padding: 3px 8px !important; letter-spacing: 0.08em !important; }
  .pp-short-desc { font-size: 12.5px !important; margin-bottom: 16px !important; padding-bottom: 16px !important; line-height: 1.55 !important; }
  .pp-option-group { margin-bottom: 14px !important; }
  .pp-option-label { font-size: 10.5px !important; margin-bottom: 8px !important; letter-spacing: 0.16em !important; }
  .pp-option-label .selected-value { font-weight: 400; color: #555; }
  .pp-pill { padding: 9px 12px !important; font-size: 12px !important; min-height: 38px; min-width: 0 !important; flex: 0 1 auto; }
  .pp-pill.selected { padding: 8px 11px !important; }
  .pp-pill.has-img { width: 56px !important; min-width: 56px !important; padding: 3px !important; }
  .pp-pill.has-img img { width: 48px !important; height: 48px !important; }
  .pp-pill.has-img .pill-label { font-size: 8.5px; max-width: 52px; line-height: 1.2; margin-top: 1px; }
  .pp-pills { gap: 6px !important; }
  .pp-pills.has-images { gap: 5px !important; }
  .pp-color-match-link { margin-top: 8px !important; font-size: 11px !important; }
  .pp-qty-wrap { display: flex; }
  .pp-qty button { width: 36px !important; height: 38px !important; }
  .pp-qty input { width: 40px !important; height: 38px !important; font-size: 16px !important; }
  .pp-add-cart, .pp-buy-now { height: 46px !important; font-size: 12px !important; letter-spacing: 0.12em !important; line-height: 1 !important; padding: 13px 14px !important; margin-bottom: 8px !important; }
  .pp-installment { font-size: 11px !important; padding: 9px 12px !important; margin-top: 8px !important; }
  .pp-installment svg { width: 14px !important; height: 14px !important; }
  .pp-ship-countdown { font-size: 11px !important; padding: 9px 12px !important; margin-top: 8px !important; line-height: 1.4 !important; align-items: flex-start !important; }
  .pp-ship-countdown svg { width: 14px !important; height: 14px !important; flex-shrink: 0; margin-top: 1px; }
  .pp-ship-countdown span { line-height: 1.4 !important; }
  .pp-ship-info { font-size: 11.5px !important; line-height: 1.55 !important; margin-top: 12px !important; padding-top: 12px !important; }
  .pp-thumb { flex: 0 0 50px; width: 50px; height: 50px; }
  /* Complete the Look — already small, just margin tighten */
  .pp-ctl { margin-top: 12px !important; padding: 12px !important; }
  .pp-ctl-head { margin-bottom: 10px !important; }
  .pp-ctl-eyebrow { font-size: 8.5px !important; }
  .pp-ctl-heading { font-size: 14px !important; }

  /* ========== REVIEWS ========== */
  .pp-reviews-v2 { padding: 36px 16px !important; }
  .rvw-header { grid-template-columns: 1fr !important; gap: 18px !important; padding-bottom: 22px !important; }
  .rvw-big { font-size: 42px !important; }
  .rvw-filters { gap: 5px !important; margin-bottom: 14px !important; flex-wrap: wrap; }
  .rvw-filter { padding: 6px 10px !important; font-size: 10px !important; }
  .rvw-grid { grid-template-columns: 1fr !important; gap: 12px !important; }
  .rvw-card { padding: 14px 16px !important; }
  .rvw-card h4 { font-size: 12px !important; }
  .rvw-card p { font-size: 12px !important; line-height: 1.55 !important; }

  /* ========== FBT — compact horizontal stack ========== */
  .pp-fbt { padding: 32px 16px !important; }
  .fbt-wrap { grid-template-columns: 1fr !important; gap: 16px !important; }
  .fbt-products { gap: 6px !important; flex-wrap: nowrap !important; }
  .fbt-item { width: auto !important; flex: 1 1 0 !important; min-width: 0 !important; padding: 6px !important; }
  .fbt-item img { width: 100% !important; aspect-ratio: 1/1; object-fit: cover; }
  .fbt-summary { min-width: 0 !important; width: 100% !important; padding: 14px !important; }
  .fbt-plus { font-size: 12px !important; margin: 0 2px !important; }

  /* ========== RELATED / RECENTLY VIEWED ========== */
  .pp-related { padding: 32px 14px !important; }
  /* Mobile: hide Recently Viewed (research: keep only FBT for AOV) */
  .pp-recently { display: none !important; }
  /* Related as horizontal carousel */
  .pp-related-grid { display: flex !important; grid-template-columns: none !important; overflow-x: auto !important; gap: 10px !important; scroll-snap-type: x mandatory; padding: 0 14px 4px !important; margin: 0 !important; -webkit-overflow-scrolling: touch; }
  .pp-related-grid::-webkit-scrollbar { display: none; }
  .pp-related-grid > * { flex: 0 0 44% !important; scroll-snap-align: start; min-width: 0; }
  .pp-related-card h4 { font-size: 11px !important; margin-top: 6px; }
  .pp-related-card .price { font-size: 11px !important; }

  /* About — hide 2nd paragraph behind a tap-to-expand */
  .hg-about-para:nth-of-type(2) { display: none; }
  .hg-about-readmore { display: inline-block; font-family: 'Inter', sans-serif; font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; font-weight: 600; color: #D4708F; padding: 4px 0; border-bottom: 1px solid currentColor; cursor: pointer; }
  .hg-about[data-expanded="true"] .hg-about-para:nth-of-type(2) { display: block; }
  .hg-about[data-expanded="true"] .hg-about-readmore { display: none; }

  /* Prevent sticky mobile ATC overlap */

  /* Collection page */
  .collection-page { padding: 40px 0 !important; }
  .collection-header { margin-bottom: 36px !important; }
  .collection-header h1 { font-size: 38px !important; font-weight: 400 !important; }

  /* Mobile nav refinements */
  .mobile-menu-overlay { padding: 0; }
  .mobile-menu-header { padding: 22px 24px; }
  .mobile-menu-nav { padding: 36px 24px; }
  .mobile-menu-nav a { font-size: 16px; padding: 16px 0; letter-spacing: 0.14em; }
  .mobile-menu-nav .sub-link { font-size: 13px; padding-left: 20px; color: #666; }
}

/* Prevent iOS auto-zoom */
@media (max-width: 900px) {
  input[type="email"], input[type="text"], input[type="search"], input[type="tel"], input[type="number"], input[type="password"], textarea, select { font-size: 16px !important; }
}

/* Phones 540px and below — tighter typography */
@media (max-width: 540px) {
  .hero-overlay h1 { font-size: 30px !important; max-width: 260px; }
  .section-heading { font-size: 24px !important; }
  .final-cta h2 { font-size: 26px !important; }
  .hg-bundle-body h2 { font-size: 24px !important; }
  .hg-transformations .section-heading,
  .hg-compare .section-heading,
  .hg-lashes-section .section-heading { font-size: 24px !important; }
  .pp-title { font-size: 22px !important; }
  .footer-grid { grid-template-columns: 1fr !important; gap: 24px !important; text-align: center; }
}

/* Phones 380px and below (iPhone SE etc.) */
@media (max-width: 380px) {
  .hero-overlay { padding: 28px 18px 48px !important; }
  .hero-overlay h1 { font-size: 26px !important; max-width: 240px; }
  .hero-overlay p { font-size: 11px !important; }
  .section-heading { font-size: 22px !important; }
  .hg-transformations .section-heading,
  .hg-compare .section-heading,
  .hg-lashes-section .section-heading,
  .pp-reviews-v2 .section-heading,
  .rvw-header h2 { font-size: 22px !important; }
  .container { padding: 0 14px !important; }
  .bestsellers .container,
  .collections,
  .testimonials,
  .final-cta,
  .newsletter { padding-left: 14px !important; padding-right: 14px !important; }
  .hg-card-title { font-size: 10px !important; }
  .pp-title { font-size: 20px !important; }
  .header-top { padding: 10px 14px 6px !important; }
}

/* ============================================================
   MOBILE BUTTON + OVERFLOW NORMALIZATION (added 2026-04-23)
   Purpose: ensure every button on narrow screens fits viewport,
   text never clips, letter-spacing is sane, padding compact.
   ============================================================ */
@media (max-width: 540px) {
  html, body { overflow-x: hidden !important; max-width: 100vw !important; }
  /* (universal max-width: 100% removed — broke absolute-positioned dropdowns like language menu) */
  img, svg, video, iframe { max-width: 100%; height: auto; }

  /* All button-like things: compact + never overflow */
  .btn,
  .hero-overlay .btn,
  .hg-bundle-add,
  .hg-bundle-btn,
  .pp-sticky-btn,
  .pp-ctl-btn,
  .cart-checkout-btn,
  .cart-continue,
  .newsletter-form button,
  .hg-exit-form button,
  .hg-cookie-btn,
  .hg-about-cta,
  .hero-secondary-cta,
  .cm-btn-primary {
    max-width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-break: break-word;
    overflow-wrap: break-word;
    letter-spacing: 0.08em !important;
    font-size: 11px !important;
    padding: 13px 16px !important;
    line-height: 1.2 !important;
    min-height: 44px;
  }
  /* PDP CTAs — minimal mobile override, just font + spacing tweak */
  .pp-add-cart, .pp-buy-now {
    font-size: 13px !important;
    letter-spacing: 0.12em !important;
    padding: 16px 14px !important;
    height: auto !important;
  }
  /* Variant pills (Length text labels) — wrap clean on mobile */
  .pp-pills { gap: 5px !important; flex-wrap: wrap !important; }
  .pp-pill { padding: 8px 10px !important; font-size: 11px !important; min-width: 0 !important; flex: 0 1 auto; max-width: 100%; word-break: keep-all; min-height: 34px !important; }
  .pp-pill.selected { padding: 7px 9px !important; }
  .pp-option-group { margin-bottom: 14px !important; }
  .pp-option-label { font-size: 10px !important; letter-spacing: 0.16em !important; margin-bottom: 6px !important; }
  .pp-option-label .selected-value { font-size: 12px; font-weight: 400; color: #555; }

  /* Color swatches (image pills) — HORIZONTAL SCROLL so ALL colors are reachable */
  .pp-pills.has-images {
    display: flex !important;
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    gap: 6px !important;
    padding: 2px 0 8px !important;
    margin: 0 !important;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: 4px;
    -webkit-overflow-scrolling: touch;
  }
  .pp-pills.has-images::after { content: ''; flex: 0 0 4px; }
  .pp-pills.has-images::-webkit-scrollbar { display: none; }
  .pp-pills.has-images { scrollbar-width: none; }
  .pp-pill.has-img {
    flex: 0 0 auto !important;
    width: 52px !important;
    min-width: 52px !important;
    padding: 3px !important;
    scroll-snap-align: start;
  }
  .pp-pill.has-img img { width: 46px !important; height: 46px !important; }
  .pp-pill.has-img.selected { padding: 2px !important; border-width: 2px !important; }
  .pp-pill.has-img .pill-label { display: none !important; }
  /* Full-width primaries on mobile */
  .hg-bundle-add,
  .pp-add-cart,
  .pp-buy-now,
  .cart-checkout-btn,
  .hg-about-cta,
  .btn[href*="bestsellers"],
  .pp-ctl-btn {
    width: 100% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center;
  }
  /* Hero CTA keeps auto width but smaller padding */
  .hero-overlay .btn {
    padding: 12px 26px !important;
    font-size: 10px !important;
    letter-spacing: 0.18em !important;
    min-height: 0;
    display: inline-flex !important;
  }

  /* Trust-band: tighter so it fits on 1 line on 360px+ */
  .hg-trustband-inner { font-size: 8px !important; letter-spacing: 0.08em !important; gap: 5px !important; }
  .hg-trustband { padding: 10px 10px !important; }

  /* Bundle CTA special case — long "Bundle in den Warenkorb" string */
  .hg-bundle-add { font-size: 10.5px !important; letter-spacing: 0.1em !important; padding: 14px 14px !important; }

  /* Cookie banner buttons shouldn't split */
  .hg-cookie-actions { flex-wrap: wrap; gap: 6px !important; }
  .hg-cookie-btn { flex: 1 1 auto; min-width: 0 !important; padding: 11px 10px !important; font-size: 10px !important; letter-spacing: 0.06em !important; }

  /* Exit-intent popup button */
  .hg-exit-form { flex-direction: column !important; gap: 8px !important; }
  .hg-exit-form input, .hg-exit-form button { width: 100% !important; }

  /* Newsletter form same fix */
  .newsletter-form { flex-direction: column !important; gap: 8px !important; }
  .newsletter-form input, .newsletter-form button { width: 100% !important; max-width: 100% !important; }

  /* Eliminate horizontal scroll from decorative overflow */
  .pp-grid, .container, section, main { overflow-x: visible; }

  /* Inputs must be 16px+ to prevent iOS zoom but not oversize */
  input, textarea, select { font-size: 16px !important; box-sizing: border-box; max-width: 100%; }
}

  /* Oversized section headings not caught by earlier rules */
  .faq-section .section-heading,
  .cm-header h2,
  .hg-exit-body .hg-exit-title,
  .newsletter h2 { font-size: 26px !important; line-height: 1.15 !important; }

  /* Cap all major section paddings — no 80px vertical on tiny screens */
  .testimonials,
  .newsletter,
  .final-cta,
  .color-match,
  .faq-section,
  .hg-about,
  .hg-bundle { padding-top: 36px !important; padding-bottom: 36px !important; }

  /* Cookie banner: stack buttons vertically — German labels too long for 3-col */
  .hg-cookie-actions { flex-direction: column !important; gap: 6px !important; align-items: stretch !important; }
  .hg-cookie-btn { flex: 0 0 auto !important; width: 100% !important; padding: 12px 14px !important; font-size: 11px !important; letter-spacing: 0.08em !important; }

  /* Sticky ATC on PDP — reduce button width, prevent variant clipping */
  .pp-sticky-btn { padding: 12px 14px !important; font-size: 11px !important; letter-spacing: 0.06em !important; }
  .pp-sticky-variant { max-width: 95px !important; font-size: 9px !important; }
  .pp-sticky-inner { gap: 8px !important; padding: 8px 12px !important; }
  .pp-sticky-img { flex: 0 0 48px !important; width: 48px !important; height: 48px !important; }

  /* FBT (Complete the Look) on PDP — stack vertically instead of wrap */
  .fbt-products { flex-direction: column !important; align-items: stretch !important; gap: 8px !important; }
  .fbt-item { width: 100% !important; display: flex !important; flex-direction: row !important; align-items: center !important; gap: 12px !important; padding: 10px !important; }
  .fbt-item img { width: 64px !important; aspect-ratio: 1/1; margin-bottom: 0 !important; }
  .fbt-plus { display: none !important; }
}

/* Extra-small phones (320-380px) — even tighter */
@media (max-width: 380px) {
  .btn,
  .hg-bundle-add,
  .pp-add-cart,
  .pp-buy-now,
  .cart-checkout-btn,
  .hg-about-cta,
  .pp-ctl-btn {
    font-size: 10px !important;
    letter-spacing: 0.06em !important;
    padding: 12px 12px !important;
  }
  .hero-overlay .btn { padding: 10px 20px !important; font-size: 9.5px !important; }
  .hg-trustband-inner { font-size: 7.5px !important; gap: 4px !important; letter-spacing: 0.05em !important; }
  .hg-bundle-stack { gap: 4px !important; }
  .hg-bundle-plus { font-size: 12px !important; }
  /* iPhone SE — hide sticky variant text, keep only image + title + price + button */
  .pp-sticky-variant { display: none !important; }
}
