/* ── GDPR Consent Banner ── */

#gw-consent-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: rgba(30, 58, 95, 0.98);
    color: #fff;
    font-family: 'Manrope', sans-serif;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

#gw-consent-banner.gw-consent-visible {
    transform: translateY(0);
}

.gw-consent-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 14px 20px;
}

.gw-consent-text {
    margin: 0;
    font-size: 14px;
    line-height: 1.4;
    flex: 1;
}

.gw-consent-text a {
    color: #FF9800;
    text-decoration: underline;
    font-size: 13px;
}

.gw-consent-text a:hover {
    color: #ffb74d;
}

.gw-consent-buttons {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.gw-consent-btn {
    font-family: 'Manrope', sans-serif;
    font-size: 14px;
    padding: 8px 18px;
    border-radius: 4px;
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.2s, border-color 0.2s;
}

.gw-consent-btn--primary {
    background: #FF9800;
    color: #1e3a5f;
    border: 2px solid #FF9800;
    font-weight: 700;
}

.gw-consent-btn--primary:hover {
    background: #ffb74d;
    border-color: #ffb74d;
}

.gw-consent-btn--outline {
    background: transparent;
    color: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.35);
    font-weight: 400;
}

.gw-consent-btn--outline:hover {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.6);
}

/* ── Gear icon ── */

#gw-consent-gear {
    position: fixed;
    bottom: 12px;
    left: 12px;
    z-index: 9998;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(30, 58, 95, 0.85);
    color: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 18px;
    line-height: 30px;
    text-align: center;
    cursor: pointer;
    font-family: 'Manrope', sans-serif;
    padding: 0;
    transition: background 0.2s, color 0.2s;
}

#gw-consent-gear:hover {
    background: rgba(30, 58, 95, 1);
    color: #FF9800;
    border-color: #FF9800;
}

/* ── Mobile ── */

@media (max-width: 600px) {
    .gw-consent-inner {
        flex-direction: column;
        text-align: center;
        padding: 12px 16px;
        gap: 10px;
    }

    .gw-consent-buttons {
        width: 100%;
        justify-content: center;
    }

    .gw-consent-btn {
        font-size: 13px;
        padding: 8px 14px;
    }
}
