/* Стили для Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1B5E20;
    color: white;
    padding: 15px 20px;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 10000;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    animation: slideUp 0.3s ease-out;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.cookie-text p {
    margin: 0;
    font-size: 14px;
    line-height: 1.4;
    flex: 1;
    min-width: 300px;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 8px 20px;
    border: none;
    border-radius: 4px;
    font-size: 12px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 80px;
    text-decoration: none;
    display: inline-block;
}

.cookie-accept {
    background-color: #4CAF50;
    color: white;
}

.cookie-accept:hover {
    background-color: #2E7D32;
    transform: translateY(-1px);
}

.cookie-decline {
    background-color: transparent;
    color: #bdc3c7;
    border: 1px solid #bdc3c7;
}

.cookie-decline:hover {
    background-color: #2E7D32;
    color: white;
    border-color: white;
}

.cookie-policy {
    background-color: transparent;
    color: #4CAF50;
    border: 1px solid #4CAF50;
}

.cookie-policy:hover {
    background-color: #4CAF50;
    color: white;
    text-decoration: none;
}

/* Мобильная адаптация */
@media (max-width: 768px) {
    .cookie-banner {
        padding: 12px 15px;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }
    
    .cookie-text p {
        font-size: 13px;
        min-width: auto;
    }
    
    .cookie-buttons {
        justify-content: center;
        width: 100%;
        flex-wrap: wrap;
    }
    
    .cookie-btn {
        flex: 1;
        max-width: 120px;
        min-width: 100px;
    }
}

@media (max-width: 480px) {
    .cookie-text p {
        font-size: 12px;
    }
    
    .cookie-btn {
        font-size: 11px;
        padding: 6px 15px;
        min-width: 80px;
    }
    
    .cookie-buttons {
        gap: 8px;
    }
}
