:root {
  --ink: #1a1423;
  --plum: #7c4a8f;
  --plum-dark: #5e3770;
  --pink: #e8436e;
  --pink-dark: #d1325e;
  --lavender: #e9e4f4;
  --lilac: #f5f0fb;
  --sand: #fdf9f3;
  --white: #ffffff;
  --gray: #6b6473;
  --border: #ece4f0;
  --wa: #25d366;
  --radius: 18px;
  --shadow: 0 14px 40px rgba(30, 20, 40, 0.10);
  --font: 'Inter', system-ui, sans-serif;
  --serif: 'Playfair Display', Georgia, serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--sand);
  line-height: 1.65;
}

.container { width: 100%; max-width: 1120px; margin: 0 auto; padding: 0 20px; }

a { text-decoration: none; color: inherit; }

/* ---------- Announcement bar ---------- */
.announcement-bar {
  background: linear-gradient(90deg, var(--pink), var(--plum));
  color: #fff;
  text-align: center;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 9px 16px;
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}
.announcement-bar .announce-free { opacity: 0.85; }

/* ---------- Header ---------- */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(253, 249, 243, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 66px;
}
.logo { display: flex; align-items: center; gap: 10px; font-weight: 800; font-size: 1.3rem; color: var(--ink); }
.logo-icon {
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--pink), var(--plum));
  border-radius: 12px;
  font-size: 1.1rem;
}
.logo-text em { font-style: normal; color: var(--pink); }
.nav { display: flex; gap: 24px; align-items: center; }
.nav a { font-weight: 600; font-size: 0.95rem; color: var(--gray); transition: color 0.2s; }
.nav a:hover, .nav a.active { color: var(--pink); }
.nav .nav-cta {
  background: var(--ink);
  color: #fff;
  padding: 11px 20px;
  border-radius: 30px;
  font-weight: 700;
}
.nav .nav-cta:hover { background: var(--pink); color: #fff; }

.menu-toggle { display: none; background: none; border: none; cursor: pointer; padding: 6px; }
.menu-toggle span { display: block; width: 24px; height: 2.5px; background: var(--ink); margin: 5px 0; border-radius: 2px; transition: 0.3s; }
.menu-toggle.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 30px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 1rem;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}
.btn-dark { background: var(--ink); color: #fff; box-shadow: 0 6px 18px rgba(26, 20, 35, 0.25); }
.btn-dark:hover { background: var(--pink); transform: translateY(-2px); }
.btn-pink { background: linear-gradient(135deg, var(--pink), var(--plum)); color: #fff; box-shadow: 0 6px 18px rgba(232, 67, 110, 0.35); }
.btn-pink:hover { transform: translateY(-2px); }
.btn-outline { background: transparent; border: 2px solid var(--ink); color: var(--ink); }
.btn-outline:hover { background: var(--ink); color: #fff; }
.btn-light { background: #fff; color: var(--ink); }
.btn-light:hover { transform: translateY(-2px); }

/* ---------- Hero ---------- */
.hero {
  padding: 70px 0 60px;
  background:
    radial-gradient(circle at 85% 15%, rgba(232, 67, 110, 0.10), transparent 45%),
    radial-gradient(circle at 10% 80%, rgba(124, 74, 143, 0.12), transparent 40%),
    var(--sand);
  overflow: hidden;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 50px;
  align-items: center;
}
.hero-tag {
  display: inline-block;
  background: var(--lavender);
  color: var(--plum-dark);
  padding: 7px 16px;
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 700;
  margin-bottom: 18px;
}
.hero h1 {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 6vw, 4rem);
  font-weight: 800;
  line-height: 1.08;
  margin-bottom: 18px;
}
.hero h1 em { font-style: italic; color: var(--pink); }
.hero p {
  font-size: clamp(1rem, 2.5vw, 1.15rem);
  color: var(--gray);
  max-width: 480px;
  margin-bottom: 30px;
}
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 30px; }
.hero-trust { display: flex; gap: 22px; flex-wrap: wrap; }
.trust-item { font-size: 0.88rem; font-weight: 600; color: var(--ink); display: flex; align-items: center; gap: 6px; }
.trust-item span { color: var(--pink); font-weight: 800; }

.hero-visual {
  position: relative;
  height: 420px;
}
.visual-card {
  position: absolute;
  border-radius: 22px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow);
  transition: transform 0.3s;
}
.visual-card:hover { transform: scale(1.03); }
.visual-card.main {
  width: 240px; height: 300px;
  background: linear-gradient(160deg, #fce3ea, #f7d6e0);
  left: 8%; top: 0;
}
.visual-card.sub1 {
  width: 170px; height: 210px;
  background: linear-gradient(160deg, #e6ddf3, #d9ccf0);
  right: 0; top: 20px;
}
.visual-card.sub2 {
  width: 160px; height: 190px;
  background: linear-gradient(160deg, #d9efdd, #cbe8d2);
  left: 18%; bottom: 0;
}
.visual-emoji { font-size: 4rem; margin-bottom: 12px; }
.visual-label { font-weight: 800; font-size: 1rem; background: rgba(255,255,255,0.7); padding: 6px 16px; border-radius: 100px; }

/* ---------- Perks ---------- */
.perks { background: var(--white); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.perks-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
  padding: 22px 0;
}
.perk { display: flex; align-items: center; gap: 14px; justify-content: center; }
.perk-icon {
  width: 46px; height: 46px;
  background: var(--lilac);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
}
.perk strong { display: block; font-size: 0.95rem; }
.perk span { font-size: 0.82rem; color: var(--gray); }

/* ---------- Sections ---------- */
.section { padding: 72px 0; }
.section-head { text-align: center; margin-bottom: 42px; }
.section-title {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  font-weight: 800;
  margin-bottom: 8px;
}
.section-subtitle { color: var(--gray); max-width: 560px; margin: 0 auto; }

/* ---------- Collections ---------- */
.collections { background: var(--sand); }
.collection-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
.collection-card {
  border-radius: var(--radius);
  padding: 34px 28px;
  color: #fff;
  transition: transform 0.25s, box-shadow 0.25s;
  position: relative;
  overflow: hidden;
}
.collection-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.collection-card.gym { background: linear-gradient(150deg, #e8436e, #b3274f); }
.collection-card.yoga { background: linear-gradient(150deg, #7c4a8f, #4d2b5e); }
.collection-card.walking { background: linear-gradient(150deg, #2d9a6e, #1c6b4c); }
.collection-emoji { font-size: 3rem; margin-bottom: 14px; }
.collection-card h3 { font-size: 1.4rem; font-weight: 800; margin-bottom: 8px; }
.collection-card p { opacity: 0.9; font-size: 0.92rem; margin-bottom: 16px; }
.collection-link { font-weight: 700; font-size: 0.92rem; border-bottom: 2px solid rgba(255,255,255,0.6); padding-bottom: 2px; }

/* ---------- Products ---------- */
.best-sellers { background: var(--lilac); }
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}
.product-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.25s, box-shadow 0.25s;
}
.product-card:hover { transform: translateY(-5px); box-shadow: 0 20px 50px rgba(30, 20, 40, 0.14); }
.product-img {
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.product-emoji { font-size: 4.2rem; }
.sale-tag {
  position: absolute;
  top: 12px; left: 12px;
  background: var(--pink);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 800;
  padding: 5px 10px;
  border-radius: 100px;
}
.product-info { padding: 18px; }
.product-info h3 { font-size: 1.05rem; font-weight: 700; }
.product-cat { font-size: 0.78rem; color: var(--plum); font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; }
.product-price { margin: 8px 0 12px; font-weight: 800; font-size: 1.1rem; }
.product-price del { color: var(--gray); font-weight: 500; margin-right: 6px; }
.product-btn {
  display: block;
  text-align: center;
  background: var(--ink);
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 11px;
  border-radius: 30px;
  transition: background 0.2s;
}
.product-card:hover .product-btn { background: var(--pink); }
.section-cta { text-align: center; margin-top: 36px; }

/* ---------- Promo ---------- */
.promo {
  background:
    radial-gradient(circle at 90% 20%, rgba(255,255,255,0.15), transparent 40%),
    linear-gradient(120deg, var(--plum), var(--pink));
  color: #fff;
}
.promo-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}
.promo-tag {
  display: inline-block;
  background: rgba(255,255,255,0.2);
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 12px;
}
.promo h2 { font-family: var(--serif); font-size: clamp(1.8rem, 4vw, 2.4rem); font-weight: 800; }
.promo h2 em { color: #ffd166; font-style: italic; }
.promo p { opacity: 0.92; max-width: 440px; margin-top: 10px; }

/* ---------- Reviews ---------- */
.reviews { background: var(--sand); }
.review-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
.review-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: 0 6px 20px rgba(30, 20, 40, 0.05);
}
.stars { color: #f5b301; margin-bottom: 12px; letter-spacing: 3px; }
.review-card p { color: var(--gray); font-size: 0.95rem; margin-bottom: 16px; }
.review-author { font-weight: 700; font-size: 0.92rem; }

/* ---------- Newsletter ---------- */
.newsletter {
  background: var(--white);
  border-top: 1px solid var(--border);
}
.newsletter-inner { text-align: center; max-width: 520px; margin: 0 auto; }
.newsletter h2 { font-family: var(--serif); font-size: clamp(1.6rem, 4vw, 2.1rem); font-weight: 800; margin-bottom: 8px; }
.newsletter p { color: var(--gray); margin-bottom: 22px; }
.newsletter-form { display: flex; gap: 10px; }
.newsletter-form input {
  flex: 1;
  padding: 14px 18px;
  border: 1.5px solid var(--border);
  border-radius: 30px;
  font-size: 0.95rem;
  outline: none;
  background: var(--lilac);
}
.newsletter-form input:focus { border-color: var(--pink); }

/* ---------- Footer ---------- */
.footer { background: var(--ink); color: rgba(255,255,255,0.75); }
.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 30px;
  padding: 44px 20px 30px;
}
.footer .logo-text { color: #fff; font-size: 1.3rem; font-weight: 800; }
.footer-brand p { font-size: 0.88rem; margin-top: 12px; max-width: 300px; }
.footer-col h4 { color: #fff; margin-bottom: 12px; font-size: 1rem; }
.footer-col a { display: block; font-size: 0.9rem; padding: 5px 0; color: rgba(255,255,255,0.6); transition: color 0.2s; }
.footer-col a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  text-align: center;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
  padding: 16px 0;
}

/* ---------- Offer popup ---------- */
.offer-popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(26, 20, 35, 0.6);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 16px;
  cursor: pointer;
  backdrop-filter: blur(4px);
}
.offer-popup-overlay.show { display: flex; }
.offer-popup {
  background: #fff;
  border-radius: 20px;
  max-width: 480px;
  width: 100%;
  overflow: hidden;
  text-align: center;
  box-shadow: 0 30px 70px rgba(26, 20, 35, 0.4);
  animation: popzoom 0.35s ease;
}
@keyframes popzoom { from { transform: scale(0.85); opacity: 0; } to { transform: scale(1); opacity: 1; } }
.offer-img { width: 100%; height: 210px; object-fit: cover; display: block; }
.offer-body { padding: 26px 28px 30px; }
.offer-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--pink), var(--plum));
  color: #fff;
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 700;
  margin-bottom: 14px;
}
.offer-body h3 { font-family: var(--serif); font-size: 1.6rem; font-weight: 800; color: var(--ink); margin-bottom: 8px; }
.offer-body p { color: var(--gray); font-size: 0.95rem; margin-bottom: 20px; }
.offer-btn {
  display: block;
  background: var(--ink);
  color: #fff;
  font-weight: 700;
  padding: 14px;
  border-radius: 30px;
  transition: background 0.2s;
}
.offer-btn:hover { background: var(--pink); }

/* ---------- Mobile ---------- */
@media (max-width: 768px) {
  .menu-toggle { display: block; }
  .nav {
    position: fixed;
    top: 66px;
    right: 0;
    width: 280px;
    height: calc(100vh - 66px);
    background: var(--white);
    flex-direction: column;
    padding: 26px;
    gap: 18px;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    box-shadow: -12px 0 30px rgba(0,0,0,0.12);
  }
  .nav.open { transform: translateX(0); }
  .nav a { font-size: 1.05rem; }

  .announcement-bar { font-size: 0.78rem; gap: 8px; }

  .hero { padding: 50px 0 40px; }
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { height: 320px; }
  .visual-card.main { width: 190px; height: 230px; }
  .visual-card.sub1 { width: 130px; height: 160px; }
  .visual-card.sub2 { width: 130px; height: 150px; }
  .hero-cta { flex-direction: column; }
  .hero-cta .btn { width: 100%; }

  .section { padding: 54px 0; }
  .promo-inner { flex-direction: column; text-align: center; }
  .promo p { margin-left: auto; margin-right: auto; }
  .newsletter-form { flex-direction: column; }
  .footer-inner { grid-template-columns: 1fr; padding: 36px 20px 20px; gap: 24px; }
}
