
        *, *::before, *::after { box-sizing: border-box; }

        body {
            font-family: var(--ff-body);
            font-size: 15px;
            font-weight: 400;
            color: var(--gray-800);
            background: var(--off-white);
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            line-height: 1.65;
            overflow-x: hidden;
        }

        /* ═══════════════════════════════════════════════════
           TYPOGRAPHY
        ═══════════════════════════════════════════════════ */
        h1, h2, h3, h4, .font-display {
            font-family: var(--ff-display);
            font-weight: 600;
            color: var(--gray-800);
            line-height: 1.2;
        }
        h1 { font-size: 2.4rem; }
        h2 { font-size: 1.9rem; }
        h3 { font-size: 1.35rem; }
        h4 { font-size: 1.1rem; }

        p { color: var(--gray-600); font-size: 0.95rem; line-height: 1.75; }

        .eyebrow {
            font-family: var(--ff-body);
            font-size: 0.7rem;
            font-weight: 700;
            letter-spacing: 0.18em;
            text-transform: uppercase;
            color: var(--pink-500);
        }

        .text-muted, small { color: var(--gray-400); font-size: 0.82rem; }

        /* ═══════════════════════════════════════════════════
           LINKS
        ═══════════════════════════════════════════════════ */
        a { color: var(--gray-800); text-decoration: none; transition: color 0.18s; }
        a:hover { color: var(--pink-500); }

        /* ═══════════════════════════════════════════════════
           BUTTONS
        ═══════════════════════════════════════════════════ */
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            font-family: var(--ff-body);
            font-size: 0.8rem;
            font-weight: 700;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            padding: 0.7rem 1.6rem;
            border-radius: 50px;
            border: none;
            cursor: pointer;
            transition: all 0.22s var(--ease);
            text-decoration: none;
            white-space: nowrap;
        }
        .btn-primary {
            background: var(--pink-500);
            color: #fff;
            box-shadow: 0 4px 14px rgba(232, 77, 112, 0.35);
        }
        .btn-primary:hover {
            background: var(--pink-600);
            color: #fff;
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(232, 77, 112, 0.4);
        }
        .btn-secondary {
            background: transparent;
            color: var(--pink-500);
            border: 2px solid var(--pink-300);
        }
        .btn-secondary:hover {
            background: var(--pink-100);
            color: var(--pink-600);
            border-color: var(--pink-400);
            transform: translateY(-1px);
        }
        .btn-dark {
            background: var(--gray-800);
            color: #fff;
        }
        .btn-dark:hover {
            background: var(--gray-600);
            color: #fff;
            transform: translateY(-2px);
        }
        .btn-outline-white {
            background: transparent;
            color: #fff;
            border: 2px solid rgba(255,255,255,0.6);
        }
        .btn-outline-white:hover {
            background: rgba(255,255,255,0.15);
            color: #fff;
            border-color: #fff;
        }
        .btn-sm  { padding: 0.5rem 1.1rem; font-size: 0.72rem; }
        .btn-lg  { padding: 0.9rem 2rem;   font-size: 0.88rem; }
        .btn-xl  { padding: 1rem 2.4rem;   font-size: 0.92rem; }

        /* ═══════════════════════════════════════════════════
           FORMS
        ═══════════════════════════════════════════════════ */
        input[type="text"],
        input[type="email"],
        input[type="password"],
        input[type="search"],
        input[type="number"],
        input[type="tel"],
        select,
        textarea {
            border: 1.5px solid var(--gray-200) !important;
            border-radius: 12px !important;
            padding: 0.7rem 1rem !important;
            font-family: var(--ff-body) !important;
            font-size: 0.92rem !important;
            color: var(--gray-800) !important;
            background: var(--white) !important;
            outline: none !important;
            width: 100%;
            transition: border-color 0.18s, box-shadow 0.18s;
        }
        input:focus, select:focus, textarea:focus {
            border-color: var(--pink-400) !important;
            box-shadow: 0 0 0 3px rgba(232, 77, 112, 0.12) !important;
        }
        input::placeholder { color: var(--gray-400); font-size: 0.875rem; }

        label {
            font-family: var(--ff-body);
            font-size: 0.8rem;
            font-weight: 600;
            color: var(--gray-600);
            display: block;
            margin-bottom: 6px;
        }

        .form-control {
            border: 1.5px solid var(--gray-200) !important;
            border-radius: 12px !important;
            padding: 0.65rem 1rem !important;
            font-family: var(--ff-body) !important;
            font-size: 0.9rem !important;
            color: var(--gray-800) !important;
        }
        .form-control:focus {
            border-color: var(--pink-400) !important;
            box-shadow: 0 0 0 3px rgba(232, 77, 112, 0.12) !important;
        }

        /* ═══════════════════════════════════════════════════
           ALERTS
        ═══════════════════════════════════════════════════ */
        .alert {
            padding: 14px 20px;
            margin-bottom: 16px;
            font-size: 0.9rem;
            font-family: var(--ff-body);
            border-radius: 14px;
            display: flex;
            align-items: flex-start;
            gap: 10px;
        }
        .alert-success { background: #e8f5e9; border-left: 4px solid #4caf50; color: #1b5e20; }
        .alert-danger, .alert-error { background: #fce4ec; border-left: 4px solid #e91e63; color: #880e4f; }
        .alert-info { background: #e3f2fd; border-left: 4px solid #2196f3; color: #0d47a1; }
        .alert-warning { background: #fff8e1; border-left: 4px solid #ffc107; color: #e65100; }

        /* ═══════════════════════════════════════════════════
           BREADCRUMB
        ═══════════════════════════════════════════════════ */
        .breadcrumb {
            display: flex;
            flex-wrap: wrap;
            gap: 4px;
            list-style: none;
            padding: 0;
            font-size: 0.8rem;
            color: var(--gray-400);
        }
        .breadcrumb-item + .breadcrumb-item::before {
            content: "›";
            margin-right: 4px;
            color: var(--gray-300);
        }
        .breadcrumb-item a { color: var(--gray-400); text-decoration: none; }
        .breadcrumb-item a:hover { color: var(--pink-500); }
        .breadcrumb-item.active { color: var(--gray-600); font-weight: 600; }

        /* ═══════════════════════════════════════════════════
           TABLES
        ═══════════════════════════════════════════════════ */
        table { width: 100%; border-collapse: collapse; }
        th {
            font-family: var(--ff-body);
            font-size: 0.72rem;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            font-weight: 700;
            color: var(--gray-600);
            padding: 12px 16px;
            border-bottom: 2px solid var(--gray-100);
            text-align: left;
        }
        td {
            padding: 14px 16px;
            border-bottom: 1px solid var(--gray-100);
            font-size: 0.9rem;
            color: var(--gray-800);
            vertical-align: middle;
        }
        tr:last-child td { border-bottom: none; }
        tr:hover td { background: var(--soft-pink); }

        /* ═══════════════════════════════════════════════════
           BADGES / PILLS
        ═══════════════════════════════════════════════════ */
        .badge {
            display: inline-flex;
            align-items: center;
            gap: 4px;
            font-size: 0.68rem;
            font-weight: 700;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            padding: 3px 10px;
            border-radius: 50px;
        }
        .badge-pink   { background: var(--pink-100);   color: var(--pink-600); }
        .badge-green  { background: var(--soft-mint);   color: #1b5e20; }
        .badge-gold   { background: #fff8e1;            color: #e65100; }
        .badge-dark   { background: var(--gray-800);    color: #fff; }
        .badge-lav    { background: var(--soft-lav);    color: #5e35b1; }
        .badge-peach  { background: var(--soft-peach);  color: #bf360c; }

        /* ═══════════════════════════════════════════════════
           CARDS
        ═══════════════════════════════════════════════════ */
        .card {
            background: var(--white);
            border-radius: 20px;
            box-shadow: 0 2px 16px rgba(0,0,0,0.06);
            overflow: hidden;
            transition: transform 0.25s var(--ease), box-shadow 0.25s;
        }
        .card:hover {
            transform: translateY(-4px);
            box-shadow: 0 8px 30px rgba(232, 77, 112, 0.15);
        }

        /* ═══════════════════════════════════════════════════
           SECTION HELPERS
        ═══════════════════════════════════════════════════ */
        .section { padding: 72px 0; }
        .section-sm { padding: 48px 0; }
        .container-kids {
            width: 100%;
            max-width: 1340px;
            margin: 0 auto;
            padding: 0 24px;
        }
        .section-heading {
            text-align: center;
            margin-bottom: 48px;
        }
        .section-heading .eyebrow { margin-bottom: 10px; display: block; }
        .section-heading h2 { margin-bottom: 12px; }
        .section-heading p  { max-width: 520px; margin: 0 auto; }

        /* Divider */
        .divider { height: 1px; background: var(--gray-100); margin: 0; }

        /* ═══════════════════════════════════════════════════
           SCROLL REVEAL
        ═══════════════════════════════════════════════════ */
        .reveal {
            opacity: 0;
            transform: translateY(28px);
            transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
        }
        .reveal.in { opacity: 1; transform: none; }
        .reveal-d1 { transition-delay: 0.08s; }
        .reveal-d2 { transition-delay: 0.16s; }
        .reveal-d3 { transition-delay: 0.24s; }
        .reveal-d4 { transition-delay: 0.32s; }

        /* ═══════════════════════════════════════════════════
           WHATSAPP FLOATING BTN
        ═══════════════════════════════════════════════════ */
        .whatsapp-float {
            position: fixed;
            bottom: 28px;
            right: 24px;
            z-index: 9999;
            width: 56px;
            height: 56px;
            border-radius: 50%;
            background: #25d366;
            color: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
            transition: transform 0.22s var(--ease), box-shadow 0.22s;
            text-decoration: none;
        }
        .whatsapp-float:hover {
            transform: scale(1.1);
            color: #fff;
            box-shadow: 0 8px 28px rgba(37, 211, 102, 0.6);
        }
        .whatsapp-float-label {
            position: fixed;
            bottom: 40px;
            right: 90px;
            z-index: 9999;
            background: var(--gray-800);
            color: #fff;
            font-size: 0.72rem;
            font-weight: 600;
            letter-spacing: 0.06em;
            padding: 6px 14px;
            border-radius: 50px;
            white-space: nowrap;
            opacity: 0;
            transform: translateX(8px);
            transition: opacity 0.2s, transform 0.2s;
            pointer-events: none;
        }
        .whatsapp-float:hover + .whatsapp-float-label,
        .whatsapp-float-label:hover {
            opacity: 1;
            transform: translateX(0);
        }

        /* Mobile: hide label */
        @media (max-width: 768px) {
            .whatsapp-float { bottom: 80px; }
            .whatsapp-float-label { display: none; }
        }

        /* ═══════════════════════════════════════════════════
           PAGE HEADER
        ═══════════════════════════════════════════════════ */
        .page-header {
            padding: 32px 0 24px;
        }
        .page-header h1 {
            font-size: 2rem;
            margin-bottom: 8px;
        }

        /* ═══════════════════════════════════════════════════
           STAR RATING
        ═══════════════════════════════════════════════════ */
        .star-rating { display: flex; gap: 2px; }
        .star-rating .star { color: var(--gray-200); font-size: 12px; }
        .star-rating .star.filled { color: #ffc107; }

        /* ═══════════════════════════════════════════════════
           TOAST / NOTIFICATION
        ═══════════════════════════════════════════════════ */
        .kids-toast {
            position: fixed;
            bottom: 24px;
            left: 50%;
            transform: translateX(-50%) translateY(calc(100% + 30px));
            z-index: 9999;
            background: var(--gray-800);
            color: #fff;
            padding: 14px 24px;
            border-radius: 50px;
            font-size: 0.88rem;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 10px;
            box-shadow: 0 8px 30px rgba(0,0,0,0.2);
            transition: transform 0.35s var(--ease);
            white-space: nowrap;
        }
        .kids-toast.show {
            transform: translateX(-50%) translateY(0);
        }
        .kids-toast .t-icon {
            width: 24px; height: 24px;
            background: #25d366;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 11px;
        }

        /* ═══════════════════════════════════════════════════
           UTILITY
        ═══════════════════════════════════════════════════ */
        .text-pink   { color: var(--pink-500); }
        .text-gold   { color: var(--gold); }
        .bg-pink-soft { background: var(--soft-pink); }
        .bg-lav-soft  { background: var(--soft-lav); }
        .bg-peach-soft { background: var(--soft-peach); }
        .rounded-kids { border-radius: 20px; }
        .rounded-pill { border-radius: 50px; }
        .shadow-kids  { box-shadow: 0 4px 24px rgba(232,77,112,0.12); }
        .shadow-soft  { box-shadow: 0 2px 16px rgba(0,0,0,0.07); }

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

        /* ═══════════════════════════════════════════════════
           PWA: iOS install banner
        ═══════════════════════════════════════════════════ */
        #ios-install-banner {
            margin: 0;
            border-radius: 0;
        }

        /* ═══════════════════════════════════════════════════
           PWA: Notification permission popup
        ═══════════════════════════════════════════════════ */
        #notif-popup {
            display: none;
            position: fixed;
            bottom: 24px;
            right: 24px;
            max-width: 320px;
            z-index: 10000;
            animation: notif-pop-in 0.35s var(--ease);
        }
        #notif-popup .notif-popup-inner {
            padding: 20px;
        }
        #notif-popup h4 {
            margin-bottom: 8px;
        }
        #notif-popup p {
            margin-bottom: 16px;
        }
        #notif-popup .notif-popup-actions {
            display: flex;
            gap: 8px;
        }
        @keyframes notif-pop-in {
            from { opacity: 0; transform: translateY(16px); }
            to { opacity: 1; transform: translateY(0); }
        }
        @media (max-width: 480px) {
            #notif-popup {
                left: 16px;
                right: 16px;
                bottom: 16px;
                max-width: none;
            }
        }
