@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;500;600;700;800;900&family=Quicksand:wght@400;500;600;700&display=swap');

:root {
  --pink: #F472B6;
  --pink-light: #FDE8F3;
  --pink-soft: #FCE7F3;
  --teal: #2DD4BF;
  --teal-light: #CCFBF1;
  --peach: #FDBA74;
  --peach-light: #FEF3E2;
  --lavender: #C4B5FD;
  --lavender-light: #EDE9FE;
  --sage: #86EFAC;
  --sage-light: #DCFCE7;
  --cream: #FFFBF7;
  --warm-white: #FFF9F5;
  --text-dark: #3D2C2C;
  --text-mid: #6B5555;
  --text-soft: #A08080;
  --border-soft: #F0E4E4;
  --shadow-soft: 0 4px 24px rgba(244, 114, 182, 0.12);
  --shadow-card: 0 8px 32px rgba(200, 100, 150, 0.10);
  --radius-lg: 24px;
  --radius-xl: 36px;
  --radius-pill: 100px;
  --font-display: 'Quicksand', sans-serif;
  --font-body: 'Nunito', sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--text-dark);
  overflow-x: hidden;
}

/* ──────────────────────────────────────
   DECORATIVE BACKGROUND BLOBS
────────────────────────────────────── */
.bg-blob {
  position: fixed;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.25;
  pointer-events: none;
  z-index: 0;
}
.bg-blob-1 { width: 500px; height: 500px; background: var(--pink); top: -100px; right: -100px; }
.bg-blob-2 { width: 400px; height: 400px; background: var(--teal); bottom: 100px; left: -100px; }
.bg-blob-3 { width: 300px; height: 300px; background: var(--lavender); top: 50%; left: 40%; }

/* ──────────────────────────────────────
   HEADER / NAV
────────────────────────────────────── */
header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,251,247,0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-soft);
  padding: 0 24px;
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 16px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-icon {
  width: 44px;
  height: 44px;
}

.logo-text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.4rem;
  line-height: 1.1;
}
.logo-text span:first-child { color: var(--pink); }
.logo-text span:last-child { color: var(--teal); }

nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

nav a {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-mid);
  text-decoration: none;
  padding: 8px 14px;
  border-radius: var(--radius-pill);
  transition: all 0.2s;
}
nav a:hover, nav a.active {
  background: var(--pink-soft);
  color: var(--pink);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn-cart {
  position: relative;
  background: var(--peach-light);
  border: none;
  border-radius: 50%;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.1rem;
  transition: all 0.2s;
  text-decoration: none;
  color: var(--text-dark);
}
.btn-cart:hover { background: var(--peach); transform: scale(1.05); }

.cart-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  background: var(--pink);
  color: white;
  font-size: 0.65rem;
  font-weight: 800;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  display: none;
}
.cart-badge.show { display: flex; }

.btn-wa {
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: white;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 10px 18px;
  border: none;
  border-radius: var(--radius-pill);
  cursor: pointer;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: all 0.2s;
  white-space: nowrap;
}
.btn-wa:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(37,211,102,0.35); }

.hamburger {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text-dark);
  padding: 4px;
}

/* Mobile nav */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(255,251,247,0.97);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-dark);
  text-decoration: none;
  padding: 12px 32px;
  border-radius: var(--radius-pill);
  transition: all 0.2s;
}
.mobile-nav a:hover { background: var(--pink-soft); color: var(--pink); }
.mobile-nav-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: none;
  border: none;
  font-size: 1.8rem;
  cursor: pointer;
  color: var(--text-mid);
}

/* ──────────────────────────────────────
   PAGE WRAPPER
────────────────────────────────────── */
.page { display: none; position: relative; z-index: 1; }
.page.active { display: block; }

/* ──────────────────────────────────────
   BUTTONS
────────────────────────────────────── */
.btn-primary {
  background: linear-gradient(135deg, var(--pink), #E879A0);
  color: white;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 13px 26px;
  border: none;
  border-radius: var(--radius-pill);
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.25s;
  box-shadow: 0 4px 20px rgba(244,114,182,0.35);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(244,114,182,0.45); }

.btn-secondary {
  background: white;
  color: var(--pink);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 12px 24px;
  border: 2px solid var(--pink-light);
  border-radius: var(--radius-pill);
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.25s;
}
.btn-secondary:hover { background: var(--pink-soft); border-color: var(--pink); transform: translateY(-1px); }

.btn-teal {
  background: linear-gradient(135deg, var(--teal), #14B8A6);
  color: white;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 13px 26px;
  border: none;
  border-radius: var(--radius-pill);
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.25s;
  box-shadow: 0 4px 20px rgba(45,212,191,0.3);
}
.btn-teal:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(45,212,191,0.4); }

.btn-back {
  background: none;
  border: none;
  color: var(--text-soft);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 0;
  transition: color 0.2s;
}
.btn-back:hover { color: var(--pink); }

/* ──────────────────────────────────────
   SECTION STYLES
────────────────────────────────────── */
section { padding: 80px 24px; }

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--pink-soft);
  color: var(--pink);
  font-weight: 700;
  font-size: 0.8rem;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-title .highlight-pink { color: var(--pink); }
.section-title .highlight-teal { color: var(--teal); }

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-mid);
  line-height: 1.7;
  max-width: 600px;
}

/* ──────────────────────────────────────
   HERO
────────────────────────────────────── */
.hero {
  min-height: calc(100vh - 72px);
  display: flex;
  align-items: center;
  padding: 60px 24px;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 80% 20%, rgba(244,114,182,0.12) 0%, transparent 60%),
              radial-gradient(ellipse at 10% 80%, rgba(45,212,191,0.10) 0%, transparent 50%),
              radial-gradient(ellipse at 50% 50%, rgba(196,181,253,0.08) 0%, transparent 70%);
}

/* Floating decorative elements */
.hero-deco {
  position: absolute;
  pointer-events: none;
}
.hero-deco-heart { font-size: 2rem; animation: floatHeart 4s ease-in-out infinite; }
.hero-deco-leaf { font-size: 1.5rem; animation: floatLeaf 5s ease-in-out infinite; }
@keyframes floatHeart {
  0%, 100% { transform: translateY(0) rotate(-5deg); opacity: 0.6; }
  50% { transform: translateY(-12px) rotate(5deg); opacity: 1; }
}
@keyframes floatLeaf {
  0%, 100% { transform: translateY(0) rotate(0deg); opacity: 0.5; }
  50% { transform: translateY(-8px) rotate(8deg); opacity: 0.8; }
}

.hero-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
  width: 100%;
}

.hero-text { }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--pink-soft), var(--lavender-light));
  border: 1px solid var(--pink-light);
  color: var(--pink);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  margin-bottom: 24px;
  animation: fadeInUp 0.6s ease both;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--text-dark);
  margin-bottom: 20px;
  animation: fadeInUp 0.6s ease 0.1s both;
}
.hero-title .pink { color: var(--pink); }
.hero-title .teal { color: var(--teal); }

.hero-desc {
  font-size: 1.1rem;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 36px;
  animation: fadeInUp 0.6s ease 0.2s both;
  max-width: 480px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  animation: fadeInUp 0.6s ease 0.3s both;
}

.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  animation: fadeInRight 0.8s ease 0.2s both;
}

.hero-illustration {
  width: 100%;
  max-width: 480px;
  background: radial-gradient(ellipse at center, rgba(244,114,182,0.15) 0%, transparent 70%);
  border-radius: 50%;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-illustration .big-emoji {
  font-size: 16rem;
  filter: drop-shadow(0 20px 40px rgba(244,114,182,0.3));
  line-height: 1;
}

/* Hero stats */
.hero-stats {
  display: flex;
  gap: 28px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--border-soft);
  animation: fadeInUp 0.6s ease 0.4s both;
}
.stat-item { text-align: center; }
.stat-number {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--pink);
  line-height: 1;
}
.stat-label { font-size: 0.78rem; color: var(--text-soft); font-weight: 600; margin-top: 4px; }

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(24px); }
  to { opacity: 1; transform: translateX(0); }
}

/* ──────────────────────────────────────
   VALUES SECTION
────────────────────────────────────── */
.values-section { background: white; }

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 16px;
  margin-top: 48px;
}

.value-card {
  background: var(--cream);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: 28px 20px;
  text-align: center;
  transition: all 0.3s;
}
.value-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
  border-color: transparent;
  background: white;
}
.value-card:nth-child(1) .value-icon { background: var(--pink-soft); }
.value-card:nth-child(2) .value-icon { background: var(--teal-light); }
.value-card:nth-child(3) .value-icon { background: var(--peach-light); }
.value-card:nth-child(4) .value-icon { background: var(--lavender-light); }
.value-card:nth-child(5) .value-icon { background: var(--sage-light); }
.value-card:nth-child(6) .value-icon { background: var(--pink-soft); }

.value-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin: 0 auto 14px;
}
.value-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-dark);
  margin-bottom: 6px;
}
.value-desc { font-size: 0.82rem; color: var(--text-soft); line-height: 1.5; }

/* ──────────────────────────────────────
   MISSION / VISION
────────────────────────────────────── */
.mission-vision {
  background: linear-gradient(135deg, var(--pink-soft) 0%, var(--lavender-light) 50%, var(--teal-light) 100%);
}

.mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 16px;
}

.mv-card {
  background: white;
  border-radius: var(--radius-xl);
  padding: 40px;
  position: relative;
  overflow: hidden;
}
.mv-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
}
.mv-card.mission::before { background: linear-gradient(90deg, var(--pink), var(--lavender)); }
.mv-card.vision::before { background: linear-gradient(90deg, var(--teal), var(--sage)); }

.mv-card-icon { font-size: 2.8rem; margin-bottom: 16px; }
.mv-card-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 12px;
}
.mv-card.mission .mv-card-title { color: var(--pink); }
.mv-card.vision .mv-card-title { color: var(--teal); }
.mv-card-text { color: var(--text-mid); line-height: 1.75; font-size: 0.95rem; }

/* ──────────────────────────────────────
   CTA SECTION
────────────────────────────────────── */
.cta-section {
  background: linear-gradient(135deg, #FF9ECD 0%, #FFA9A9 30%, #FFD4A3 60%, #A8E6CF 100%);
  text-align: center;
  border-radius: var(--radius-xl);
  margin: 0 24px 80px;
  padding: 80px 40px;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '💕';
  position: absolute;
  font-size: 12rem;
  opacity: 0.07;
  top: -20px;
  right: -20px;
}
.cta-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: white;
  margin-bottom: 16px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.1);
}
.cta-subtitle {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.9);
  margin-bottom: 36px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.65;
}
.cta-actions { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.btn-white {
  background: white;
  color: var(--pink);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 13px 26px;
  border: none;
  border-radius: var(--radius-pill);
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.25s;
  box-shadow: 0 4px 20px rgba(0,0,0,0.12);
}
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(0,0,0,0.18); }

/* ──────────────────────────────────────
   BLOG
────────────────────────────────────── */
.blog-hero {
  padding: 60px 24px 40px;
  text-align: center;
  background: linear-gradient(180deg, var(--pink-soft) 0%, transparent 100%);
}

.blog-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin: 24px 0 48px;
}
.cat-btn {
  background: white;
  border: 2px solid var(--border-soft);
  color: var(--text-mid);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.85rem;
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: all 0.2s;
}
.cat-btn:hover, .cat-btn.active {
  background: var(--pink-soft);
  border-color: var(--pink);
  color: var(--pink);
}

.blog-grid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px 80px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 24px;
}

.blog-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-soft);
  transition: all 0.3s;
  cursor: pointer;
}
.blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-card); border-color: transparent; }

.blog-card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  background: linear-gradient(135deg, var(--pink-soft), var(--lavender-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
}
.blog-card-body { padding: 24px; }
.blog-card-category {
  display: inline-block;
  background: var(--teal-light);
  color: var(--teal);
  font-weight: 700;
  font-size: 0.75rem;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.blog-card-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--text-dark);
  margin-bottom: 8px;
  line-height: 1.3;
}
.blog-card-excerpt { font-size: 0.88rem; color: var(--text-soft); line-height: 1.6; margin-bottom: 16px; }
.blog-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8rem;
  color: var(--text-soft);
}

/* Blog article view */
.article-view {
  max-width: 780px;
  margin: 0 auto;
  padding: 40px 24px 80px;
}
.article-nav {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.article-hero-img {
  width: 100%;
  height: 340px;
  background: linear-gradient(135deg, var(--pink-soft), var(--lavender-light));
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 8rem;
  margin-bottom: 32px;
}
.article-title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 16px;
  line-height: 1.25;
}
.article-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 0.85rem;
  color: var(--text-soft);
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--border-soft);
  flex-wrap: wrap;
}
.article-content { font-size: 1rem; color: var(--text-mid); line-height: 1.85; }
.article-content p { margin-bottom: 20px; }
.article-content h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-dark);
  margin: 28px 0 12px;
}
.article-share {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--border-soft);
  flex-wrap: wrap;
}

/* ──────────────────────────────────────
   SHOP
────────────────────────────────────── */
.shop-hero {
  padding: 60px 24px 40px;
  background: linear-gradient(180deg, var(--teal-light) 0%, transparent 100%);
  text-align: center;
}

.shop-controls {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px 32px;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.search-box {
  flex: 1;
  min-width: 200px;
  position: relative;
}
.search-box input {
  width: 100%;
  padding: 12px 20px 12px 44px;
  border: 2px solid var(--border-soft);
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text-dark);
  background: white;
  outline: none;
  transition: border-color 0.2s;
}
.search-box input:focus { border-color: var(--teal); }
.search-icon {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-soft);
}

.shop-grid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px 80px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

.product-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-soft);
  transition: all 0.3s;
}
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-card); border-color: transparent; }

.product-img {
  width: 100%;
  height: 220px;
  background: linear-gradient(135deg, var(--teal-light), var(--sage-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  position: relative;
}
.product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--pink);
  color: white;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
}

.product-body { padding: 20px; }
.product-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--text-dark);
  margin-bottom: 6px;
}
.product-desc { font-size: 0.85rem; color: var(--text-soft); line-height: 1.5; margin-bottom: 14px; }
.product-price {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--teal);
  margin-bottom: 14px;
}
.product-price small { font-size: 0.75rem; color: var(--text-soft); font-weight: 500; }
.product-actions { display: flex; gap: 8px; }
.btn-add-cart {
  flex: 1;
  background: var(--teal);
  color: white;
  border: none;
  border-radius: var(--radius-pill);
  padding: 10px 16px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.btn-add-cart:hover { background: #14B8A6; transform: translateY(-1px); }
.btn-view-detail {
  background: var(--cream);
  border: 1px solid var(--border-soft);
  color: var(--text-mid);
  border-radius: var(--radius-pill);
  padding: 10px 14px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.2s;
}
.btn-view-detail:hover { background: var(--teal-light); border-color: var(--teal); color: var(--teal); }

/* Product detail */
.product-detail {
  max-width: 1100px;
  margin: 0 auto;
  padding: 40px 24px 80px;
}
.product-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.product-detail-img {
  width: 100%;
  aspect-ratio: 1;
  background: linear-gradient(135deg, var(--teal-light), var(--sage-light));
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10rem;
}
.product-detail-name {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 12px;
}
.product-detail-price {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--teal);
  margin-bottom: 20px;
}
.product-detail-desc { font-size: 0.95rem; color: var(--text-mid); line-height: 1.75; margin-bottom: 24px; }
.benefits-list { margin: 20px 0; }
.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 8px 0;
  font-size: 0.9rem;
  color: var(--text-mid);
}
.benefit-item::before {
  content: '✓';
  width: 20px;
  height: 20px;
  background: var(--teal-light);
  color: var(--teal);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 800;
  flex-shrink: 0;
  margin-top: 2px;
}
.detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

/* ──────────────────────────────────────
   CART
────────────────────────────────────── */
.cart-page {
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 24px 80px;
}
.cart-title {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 32px;
}
.cart-empty {
  text-align: center;
  padding: 80px 24px;
}
.cart-empty-icon { font-size: 5rem; margin-bottom: 16px; }
.cart-empty-msg {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-mid);
  margin-bottom: 8px;
}
.cart-empty-sub { color: var(--text-soft); margin-bottom: 24px; }

.cart-items { display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px; }
.cart-item {
  display: flex;
  align-items: center;
  gap: 16px;
  background: white;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: 16px 20px;
}
.cart-item-img {
  width: 72px;
  height: 72px;
  background: var(--teal-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  flex-shrink: 0;
}
.cart-item-info { flex: 1; }
.cart-item-name { font-weight: 700; font-size: 0.95rem; color: var(--text-dark); margin-bottom: 4px; }
.cart-item-price { color: var(--teal); font-weight: 700; font-size: 0.9rem; }
.cart-item-qty {
  display: flex;
  align-items: center;
  gap: 8px;
}
.qty-btn {
  width: 30px;
  height: 30px;
  border: 1px solid var(--border-soft);
  background: white;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}
.qty-btn:hover { background: var(--pink-soft); border-color: var(--pink); color: var(--pink); }
.qty-num { font-weight: 700; font-size: 0.95rem; min-width: 24px; text-align: center; }
.cart-item-remove {
  background: none;
  border: none;
  color: var(--text-soft);
  cursor: pointer;
  font-size: 1.1rem;
  padding: 4px;
  transition: color 0.2s;
}
.cart-item-remove:hover { color: #EF4444; }

.cart-summary {
  background: white;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: 28px;
}
.cart-summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  font-size: 0.95rem;
  color: var(--text-mid);
}
.cart-summary-row.total {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--text-dark);
  border-top: 2px solid var(--border-soft);
  margin-top: 8px;
  padding-top: 16px;
}
.cart-summary-row.total .total-price { color: var(--teal); }
.cart-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 20px; }

/* ──────────────────────────────────────
   CONTACT FORM
────────────────────────────────────── */
.contact-hero {
  padding: 60px 24px 40px;
  background: linear-gradient(180deg, var(--lavender-light) 0%, transparent 100%);
  text-align: center;
}

.contact-layout {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px 80px;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: start;
}

.contact-info-card {
  background: white;
  border-radius: var(--radius-xl);
  padding: 40px;
  border: 1px solid var(--border-soft);
}
.contact-info-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 24px;
}
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border-soft);
}
.contact-info-item:last-child { border-bottom: none; }
.contact-info-icon {
  width: 40px;
  height: 40px;
  background: var(--pink-soft);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.contact-info-text strong { display: block; font-weight: 700; font-size: 0.9rem; color: var(--text-dark); margin-bottom: 2px; }
.contact-info-text span { font-size: 0.85rem; color: var(--text-soft); }

.contact-form-card {
  background: white;
  border-radius: var(--radius-xl);
  padding: 40px;
  border: 1px solid var(--border-soft);
}
.form-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 8px;
}
.form-subtitle { font-size: 0.9rem; color: var(--text-soft); margin-bottom: 28px; }

.form-group { margin-bottom: 18px; }
.form-label {
  display: block;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--text-mid);
  margin-bottom: 6px;
}
.form-input, .form-textarea, .form-select {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--border-soft);
  border-radius: 12px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text-dark);
  background: var(--cream);
  outline: none;
  transition: all 0.2s;
  resize: none;
}
.form-input:focus, .form-textarea:focus, .form-select:focus {
  border-color: var(--lavender);
  background: white;
  box-shadow: 0 0 0 4px rgba(196,181,253,0.15);
}
.form-textarea { min-height: 120px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.form-success {
  display: none;
  text-align: center;
  padding: 48px 32px;
}
.form-success.show { display: block; }
.form-success-icon { font-size: 4rem; margin-bottom: 16px; }
.form-success-title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--teal);
  margin-bottom: 8px;
}
.form-success-text { color: var(--text-mid); line-height: 1.65; }

/* ──────────────────────────────────────
   FLOATING BUTTONS
────────────────────────────────────── */
.floating-buttons {
  position: fixed;
  bottom: 28px;
  right: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 500;
}
.float-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.25s;
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}
.float-btn:hover { transform: translateY(-3px) scale(1.05); }
.float-wa { background: #25D366; color: white; }
.float-home { background: white; color: var(--pink); border: 2px solid var(--pink-light); }
.float-cart { background: var(--teal); color: white; }

/* ──────────────────────────────────────
   FOOTER
────────────────────────────────────── */
footer {
  background: var(--text-dark);
  color: rgba(255,255,255,0.8);
  padding: 60px 24px 32px;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
.footer-logo-text {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 12px;
}
.footer-logo-text span:first-child { color: var(--pink); }
.footer-logo-text span:last-child { color: var(--teal); }
.footer-tagline { font-size: 0.9rem; opacity: 0.7; line-height: 1.6; margin-bottom: 20px; }
.footer-social { display: flex; gap: 10px; }
.social-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  border: none;
  color: white;
  cursor: pointer;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.2s;
}
.social-btn:hover { background: var(--pink); }
.footer-col-title {
  font-weight: 800;
  font-size: 0.9rem;
  color: white;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  font-size: 0.88rem;
  transition: color 0.2s;
  cursor: pointer;
}
.footer-links a:hover { color: var(--pink); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.82rem;
  opacity: 0.6;
}

/* ──────────────────────────────────────
   RESPONSIVE
────────────────────────────────────── */
@media (max-width: 768px) {
  nav { display: none; }
  .hamburger { display: block; }
  .btn-wa span { display: none; }
  .hero-content { grid-template-columns: 1fr; gap: 32px; }
  .hero-visual { display: none; }
  .mv-grid { grid-template-columns: 1fr; }
  .product-detail-grid { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .form-row { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .shop-grid { grid-template-columns: 1fr 1fr; }
  section { padding: 60px 24px; }
  .cta-section { margin: 0 0 60px; border-radius: 0; }
  .hero-stats { gap: 16px; }
}

@media (max-width: 480px) {
  .shop-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr 1fr; }
}

/* Page transition */
.page {
  animation: pageFadeIn 0.3s ease;
}
@keyframes pageFadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}
