﻿#cookie-consent-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 20px;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.3);
    z-index: 9999;
    font-family: 'Montserrat', sans-serif;
    display: none;
    border-top: 3px solid #ff5700;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.cookie-text h3 {
    margin: 0 0 10px 0;
    color: #ff5700;
    font-size: 1.2rem;
}

.cookie-text p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.4;
    color: #e0e0e0;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
}

.cookie-btn {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.cookie-accept {
    background-color: #ff5700;
    color: white;
}

.cookie-accept:hover {
    background-color: #e04d00;
    transform: translateY(-2px);
}

.cookie-refuse {
    background-color: transparent;
    border: 1px solid #666;
    color: #ccc;
}

.cookie-refuse:hover {
    border-color: #999;
    color: white;
}

@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }
}
