/* Playful Theme Additions */
@import url('https://fonts.googleapis.com/css2?family=Fredoka:wght@300;400;500;600;700&display=swap');

[data-theme-style="playful"] {
    --font-main: 'Fredoka', sans-serif;
    --font-headings: 'Fredoka', sans-serif;
}

/* Bouncy Animations */
@keyframes playful-bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

[data-theme-style="playful"] .day-card:hover {
    animation: playful-bounce 0.5s ease-in-out;
}

/* Playful Background Pattern */
[data-theme-style="playful"] #bg-slideshow::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(var(--primary-color-light) 1px, transparent 1px);
    background-size: 40px 40px;
    opacity: 0.1;
    z-index: 1;
    pointer-events: none;
}

/* Rounder Buttons & Inputs */
[data-theme-style="playful"] .btn,
[data-theme-style="playful"] .glass-panel,
[data-theme-style="playful"] .day-card,
[data-theme-style="playful"] .glass-input {
    border-radius: 24px;
}

/* Highlighted Menu Labels */
[data-theme-style="playful"] .meal-type-label {
    background: var(--secondary-color);
    color: white;
    padding: 2px 10px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* Playful Typography */
[data-theme-style="playful"] h1, 
[data-theme-style="playful"] h2, 
[data-theme-style="playful"] h3 {
    letter-spacing: 0.02em;
}
