   /* Основной баннер */
        .cookie-banner {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: #f5f5f7;
            padding: 15px 20px;
            box-shadow: 0 -2px 15px rgba(0,0,0,0.1);
            z-index: 9999;
            display: none;
            font-family: Arial, sans-serif;
        }

        .cookie-content {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 20px;
        }

        .cookie-text {
            flex-grow: 1;
            font-size: 14px;
            color: #333;
        }

        .cookie-text a {
            color: #0066cc;
            text-decoration: none;
        }

        .cookie-buttons {
            flex-shrink: 0;
            display: flex;
            gap: 10px;
        }

        .cookie-btn {
            padding: 8px 20px;
            border: 1px solid #ddd;
            border-radius: 20px;
            cursor: pointer;
            background: #fff;
            transition: 0.3s;
            white-space: nowrap;
        }

        /* Окно настроек */
        .cookie-settings {
            position: fixed;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            background: #fff;
            padding: 20px;
            border-radius: 12px;
            box-shadow: 0 4px 20px rgba(0,0,0,0.15);
            z-index: 10000;
            max-width: 500px;
            width: calc(100% - 40px);
            display: none;
        }

        /* Адаптивность */
        @media (max-width: 768px) {
            .cookie-content {
                flex-direction: column;
                align-items: flex-start;
                gap: 15px;
            }

            .cookie-buttons {
                width: 100%;
                flex-direction: column;
            }

            .cookie-btn {
                width: 100%;
                text-align: center;
                padding: 12px 20px;
            }

            .cookie-settings {
                bottom: 10px;
                padding: 15px;
            }

            .settings-header h3 {
                font-size: 18px;
            }

            .category-title {
                font-size: 14px;
            }

            .category-description {
                font-size: 12px;
            }
        }

        @media (max-width: 480px) {
            .cookie-text {
                font-size: 13px;
            }
            
            .cookie-btn {
                font-size: 14px;
            }
            
            .cookie-settings {
                padding: 15px;
            }
        }