
        
        /* Стили для pop-up уведомления */
        .cookie-consent {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background-color: #ffffff;
            padding: 25px 30px;
            box-shadow: 0 -5px 25px rgba(30, 30, 28, 0.15);
            z-index: 1000;
            display: none;
            border-top: 3px solid #f44535;
        }
        
        .cookie-consent.active {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
        }
        
        .cookie-content {
            flex: 1;
            min-width: 300px;
            margin-right: 30px;
        }
        
        .cookie-text {
            font-size: 1rem;
            color: #555;
            line-height: 1.5;
        }
        
        .cookie-btn {
            padding: 12px 28px;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: all 0.3s ease;
            border: none;
            background-color: #f44535;
            color: white;
            white-space: nowrap;
        }
        
        .cookie-btn:hover {
            background-color: #e03a2b;
        }
        
        .cookie-link {
            color: #f44535;
            text-decoration: none;
            font-weight: 600;
        }
        
        .cookie-link:hover {
            text-decoration: underline;
        }
        
        /* Мобильная адаптация */
        @media (max-width: 768px) {
            .cookie-consent.active {
                flex-direction: column;
                align-items: flex-start;
            }
            
            .cookie-content {
                margin-right: 0;
                margin-bottom: 20px;
            }
            
            .cookie-btn {
                width: 100%;
            }
        }