/* Cookie Consent Banner */
        .cookie-consent {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: #2c3e50;
            color: white;
            padding: 15px;
            text-align: center;
            z-index: 9999;
            display: none;
        }

        .cookie-consent p {
            margin-bottom: 10px;
        }

        .cookie-consent button {
            background: #27ae60;
            color: white;
            border: none;
            padding: 8px 20px;
            margin: 0 5px;
            border-radius: 5px;
            cursor: pointer;
            transition: background 0.3s;
        }

        .cookie-consent button:hover {
            background: var(--pet-secondary);
        }