/* Consent banner styling */
.consent-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: rgba(0, 0, 0, 0.92);
    color: #fff;
    padding: 18px 22px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    box-shadow: 0 -6px 20px rgba(0, 0, 0, 0.35);
    font-size: 14px;
    line-height: 1.5;
}

.consent-banner__text {
    flex: 1 1 240px;
    min-width: 200px;
}

.consent-banner__actions {
    display: flex;
    gap: 10px;
    align-items: center;
    flex-wrap: wrap;
}

.consent-btn {
    border: none;
    cursor: pointer;
    padding: 10px 16px;
    font-weight: 600;
    border-radius: 4px;
    transition: transform 0.08s ease, opacity 0.2s ease;
}

.consent-btn:active {
    transform: translateY(1px);
}

.consent-btn--primary {
    background: #22c55e;
    color: #fff;
}

.consent-btn--primary:hover {
    background: #16a34a;
}

.consent-btn--secondary {
    background: #ffffff;
    color: #111;
}

.consent-btn--ghost {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.4);
}

.consent-banner__toggles {
    display: flex;
    gap: 16px;
    align-items: center;
    flex-wrap: wrap;
}

.consent-toggle {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #f4f4f4;
}

.consent-toggle input {
    width: 16px;
    height: 16px;
}

.consent-media-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 16px;
    gap: 12px;
}

.consent-media-overlay button {
    background: #c43124;
    color: #fff;
    border: none;
    padding: 10px 14px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
}

.consent-media-wrapper {
    position: relative;
}