/* Zarządzanie Cookie */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    background-color: rgba(0, 0, 0, 0.85);
    padding: 1.5rem;
    box-shadow: 0 -5px 10px rgba(0, 0, 0, 0.1);
    display: none;
    animation: slideUp 0.5s ease forwards;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

.cookie-banner__content {
    max-width: 1200px;
    margin: 0 auto;
    color: #fff;
}

.cookie-banner__title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.cookie-banner__text {
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.cookie-banner__settings {
    margin-bottom: 1.5rem;
}

.cookie-option {
    margin-bottom: 1rem;
    border: 1px solid #444;
    padding: 1rem;
    border-radius: 4px;
}

.cookie-option input[type="checkbox"] {
    margin-right: 0.5rem;
}

.cookie-option label {
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: inline-block;
}

.cookie-option__desc {
    margin-top: 0.5rem;
    font-size: 0.9rem;
    color: #aaa;
}

.cookie-banner__buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.cookie-btn {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.cookie-btn--primary {
    background-color: #0056b3;
    color: #fff;
}

.cookie-btn--primary:hover {
    background-color: #004494;
}

.cookie-btn--secondary {
    background-color: transparent;
    color: #fff;
    border: 1px solid #fff;
}

.cookie-btn--secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

@media (max-width: 768px) {
    .cookie-banner__buttons {
        flex-direction: column;
    }
    
    .cookie-btn {
        width: 100%;
    }
}
