/* Playlists section (extracted) */
.spotify-section {
  padding: 60px 0;
  text-align: center;
}
.spotify-container {
  max-width: 1200px;
  margin: 40px auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.playlist-item iframe {
  width: 100%;
  height: 352px;
}

/* Responsive: match legacy stacking */
@media (max-width: 768px) {
  .spotify-container {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.more-recipes-btn {
  background: var(--harvest-gold);
  color: var(--cider-brown);
  padding: 14px 35px;
  border: none;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: "Inter", sans-serif;
  position: relative;
  overflow: visible;
}
.more-recipes-btn:hover {
  background: var(--cinnamon-bark);
  color: var(--soft-white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(166, 80, 34, 0.3);
}
.more-recipes-btn .falling-leaves {
  position: absolute;
  top: -10px;
  right: -10px;
  display: none;
}
.more-recipes-btn:hover .falling-leaves {
  display: block;
}
.more-recipes-btn .leaf {
  position: absolute;
  font-size: 29px;
  opacity: 0;
  animation: fallAndSway 2s ease-out forwards;
  line-height: 1;
}
.more-recipes-btn .leaf-1 {
  top: -5px;
  right: 10px;
  animation-delay: 0s;
}
.more-recipes-btn .leaf-2 {
  top: -10px;
  right: 25px;
  animation-delay: 0.3s;
  font-size: 24px;
}
/* Emoji are now provided directly in markup to avoid double-render */

@keyframes fallAndSway {
  0% {
    opacity: 0;
    transform: translateY(0) translateX(0) rotate(0deg);
  }
  10% {
    opacity: 1;
  }
  25% {
    transform: translateY(10px) translateX(5px) rotate(15deg);
  }
  50% {
    transform: translateY(25px) translateX(-5px) rotate(-10deg);
  }
  75% {
    transform: translateY(40px) translateX(8px) rotate(20deg);
    opacity: 0.8;
  }
  100% {
    transform: translateY(60px) translateX(-3px) rotate(30deg);
    opacity: 0;
  }
}
