/* Cookie Consent Banner Styles */
.cookie-banner {
    position: fixed;
    bottom: 0;
    width: 100%;
    background-color: rgba(38, 50, 56, 0.98);
    color: white;
    padding: 20px;
    z-index: 9999;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
    display: none;
}

.cookie-banner.show {
    display: block;
    animation: fadeIn 0.5s;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.cookie-content h3 {
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.cookie-content p {
    margin-bottom: 20px;
    line-height: 1.5;
}

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

.cookie-buttons button {
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cookie-buttons button.btn-primary {
    background-color: #D32F2F;
    color: white;
}

.cookie-buttons button.btn-primary:hover {
    background-color: #B71C1C;
}

.cookie-buttons button.btn-secondary {
    background-color: transparent;
    color: white;
    border: 1px solid white;
}

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

/* Cookie Settings Modal Styles */
.cookie-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    display: none;
}

.cookie-modal.show {
    display: flex;
    animation: fadeIn 0.3s;
}

.cookie-modal-content {
    background-color: white;
    border-radius: 8px;
    padding: 30px;
    width: 90%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.cookie-modal-content h3 {
    margin-bottom: 20px;
    font-size: 1.5rem;
    color: #263238;
}

.cookie-setting {
    border-bottom: 1px solid #E0E0E0;
    padding: 15px 0;
}

.cookie-setting:last-child {
    border-bottom: none;
}

.cookie-setting label {
    display: flex;
    align-items: center;
    font-weight: 600;
    margin-bottom: 5px;
    color: #263238;
    cursor: pointer;
}

.cookie-setting input[type="checkbox"] {
    margin-right: 10px;
    cursor: pointer;
    width: 18px;
    height: 18px;
}

.cookie-setting p {
    margin-left: 28px;
    color: #666;
    font-size: 0.9rem;
}

.cookie-modal-buttons {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    margin-top: 20px;
}

.cookie-modal-buttons button {
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cookie-modal-buttons button.btn-primary {
    background-color: #D32F2F;
    color: white;
}

.cookie-modal-buttons button.btn-primary:hover {
    background-color: #B71C1C;
}

.cookie-modal-buttons button.btn-secondary {
    background-color: #E0E0E0;
    color: #263238;
}

.cookie-modal-buttons button.btn-secondary:hover {
    background-color: #BDBDBD;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Responsive Styles */
@media (max-width: 768px) {
    .cookie-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .cookie-buttons button {
        width: 100%;
        margin-bottom: 10px;
    }
    
    .cookie-modal-buttons {
        flex-direction: column;
    }
    
    .cookie-modal-buttons button {
        width: 100%;
        margin-bottom: 10px;
    }
}
