:root {
  --ink: #2f1850;
  --ink-2: #4d246f;
  --ink-3: #6b3aa0;
  --lime: #c9ea12;
  --lime-2: #dff44a;
  --pink: #ff7ecf;
  --pink-soft: #ffd6f0;
  --pink-bg: #ffe0ea;
  --peach-bg: #ffe9d6;
  --cream: #fff8ea;
  --cream-2: #fff1d6;
  --tape: #ffd84d;
  --paper: #ffffff;
  --shadow-hard: 4px 4px 0 var(--ink);
  --radius: 18px;
  --safe-b: env(safe-area-inset-bottom, 0px);
  --safe-t: env(safe-area-inset-top, 0px);
}

* { box-sizing: border-box; -webkit-tap-highlight-color: transparent; }
html { -webkit-text-size-adjust: 100%; }
html, body {
  margin: 0;
  padding: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: "poppins-medium", system-ui, -apple-system, sans-serif;
  overflow-x: hidden;
}
body.landing-page {
  background:
    linear-gradient(180deg, #ffe5ef 0%, #ffe9d6 35%, #fff1d6 70%, #fff8ea 100%);
  background-attachment: fixed;
  min-height: 100vh;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { font: inherit; cursor: pointer; }

/* ============================================================
   MOBILE-FIRST
   ============================================================ */

/* === Header === */
.lp-header-wrap {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--paper);
  border-bottom: 1.5px solid var(--ink);
  padding-top: var(--safe-t);
}
.lp-header {
  display: grid;
  grid-template-columns: 40px 1fr auto;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  max-width: 1200px;
  margin: 0 auto;
}
.lp-menu-btn {
  width: 40px; height: 40px;
  border-radius: 10px;
  border: none;
  background: transparent;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.lp-menu-btn svg { width: 22px; height: 22px; }
.lp-logo {
  justify-self: center;
  display: inline-flex;
  align-items: center;
}
.lp-logo img { height: 28px; width: auto; display: block; }
.lp-header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}
.lp-icon-btn {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1.5px solid var(--ink);
  background: var(--paper);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  transition: transform 0.15s ease, background 0.18s ease;
  padding: 0;
}
.lp-icon-btn.wa { background: #25d366; color: white; border-color: #1aa84e; }
.lp-icon-btn.profile { background: var(--lime); }

/* desktop nav hidden on mobile */
.lp-nav { display: none; }

/* Lime deals strip */
.lp-deals {
  background: var(--lime);
  color: var(--ink);
  border-bottom: 1.5px solid var(--ink);
  overflow: hidden;
  white-space: nowrap;
  font-family: "poppins-bold", sans-serif;
  font-size: 12px;
  padding: 8px 0;
  letter-spacing: 0.3px;
}
.lp-deals-track {
  display: inline-block;
  animation: marquee 24s linear infinite;
  padding-left: 100%;
}
.lp-deals-track span { margin: 0 18px; }
.lp-deals-track .dot { color: var(--pink); }

/* === Drawer === */
.lp-drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(47, 24, 80, 0.55);
  z-index: 200;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}
.lp-drawer-overlay.open { opacity: 1; pointer-events: auto; }
.lp-drawer {
  position: fixed;
  top: 0; left: 0;
  height: 100vh;
  height: 100dvh;
  width: min(86vw, 360px);
  background: var(--paper);
  border-right: 2px solid var(--ink);
  z-index: 201;
  transform: translateX(-100%);
  transition: transform 0.3s cubic-bezier(.16,1,.3,1);
  display: flex;
  flex-direction: column;
  padding: calc(18px + var(--safe-t)) 22px 22px;
}
.lp-drawer.open { transform: translateX(0); }
.lp-drawer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1.5px dashed var(--ink);
}
.lp-drawer-top img { height: 24px; }
.lp-drawer-close {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1.5px solid var(--ink);
  background: var(--paper);
  font-size: 16px;
}
.lp-drawer h5 {
  font-family: "poppins-bold", sans-serif;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--ink-2);
  margin: 16px 0 4px;
}
.lp-drawer h5:first-of-type { margin-top: 0; }
.lp-drawer a {
  display: block;
  font-family: "poppins-bold", sans-serif;
  font-size: 18px;
  color: var(--ink);
  padding: 11px 0;
  border-bottom: 1px dashed rgba(47, 24, 80, 0.15);
}
.lp-drawer a:last-of-type { border-bottom: none; }
.lp-drawer-cta { margin-top: auto; padding-top: 16px; }
.lp-drawer-cta a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--lime);
  color: var(--ink);
  font-family: "poppins-bold", sans-serif;
  font-size: 15px;
  padding: 14px 22px;
  border-radius: 100px;
  border: 2px solid var(--ink);
  box-shadow: var(--shadow-hard);
  width: 100%;
}

/* === Hero === */
.lp-hero {
  padding: 30px 8px 36px;
  width: calc((100vw - 20px) * 0.95);
  max-width: 1400px;
  margin: 0 auto;
  box-sizing: border-box;
}
.lp-hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--tape);
  color: var(--ink);
  border: 2px solid var(--ink);
  font-family: "poppins-bold", sans-serif;
  font-size: 12px;
  letter-spacing: 1.5px;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 18px;
}
.lp-hero-title {
  font-family: "poppins-black", sans-serif;
  font-size: clamp(54px, 14vw, 80px);
  line-height: 0.9;
  letter-spacing: -2.5px;
  margin: 0 0 18px;
  color: var(--ink);
}
.lp-hero-title em {
  font-style: italic;
  color: var(--pink);
  position: relative;
  display: inline-block;
}
.lp-hero-title em::after {
  content: "";
  position: absolute;
  left: -2%;
  right: -2%;
  bottom: -2px;
  height: 10px;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 14' preserveAspectRatio='none'><path d='M2 10 C 50 2, 90 14, 140 6 S 196 10, 198 6' stroke='%23ff7ecf' stroke-width='5' fill='none' stroke-linecap='round'/></svg>") no-repeat center / 100% 100%;
}
.lp-hero-sub {
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink-2);
  margin: 0;
  max-width: 540px;
}
.lp-hero-sub b {
  background: var(--lime);
  padding: 1px 6px;
  border-radius: 4px;
  font-family: "poppins-bold", sans-serif;
  color: var(--ink);
}

/* === USP marquee === */
.lp-usp {
  background: var(--ink);
  color: var(--paper);
  padding: 14px 0;
  overflow: hidden;
  border-top: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
  white-space: nowrap;
  transform: rotate(-1.5deg);
  margin: 24px -12px 28px;
}
.lp-usp-track {
  display: inline-flex;
  width: max-content;
  animation: marquee-seamless 28s linear infinite;
  font-family: "poppins-black", sans-serif;
  font-size: 20px;
  letter-spacing: -0.3px;
}
.lp-usp-set {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}
.lp-usp-track span { margin: 0 20px; display: inline-flex; align-items: center; gap: 6px; }
.lp-usp-track .pop-lime { color: var(--lime); }
.lp-usp-track .pop-pink { color: var(--pink); }
.lp-usp-track .pop-tape { color: var(--tape); }
.lp-usp-track .dot { color: var(--ink-3); margin: 0 4px; }
.lp-usp-track .ic { display: inline-block; }
@keyframes marquee-seamless {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* === Section heads === */
.lp-section {
  padding: 40px 0 12px;
  width: calc((100vw - 20px) * 0.95);
  max-width: 1400px;
  margin: 0 auto;
  box-sizing: border-box;
}
.lp-section-head h2 {
  font-family: "poppins-black", sans-serif;
  font-size: clamp(38px, 11vw, 56px);
  line-height: 0.95;
  letter-spacing: -1.8px;
  margin: 0 0 10px;
  color: var(--ink);
}
.lp-section-head h2 em {
  font-style: italic;
  color: var(--pink);
  position: relative;
  display: inline-block;
}
.lp-section-head h2 em::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  bottom: 2px;
  height: 7px;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 14' preserveAspectRatio='none'><path d='M2 10 C 50 2, 90 14, 140 6 S 196 10, 198 6' stroke='%23ff7ecf' stroke-width='5' fill='none' stroke-linecap='round'/></svg>") no-repeat center / 100% 100%;
}
.lp-section-head p {
  font-size: 15px;
  color: var(--ink-2);
  line-height: 1.5;
  margin: 0 0 22px;
  max-width: 480px;
}

/* === Products === */
.lp-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 22px;
}
.lp-card {
  position: relative;
  background: var(--paper);
  border: 1.5px solid var(--ink);
  border-radius: var(--radius);
  padding: 10px 10px 12px;
  display: flex;
  flex-direction: column;
  box-shadow: 3px 3px 0 var(--ink);
}
button.lp-card {
  width: 100%;
  text-align: left;
  font: inherit;
  color: inherit;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
}
.lp-card-img {
  position: relative;
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: 12px;
  overflow: hidden;
  background: var(--cream-2);
  margin-bottom: 12px;
}
.lp-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.lp-card-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: var(--tape);
  color: var(--ink);
  font-family: "poppins-black", sans-serif;
  font-size: 11px;
  letter-spacing: 1.2px;
  padding: 6px 12px;
  border-radius: 100px;
  text-transform: uppercase;
  z-index: 3;
}
.lp-card-badge.pink { background: var(--pink); color: var(--ink); }
.lp-card-badge.lime { background: var(--lime); color: var(--ink); }
.lp-card-title {
  font-family: "poppins-black", sans-serif;
  font-size: 26px;
  letter-spacing: -0.8px;
  margin: 0 0 8px;
  color: var(--ink);
}
.lp-card-desc {
  font-size: 14px;
  color: var(--ink-2);
  line-height: 1.55;
  margin: 0 0 18px;
  flex: 1;
}
.lp-card-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--lime);
  color: var(--ink);
  font-family: "poppins-bold", sans-serif;
  font-size: 16px;
  padding: 14px 20px;
  min-height: 50px;
  border-radius: 14px;
  border: 1.5px solid var(--ink);
  transition: background 0.18s ease, color 0.18s ease;
}

/* === Reviews === */
.lp-reviews-stats {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--ink);
  color: var(--paper);
  font-family: "poppins-bold", sans-serif;
  font-size: 13px;
  padding: 9px 16px;
  border-radius: 100px;
  margin-top: 4px;
  margin-bottom: 20px;
}
.lp-reviews-stats .stars { color: var(--tape); letter-spacing: 1px; }
.lp-reviews-track-wrap {
  overflow: hidden;
  padding: 16px 0 28px;
}
.lp-reviews-track {
  display: flex;
  gap: 18px;
  animation: scroll-x 38s linear infinite;
  width: max-content;
  padding-left: 22px;
}
.lp-review {
  flex: 0 0 250px;
  background: var(--paper);
  border: 1.5px solid var(--ink);
  padding: 10px 10px 14px;
  box-shadow: 3px 3px 0 var(--ink);
  transform: rotate(-1deg);
}
.lp-review:nth-child(even) { transform: rotate(1.2deg); }
.lp-review-img {
  width: 100%;
  aspect-ratio: 1/1;
  overflow: hidden;
  background: var(--cream-2);
  margin-bottom: 10px;
  border: 1px solid var(--ink);
}
.lp-review-img img { width: 100%; height: 100%; object-fit: cover; }
.lp-review-stars {
  color: var(--tape);
  font-size: 14px;
  letter-spacing: 1.5px;
  margin-bottom: 6px;
}
.lp-review-quote {
  font-family: "poppins-bold", sans-serif;
  font-size: 14px;
  line-height: 1.4;
  color: var(--ink);
  margin: 0 0 8px;
}
.lp-review-by {
  font-size: 11px;
  color: var(--ink-2);
}

/* lp-footer styles now in footer/footer.css (shared across all pages) */

/* === Sticky mobile bar === */
.lp-mobile-bar {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 90;
  background: var(--paper);
  border-top: 1.5px solid var(--ink);
  padding: 8px 10px calc(8px + var(--safe-b));
  display: flex;
  gap: 8px;
  align-items: center;
}
.lp-mobile-bar-shop {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: var(--lime);
  color: var(--ink);
  font-family: "poppins-black", sans-serif;
  font-size: 15px;
  padding: 12px;
  min-height: 50px;
  border-radius: 14px;
  border: 1.5px solid var(--ink);
}
.lp-mobile-bar-wa {
  width: 50px; height: 50px;
  background: #25d366;
  color: white;
  border: 1.5px solid var(--ink);
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.lp-wa-float { display: none; }

/* === Animations === */
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-100%); }
}
@keyframes scroll-x {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@media (prefers-reduced-motion: reduce) {
  .lp-deals-track, .lp-usp-track, .lp-reviews-track { animation: none !important; }
}

/* ============================================================
   ≥ 640px tablet
   ============================================================ */
@media (min-width: 640px) {
  .lp-header { grid-template-columns: 40px 1fr auto; padding: 12px 22px; }
  .lp-logo img { height: 32px; }
  .lp-hero { padding: 50px 8px 50px; }
  .lp-hero-title { font-size: clamp(64px, 9vw, 80px); }
  .lp-hero-sub { font-size: 17px; }
  .lp-section { padding: 50px 0 16px; }
  .lp-grid { gap: 24px; }
  .lp-review { flex: 0 0 280px; }
}

/* ============================================================
   ≥ 900px desktop
   ============================================================ */
@media (min-width: 900px) {
  .lp-header { grid-template-columns: auto 1fr auto; gap: 30px; padding: 14px 28px; }
  .lp-menu-btn { display: none; }
  .lp-logo { justify-self: start; }
  .lp-logo img { height: 34px; }
  .lp-nav {
    display: flex;
    gap: 4px;
    align-items: center;
    justify-self: center;
  }
  .lp-nav a {
    font-family: "poppins-bold", sans-serif;
    font-size: 14px;
    color: var(--ink);
    padding: 10px 14px;
    border-radius: 100px;
    transition: background 0.18s ease, color 0.18s ease;
  }
  .lp-nav a:hover { background: var(--ink); color: var(--lime); }
  .lp-header { grid-template-columns: auto 1fr auto; }
  body.landing-page { padding-bottom: 0; }
  .lp-mobile-bar { display: none; }
  .lp-wa-float {
    display: flex;
    position: fixed;
    right: 22px; bottom: 22px;
    width: 60px; height: 60px;
    border-radius: 50%;
    background: #25d366;
    border: 2px solid var(--ink);
    box-shadow: var(--shadow-hard);
    align-items: center;
    justify-content: center;
    color: white;
    z-index: 50;
    transition: transform 0.2s ease;
  }
  .lp-wa-float:hover { transform: scale(1.08) rotate(-5deg); }

  .lp-deals { font-size: 13px; padding: 9px 0; }
  .lp-deals-track span { margin: 0 28px; }

  .lp-hero { padding: 32px 8px 20px; }
  .lp-hero-kicker { font-size: 12px; padding: 6px 14px; margin-bottom: 14px; }
  .lp-hero-title { font-size: clamp(56px, 5.4vw, 84px); letter-spacing: -2.5px; line-height: 0.92; margin: 0 0 14px; }
  .lp-hero-title em::after { bottom: -2px; height: 10px; }
  .lp-hero-sub { font-size: 16px; max-width: 600px; }

  .lp-usp { padding: 12px 0; transform: rotate(-1.2deg); margin: 18px -20px 22px; }
  .lp-usp-track { font-size: 22px; animation-duration: 32s; }
  .lp-usp-track span { margin: 0 24px; }

  .lp-section { padding: 24px 0 16px; }
  .lp-section-head h2 { font-size: clamp(40px, 3.6vw, 56px); letter-spacing: -1.8px; margin: 0 0 8px; }
  .lp-section-head h2 em::after { height: 8px; }
  .lp-section-head p { font-size: 16px; margin-bottom: 20px; }
  .lp-grid { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
  .lp-card { padding: 12px 12px 14px; box-shadow: 4px 4px 0 var(--ink); transition: transform 0.3s ease, box-shadow 0.3s ease; }
  .lp-card:hover { transform: translateY(-6px); box-shadow: 8px 8px 0 var(--ink); }
  .lp-card-title { font-size: 28px; }
  .lp-card-cta { font-size: 17px; }
  .lp-card:hover .lp-card-cta { background: var(--ink); color: var(--lime); }

  .lp-reviews-track { gap: 24px; animation-duration: 42s; padding-left: 32px; }
  .lp-reviews-track-wrap:hover .lp-reviews-track { animation-play-state: paused; }
  .lp-review { flex: 0 0 300px; padding: 12px 12px 18px; }
  .lp-review-quote { font-size: 15px; }

}

.lp-toast[hidden] { display: none; }
.lp-toast {
  position: fixed;
  bottom: calc(28px + env(safe-area-inset-bottom));
  left: 50%;
  transform: translateX(-50%);
  background: var(--ink, #111);
  color: #fff;
  padding: 12px 20px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  z-index: 1100;
  opacity: 0;
  transition: opacity 0.2s ease;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
  pointer-events: none;
  max-width: calc(100vw - 32px);
  text-align: center;
}
.lp-toast.is-visible { opacity: 1; }
