/* COOKIE CONSENT STYLES */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #333;
    color: #fff;
    padding: 20px;
    z-index: 1000;
    box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.1);
    display: none;
}

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

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

.cookie-content p {
    margin-bottom: 15px;
    font-size: 14px;
}

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

.cookie-btn {
    padding: 8px 15px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.accept-all {
    background-color: #a0f502;
    color: #333;
}

.accept-all:hover {
    background-color: #8ddc00;
}

.accept-necessary {
    background-color: #666;
    color: #fff;
}

.accept-necessary:hover {
    background-color: #777;
}

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

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

.save-preferences {
    background-color: #a0f502;
    color: #333;
}

.save-preferences:hover {
    background-color: #8ddc00;
}

/* COOKIE 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: 1001;
    display: none;
}

.cookie-modal-content {
    background-color: #fff;
    width: 100%;
    max-width: 500px;
    border-radius: 8px;
    padding: 30px;
    position: relative;
    max-height: 80vh;
    overflow-y: auto;
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 24px;
    cursor: pointer;
    color: #666;
    transition: color 0.3s ease;
}

.close-modal:hover {
    color: #333;
}

.cookie-modal-content h3 {
    font-size: 20px;
    margin-bottom: 20px;
}

.cookie-options {
    margin-bottom: 20px;
}

.cookie-option {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

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

.cookie-option label {
    font-weight: 500;
    margin-left: 10px;
}

.cookie-option p {
    margin-top: 5px;
    margin-left: 30px;
    font-size: 14px;
    color: #666;
}

/* RESPONSIVE STYLES FOR COOKIES */
@media (max-width: 768px) {
    .cookie-buttons {
        flex-direction: column;
    }
    
    .cookie-btn {
        width: 100%;
    }
    
    .cookie-modal-content {
        width: 90%;
        padding: 20px;
    }
}
