.hbs-wrap {
    max-width: 880px;
    margin: 24px auto;
    background: #fff;
    padding: 18px;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
}

.hbs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 12px;
    margin-bottom: 12px;
}

.hbs-wrap label {
    font-weight: 600;
    display: grid;
    gap: 6px;
}

.hbs-wrap input,
.hbs-wrap select,
.hbs-wrap textarea {
    padding: 8px;
    border: 1px solid #ccd0d4;
    border-radius: 6px;
}

.hbs-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 8px;
}

.hbs-btn {
    background: #2271b1;
    color: #fff;
    padding: 10px 14px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
}

.hbs-btn:disabled {
    opacity: .6;
    cursor: not-allowed;
}

.hbs-msg {
    font-size: 13px;
}

.hbs-msg.ok {
    color: #007c1d;
}

.hbs-msg.err {
    color: #b32d2e;
}

/* Payment Options */
.hbs-payment-options-field {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid #e5e5e5;
}

.hbs-payment-options {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.hbs-radio-card {
    cursor: pointer;
    flex: 1;
    min-width: 200px;
}

.hbs-radio-card input[type="radio"] {
    position: absolute;
    opacity: 0;
}

.hbs-radio-card-content {
    display: flex;
    flex-direction: column;
    padding: 16px;
    border: 2px solid #e5e5e5;
    border-radius: 8px;
    transition: all 0.2s ease;
    background: #fafafa;
}

.hbs-radio-card input[type="radio"]:checked+.hbs-radio-card-content {
    border-color: #2271b1;
    background: #f0f7fc;
    box-shadow: 0 0 0 1px #2271b1;
}

.hbs-radio-card-content strong {
    font-size: 15px;
    margin-bottom: 4px;
}

.hbs-radio-card-content small {
    color: #666;
    font-size: 12px;
}

.hbs-radio-card:hover .hbs-radio-card-content {
    border-color: #72aee6;
}