html {
  scroll-behavior: smooth;
  scroll-padding-top: 5rem;
}

body {
  font-feature-settings: "ss01";
}

.sakura-flower {
  display: inline-block;
  width: 1.5rem;
  height: 1.5rem;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'><g transform='translate(50 50)'><g fill='%23EC9AAE'><ellipse cx='0' cy='-22' rx='12' ry='18'/><ellipse cx='0' cy='-22' rx='12' ry='18' transform='rotate(72)'/><ellipse cx='0' cy='-22' rx='12' ry='18' transform='rotate(144)'/><ellipse cx='0' cy='-22' rx='12' ry='18' transform='rotate(216)'/><ellipse cx='0' cy='-22' rx='12' ry='18' transform='rotate(288)'/></g><circle r='5' fill='%23FFD94C'/></g></svg>");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  filter: drop-shadow(0 1px 2px rgba(236, 154, 174, 0.25));
}

.petal-field {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}

.petal {
  position: absolute;
  top: -5vh;
  width: 18px;
  height: 18px;
  background: radial-gradient(circle at 35% 35%, #F4B5C7 0%, #EC9AAE 70%, #D77A90 100%);
  border-radius: 150% 0 150% 0 / 100% 0 100% 0;
  opacity: 0.55;
  animation: petal-fall linear infinite;
  filter: blur(0.3px);
  box-shadow: 0 0 8px rgba(244, 181, 199, 0.3);
}

@keyframes petal-fall {
  0%   { transform: translateY(-10vh) translateX(0)    rotate(0deg); }
  50%  { transform: translateY(40vh)  translateX(40px) rotate(360deg); }
  100% { transform: translateY(110vh) translateX(-20px) rotate(720deg); }
}

@media (prefers-reduced-motion: reduce) {
  .petal { animation: none; display: none; }
  html { scroll-behavior: auto; }
}

.snack-card {
  background: #ffffff;
  border-radius: 1.5rem;
  padding: 1.75rem;
  border: 1px solid rgba(236, 154, 174, 0.2);
  box-shadow: 0 1px 2px rgba(61, 40, 23, 0.04);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.snack-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px -8px rgba(236, 154, 174, 0.3);
}
.snack-emoji {
  font-size: 2.75rem;
  margin-bottom: 0.75rem;
  line-height: 1;
}
.snack-title {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 700;
  font-size: 1.25rem;
  margin-bottom: 0.35rem;
  color: #3D2817;
}
.snack-desc {
  color: #5D4332;
  font-size: 0.95rem;
  line-height: 1.5;
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

::selection {
  background: #EC9AAE;
  color: #fff;
}

.grecaptcha-badge { visibility: hidden; }
