:root {
  --bg: #fff7fb;
  --dark: #30122f;
  --dark2: #42183e;
  --pink: #ff5c8a;
  --pink2: #ff86aa;
  --yellow: #ffd66b;
  --purple: #8c63ff;
  --text: #2d1630;
  --muted: #735c75;
  --line: rgba(70, 20, 75, .10);
  --card: #ffffff;
  --shadow: 0 24px 70px rgba(98, 38, 98, .14);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: Inter, Arial, Helvetica, sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
.shell { width: min(1180px, calc(100% - 40px)); margin-inline: auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 247, 251, .82);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}

.navbar {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  color: #fff;
  background: linear-gradient(135deg, var(--pink), var(--purple));
  font-weight: 950;
  font-size: 28px;
  box-shadow: 0 16px 34px rgba(255, 92, 138, .25);
}

.brand-text strong {
  display: block;
  font-size: 24px;
  letter-spacing: -.5px;
}

.brand-text strong span { color: var(--pink); }

.brand-text small {
  display: block;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 1.8px;
  font-size: 10px;
  font-weight: 900;
}

.nav-panel {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-panel a {
  font-weight: 900;
  color: var(--dark);
  position: relative;
  padding: 10px 0;
}

.nav-panel a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 3px;
  width: 0;
  height: 2px;
  background: var(--pink);
  transition: .25s;
}

.nav-panel a:hover::after,
.nav-panel a.active::after { width: 100%; }

.nav-share,
.btn {
  min-height: 48px;
  border-radius: 16px;
  border: 0;
  padding: 0 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-weight: 950;
  transition: .25s;
}

.nav-share {
  background: #fff;
  border: 1px solid var(--line);
  color: var(--dark);
  box-shadow: 0 12px 32px rgba(98, 38, 98, .10);
}

.btn:hover,
.nav-share:hover { transform: translateY(-2px); }

.btn-primary {
  color: #39112e;
  background: linear-gradient(135deg, var(--yellow), #ffb86c);
  box-shadow: 0 18px 44px rgba(255, 184, 108, .25);
}

.btn-outline {
  color: var(--dark);
  background: rgba(255,255,255,.65);
  border: 1px solid rgba(255, 92, 138, .24);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 14px;
  background: #fff;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: var(--dark);
}

.hero {
  position: relative;
  padding: 76px 0 82px;
  background:
    radial-gradient(circle at 82% 12%, rgba(255, 214, 107, .24), transparent 30%),
    radial-gradient(circle at 16% 28%, rgba(255, 92, 138, .18), transparent 26%),
    linear-gradient(135deg, #fff7fb 0%, #ffe7f0 55%, #fff4d3 100%);
  overflow: hidden;
}

.hero-glow {
  position: absolute;
  border-radius: 999px;
  filter: blur(10px);
  pointer-events: none;
}

.hero-glow-one {
  width: 360px;
  height: 360px;
  right: -80px;
  top: 60px;
  border: 2px solid rgba(255, 92, 138, .18);
}

.hero-glow-two {
  width: 280px;
  height: 280px;
  left: -90px;
  bottom: 40px;
  border: 2px solid rgba(140, 99, 255, .15);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr .85fr;
  gap: 36px;
  align-items: center;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 16px;
  color: var(--pink);
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 12px;
  font-weight: 950;
}

.hero h1 {
  max-width: 760px;
  font-size: clamp(44px, 7vw, 82px);
  line-height: .98;
  letter-spacing: -3px;
}

.hero-text {
  max-width: 650px;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.6;
  margin: 24px 0 24px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.affiliate-note {
  margin-top: 18px;
  color: #76566f;
  font-size: 14px;
  line-height: 1.45;
}

.hero-card {
  padding: 24px;
  border-radius: 34px;
  background: rgba(255,255,255,.76);
  border: 1px solid rgba(255,255,255,.76);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.hero-card-top {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 18px;
  font-size: 22px;
}

.hero-card-top span {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--pink), var(--purple));
}

.hero-category-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 22px;
}

.hero-category-list span {
  padding: 9px 13px;
  border-radius: 999px;
  background: #fff1f6;
  color: var(--dark);
  font-weight: 850;
}

.hero-mini-products {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.hero-mini-products div {
  overflow: hidden;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(98, 38, 98, .10);
}

.hero-mini-products img {
  aspect-ratio: 1;
  object-fit: cover;
}

.hero-mini-products span {
  display: block;
  padding: 10px;
  font-size: 13px;
  font-weight: 900;
  text-align: center;
}

.section { padding: 76px 0; }

.strip-section {
  padding: 0;
  transform: translateY(-34px);
  position: relative;
  z-index: 4;
}

.benefit-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  overflow: hidden;
  border-radius: 26px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.benefit-strip div {
  padding: 22px;
  border-right: 1px solid var(--line);
}

.benefit-strip div:last-child { border-right: 0; }
.benefit-strip strong { display: block; margin-bottom: 6px; }
.benefit-strip span { color: var(--muted); line-height: 1.45; font-size: 14px; }

.section-heading {
  max-width: 760px;
  margin-bottom: 32px;
}

.section-heading.center {
  margin-inline: auto;
  text-align: center;
}

.section-heading h2 {
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.06;
  letter-spacing: -1.6px;
}

.section-heading p {
  margin-top: 12px;
  color: var(--muted);
  line-height: 1.6;
  font-size: 18px;
}

.filters {
  display: grid;
  gap: 16px;
  margin-bottom: 28px;
}

.search-box {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 58px;
  padding: 0 18px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 14px 34px rgba(98, 38, 98, .08);
}

.search-box input {
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--text);
}

.category-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.category-pill {
  min-height: 42px;
  padding: 0 15px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--dark);
  cursor: pointer;
  font-weight: 900;
}

.category-pill.active {
  background: linear-gradient(135deg, var(--pink), var(--purple));
  color: #fff;
}

.products-section {
  background: linear-gradient(180deg, #fff7fb 0%, #fff 100%);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.product-card {
  overflow: hidden;
  border-radius: 24px;
  background: var(--card);
  border: 1px solid var(--line);
  box-shadow: 0 18px 42px rgba(98, 38, 98, .10);
  display: flex;
  flex-direction: column;
}

.product-image {
  position: relative;
  background: #fff1f6;
}

.product-image img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 8px 11px;
  border-radius: 999px;
  background: rgba(255,255,255,.92);
  color: var(--pink);
  font-size: 12px;
  font-weight: 950;
  box-shadow: 0 10px 24px rgba(0,0,0,.08);
}

.product-body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.product-category {
  color: var(--purple);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.product-body h3 {
  font-size: 20px;
  line-height: 1.18;
  margin-bottom: 8px;
}

.product-body p {
  color: var(--muted);
  line-height: 1.48;
  font-size: 14px;
  margin-bottom: 12px;
}

.price-text {
  margin-top: auto;
  color: var(--dark);
  font-weight: 900;
  margin-bottom: 12px;
}

.product-actions {
  display: grid;
  gap: 9px;
}

.product-actions a,
.product-actions button {
  min-height: 44px;
  border-radius: 14px;
  border: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 950;
  cursor: pointer;
}

.product-actions a {
  background: linear-gradient(135deg, var(--pink), var(--purple));
  color: #fff;
}

.product-actions button {
  background: #fff4d3;
  color: var(--dark);
}

.empty-state {
  text-align: center;
  padding: 50px 20px;
  color: var(--muted);
}

.transparency-section {
  background:
    radial-gradient(circle at 80% 0%, rgba(255, 214, 107, .16), transparent 25%),
    linear-gradient(135deg, var(--dark), var(--dark2));
  color: #fff;
}

.transparency-card {
  display: grid;
  grid-template-columns: .75fr 1.25fr;
  gap: 30px;
  align-items: start;
  padding: 34px;
  border-radius: 30px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: var(--shadow);
}

.transparency-card h2 {
  font-size: clamp(32px, 5vw, 54px);
  line-height: 1.05;
}

.transparency-card p {
  color: #f5dfee;
  line-height: 1.68;
  font-size: 17px;
  margin-bottom: 12px;
}

.floating-share {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 60;
  width: 56px;
  height: 56px;
  border: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pink), var(--purple));
  color: #fff;
  box-shadow: 0 18px 40px rgba(98, 38, 98, .25);
  font-weight: 950;
  cursor: pointer;
}

.share-toast {
  position: fixed;
  left: 50%;
  bottom: 22px;
  z-index: 999;
  transform: translate(-50%, 18px);
  padding: 13px 18px;
  border-radius: 14px;
  background: rgba(48,18,47,.96);
  color: #fff;
  font-weight: 800;
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transition: .25s;
}

.share-toast.visible {
  opacity: 1;
  transform: translate(-50%, 0);
}

.site-footer {
  padding: 34px 0;
  background: #fff;
  border-top: 1px solid var(--line);
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  color: var(--muted);
}

.footer-grid strong {
  color: var(--dark);
  font-size: 24px;
}

.footer-grid strong span { color: var(--pink); }

.footer-grid p { margin-top: 7px; }
.footer-grid a { display: block; font-weight: 900; margin-bottom: 8px; }

.reveal { opacity: 0; transform: translateY(18px); transition: .7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: .12s; }

@media (max-width: 1080px) {
  .product-grid { grid-template-columns: repeat(3, 1fr); }
  .hero-grid,
  .transparency-card { grid-template-columns: 1fr; }
}

@media (max-width: 820px) {
  .nav-share { display: none; }
  .nav-toggle { display: block; }
  .nav-panel {
    position: absolute;
    top: 78px;
    left: 18px;
    right: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 14px;
    border-radius: 18px;
    background: rgba(255,255,255,.98);
    box-shadow: var(--shadow);
    border: 1px solid var(--line);
  }
  .nav-panel.open { display: flex; }
  .nav-panel a { text-align: center; padding: 14px; }
  .nav-panel a::after { display: none; }

  .benefit-strip { grid-template-columns: 1fr 1fr; }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 560px) {
  .shell { width: min(100% - 28px, 1180px); }
  .navbar { min-height: 70px; }
  .brand-text strong { font-size: 19px; }
  .brand-text small { display: none; }
  .brand-mark { width: 44px; height: 44px; font-size: 24px; }
  .hero { padding: 44px 0 58px; }
  .hero h1 { font-size: clamp(38px, 13vw, 54px); letter-spacing: -1.8px; }
  .hero-text { font-size: 17px; }
  .hero-actions .btn { width: 100%; }
  .hero-mini-products { grid-template-columns: 1fr; }
  .strip-section { transform: translateY(-20px); }
  .benefit-strip,
  .product-grid { grid-template-columns: 1fr; }
  .section { padding: 56px 0; }
  .section-heading h2 { font-size: clamp(30px, 10vw, 42px); }
  .footer-grid { flex-direction: column; }
}
