.cookie-consent-banner {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 2000;
    background: rgba(0, 0, 0, 0.72);
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.cookie-consent-banner.is-visible {
    display: flex;
}

.cookie-consent-card {
    width: 100%;
    max-width: 520px;
    background: #292929;
    border: 2px solid #E3AB4A;
    border-radius: 12px;
    padding: 28px 32px;
    text-align: center;
    color: #fff;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.45);
}

.cookie-consent-card h2 {
    color: #E3AB4A;
    margin-bottom: 16px;
    font-size: 1.5rem;
}

.cookie-consent-card p {
    line-height: 1.6;
    margin-bottom: 12px;
}

.cookie-consent-question {
    color: #E3AB4A;
    font-weight: bold;
    margin-top: 8px;
    margin-bottom: 20px;
}

.cookie-consent-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.cookie-consent-btn {
    min-width: 110px;
    border: none;
    border-radius: 8px;
    padding: 12px 24px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.cookie-consent-btn:hover {
    transform: translateY(-1px);
}

.cookie-consent-yes {
    background: #E3AB4A;
    color: #1a1a1a;
}

.cookie-consent-no {
    background: transparent;
    color: #E3AB4A;
    border: 2px solid #E3AB4A;
}
