/* Cookie Consent Styles */
.cookie-consent-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #fff;
    box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    font-size: 1.4rem;
    transform: translateY(100%);
    opacity: 0;
    transition: all 0.5s ease;
}

.cookie-consent-banner.active {
    transform: translateY(0);
    opacity: 1;
}

.cookie-content {
    max-width: 120rem;
    margin: 0 auto;
    padding: 2rem;
}

.cookie-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.cookie-header h3 {
    margin-bottom: 0;
    font-size: 2rem;
}

.cookie-close {
    background: none;
    border: none;
    font-size: 2.4rem;
    line-height: 1;
    cursor: pointer;
    color: #1a1a1a;
}

.cookie-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;
}

.cookie-settings-panel {
    max-width: 120rem;
    margin: 0 auto;
    padding: 2rem;
    background-color: #f9f9f9;
    border-top: 1px solid #eee;
}

.cookie-settings-panel h4 {
    margin-bottom: 2rem;
    font-size: 1.8rem;
}

.cookie-option {
    margin-bottom: 2rem;
}

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

.cookie-option p {
    color: #666;
    margin-top: 0.5rem;
    font-size: 1.3rem;
}

.hidden {
    display: none;
}

@media screen and (max-width: 768px) {
    .cookie-buttons {
        flex-direction: column;
    }
    
    .cookie-buttons button {
        width: 100%;
    }
}
