/* B2B invoice request — builds on checkout-form.css */

.b2b-page {
    max-width: 760px;
    margin: 0 auto;
    padding: 0 0 32px;
    text-align: left;
    color: #222;
}

.b2b-page h1 {
    margin: 0 0 12px;
    font-size: 1.75em;
    line-height: 1.25;
}

.b2b-lead {
    margin: 0 0 18px;
    font-size: 17px;
    line-height: 1.5;
    color: #444;
}

.b2b-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin: 0 0 18px;
    padding: 0;
    list-style: none;
    counter-reset: b2b-step;
}

.b2b-steps li {
    position: relative;
    margin: 0 !important;
    padding: 14px 14px 14px 44px !important;
    list-style: none !important;
    background: #f4f6f8 !important;
    border: 1px solid #d0d7de;
    border-radius: 8px;
    font-size: 15px;
    line-height: 1.4;
    color: #333;
    counter-increment: b2b-step;
}

.b2b-steps li::before {
    content: counter(b2b-step);
    position: absolute;
    left: 12px;
    top: 14px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #2E629D;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    line-height: 24px;
    text-align: center;
}

.b2b-steps strong {
    display: block;
    margin-bottom: 2px;
    color: #1a1a1a;
}

.b2b-points {
    margin: 0 0 20px;
    padding: 14px 16px 14px 18px;
    background: #f7f9fb;
    border: 1px solid #d0d7de;
    border-radius: 8px;
    font-size: 16px;
    line-height: 1.5;
    color: #333;
}

.b2b-points ul {
    margin: 0;
    padding: 0 0 0 1.1em;
}

.b2b-points li {
    margin: 0 0 8px;
    padding: 0 !important;
}

.b2b-points li:last-child {
    margin-bottom: 0;
}

.b2b-note {
    margin: 0 0 18px;
    padding: 12px 14px;
    font-size: 15px;
    line-height: 1.45;
    color: #555;
    background: #fff8e8;
    border: 1px solid #e6d4a8;
    border-radius: 6px;
}

.b2b-note a {
    color: #2E629D;
    font-weight: 600;
}

.b2b-form select.checkout-input {
    height: auto;
    min-height: 48px;
    cursor: pointer;
}

.b2b-form textarea.checkout-input {
    min-height: 88px;
    resize: vertical;
    font-family: inherit;
}

.b2b-org-box {
    margin: 0 0 4px;
    padding: 14px 14px 4px;
    background: #fff;
    border: 1px solid #d0d7de;
    border-radius: 8px;
}

.b2b-org-box-title {
    margin: 0 0 10px;
    font-size: 14px;
    font-weight: 600;
    color: #666;
}

.b2b-org-type {
    margin: 0 0 12px;
    font-size: 15px;
    font-weight: 600;
    color: #2E629D;
    min-height: 1.2em;
}

.b2b-summary {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    justify-content: space-between;
    gap: 8px 16px;
    margin: 0 0 16px;
    padding: 14px 16px;
    background: #eaf2fa;
    border: 1px solid #b8cce0;
    border-radius: 8px;
    font-size: 16px;
    color: #333;
}

.b2b-summary-label {
    color: #555;
}

.b2b-summary-value {
    font-size: 22px;
    font-weight: 700;
    color: #1a1a1a;
}

.b2b-summary-value span {
    font-weight: 700;
}

.b2b-form .checkout-hint--warn {
    color: #9a5b00;
}

.b2b-page .checkout-secondary {
    max-width: 760px;
}

@media (max-width: 700px) {
    .b2b-steps {
        grid-template-columns: 1fr;
    }

    .b2b-summary {
        flex-direction: column;
        align-items: flex-start;
    }
}
