/* ---------- Tokens ---------- */
:root {
  --pink: #ff6fb5;
  --pink-dark: #e94f9c;
  --mint: #8fe3c0;
  --lavender: #c6a8ff;
  --sky: #8ecfff;
  --cream: #fff9f2;
  --cream-alt: #fff1e6;
  --plum: #4a2c4a;
  --plum-soft: #7a5c78;
  --white: #ffffff;

  --font-display: "Fredoka", sans-serif;
  --font-body: "Nunito", sans-serif;

  --radius-lg: 28px;
  --radius-md: 18px;
  --shadow-soft: 0 20px 40px -20px rgba(74, 44, 74, 0.35);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--plum);
  background: var(--cream);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

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

ul {
  list-style: none;
}

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.15;
}

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

section {
  padding: 96px 0;
}

.section-lede {
  max-width: 620px;
  color: var(--plum-soft);
  font-size: 1.05rem;
  margin-top: 12px;
}

h2 {
  font-size: clamp(1.9rem, 3vw, 2.6rem);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  padding: 14px 28px;
  border-radius: 999px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-primary {
  background: var(--pink);
  color: var(--white);
  box-shadow: 0 12px 24px -10px rgba(233, 79, 156, 0.6);
}

.btn-primary:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 16px 28px -10px rgba(233, 79, 156, 0.7);
}

.btn-ghost {
  background: transparent;
  color: var(--plum);
  border: 2px solid var(--plum);
}

.btn-ghost:hover {
  background: var(--plum);
  color: var(--white);
}

/* ---------- Nav ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 249, 242, 0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(74, 44, 74, 0.08);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}

.logo {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--plum);
}

.logo span {
  color: var(--pink);
}

.nav-links {
  display: flex;
  gap: 32px;
}

.nav-links a {
  font-weight: 700;
  font-size: 0.95rem;
}

.nav-links a:hover {
  color: var(--pink);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  height: 3px;
  border-radius: 3px;
  background: var(--plum);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

/* ---------- Hero ---------- */
.hero {
  padding-top: 72px;
  padding-bottom: 40px;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 48px;
}

.eyebrow {
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--pink-dark);
  font-size: 0.8rem;
}

.hero h1 {
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  margin: 14px 0 20px;
}

.hero h1 span {
  color: var(--pink);
}

.hero-sub {
  color: var(--plum-soft);
  font-size: 1.1rem;
  max-width: 480px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  margin-top: 32px;
  flex-wrap: wrap;
}

.hero-art {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 340px;
}

.hero-blob {
  width: 220px;
  height: 260px;
}

.floaty {
  position: absolute;
  border-radius: 50%;
  opacity: 0.7;
}

.floaty-1 {
  width: 40px;
  height: 40px;
  background: var(--mint);
  top: 10%;
  left: 8%;
  animation: float 5s ease-in-out infinite;
}

.floaty-2 {
  width: 26px;
  height: 26px;
  background: var(--sky);
  bottom: 14%;
  right: 10%;
  animation: float 6s ease-in-out infinite 0.5s;
}

.floaty-3 {
  width: 18px;
  height: 18px;
  background: var(--lavender);
  top: 20%;
  right: 20%;
  animation: float 4.5s ease-in-out infinite 1s;
}

/* ---------- Blob characters ---------- */
.blob {
  position: relative;
  border-radius: 60% 40% 55% 45% / 55% 45% 60% 40%;
  box-shadow: inset -14px -14px 30px rgba(0, 0, 0, 0.08), var(--shadow-soft);
  animation: float 4s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-14px) rotate(-2deg); }
}

.eye {
  position: absolute;
  width: 10%;
  height: 10%;
  min-width: 8px;
  min-height: 8px;
  background: var(--plum);
  border-radius: 50%;
  top: 42%;
}

.eye-l { left: 32%; }
.eye-r { right: 32%; }

.mouth {
  position: absolute;
  width: 22%;
  height: 12%;
  border: 3px solid var(--plum);
  border-top: none;
  border-radius: 0 0 50px 50px;
  left: 50%;
  top: 55%;
  transform: translateX(-50%);
  background: transparent;
}

.char-bear {
  background: linear-gradient(135deg, #f6c9a0, #e8a874);
}

.char-bear::before,
.char-bear::after {
  content: "";
  position: absolute;
  width: 22%;
  height: 22%;
  background: inherit;
  border-radius: 50%;
  top: -10%;
}

.char-bear::before { left: 6%; }
.char-bear::after { right: 6%; }

.char-donut {
  background: linear-gradient(135deg, var(--pink), var(--pink-dark));
}

.char-donut::before {
  content: "";
  position: absolute;
  width: 26%;
  height: 22%;
  background: var(--cream);
  border-radius: 50%;
  top: 40%;
  left: 37%;
}

.sprinkle {
  position: absolute;
  width: 10%;
  height: 4%;
  border-radius: 4px;
  top: 18%;
}

.sprinkle.s1 { background: var(--mint); left: 20%; transform: rotate(20deg); }
.sprinkle.s2 { background: var(--sky); left: 35%; top: 12%; transform: rotate(-15deg); }
.sprinkle.s3 { background: var(--lavender); left: 50%; transform: rotate(30deg); }
.sprinkle.s4 { background: var(--cream); left: 62%; top: 15%; transform: rotate(-10deg); }
.sprinkle.s5 { background: var(--mint); left: 72%; top: 22%; transform: rotate(15deg); }

.char-avocado {
  background: linear-gradient(160deg, var(--mint), #4fae86);
}

.pit {
  position: absolute;
  width: 30%;
  height: 26%;
  background: #7a4a2f;
  border-radius: 50%;
  top: 38%;
  left: 35%;
}

.char-cloud {
  background: linear-gradient(135deg, var(--white), var(--sky));
  border-radius: 50% 50% 45% 45% / 60% 60% 40% 40%;
}

.char-cloud::before,
.char-cloud::after {
  content: "";
  position: absolute;
  background: inherit;
  border-radius: 50%;
  top: -20%;
}

.char-cloud::before { width: 46%; height: 46%; left: 4%; }
.char-cloud::after { width: 36%; height: 36%; right: 8%; top: -12%; }

.char-cup {
  background: linear-gradient(160deg, var(--lavender), #9a72e0);
  border-radius: 30% 30% 45% 45% / 20% 20% 30% 30%;
}

.char-cup::before {
  content: "";
  position: absolute;
  width: 8%;
  height: 30%;
  background: var(--pink);
  border-radius: 4px;
  top: -22%;
  left: 60%;
  transform: rotate(18deg);
}

.char-cup::after {
  content: "";
  position: absolute;
  width: 60%;
  height: 8%;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 4px;
  top: -4%;
  left: 20%;
}

/* ---------- Star shape ---------- */
.star-shape {
  position: relative;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #ffd76b, #ffb545);
  clip-path: polygon(
    50% 0%, 63% 35%, 100% 38%, 72% 60%,
    82% 96%, 50% 76%, 18% 96%, 28% 60%,
    0% 38%, 37% 35%
  );
  box-shadow: var(--shadow-soft);
  animation: float 4s ease-in-out infinite;
}

.star-shape .eye { top: 46%; }
.star-shape .mouth { top: 58%; }

/* ---------- About ---------- */
.values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.value-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  box-shadow: 0 12px 30px -18px rgba(74, 44, 74, 0.3);
}

.value-icon {
  font-size: 1.8rem;
  margin-bottom: 10px;
}

.value-card h3 {
  font-size: 1.15rem;
  margin-bottom: 6px;
}

.value-card p {
  color: var(--plum-soft);
  font-size: 0.95rem;
}

/* ---------- Shop / products ---------- */
.shop {
  background: var(--cream-alt);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
}

.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 24px 24px;
  text-align: center;
  box-shadow: 0 12px 30px -18px rgba(74, 44, 74, 0.3);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 34px -18px rgba(74, 44, 74, 0.4);
}

.card-blob,
.star-shape {
  width: 130px;
  height: 130px;
  margin: 0 auto 20px;
}

.product-card h3 {
  font-size: 1.2rem;
  margin-bottom: 4px;
}

.price {
  color: var(--pink-dark);
  font-weight: 800;
}

/* ---------- Footer ---------- */
.site-footer {
  padding: 56px 0 40px;
  text-align: center;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.footer-email a:hover {
  color: var(--pink);
}

.copyright {
  color: var(--plum-soft);
  font-size: 0.85rem;
  margin-top: 8px;
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-copy {
    order: 2;
  }

  .hero-sub {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .values {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 700px) {
  section {
    padding: 64px 0;
  }

  .nav-links {
    position: fixed;
    top: 76px;
    left: 0;
    right: 0;
    background: var(--cream);
    flex-direction: column;
    align-items: center;
    padding: 28px 0;
    gap: 20px;
    transform: translateY(-140%);
    transition: transform 0.3s ease;
    border-bottom: 1px solid rgba(74, 44, 74, 0.08);
  }

  .nav-links.open {
    transform: translateY(0);
  }

  .nav-toggle {
    display: flex;
  }

  .nav-toggle.open span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .nav-toggle.open span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle.open span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
}

@media (max-width: 520px) {
  .product-grid {
    grid-template-columns: 1fr;
  }
}
