/*
Theme Name: Flatsome Child
Description: This is a child theme for Flatsome Theme
Author: UX Themes
Template: flatsome
Version: 3.0
*/

/*************** ADD CUSTOM CSS HERE.   ***************/
<style>
    /* --- TYPOGRAPHY & COLORS --- */
    h1,
    h2,
    h3,
    h4 {
        color: #333;
        font-weight: 800;
        letter-spacing: -0.5px;
    }
    .highlight-red {
        color: #FF5A5F;
    }
    .highlight-teal {
        color: #3AB7BF;
    }
    .highlight-yellow {
        color: #FFD23F;
    }
    /* --- CARD STYLING --- */
    .category-card {
        transition: transform 0.3s;
        border-radius: 15px;
        overflow: hidden;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    }
    .category-card:hover {
        transform: translateY(-5px);
    }
    /* --- AGE BUBBLES --- */
    .age-circle {
        width: 120px;
        height: 120px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 10px;
        border: 4px solid white;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
        font-size: 2.2em;
        font-weight: 900;
        color: white;
    }
@media only screen and (max-width: 48em) {
/*************** ADD MOBILE ONLY CSS HERE  ***************/


}
