/* BG Produkte – Anzeige im "Design 2 – Karten"-Stil (aus dem Mockup übernommen) */

.bgp-wrap {
    --bgp-blue: #0073aa;
    --bgp-blue-dark: #005d8c;
    --bgp-border: #e2e6ea;
    --bgp-text: #2b2b2b;
    --bgp-muted: #6b6b6b;
    --bgp-soft: #f5f8fb;
    max-width: 980px;
    margin: 0 auto 30px;
    padding: 0 16px;
    color: var(--bgp-text);
    box-sizing: border-box;
}

.bgp-wrap *,
.bgp-wrap *::before,
.bgp-wrap *::after {
    box-sizing: border-box;
}

/* ---------- Karten-Basis ---------- */
.bgp-card {
    border: 1px solid var(--bgp-border);
    border-radius: 14px;
    padding: 28px;
    background: #fff;
    box-shadow: 0 4px 18px rgba(0, 0, 0, .05);
}

/* ---------- Anmeldung ---------- */
.bgp-title {
    margin: 0 0 8px;
    font-size: 1.5rem;
}

.bgp-intro {
    margin: 0 0 22px;
    color: var(--bgp-muted);
}

.bgp-login {
    text-align: center;
}

.bgp-fields {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    justify-content: center;
}

.bgp-field {
    flex: 1 1 220px;
    display: flex;
    flex-direction: column;
}

.bgp-field label {
    font-weight: 600;
    margin-bottom: 5px;
}

.bgp-req {
    color: #d63638;
}

.bgp-field input {
    padding: 11px 13px;
    border: 1px solid #c9ced3;
    border-radius: 8px;
    background: var(--bgp-soft);
    font-size: 1rem;
}

.bgp-field input:focus {
    outline: none;
    border-color: var(--bgp-blue);
    box-shadow: 0 0 0 3px rgba(0, 115, 170, .15);
}

.bgp-msg {
    margin: 16px 0 0;
    min-height: 1em;
}

.bgp-msg--info {
    color: var(--bgp-blue);
}

.bgp-msg--error {
    color: #b32d2e;
    font-weight: 600;
}

/* ---------- Button ---------- */
.bgp-btn {
    display: inline-block;
    background: var(--bgp-blue);
    color: #fff;
    padding: 12px 26px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: background .15s, transform .05s, box-shadow .15s;
}

.bgp-btn:hover {
    background: var(--bgp-blue-dark);
    color: #fff;
    box-shadow: 0 4px 12px rgba(0, 115, 170, .25);
}

.bgp-btn:active {
    transform: translateY(1px);
}

/* Kein roter Fokus-/Aktiv-Rand (Theme-Outline überschreiben) */
.bgp-btn:focus,
.bgp-btn:focus-visible,
.bgp-btn:active {
    outline: none !important;
    box-shadow: 0 0 0 3px rgba(0, 115, 170, .25);
}

.bgp-login .bgp-btn {
    margin-top: 22px;
}

/* ---------- Ergebnis / Paket ---------- */
.bgp-results {
    margin-top: 28px;
}

.bgp-pkg-name {
    text-align: center;
    margin: 0 0 22px;
    font-size: 1.45rem;
}

.bgp-empty {
    text-align: center;
    color: var(--bgp-muted);
}

/* ---------- Karten (Design 2 – grid) ---------- */
.bgp-cards {
    display: flex;
    gap: 22px;
    flex-wrap: wrap;
    justify-content: center;
}

.bgp-vcard {
    border: 1px solid var(--bgp-border);
    border-radius: 14px;
    background: #fff;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, .05);
    display: flex;
    flex-direction: column;
    flex: 1 1 360px;
    max-width: 440px;
    transition: transform .15s, box-shadow .15s;
}

.bgp-vcard:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, .1);
}

.bgp-vcard-media {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bgp-soft);
    padding: 18px;
}

.bgp-vcard-media img {
    width: 60%;
    max-width: 200px;
    height: 140px;
    object-fit: contain;
    border-radius: 8px;
}

.bgp-vcard-body {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 22px;
    flex: 1;
    align-items: center;
    text-align: center;
}

.bgp-vcard-title {
    margin: 0;
    font-size: 1.2rem;
    line-height: 1.3;
    min-height: 2.6em;
}

.bgp-vcard-note {
    margin: 0;
    font-size: .88rem;
    color: var(--bgp-muted);
    background: var(--bgp-soft);
    border-left: 3px solid var(--bgp-blue);
    padding: 6px 10px;
    border-radius: 4px;
}

.bgp-vcard-price {
    margin: 0;
    font-size: 1.35rem;
    color: var(--bgp-blue);
    font-weight: 700;
}

.bgp-vcard .bgp-btn {
    margin-top: auto;
    align-self: center;
}

/* ---------- Responsiv ---------- */
@media (max-width: 680px) {
    .bgp-card {
        padding: 20px;
    }
    .bgp-vcard {
        flex-basis: 100%;
        max-width: 100%;
    }
}
