.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #7b7b7beb;
    color: #fff;
    padding: 1rem;
    z-index: 9999;
    display: none;
}

.cookie-consent.active {
    display: block;
}

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

.cookie-consent-message {
    margin-bottom: 0.5rem;
}

.cookie-consent-details {
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.cookie-consent-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.consent-btn {
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.2s;
}

.consent-btn.accept-all,
.consent-btn.accept {
    background-color: var(--secondary-color);
    color: white;
}

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

.consent-btn.reject-all {
    background-color: #6c757d;
    color: white;
}

.consent-btn.do-not-sell {
    background-color: transparent;
    border: 1px solid #fff;
    color: #fff;
}