.cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: #ffffff;
    border: 1px solid #444;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.3);
    padding: 20px;
    z-index: 9999;
    border-radius: 8px;
}

.cookie-content h3 { color: #d48411; margin-bottom: 10px; }
.cookie-content p { font-size: 0.9rem; color: #333; margin-bottom: 15px; }

.cookie-buttons { display: flex; gap: 10px; flex-wrap: wrap; }

.btn-cookie {
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
    transition: 0.3s;
}

.btn-cookie.accept { background-color: #555651; color: white; }
.btn-cookie.reject { background-color: #9b9a96; color: white; }
.btn-cookie.settings { background-color: transparent; color: #555; text-decoration: underline; }

.cookie-modal {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
}

.modal-content {
    background: white;
    padding: 30px;
    border-radius: 8px;
    max-width: 500px;
    width: 90%;
}

.option { margin-bottom: 15px; display: flex; gap: 10px; align-items: flex-start; }

@media (max-width: 768px) {
    .cookie-buttons { flex-direction: column; }
}