   /* --- Brand Colors & Variables --- */
        :root {
            --cheeks-pink: #FF6FB3;
            --cheeks-aqua: #18C5D8;
            --cheeks-yellow: #FFEFB4;
            --cheeks-red-accent: #E53E3E;
            --footer-bg: #F9FAFB; /* Light gray for new footer */
        }

        /* --- Global Styles --- */
        body {
            font-family: 'Inter', sans-serif;
            background-color: #ffffff;
            color: #374151;
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
        }

        h1, h2, h3, h4, h5, h6, .brand-font {
            font-family: 'Balsamiq Sans', cursive;
        }

        /* Icon Sizing Utility */
        [data-lucide] {
            width: 24px;
            height: 24px;
            stroke-width: 2.5px; /* Thicker strokes for cartoon vibe */
        }
        .icon-lg { width: 40px !important; height: 40px !important; }
        .icon-xl { width: 48px !important; height: 48px !important; }

        /* --- Custom Utility Classes --- */
        .text-cheeks-pink { color: var(--cheeks-pink) !important; }
        .text-cheeks-aqua { color: var(--cheeks-aqua) !important; }
        .text-cheeks-yellow { color: var(--cheeks-yellow) !important; }
        .text-cheeks-red { color: var(--cheeks-red-accent) !important; }
        
        .bg-cheeks-pink { background-color: var(--cheeks-pink) !important; }
        .bg-cheeks-aqua { background-color: var(--cheeks-aqua) !important; }
        .bg-cheeks-yellow { background-color: var(--cheeks-yellow) !important; }
        .bg-cheeks-red { background-color: var(--cheeks-red-accent) !important; }
        
        /* Soft Backgrounds */
        .bg-cheeks-yellow-soft { background-color: rgba(255, 239, 180, 0.3); }
        .bg-cheeks-aqua-soft { background-color: rgba(24, 197, 216, 0.1); }
        .bg-cheeks-pink-soft { background-color: rgba(255, 111, 179, 0.1); }
        
        .border-cheeks-pink { border-color: var(--cheeks-pink) !important; }
        .border-cheeks-aqua { border-color: var(--cheeks-aqua) !important; }

        /* Custom Shapes */
        .rounded-4xl { border-radius: 2.5rem !important; }
        .rounded-5xl { border-radius: 3.5rem !important; }

        /* Custom Shadows */
        .shadow-custom-lg { box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); }
        .shadow-custom-xl { box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); }

        /* Scrollbar */
        ::-webkit-scrollbar { width: 8px; }
        ::-webkit-scrollbar-track { background: var(--cheeks-yellow); }
        ::-webkit-scrollbar-thumb { background: var(--cheeks-pink); border-radius: 4px; }

        /* --- Components --- */
        
        /* Navbar */
        .navbar-brand { font-size: 1.6rem; letter-spacing: -0.5px; }
        .nav-link { color: #4b5563; font-weight: 600; font-size: 0.95rem; }
        .nav-link:hover { color: var(--cheeks-pink); }
        .navbar-toggler:focus { box-shadow: none; }
        
        /* Marquee Animation */
        .marquee-container { overflow: hidden; white-space: nowrap; position: relative; }
        .marquee-content { display: inline-block; animation: marquee 25s linear infinite; }
        @keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

        /* Buttons */
        .btn-cheeks-primary {
            background-color: var(--cheeks-pink);
            color: white;
            border-radius: 50px;
            font-weight: 700;
            padding: 0.75rem 1.75rem;
            border: none;
            transition: all 0.2s ease;
        }
        .btn-cheeks-primary:hover {
            background-color: #f05da3;
            color: white;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(255, 111, 179, 0.4);
        }

        .btn-cheeks-secondary {
            background-color: white;
            color: var(--cheeks-aqua);
            border: 2px solid var(--cheeks-aqua);
            border-radius: 50px;
            font-weight: 700;
            padding: 0.75rem 1.75rem;
            transition: all 0.2s ease;
        }
        .btn-cheeks-secondary:hover {
            background-color: var(--cheeks-aqua);
            color: white;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(24, 197, 216, 0.3);
        }

        .hover-scale { transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275); }
        .hover-scale:hover { transform: scale(1.03); }

        /* Interactive Product Card */
        .pack-card {
            cursor: pointer;
            transition: all 0.2s ease-in-out;
            border: 4px solid transparent;
            position: relative;
        }
        .pack-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(24, 197, 216, 0.2);
        }
        .pack-card.selected {
            border: 4px solid var(--cheeks-aqua);
            background-color: #fff;
            box-shadow: 0 0 0 4px var(--cheeks-pink);
            z-index: 10;
        }
        /* Checkmark for selected state */
        .pack-card.selected::after {
            content: "✓";
            position: absolute;
            top: -10px;
            right: -10px;
            background: var(--cheeks-pink);
            color: white;
            width: 30px;
            height: 30px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            box-shadow: 0 2px 5px rgba(0,0,0,0.2);
        }

        /* Footer Specifics */
        .footer-link {
            color: #4b5563;
            text-decoration: none;
            margin-bottom: 0.75rem;
            display: block;
            font-size: 0.95rem;
            transition: color 0.2s;
        }
        .footer-link:hover {
            color: var(--cheeks-pink);
            padding-left: 5px;
        }
        .social-icon-btn {
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 1px solid #d1d5db;
            border-radius: 50%;
            color: #374151;
            transition: all 0.2s;
        }
        .social-icon-btn:hover {
            border-color: var(--cheeks-pink);
            color: var(--cheeks-pink);
            background: #fff;
        }
        .scroll-to-top {
            width: 45px;
            height: 45px;
            border: 1px solid #d1d5db;
            border-radius: 50%;
            background: white;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #374151;
            transition: all 0.2s;
            cursor: pointer;
        }
        .scroll-to-top:hover {
            background: #374151;
            color: white;
            border-color: #374151;
        }

        section { padding: 5rem 0; }
        .hero-section { padding-top: 2rem; padding-bottom: 5rem; }
        
        /* Fix for mobile text alignment in hero */
        @media (max-width: 991px) {
            .hero-text-content { text-align: center; margin-bottom: 2rem; }
            .hero-buttons { justify-content: center; }
        }


         /* --- Essential Brand Overrides Only --- */
      
  
        
        /* Utility color classes */
        .text-pink { color: var(--cheeks-pink) !important; }
        .text-aqua { color: var(--cheeks-aqua) !important; }
        .bg-pink { background-color: var(--cheeks-pink) !important; }
        .bg-yellow { background-color: var(--cheeks-yellow) !important; }
        .bg-aqua { background-color: var(--cheeks-aqua) !important; }
        
        /* Soft backgrounds */
        .bg-yellow-subtle { background-color: rgba(255, 239, 180, 0.3) !important; }
        .bg-aqua-subtle { background-color: rgba(24, 197, 216, 0.1) !important; }
        .bg-pink-subtle { background-color: rgba(255, 111, 179, 0.1) !important; }
        
        /* Custom rounding */
        .rounded-4xl { border-radius: 2.5rem !important; }
        .rounded-5xl { border-radius: 3.5rem !important; }
        
        /* Icon sizing fix */
        [data-lucide] { width: 24px; height: 24px; stroke-width: 2.5px; }
        .icon-lg { width: 40px !important; height: 40px !important; }
        .icon-xl { width: 48px !important; height: 48px !important; }

        /* Product Card Selection Logic */
        .pack-card.selected { border: 4px solid var(--cheeks-aqua) !important; }
        
        /* Marquee Animation */
        .marquee-container { overflow: hidden; white-space: nowrap; }
        .marquee-content { display: inline-block; animation: marquee 25s linear infinite; }
        @keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

        /* SPA Navigation Styles */
        .cursor-pointer { cursor: pointer; }
        .hover-scale { transition: transform 0.2s; }
        .hover-scale:hover { transform: scale(1.05); }
        
        .view-section {
            animation: fadeEffect 0.3s ease-in-out;
        }
        @keyframes fadeEffect {
            from { opacity: 0; transform: translateY(10px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        /* Shop Specific */
        .form-check-input:checked {
            background-color: var(--cheeks-pink);
            border-color: var(--cheeks-pink);
        }

          /* --- Product Details Page Specific Styles --- */
        .product-thumbnail {
            width: 80px;
            height: 80px;
            object-fit: cover;
            cursor: pointer;
            border: 2px solid transparent;
            border-radius: 12px;
            transition: all 0.2s;
        }
        .product-thumbnail:hover, .product-thumbnail.active {
            border-color: var(--cheeks-pink);
            transform: scale(1.05);
        }
        
        .nav-tabs .nav-link {
            color: #6b7280;
            font-weight: 600;
            border: none;
            border-bottom: 3px solid transparent;
            padding: 1rem 1.5rem;
        }
        .nav-tabs .nav-link:hover {
            color: var(--cheeks-pink);
        }
        .nav-tabs .nav-link.active {
            color: var(--cheeks-pink);
            border-bottom-color: var(--cheeks-pink);
            background: transparent;
        }
        
        .nutrition-table th { background-color: var(--cheeks-yellow-soft); }
        
        .quantity-selector {
            display: flex;
            align-items: center;
            border: 2px solid #e5e7eb;
            border-radius: 50px;
            padding: 5px;
            width: fit-content;
        }
        .quantity-btn {
            width: 35px;
            height: 35px;
            border-radius: 50%;
            border: none;
            background: #f3f4f6;
            color: #374151;
            font-weight: bold;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: background 0.2s;
        }
        .quantity-btn:hover { background: #e5e7eb; }
        .quantity-input {
            width: 40px;
            text-align: center;
            border: none;
            font-weight: bold;
            background: transparent;
        }
        .stars { color: #F59E0B; }