/* ── Bierspa Gutschein Widget ─────────────────────────────────────────── */

#bsg-wrap {
    max-width: 100%;
    width: 100%;
    margin: 0 auto;
    font-family: inherit;
    color: #333;
}

/* Typ-Wahl */
.bsg-type-choice {
    display: flex;
    gap: 16px;
    margin-bottom: 28px;
}
.bsg-type-btn {
    flex: 1;
    padding: 18px;
    border: 2px solid #eb8a31;
    border-radius: 10px;
    background: #fdf3e7;
    cursor: pointer;
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    color: #555;
    transition: all 0.2s;
}
.bsg-type-btn:hover,
.bsg-type-btn.active {
    border-color: #eb8a31;
    background: #fff8ec;
    color: #eb8a31;
}

/* Sections */
.bsg-section {
    margin-bottom: 28px;
}
.bsg-section-title {
    font-weight: 700;
    font-size: 15px;
    margin-bottom: 14px;
    color: #333;
    border-bottom: 1px solid #e8dece;
    padding-bottom: 6px;
}

/* Fields */
.bsg-row {
    display: flex;
    gap: 16px;
    margin-bottom: 14px;
}
.bsg-field {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.bsg-field label {
    font-size: 13px;
    font-weight: 600;
    color: #555;
}
.bsg-field input,
.bsg-field select,
.bsg-field textarea {
    padding: 11px 14px;
    border: 1px solid #d5c9b5;
    border-radius: 6px;
    background: #fff;
    font-size: 14px;
    color: #333;
    width: 100%;
    box-sizing: border-box;
    font-family: inherit;
}
.bsg-field input:focus,
.bsg-field select:focus,
.bsg-field textarea:focus {
    outline: none;
    border-color: #d4900a;
}
.bsg-field textarea {
    resize: vertical;
    min-height: 70px;
}

/* Preis-Anzeige */
.bsg-price-box {
    background: #fff8ec;
    border-left: 4px solid #d4900a;
    padding: 14px 18px;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 700;
    color: #d4900a;
    margin-bottom: 20px;
}
.bsg-price-sub {
    font-size: 13px;
    font-weight: 400;
    color: #888;
    margin-top: 3px;
}

/* Snackplatten */
.bsg-snack-add-row {
    display: flex;
    gap: 8px;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 10px;
}
.bsg-snack-add-row select {
    flex: 1;
    min-width: 130px;
    padding: 9px 12px;
    border: 1px solid #d5c9b5;
    border-radius: 6px;
    font-size: 14px;
    background: #fff;
}
.bsg-snack-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fdf8ec;
    border-left: 3px solid #d4900a;
    padding: 7px 12px;
    margin-bottom: 5px;
    border-radius: 4px;
    font-size: 14px;
}
.bsg-snack-remove {
    background: none;
    border: none;
    color: #c0392b;
    font-size: 16px;
    cursor: pointer;
    padding: 0 4px;
}

/* Post-Adresse */
.bsg-post-fields {
    background: #fdf8f0;
    border: 1px solid #e0d5c5;
    border-radius: 8px;
    padding: 16px;
    margin-top: 10px;
}

/* Checkbox */
.bsg-check-wrap {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: #555;
    margin-bottom: 14px;
}
.bsg-check-wrap input[type=checkbox] {
    margin-top: 2px;
    flex-shrink: 0;
    width: 16px;
    height: 16px;
    accent-color: #d4900a;
}

/* Info-Box */
.bsg-info-box {
    background: #fff8ec;
    border-left: 3px solid #d4900a;
    padding: 10px 14px;
    border-radius: 4px;
    font-size: 13px;
    color: #8a6200;
    margin-bottom: 14px;
}

/* Zahlung Buttons */
.bsg-pay-btn {
    display: block;
    width: 100%;
    padding: 14px;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    margin-bottom: 10px;
    transition: opacity 0.2s;
    color: #fff;
}
.bsg-pay-btn:hover { opacity: 0.88; }
.bsg-pay-btn:disabled { opacity: 0.5; cursor: not-allowed; }
.bsg-pay-paypal { background: #f0a500; }
.bsg-pay-bank   { background: #0d9b6e; }
.bsg-pay-back   { background: #888; margin-top: 6px; }

/* Submit / Weiter */
.bsg-btn-primary {
    background: #eb8a31;
    color: #fff;
    border: none;
    border-radius: 25px;
    padding: 13px 28px;
    font-size: 15px;
    font-weight: 500;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    transition: background 0.2s;
}
.bsg-btn-primary:hover { background: #edc895; }
#bsg-snack-add {
    background: #e0e0e0;
    color: #555555;
}
#bsg-snack-add:hover { background: #cccccc; }

/* Error */
.bsg-error {
    color: #c0392b;
    font-size: 13px;
    margin-top: 6px;
    min-height: 18px;
}

/* Loading */
.bsg-loading {
    text-align: center;
    padding: 14px;
    color: #d4900a;
    font-weight: 600;
    display: none;
}

/* Steps */
.bsg-step { display: none; }
.bsg-step.active { display: block; }

/* Zusammenfassung */
.bsg-summary-box {
    background: #fdf8f0;
    border: 1px solid #e0d5c5;
    border-radius: 8px;
    padding: 16px 20px;
    margin-bottom: 20px;
    font-size: 14px;
    line-height: 1.7;
}

/* Responsive */
@media (max-width: 600px) {
    .bsg-type-choice { flex-direction: column; }
    .bsg-row { flex-direction: column; }
}
