:root {
  --pink: #e91e8c;
  --pink-dark: #c9127a;
  --pink-light: #fce4f0;
  --pink-pale: #fdf1f8;
  --lavender-bg: #fbeef7;
  --ink: #171523;
  --ink-soft: #6b7280;
  --navy: #16172b;
  --white: #ffffff;
  --shadow: 0 12px 32px rgba(201, 18, 122, 0.14);
  --radius: 20px;
  font-size: 16px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; overflow-x: hidden; }
body { overflow-x: clip; }
section[id] { scroll-margin-top: 90px; }

/* prevent CSS grid blowout: grid items default to min-width:auto (content-based),
   which can force tracks wider than their container on narrow screens */
.wholesale-promo > *, .how-grid > *, .aroma-grid > *, .order-grid > *,
.footer-grid > *, .footer-links > * { min-width: 0; }

body {
  font-family: 'Manrope', 'Segoe UI', system-ui, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.55;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 32px;
}

/* NAV */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #f3e3ee;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 6px 18px 24px;
  max-width: 1220px;
  margin: 0 auto;
}
.nav-left { display: flex; align-items: center; gap: 48px; }
.logo { display: flex; align-items: center; gap: 10px; }
.logo-icon {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--pink);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; flex-shrink: 0;
}
.logo-icon img { width: 60%; height: 60%; object-fit: contain; display: block; }
.logo-text { font-weight: 800; font-size: 1.05rem; line-height: 1.15; color: var(--ink); letter-spacing: -0.01em; }
.logo-text span { display: block; color: var(--pink); }
.nav-links { display: flex; gap: 34px; }
.nav-links a { font-weight: 600; font-size: 0.95rem; color: #3d3a4a; transition: color .2s; white-space: nowrap; }
.nav-links a:hover { color: var(--pink-dark); }

.pulse-btn {
  padding: 12px 34px;
  margin-left: 0;
  white-space: nowrap;
  animation: pulseGlow 1.8s ease-in-out infinite;
}
.btn-label-short { display: none; }
@media (min-width: 700px) and (max-width: 759px) {
  .pulse-btn { margin-left: 4px; padding: 8px 14px; font-size: 0.7rem; }
  .nav-links { gap: 5px; }
  .nav-links a { font-size: 0.66rem; }
  .logo-text { font-size: 0.74rem; }
  .logo-icon { width: 28px; height: 28px; }
  .nav-left { gap: 12px; }
}
@media (min-width: 760px) and (max-width: 955px) {
  .pulse-btn { margin-left: 8px; padding: 9px 16px; font-size: 0.76rem; }
  .nav-links { gap: 8px; }
  .nav-links a { font-size: 0.74rem; }
  .logo-text { font-size: 0.84rem; }
  .logo-icon { width: 32px; height: 32px; }
  .nav-left { gap: 16px; }
}
@media (min-width: 956px) and (max-width: 1299px) {
  .pulse-btn { margin-left: 10px; padding: 10px 16px; font-size: 0.85rem; }
  .nav-links { gap: 22px; }
  .nav-links a { font-size: 0.8rem; }
  .logo-text { font-size: 0.95rem; }
}
@media (max-width: 1023px) {
  .nav-stub-hideable { display: none; }
}
@media (min-width: 1300px) {
  .pulse-btn {
    position: absolute;
    top: 50%;
    right: 3%;
    transform: translateY(-50%);
    margin-left: 0;
    padding: 14px 46px;
    animation: pulseGlowCentered 1.8s ease-in-out infinite;
  }
}
@keyframes pulseGlowCentered {
  0%, 100% { box-shadow: 0 0 0 0 rgba(233,30,140,0.55); transform: translateY(-50%) scale(1); }
  50% { box-shadow: 0 0 0 10px rgba(233,30,140,0); transform: translateY(-50%) scale(1.04); }
}
@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(233,30,140,0.55); transform: scale(1); }
  50% { box-shadow: 0 0 0 10px rgba(233,30,140,0); transform: scale(1.04); }
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  transition: transform .15s, box-shadow .15s;
  cursor: pointer;
  border: none;
}
.btn-primary { background: var(--pink); color: white; box-shadow: var(--shadow); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 16px 36px rgba(201,18,122,0.26); }
.btn-outline { background: white; color: var(--pink-dark); border: 1.5px solid #f0c9e0; }
.btn-outline:hover { background: var(--pink-pale); }

/* HERO - full bleed image right, text left with container gutter */
.hero { position: relative; padding: 0; aspect-ratio: 2400 / 1018; overflow: hidden; background: var(--lavender-bg); }
.hero-bg-image {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: center; display: block; z-index: 0;
}
.hero-overlay-content {
  position: absolute; inset: 0; z-index: 1;
  max-width: 46%;
  padding: 4% 3% 4% max(24px, calc((100vw - 1220px) / 2 + 24px));
  display: flex; flex-direction: column; justify-content: center;
  gap: clamp(6px, 1.4vw, 16px);
}
.pill-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: white; border: 1px solid #f0c9e0; color: var(--pink-dark);
  font-weight: 700; font-size: clamp(0.7rem, 1.1vw, 0.95rem); padding: clamp(6px,0.8vw,10px) clamp(12px,1.6vw,20px); border-radius: 999px;
  width: fit-content;
}

/* WHOLESALE PROMO (benefits + compact lead form, links to full /opt/ page) */
.wholesale-promo {
  display: grid; grid-template-columns: 1.35fr 1fr; gap: 48px; align-items: start;
  background: linear-gradient(120deg, var(--lavender-bg), var(--pink-pale));
  border: 1px solid #f2d9ea; border-radius: 28px;
  padding: 44px 48px;
}
.wholesale-promo-text { min-width: 0; }
.wholesale-promo-text .pill-badge { margin-bottom: 16px; }
.wholesale-promo-text h2 { font-size: 1.55rem; font-weight: 800; line-height: 1.3; margin-bottom: 28px; color: var(--ink); }
.wholesale-benefits { display: grid; grid-template-columns: 1fr 1fr; gap: 24px 20px; margin-bottom: 24px; min-width: 0; }
.wholesale-benefit { min-width: 0; }
.wholesale-benefit-icon {
  width: 40px; height: 40px; color: var(--pink); display: block; margin-bottom: 10px;
}
.wholesale-benefit-icon svg { width: 100%; height: 100%; }
.wholesale-benefit b { display: block; font-size: 0.92rem; font-weight: 800; color: var(--pink-dark); margin-bottom: 4px; overflow-wrap: break-word; hyphens: auto; }
.wholesale-benefit p { color: var(--ink-soft); font-size: 0.85rem; line-height: 1.4; }
.wholesale-promo-link { color: var(--pink-dark); font-weight: 700; font-size: 0.95rem; text-decoration: none; }
.wholesale-promo-link:hover { text-decoration: underline; }
.wholesale-promo-form { background: white; }
.wholesale-promo-form h3 { color: var(--pink-dark); font-weight: 800; font-size: 1.15rem; margin-bottom: 4px; }
.hero-overlay-content h1 {
  font-size: clamp(1.7rem, 4.2vw, 3.4rem); font-weight: 800; line-height: 1.1; letter-spacing: -0.02em;
  color: var(--ink);
}
.hero-overlay-content h1 .accent { color: var(--pink); }
.hero-overlay-content p.lead {
  font-size: clamp(0.85rem, 1.5vw, 1.25rem); color: var(--ink-soft); max-width: 32ch; line-height: 1.4;
}
.hero-badges { display: flex; flex-direction: row; gap: 0; }
.badge-box {
  display: flex; flex-direction: column; align-items: center; text-align: center;
  gap: clamp(6px, 0.8vw, 12px); padding: 0 clamp(10px, 1.8vw, 26px); position: relative;
  font-weight: 700; font-size: clamp(0.72rem, 1.05vw, 1rem); line-height: 1.3; color: var(--ink);
}
.badge-box:first-child { padding-left: 0; }
.badge-box:not(:first-child)::before {
  content: ''; position: absolute; left: 0; top: 10%; bottom: 10%; width: 1px;
  background: #e8b8d2;
}
.badge-icon-circle {
  width: clamp(52px, 6.2vw, 92px); height: clamp(52px, 6.2vw, 92px); border-radius: 50%;
  border: 1.5px solid #f0c9e0; background: #ffffff;
  box-shadow: 0 4px 14px rgba(201,18,122,0.12);
  display: flex; align-items: center; justify-content: center;
}
.badge-icon-circle img { width: 56%; height: 56%; object-fit: contain; display: block; }
.hero-ctas { display: flex; gap: clamp(8px, 1.2vw, 16px); flex-wrap: nowrap; }
.hero-ctas .btn { padding: clamp(10px,1.4vw,16px) clamp(16px,2.4vw,28px); font-size: clamp(0.78rem, 1.15vw, 1rem); white-space: nowrap; }

.hero-badge-circle {
  position: absolute; z-index: 1;
  bottom: 6%; right: 3%;
  width: clamp(110px, 13vw, 220px); aspect-ratio: 1/1; border-radius: 50%;
  background: var(--pink); color: white;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 8px;
  box-shadow: 0 14px 34px rgba(0,0,0,0.24);
}
.hero-badge-circle .heart { width: clamp(34px, 4.2vw, 56px); height: auto; margin-bottom: 6px; display: block; }
.hero-badge-circle strong { font-weight: 800; font-size: clamp(0.8rem, 1.15vw, 1.25rem); line-height: 1.2; }
.hero-badge-circle small { font-size: clamp(0.68rem, 0.95vw, 1rem); opacity: 0.9; margin-top: 3px; line-height: 1.2; }

/* SECTION HEADERS */
.section { padding: 96px 0; }
.section-pale { background: var(--pink-pale); }
.section-head { text-align: center; max-width: 680px; margin: 0 auto 56px; }
#advantages .section-head { max-width: 820px; }
#advantages .section-head h2 { font-size: clamp(1.5rem, 5.5vw, 2.25rem); }
#advantages .feature-row { max-width: 1040px; margin: 0 auto; }
#how .steps { max-width: 1040px; margin: 0 auto; }

/* HOW + VIDEO MERGED LAYOUT */
.how-grid { display: grid; grid-template-columns: 340px 1fr; gap: 56px; align-items: center; max-width: 1040px; margin: 0 auto; }
.how-video .video-wrap { max-width: 100%; margin: 0; }

.steps-vertical { display: flex; flex-direction: column; }
.step-v { display: flex; gap: 20px; position: relative; padding-bottom: 30px; }
.step-v:last-child { padding-bottom: 0; }
.step-v:not(:last-child)::before {
  content: ""; position: absolute; left: 27px; top: 56px; bottom: 4px; width: 2px;
  background-image: linear-gradient(var(--pink) 50%, transparent 0);
  background-size: 2px 9px; background-repeat: repeat-y; opacity: 0.45;
}
.step-v-circle {
  width: 56px; height: 56px; border-radius: 50%; background: var(--pink-light);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0; z-index: 1;
}
.step-v-circle svg { width: 26px; height: 26px; color: var(--pink); }
.step-v-img { width: 32px; height: 32px; object-fit: contain; }
.icon-mask-heel {
  display: block;
  background-color: var(--pink);
  -webkit-mask: url('../assets/icon-heel-hand-bold.png') center / contain no-repeat;
  mask: url('../assets/icon-heel-hand-bold.png') center / contain no-repeat;
}
.step-v-circle-heart { position: relative; }
.step-heart-badge {
  position: absolute; bottom: -2px; right: -2px; width: 18px; height: 18px;
  background: white; border-radius: 50%; padding: 2px; box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}
.step-v-text h4 { font-weight: 800; font-size: 0.95rem; text-transform: uppercase; letter-spacing: 0.01em; margin-bottom: 6px; padding-top: 8px; }
.step-v-text p { color: var(--ink-soft); font-size: 0.9rem; }
.eyebrow {
  display: inline-block;
  color: var(--pink-dark); font-weight: 800; font-size: 0.85rem;
  text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 14px;
}
.section-head h2 {
  font-size: clamp(1.6rem, 6vw, 2.6rem); font-weight: 800; letter-spacing: -0.02em; margin-bottom: 14px; color: var(--ink);
}
.section-head p { color: var(--ink-soft); font-size: clamp(0.9rem, 2.6vw, 1.1rem); }

/* AROMA GRID */
.aroma-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; }
.aroma-card {
  background: white; border-radius: var(--radius); overflow: hidden;
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
  transition: transform .2s, box-shadow .2s;
}
.aroma-card:hover { transform: translateY(-6px); box-shadow: 0 16px 36px rgba(0,0,0,0.1); }
.aroma-swatch { aspect-ratio: 3/4; overflow: hidden; position: relative; }
.aroma-swatch img { width: 100%; height: 100%; object-fit: cover; display: block; }
.aroma-body { padding: 22px; }
.aroma-body h3 { font-size: 1.05rem; font-weight: 800; margin-bottom: 8px; white-space: nowrap; }
@media (max-width: 480px) {
  .aroma-body { padding: 14px; }
  .aroma-body h3 { font-size: 0.82rem; }
  .aroma-body .sku-row { flex-direction: column; align-items: flex-start; gap: 2px; }
  .add-to-cart-btn { padding: 12px 6px; font-size: 0.8rem; }
}
@media (max-width: 549px) {
  .contact-method-btn { padding: 12px 4px; font-size: 0.78rem; gap: 4px; }
  .contact-method-btn span { display: none; }
  .contact-method-btn svg { width: 20px; height: 20px; }
}
@media (max-width: 420px) {
  .aroma-body h3 { white-space: normal; font-size: 0.85rem; }
}
.aroma-body h3.title-lavender { color: #7c3aed; }
.aroma-body h3.title-citrus { color: #ea580c; }
.aroma-body h3.title-lagoon { color: #0891b2; }
.aroma-body h3.title-rose { color: #db2777; }
.aroma-body p { color: var(--ink-soft); font-size: 0.92rem; margin-bottom: 16px; min-height: 42px; }
.aroma-body .price-note { font-size: 0.82rem; font-weight: 700; color: var(--pink-dark); margin-top: 8px; }
.aroma-body .sku-row { display: flex; justify-content: space-between; align-items: center; padding-top: 14px; border-top: 1px solid #f0e3ee; font-size: 0.8rem; }
.aroma-body .sku-row .label { color: #a08a99; text-transform: uppercase; letter-spacing: 0.05em; font-weight: 600; }
.aroma-body .sku-row .value { color: var(--pink-dark); font-weight: 800; }

.swatch-lavender { background: linear-gradient(135deg,#c4b5fd,#a78bfa); }
.swatch-citrus { background: linear-gradient(135deg,#fdba74,#fb923c); }
.swatch-lagoon { background: linear-gradient(135deg,#7dd3fc,#38bdf8); }
.swatch-rose { background: linear-gradient(135deg,#f9a8d4,#ec4899); }

/* QTY STEPPER + ADD TO CART */
.qty-row { display: flex; align-items: center; gap: 10px; margin: 14px 0 12px; }
.qty-btn {
  width: 34px; height: 34px; border-radius: 10px; border: 1px solid #e5e0e8; background: white;
  font-size: 1.1rem; font-weight: 700; color: var(--pink-dark); cursor: pointer; line-height: 1;
  display: flex; align-items: center; justify-content: center; transition: border-color .15s;
}
.qty-btn:hover { border-color: var(--pink); }
.qty-input {
  width: 46px; text-align: center; border: 1px solid #e5e0e8; border-radius: 10px;
  padding: 8px 4px; font-weight: 700; font-size: 0.95rem; color: var(--ink);
}
.qty-input:focus { outline: 2px solid var(--pink-light); border-color: var(--pink); }
.add-to-cart-btn { width: 100%; padding: 11px; font-size: 0.9rem; }
.add-to-cart-btn.added { background: var(--pink); color: white; border-color: var(--pink); }

/* CART BAR */
.cart-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 60;
  background: white; border-top: 1px solid #f0dde8; box-shadow: 0 -8px 24px rgba(0,0,0,0.08);
  padding: 14px 0;
}
.cart-bar-inner { display: flex; align-items: center; justify-content: space-between; }
#cartBarCount { font-weight: 700; color: var(--ink); }

/* ORDER SECTION */
.order-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
.order-items-card {
  background: white; border: 1px solid #f2e6ee; border-radius: var(--radius); padding: 28px;
}
.order-items-card h3 { font-weight: 800; font-size: 1.15rem; margin-bottom: 16px; }
.order-empty { color: var(--ink-soft); font-size: 0.92rem; }
.order-item-row {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 0; border-bottom: 1px solid #f2e6ee;
}
.order-item-row:last-child { border-bottom: none; }
.order-item-thumb {
  width: 48px; height: 48px; border-radius: 10px; object-fit: cover; flex-shrink: 0;
  background: var(--pink-pale);
}
.order-item-thumb-empty { border: 1px dashed #e5d3de; }
.order-item-info { flex: 1; min-width: 0; }
.order-item-name { font-weight: 700; font-size: 0.92rem; margin-bottom: 4px; }
.order-item-qty-row { display: flex; align-items: center; gap: 8px; }
.order-qty-btn {
  width: 24px; height: 24px; border-radius: 7px; border: 1px solid #e5e0e8; background: white;
  color: var(--pink-dark); font-weight: 700; font-size: 0.9rem; cursor: pointer; line-height: 1;
  display: flex; align-items: center; justify-content: center;
}
.order-qty-btn:hover { border-color: var(--pink); }
.order-item-qty { color: var(--ink-soft); font-size: 0.85rem; font-weight: 700; min-width: 16px; text-align: center; }
.order-item-remove {
  background: none; border: none; color: #b3a7ae; font-size: 1.1rem; cursor: pointer; line-height: 1; padding: 4px; flex-shrink: 0;
}
.order-item-remove:hover { color: var(--pink-dark); }
.order-total-row { display: flex; justify-content: space-between; padding-top: 16px; margin-top: 8px; border-top: 2px solid #f2e6ee; font-weight: 800; }

/* FEATURE GRID */
/* FEATURE ROW (divided columns, line icons — no cards) */
.feature-row { display: flex; justify-content: space-between; gap: 0; }
.feature-item { flex: 1; text-align: center; padding: 0 16px; position: relative; }
.feature-item:not(:last-child)::after {
  content: ""; position: absolute; right: 0; top: 4px; bottom: 4px; width: 1px; background: #ecd6e5;
}
.feature-svg { width: 44px; height: 44px; color: var(--pink); margin: 0 auto 16px; display: block; }
.feature-item h3 {
  font-weight: 800; font-size: 0.92rem; text-transform: uppercase;
  letter-spacing: 0.02em; margin-bottom: 10px; color: var(--ink);
}
.feature-item p { color: var(--ink-soft); font-size: 0.85rem; line-height: 1.45; }

/* STEPS */
.steps { display: flex; align-items: flex-start; justify-content: space-between; gap: 8px; }
.step { text-align: center; flex: 1; max-width: 190px; }
.step-circle {
  width: 78px; height: 78px; border-radius: 50%; background: var(--pink-light);
  display:flex; align-items:center; justify-content:center;
  margin: 0 auto 20px;
}
.step-svg { width: 32px; height: 32px; color: var(--pink); }
.step h4 { font-weight: 800; font-size: 0.95rem; text-transform: uppercase; letter-spacing: 0.01em; margin-bottom: 8px; }
.step p { color: var(--ink-soft); font-size: 0.88rem; }
.step-arrow { color: var(--pink); opacity: 0.6; padding-top: 33px; flex-shrink: 0; }
.step-arrow-svg { width: 46px; height: 12px; display: block; }

/* WHOLESALE SPLIT */
.wholesale-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}
.wholesale-left {
  background: linear-gradient(135deg, #c9127a, #831843);
  color: white;
  padding: 56px;
}
.wholesale-left .pill-badge { background: rgba(255,255,255,0.14); border: none; color: white; }
.wholesale-left h2 { font-size: 2.2rem; font-weight: 800; margin-bottom: 28px; line-height: 1.15; }
.wholesale-left .perks { display: flex; flex-direction: column; gap: 20px; }
.wholesale-left .perks li { display: flex; gap: 14px; font-size: 1rem; font-weight: 600; align-items: flex-start; }
.wholesale-left .perks .check {
  width: 26px; height: 26px; border-radius: 50%; background: rgba(255,255,255,0.18);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 2px;
}
.wholesale-right { background: white; padding: 56px; }
.form-card {
  background: white; border: 1px solid #f2e6ee; border-radius: var(--radius);
  padding: 32px; box-shadow: var(--shadow); min-width: 0;
}
.form-card h3 { font-size: 1.3rem; font-weight: 800; margin-bottom: 8px; }
.form-card .hint { color: var(--ink-soft); font-size: 0.92rem; margin-bottom: 26px; }
.field-label { font-size: 0.78rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.06em; color: #6b7280; margin-bottom: 8px; display: block; }
.form-card input, .form-card textarea {
  width: 100%; padding: 14px 16px; margin-bottom: 20px;
  border: 1px solid #e5e0e8; border-radius: 12px; font-size: 0.98rem;
  font-family: inherit;
}
.form-card input:focus, .form-card textarea:focus { outline: 2px solid var(--pink-light); border-color: var(--pink); }
.form-card button { width: 100%; justify-content: center; }
.form-note { font-size: 0.78rem; color: var(--ink-soft); margin-top: 14px; text-align: center; }
.form-note a, .consent-check a { color: var(--pink-dark); text-decoration: underline; text-underline-offset: 2px; }
.form-note a:hover, .consent-check a:hover { color: var(--pink); }

.consent-check {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  margin-bottom: 18px; cursor: pointer; font-size: 0.85rem; color: var(--ink-soft); line-height: 1.4;
}
.consent-check input[type="checkbox"] {
  width: 19px; height: 19px; flex-shrink: 0; margin: 0; cursor: pointer; accent-color: var(--pink);
}

/* LEAD FORM: honeypot, phone mask, contact-method selector */
.hp-wrap { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.field-label em { font-style: normal; font-weight: 600; color: var(--ink-soft); text-transform: none; letter-spacing: 0; opacity: .75; }
.phone-field { display: flex; align-items: center; margin-bottom: 20px; border: 1px solid #e5e0e8; border-radius: 12px; overflow: hidden; }
.phone-field:focus-within { outline: 2px solid var(--pink-light); border-color: var(--pink); }
.phone-prefix { padding: 14px 12px 14px 16px; font-weight: 700; color: var(--ink); background: var(--pink-pale); border-right: 1px solid #e5e0e8; }
.phone-field input.phone-input { border: none; margin-bottom: 0; border-radius: 0; flex: 1; }
.phone-field input.phone-input:focus { outline: none; }
.contact-method-group { margin-bottom: 20px; }
.contact-method-buttons { display: flex; gap: 10px; margin-top: 8px; }
.contact-method-btn {
  flex: 1; min-width: 0; padding: 12px 10px; border: 1px solid #e5e0e8; border-radius: 12px;
  background: white; font-weight: 700; font-size: 0.9rem; color: var(--ink);
  cursor: pointer; transition: all .15s;
  display: flex; align-items: center; justify-content: center; gap: 6px;
}
.contact-method-btn svg { flex-shrink: 0; }
.contact-method-btn span { overflow: hidden; text-overflow: ellipsis; }
.contact-method-btn:hover { border-color: var(--pink); }
.contact-method-btn[data-method="whatsapp"]:hover { border-color: #25D366; color: #128C4A; }
.contact-method-btn[data-method="telegram"]:hover { border-color: #229ED9; color: #1678A6; }
.contact-method-btn[data-method="max"]:hover { border-color: #7C4DFF; color: #6234D6; }
.contact-method-btn.active {
  background: var(--pink); border-color: var(--pink); color: white;
  box-shadow: 0 6px 16px rgba(201,18,122,0.28);
}
.contact-method-btn[data-method="whatsapp"].active { background: #25D366; border-color: #25D366; box-shadow: 0 6px 16px rgba(37,211,102,0.32); }
.contact-method-btn[data-method="telegram"].active { background: #229ED9; border-color: #229ED9; box-shadow: 0 6px 16px rgba(34,158,217,0.32); }
.contact-method-btn[data-method="max"].active { background: #7C4DFF; border-color: #7C4DFF; box-shadow: 0 6px 16px rgba(124,77,255,0.32); }
.form-error {
  background: #fdecec; color: #c0392b; border: 1px solid #f5c6c6;
  border-radius: 10px; padding: 10px 14px; font-size: 0.88rem; margin-bottom: 16px;
}
.form-card button[disabled] { opacity: .6; cursor: not-allowed; }

/* PLACEHOLDER SECTION */
.placeholder-section { text-align: center; padding: 64px 0; color: var(--ink-soft); }
.placeholder-section .badge-note {
  display: inline-block; background: var(--pink-light); color: var(--pink-dark);
  font-weight: 700; font-size: 0.85rem; padding: 8px 16px; border-radius: 999px;
}

/* USAGE VIDEO */
.video-wrap {
  max-width: 420px; margin: 0 auto;
  border-radius: 24px; overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,0.14);
  position: relative;
  aspect-ratio: 3/4;
  background: #000;
}
.video-wrap video { width: 100%; height: 100%; object-fit: cover; display: block; }
.video-mute-btn {
  position: absolute; bottom: 18px; right: 18px;
  width: 48px; height: 48px; border-radius: 50%;
  background: rgba(255,255,255,0.92); border: none;
  font-size: 1.3rem; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 18px rgba(0,0,0,0.2);
  transition: transform .15s;
}
.video-mute-btn:hover { transform: scale(1.08); }

/* FOOTER */
.footer { background: var(--navy); color: #a8a5b8; padding: 64px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 40px; margin-bottom: 44px; }
.footer .logo-text { color: white; }
.footer .logo-text span { color: var(--pink); }
.footer-desc { margin-top: 16px; font-size: 0.95rem; line-height: 1.6; max-width: 32ch; }
.footer h4 { color: white; font-weight: 800; margin-bottom: 18px; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.06em; }
.footer-links { display: grid; grid-template-columns: 1fr 1fr; gap: 8px 56px; }
.footer-links a { display: block; padding: 6px 0; font-size: 0.95rem; color: #c3c1d1; }
.footer-links a:hover { color: white; }
.footer-contact li { display: flex; align-items: center; gap: 10px; font-size: 0.95rem; margin-bottom: 14px; color: #c3c1d1; }
.footer .bottom { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 24px; font-size: 0.85rem; color: #6b6880; text-align: center; }

.nav-burger {
  display: none; width: 40px; height: 40px; border: none; background: none; cursor: pointer;
  flex-direction: column; align-items: center; justify-content: center; gap: 5px; flex-shrink: 0;
}
.nav-burger span { display: block; width: 22px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform .2s, opacity .2s; }
.nav-burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav-panel {
  display: none;
  flex-direction: column;
  padding: 8px 24px 20px;
  border-top: 1px solid #f3e3ee;
  background: white;
}
.mobile-nav-panel a {
  padding: 12px 0; font-weight: 600; color: var(--ink); text-decoration: none;
  border-bottom: 1px solid #f5eaf1;
}
.mobile-nav-panel.open { display: flex; }

@media (max-width: 699px) {
  .nav-links { display: none; }
  .nav-burger { display: flex; }
  .pulse-btn { display: none; }
  .hero { aspect-ratio: unset; }
  .hero-media { position: relative; }
  .hero-bg-image { position: static; width: 100%; height: 22vh; min-height: 130px; max-height: 220px; aspect-ratio: unset; object-position: 65% 30%; }
  .hero-overlay-content { position: static; max-width: 100%; padding: 20px 22px 24px; background: var(--lavender-bg); gap: 10px; text-align: center; align-items: center; }
  .hero-overlay-content h1 { font-size: clamp(1.5rem, 7vw, 2.1rem); }
  .hero-overlay-content p.lead { font-size: 0.88rem; }
  .hero-badges { margin-bottom: 14px; justify-content: center; }
  .badge-icon-circle { width: 46px; height: 46px; }
  .hero-ctas { flex-wrap: wrap; margin-top: 4px; gap: 8px; justify-content: center; }
  .hero-ctas .btn { padding: 11px 18px; font-size: 0.85rem; }
  .hero-badge-circle { display: none; }
  #advantages .feature-row {
    display: grid; grid-template-columns: 1fr 1fr; gap: 14px; max-width: 100%;
  }
  #advantages .feature-row > * { min-width: 0; }
  .feature-item {
    flex: none; padding: 18px 12px; background: white; border-radius: 16px;
    box-shadow: 0 4px 16px rgba(201,18,122,0.08); margin-bottom: 0;
  }
  .feature-item:not(:last-child)::after { display: none; }
  .feature-svg { width: 36px; height: 36px; margin-bottom: 10px; }
  .feature-item h3 { font-size: 0.82rem; }
  .feature-item p { font-size: 0.76rem; }
  .mobile-nav-panel a.btn { padding: 12px 24px 12px 4px; text-align: left; justify-content: flex-start; }
  .mobile-nav-panel a.btn.pulse-btn-mobile { display: flex; animation: pulseGlow 1.8s ease-in-out infinite; }
}
@media (max-width: 699px) {
  #advantages .feature-row { grid-template-columns: 1fr; }
}
@media (max-width: 699px) and (max-height: 520px) {
  .hero-bg-image { height: 16vh; min-height: 90px; max-height: 130px; }
  .hero-overlay-content { padding: 14px 20px 16px; gap: 6px; }
  .hero-overlay-content h1 { font-size: clamp(1.3rem, 6.5vw, 1.7rem); }
  .hero-overlay-content p.lead { font-size: 0.8rem; }
  .hero-badges { margin-bottom: 8px; }
  .badge-icon-circle { width: 38px; height: 38px; }
  .badge-box { font-size: 0.65rem; gap: 4px; padding: 0 8px; }
  .hero-ctas .btn { padding: 8px 14px; font-size: 0.78rem; }
}

/* Two-column wholesale-promo squeezes the form column in this range — shrink the method buttons so text doesn't get ellipsis-cut */
@media (min-width: 961px) and (max-width: 1180px) {
  .contact-method-btn { padding: 10px 3px; font-size: 0.7rem; gap: 3px; }
  .contact-method-btn svg { width: 14px; height: 14px; }
}

/* RESPONSIVE */
@media (max-width: 960px) {
  h1, h2, h3, h4, b, strong, p { overflow-wrap: break-word; }
  .wholesale-promo { grid-template-columns: 1fr; padding: 32px 22px; }
  .wholesale-benefits { grid-template-columns: 1fr 1fr; }
  .aroma-grid { grid-template-columns: repeat(2,1fr); }
  .feature-row { flex-wrap: wrap; }
  .how-grid { grid-template-columns: 1fr; gap: 32px; }
  .how-video .video-wrap { max-width: 280px; margin: 0 auto; }
  .order-grid { grid-template-columns: 1fr; }
  body { padding-bottom: 0; }
  .cart-bar-inner { flex-direction: column; gap: 10px; text-align: center; }
  .feature-item { flex: 0 0 50%; margin-bottom: 28px; }
  .feature-item:not(:last-child)::after { display: none; }
  .steps { flex-direction: column; align-items: center; }
  .step-arrow-svg { transform: rotate(90deg); }
  .step-arrow { padding: 8px 0; }
  .wholesale-split { grid-template-columns: 1fr; }
  .wholesale-left, .wholesale-right { padding: 36px 28px; }
  .footer-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .wholesale-benefit b { font-size: 0.72rem; }
  .footer-links { grid-template-columns: 1fr; gap: 2px; }
}
@media (max-width: 340px) {
  .wholesale-promo { padding: 24px 16px; }
  .wholesale-benefits { grid-template-columns: 1fr; }
  .contact-method-btn { padding: 10px 4px; font-size: 0.78rem; }
  .contact-method-buttons { gap: 6px; }
}

/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 999;
  background: white; border-top: 1px solid #f0dbe9;
  box-shadow: 0 -8px 32px rgba(60, 20, 45, 0.12);
  padding: 18px 24px; animation: cookieSlideUp .35s ease-out;
}
.cookie-banner-hide { animation: cookieSlideDown .3s ease-in forwards; }
@keyframes cookieSlideUp { from { transform: translateY(100%); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
@keyframes cookieSlideDown { from { transform: translateY(0); opacity: 1; } to { transform: translateY(100%); opacity: 0; } }
.cookie-banner-inner {
  max-width: 1220px; margin: 0 auto; display: flex; align-items: center;
  justify-content: space-between; gap: 24px; flex-wrap: wrap;
}
.cookie-banner-inner p { font-size: 0.88rem; color: var(--ink-soft); line-height: 1.5; margin: 0; flex: 1 1 380px; }
.cookie-banner-inner p a { color: var(--pink-dark); text-decoration: underline; text-underline-offset: 2px; }
.cookie-banner-inner p a:hover { color: var(--pink); }
.cookie-banner-actions { display: flex; gap: 12px; flex-shrink: 0; }
.cookie-banner-actions .btn { padding: 11px 22px; font-size: 0.85rem; white-space: nowrap; }
@media (max-width: 640px) {
  .cookie-banner { padding: 16px 18px; max-height: 90vh; overflow-y: auto; }
  .cookie-banner-inner { flex-direction: column; align-items: stretch; gap: 14px; }
  .cookie-banner-inner p { flex: 0 1 auto; }
  .cookie-banner-actions { flex-direction: column; }
  .cookie-banner-actions .btn { width: 100%; justify-content: center; }
}
