html,
body.b2b-public-body {
    min-height: 100%;
    margin: 0;
    background: #eef2f5;
    color: #26323b;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 13px;
}

body.b2b-public-body,
body.b2b-public-body *,
body.b2b-public-body *::before,
body.b2b-public-body *::after {
    box-sizing: border-box;
}

.b2b-public-shell {
    min-height: 100vh;
    border: 0;
    border-radius: 0;
}

.b2b-public-head {
    position: sticky;
    top: 0;
    z-index: 20;
}

.b2b-public-head a {
    text-decoration: none;
}

.b2b-shop-nav a,
.b2b-shop-nav span {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 0 12px;
    border-radius: 14px;
    color: #505b65;
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
}

.b2b-shop-nav a.is-active {
    background: #eaf7fc;
    color: var(--b2b-brand);
}

.b2b-public-userbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 10px 18px;
    border-bottom: 1px solid #d7dee4;
    background: #f8fafc;
}

.b2b-public-userlinks,
.b2b-public-session {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 7px;
}

.b2b-public-session {
    align-items: center;
}

.b2b-company-switch {
    display: flex;
    align-items: end;
    gap: 7px;
    margin-left: auto;
}

.b2b-company-switch label {
    display: grid;
    gap: 3px;
    margin: 0;
    color: #40515f;
    font-size: 11px;
    font-weight: 700;
}

.b2b-company-switch select {
    min-width: 220px;
    height: 30px;
    padding: 0 28px 0 9px;
    border: 1px solid #cbd5df;
    border-radius: 6px;
    background: #fff;
    color: #26323b;
    font-size: 12px;
    font-weight: 600;
}

.b2b-company-switch button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 30px;
    padding: 0 10px;
    border: 1px solid var(--b2b-brand);
    border-radius: 6px;
    background: var(--b2b-brand);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
}

.b2b-public-session span {
    color: #40515f;
    font-size: 12px;
    font-weight: 600;
}

.b2b-public-userlinks a,
.b2b-public-session a {
    display: inline-flex;
    align-items: center;
    min-height: 26px;
    padding: 0 9px;
    border: 1px solid #cbd5df;
    border-radius: 6px;
    background: #fff;
    color: #40515f;
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
}

.b2b-public-userlinks a.is-active,
.b2b-public-session a:hover {
    border-color: var(--b2b-brand);
    background: #eaf7fc;
    color: var(--b2b-brand);
}

.b2b-public-switch {
    display: grid;
    gap: 7px;
    margin-top: 26px;
    padding-top: 16px;
    border-top: 1px solid #d4dce3;
}

.b2b-public-switch strong {
    color: #1f2933;
    font-size: 12px;
}

.b2b-public-switch a {
    color: var(--b2b-brand);
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
}

.b2b-product-card {
    color: inherit;
    text-decoration: none;
}

.b2b-public-cart {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border: 1px solid #c9d4dc;
    border-radius: 5px;
    background: #fff;
    color: var(--b2b-brand);
    font-size: 18px;
    line-height: 1;
}

.b2b-public-cart-link {
    color: var(--b2b-brand);
    font-weight: 700;
    text-decoration: none;
}

.b2b-detail-tabs {
    position: relative;
    background: linear-gradient(180deg, #fff, #fbfdfe);
}

.b2b-detail-tabs a {
    position: relative;
    isolation: isolate;
    transition:
        color 0.2s ease,
        border-color 0.2s ease,
        background-color 0.2s ease,
        transform 0.2s ease;
}

.b2b-detail-tabs a::before {
    content: "";
    position: absolute;
    inset: 6px 0;
    z-index: -1;
    border-radius: 7px;
    background: color-mix(in srgb, var(--b2b-brand) 9%, white);
    opacity: 0;
    transform: scaleX(0.82);
    transition: opacity 0.22s ease, transform 0.22s ease;
}

.b2b-detail-tabs a:hover,
.b2b-detail-tabs a:focus-visible {
    color: var(--b2b-brand);
    transform: translateY(-1px);
    outline: 0;
}

.b2b-detail-tabs a:hover::before,
.b2b-detail-tabs a:focus-visible::before,
.b2b-detail-tabs a.is-active::before {
    opacity: 1;
    transform: scaleX(1);
}

.b2b-detail-tabs a.is-loading::after {
    content: "";
    width: 6px;
    height: 6px;
    margin-left: 7px;
    border-radius: 50%;
    background: currentColor;
    box-shadow: 10px 0 0 color-mix(in srgb, currentColor 55%, transparent);
    animation: b2b-tab-pulse 0.78s ease-in-out infinite alternate;
}

.b2b-detail-content {
    position: relative;
    transform-origin: top center;
    transition: opacity 0.18s ease, transform 0.18s ease, filter 0.18s ease;
}

.b2b-detail-content.is-loading-pane {
    opacity: 1;
    filter: none;
    transform: none;
}

.b2b-detail-content.is-leaving {
    opacity: 0.28;
    filter: blur(1px);
    transform: translateY(8px);
}

.b2b-detail-content.is-entering {
    animation: b2b-tab-enter 0.34s cubic-bezier(0.2, 0.72, 0.18, 1) both;
}

.b2b-detail-page.is-loading .b2b-detail-content::after {
    content: "";
    position: absolute;
    inset: 12px 18px;
    pointer-events: none;
    border-radius: 8px;
    background:
        linear-gradient(110deg, transparent 0%, rgba(255, 255, 255, 0.72) 44%, transparent 72%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.64), rgba(255, 255, 255, 0.18));
    background-size: 220% 100%, 100% 100%;
    animation: b2b-detail-sheen 0.88s ease-in-out infinite;
}

.b2b-detail-page.is-loading .b2b-detail-content.is-loading-pane::after {
    content: none;
}

.b2b-detail-loader {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    align-items: center;
    gap: 14px;
    min-height: 168px;
    padding: 24px;
    border: 1px solid #dce6ee;
    border-radius: 8px;
    background:
        radial-gradient(circle at 16% 14%, color-mix(in srgb, var(--b2b-brand) 10%, transparent), transparent 38%),
        linear-gradient(135deg, #fff 0%, #f8fbfd 100%);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.82), 0 12px 28px rgba(27, 45, 60, 0.08);
}

.b2b-detail-loader-orbit {
    position: relative;
    display: inline-grid;
    place-items: center;
    width: 48px;
    height: 48px;
    border: 1px solid color-mix(in srgb, var(--b2b-brand) 18%, #dce6ee);
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 8px 18px color-mix(in srgb, var(--b2b-brand) 12%, transparent);
}

.b2b-detail-loader-orbit::before {
    content: "";
    position: absolute;
    inset: 5px;
    border-radius: 50%;
    background: conic-gradient(from 0deg, transparent 0 42%, var(--b2b-brand) 62%, transparent 82% 100%);
    -webkit-mask: radial-gradient(circle, transparent 52%, #000 54%);
    mask: radial-gradient(circle, transparent 52%, #000 54%);
    animation: b2b-loader-orbit 0.96s linear infinite;
}

.b2b-detail-loader-orbit i {
    position: absolute;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--b2b-brand);
    opacity: 0.28;
    animation: b2b-loader-dot 0.9s ease-in-out infinite alternate;
}

.b2b-detail-loader-orbit i:nth-child(1) {
    transform: translate(-9px, 7px);
}

.b2b-detail-loader-orbit i:nth-child(2) {
    transform: translate(0, -10px);
    animation-delay: 0.12s;
}

.b2b-detail-loader-orbit i:nth-child(3) {
    transform: translate(10px, 8px);
    animation-delay: 0.24s;
}

.b2b-detail-loader-copy {
    display: grid;
    gap: 4px;
}

.b2b-detail-loader-copy strong {
    color: #23313c;
    font-size: 14px;
    font-weight: 700;
}

.b2b-detail-loader-copy small {
    color: #667684;
    font-size: 12px;
}

.b2b-detail-loader-lines {
    grid-column: 1 / -1;
    display: grid;
    gap: 8px;
    padding-top: 6px;
}

.b2b-detail-loader-lines i {
    display: block;
    height: 10px;
    border-radius: 6px;
    background:
        linear-gradient(90deg, #edf3f7 0%, color-mix(in srgb, var(--b2b-brand) 15%, #edf3f7) 42%, #edf3f7 76%);
    background-size: 220% 100%;
    animation: b2b-loader-line 1.12s ease-in-out infinite;
}

.b2b-detail-loader-lines i:nth-child(2) {
    width: 78%;
    animation-delay: 0.08s;
}

.b2b-detail-loader-lines i:nth-child(3) {
    width: 58%;
    animation-delay: 0.16s;
}

@keyframes b2b-tab-enter {
    0% {
        opacity: 0;
        transform: translateY(10px);
        filter: blur(1px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
    }
}

@keyframes b2b-loader-orbit {
    to {
        transform: rotate(360deg);
    }
}

@keyframes b2b-loader-dot {
    to {
        opacity: 0.95;
    }
}

@keyframes b2b-loader-line {
    from {
        background-position: 140% 0;
    }
    to {
        background-position: -80% 0;
    }
}

@keyframes b2b-detail-sheen {
    from {
        background-position: 160% 0, 0 0;
    }
    to {
        background-position: -60% 0, 0 0;
    }
}

@keyframes b2b-tab-pulse {
    from {
        opacity: 0.35;
        transform: translateY(0);
    }
    to {
        opacity: 0.95;
        transform: translateY(-1px);
    }
}

.b2b-shop-body-checkout {
    grid-template-columns: 1fr;
}

.b2b-public-checkout {
    display: grid;
    gap: 14px;
}

.b2b-public-checkout h1 {
    margin: 0;
    color: #26323b;
    font-size: 16px;
    font-weight: 600;
}

.b2b-public-checkout-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) minmax(280px, 0.9fr);
    gap: 14px;
}

.b2b-public-checkout-panel {
    min-width: 0;
    padding: 16px;
    border: 1px solid #d4dce3;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 1px 4px rgba(25, 45, 62, 0.12);
}

.b2b-public-checkout-panel h2 {
    margin: 0 0 10px;
    color: #26323b;
    font-size: 15px;
    font-weight: 700;
}

.b2b-public-address-grid {
    display: grid;
    gap: 8px;
}

.b2b-public-address-section-label {
    margin: 0 0 6px;
    color: #687785;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
}

.b2b-checkout-address-card {
    position: relative;
    display: grid;
    gap: 7px;
    min-height: 96px;
    padding: 12px 36px 12px 12px;
    border: 1px solid #d7dee4;
    border-radius: 8px;
    background: #fff;
    cursor: pointer;
}

.b2b-checkout-address-card:has(input:checked) {
    border-color: var(--b2b-brand);
    background: #f1fbff;
}

.b2b-checkout-address-card input {
    position: absolute;
    inline-size: 1px;
    block-size: 1px;
    opacity: 0;
}

.b2b-checkout-address-card strong,
.b2b-checkout-address-card span {
    min-width: 0;
    overflow-wrap: anywhere;
}

.b2b-checkout-address-card strong {
    color: #26323b;
    font-size: 13px;
}

.b2b-checkout-address-card > span:not(.b2b-chip-row):not(.b2b-checkout-address-menu) {
    color: #3f4b55;
    font-size: 12px;
    line-height: 1.35;
}

.b2b-checkout-address-menu {
    position: absolute;
    top: 7px;
    right: 10px;
    color: var(--b2b-brand);
    font-size: 22px;
    line-height: 1;
}

.b2b-public-address-create {
    margin-top: 14px;
    padding: 16px;
    border: 1px solid #d7dee4;
    border-radius: 8px;
    background: #f8fafc;
}

.b2b-public-address-create summary {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 0 10px;
    border: 1px solid var(--b2b-brand);
    border-radius: 6px;
    background: var(--b2b-brand);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    list-style: none;
}

.b2b-public-address-create summary::-webkit-details-marker {
    display: none;
}

.b2b-public-address-create[open] summary {
    margin-bottom: 14px;
}

.b2b-public-address-create-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.b2b-public-address-create-footer {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: 14px;
}

.b2b-public-address-types {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 12px;
}

.b2b-public-address-types label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #40515f;
    font-size: 12px;
    font-weight: 600;
}

.b2b-public-address-create-footer button {
    min-height: 32px;
    padding: 0 12px;
    border: 1px solid var(--b2b-brand);
    border-radius: 6px;
    background: #fff;
    color: var(--b2b-brand);
    font-size: 12px;
    font-weight: 700;
}

.b2b-public-address-summary {
    display: grid;
    gap: 12px;
}

.b2b-public-address-selected {
    display: grid;
    gap: 8px;
    min-height: 82px;
    padding: 12px;
    border: 1px solid #d7dee4;
    border-radius: 8px;
    background: #f8fafc;
}

.b2b-public-address-selected strong,
.b2b-public-address-selected span {
    min-width: 0;
    overflow-wrap: anywhere;
}

.b2b-public-address-selected strong {
    color: #26323b;
    font-size: 13px;
}

.b2b-public-address-selected > span:not(.b2b-chip-row) {
    color: #3f4b55;
    font-size: 12px;
    line-height: 1.35;
}

.b2b-public-address-open {
    justify-self: start;
    min-height: 32px;
    padding: 0 12px;
    border: 1px solid var(--b2b-brand);
    border-radius: 6px;
    background: var(--b2b-brand);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
}

.b2b-address-modal {
    width: min(1120px, calc(100vw - 36px));
    max-height: min(860px, calc(100vh - 36px));
    padding: 0;
    border: 0;
    border-radius: 8px;
    background: #fff;
    color: #26323b;
    box-shadow: 0 24px 70px rgba(25, 45, 62, 0.34);
}

.b2b-address-modal::backdrop {
    background: rgba(18, 31, 42, 0.48);
}

.b2b-address-modal-shell {
    display: grid;
    grid-template-rows: auto minmax(0, 1fr);
    max-height: inherit;
}

.b2b-address-modal-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 16px 18px;
    border-bottom: 1px solid #d9e1e8;
    background: #f8fafc;
}

.b2b-address-modal-head div {
    display: grid;
    gap: 3px;
}

.b2b-address-modal-head strong {
    font-size: 16px;
    font-weight: 700;
}

.b2b-address-modal-head span {
    color: #667684;
    font-size: 12px;
}

.b2b-address-modal-head button {
    display: inline-grid;
    place-items: center;
    width: 34px;
    height: 34px;
    border: 1px solid #cbd5df;
    border-radius: 5px;
    background: #fff;
    color: #3f4b55;
    font-size: 24px;
    line-height: 1;
}

.b2b-address-modal-body {
    display: grid;
    grid-template-columns: minmax(320px, 0.85fr) minmax(460px, 1.15fr);
    gap: 18px;
    min-height: 0;
    padding: 18px;
    background: #eef2f5;
}

.b2b-address-book,
.b2b-address-create-panel {
    display: grid;
    align-content: start;
    gap: 14px;
    min-width: 0;
    padding: 18px;
    border: 1px solid #d7dee4;
    border-radius: 8px;
    background: #fff;
    overflow: hidden;
}

.b2b-address-book {
    background: #fbfcfd;
}

.b2b-address-book h3,
.b2b-address-create-panel h3 {
    margin: 0;
    color: #26323b;
    font-size: 14px;
    font-weight: 700;
}

.b2b-modal-address-list {
    display: grid;
    gap: 12px;
    max-height: 520px;
    overflow: auto;
    padding-right: 3px;
}

.b2b-modal-address-card {
    display: grid;
    gap: 10px;
    padding: 12px;
    border: 1px solid #d4dce3;
    border-radius: 8px;
    background: #fff;
}

.b2b-modal-address-card:has(.b2b-modal-address-main input:checked),
.b2b-modal-address-card.is-selected {
    border-color: var(--b2b-brand);
    background: #f1fbff;
}

.b2b-modal-address-main {
    display: grid;
    grid-template-columns: 18px minmax(0, 1fr);
    gap: 9px;
    align-items: start;
    cursor: pointer;
}

.b2b-modal-address-main span {
    display: grid;
    gap: 4px;
    min-width: 0;
}

.b2b-modal-address-main strong,
.b2b-modal-address-main small {
    min-width: 0;
    overflow-wrap: anywhere;
}

.b2b-modal-address-main strong {
    color: #26323b;
    font-size: 13px;
}

.b2b-modal-address-main small {
    color: #51606c;
    font-size: 12px;
    line-height: 1.35;
}

.b2b-modal-default-check {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: #40515f;
    font-size: 12px;
    font-weight: 600;
}

.b2b-modal-address-edit,
.b2b-address-form-head button {
    justify-self: start;
    min-height: 30px;
    padding: 0 11px;
    border: 1px solid var(--b2b-brand);
    border-radius: 6px;
    background: #fff;
    color: var(--b2b-brand);
    font-size: 12px;
    font-weight: 700;
}

.b2b-modal-address-edit:hover,
.b2b-address-form-head button:hover {
    background: #eaf7fc;
}

.b2b-address-modal-actions {
    display: flex;
    justify-content: flex-end;
}

.b2b-address-modal-actions button,
.b2b-address-modal-foot button {
    min-height: 34px;
    padding: 0 13px;
    border: 1px solid var(--b2b-brand);
    border-radius: 6px;
    background: var(--b2b-brand);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
}

.b2b-address-modal-actions button:disabled {
    border-color: #b7c3ce;
    background: #cbd5df;
    cursor: not-allowed;
}

.b2b-modal-address-form {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 16px;
    min-width: 0;
}

.b2b-address-form-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.b2b-address-form-head h3 {
    min-width: 0;
}

.b2b-address-form-head button {
    flex: 0 0 auto;
}

.b2b-field-span-2 {
    grid-column: 1 / -1;
}

.b2b-field-compact {
    grid-column: span 3;
}

.b2b-field-city {
    grid-column: span 6;
}

.b2b-field-half {
    grid-column: span 6;
}

.b2b-address-modal-foot {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding-top: 16px;
    border-top: 1px solid #e1e7ec;
}

.b2b-public-address-locked,
.b2b-public-checkout-success,
.b2b-public-checkout-error {
    display: grid;
    gap: 4px;
    padding: 12px;
    border-radius: 8px;
    font-size: 12px;
    line-height: 1.35;
}

.b2b-public-address-locked {
    border: 1px solid #f2cf70;
    background: #fff8df;
    color: #77550d;
}

.b2b-public-checkout-success {
    border: 1px solid #93c5a0;
    background: #eef8f0;
    color: #2f7d42;
}

.b2b-public-checkout-error {
    border: 1px solid #f1aaa8;
    background: #fff2f1;
    color: #b42318;
}

.b2b-public-checkout-fields {
    display: grid;
    grid-template-columns: minmax(180px, 0.7fr) minmax(220px, 1fr) minmax(260px, 1fr);
    gap: 14px;
}

.b2b-public-checkout-field {
    display: grid;
    gap: 7px;
    min-width: 0;
}

.b2b-public-checkout-field-wide {
    grid-column: 1 / -1;
}

.b2b-public-checkout-field span {
    color: #687785;
    font-size: 11px;
    font-weight: 600;
}

.b2b-public-checkout-field input {
    width: 100%;
    min-width: 0;
    height: 36px;
    padding: 7px 10px;
    border: 1px solid #aeb9c2;
    border-radius: 8px;
    background: #fff;
    color: #26323b;
    font: inherit;
}

.b2b-public-checkout-field input[readonly] {
    background: #f7f9fb;
    color: #596773;
}

.b2b-public-checkout-toggle {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-top: 10px;
    color: #40515f;
    font-size: 12px;
    font-weight: 600;
}

.b2b-partial-delivery-note {
    display: grid;
    grid-template-columns: 82px minmax(0, 1fr);
    align-items: center;
    gap: 14px;
    margin-top: 12px;
    padding: 12px;
    border: 1px solid #c8dce8;
    border-left: 3px solid var(--b2b-brand);
    border-radius: 8px;
    background: linear-gradient(135deg, #f6fbfd 0%, #fff 72%);
}

.b2b-partial-delivery-note p {
    margin: 0;
    color: #40515f;
    font-size: 12px;
    line-height: 1.4;
}

.b2b-partial-delivery-note strong {
    color: #26323b;
    font-weight: 700;
}

.b2b-partial-delivery-visual {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    align-items: end;
    gap: 6px;
    min-height: 46px;
}

.b2b-partial-delivery-visual::before {
    content: "";
    position: absolute;
    right: 6px;
    bottom: 11px;
    left: 6px;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(0, 156, 199, 0.24), rgba(0, 156, 199, 0.74));
}

.b2b-partial-delivery-visual span {
    position: relative;
    z-index: 1;
    display: block;
    width: 22px;
    height: 20px;
    border: 1px solid #91c9dc;
    border-radius: 6px;
    background: #fff;
    box-shadow: 0 4px 10px rgba(25, 45, 62, 0.12);
}

.b2b-partial-delivery-visual span::before {
    content: "";
    position: absolute;
    top: 4px;
    left: 50%;
    width: 7px;
    height: 7px;
    border-radius: 2px;
    background: #dff4fa;
    transform: translateX(-50%);
}

.b2b-partial-delivery-visual span:nth-child(2) {
    height: 25px;
    border-color: #68b8d0;
}

.b2b-partial-delivery-visual span:nth-child(3) {
    height: 30px;
    border-color: var(--b2b-brand);
}

.b2b-public-orders {
    display: grid;
    gap: 14px;
}

.b2b-public-orders-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}

.b2b-public-orders-head h1 {
    margin: 0;
    color: #26323b;
    font-size: 16px;
    font-weight: 600;
}

.b2b-public-orders-head span {
    display: block;
    margin-top: 3px;
    color: #687785;
    font-size: 12px;
}

.b2b-public-orders-head a,
.b2b-public-orders-back {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 32px;
    padding: 0 12px;
    border: 1px solid var(--b2b-brand);
    border-radius: 6px;
    background: #fff;
    color: var(--b2b-brand);
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
}

.b2b-public-orders-back {
    justify-self: start;
}

.b2b-public-order-list {
    display: grid;
    gap: 8px;
}

.b2b-public-order-list-head,
.b2b-public-order-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(150px, 0.32fr) minmax(120px, 0.24fr);
    gap: 14px;
    align-items: center;
}

.b2b-public-order-list-head {
    padding: 0 14px 2px;
    color: #3f4b55;
    font-size: 12px;
    font-weight: 700;
}

.b2b-public-order-list-head span:nth-child(2),
.b2b-public-order-list-head span:nth-child(3),
.b2b-public-order-row time,
.b2b-public-order-row > strong {
    text-align: right;
}

.b2b-public-order-row {
    min-height: 64px;
    padding: 14px;
    border: 1px solid #d4dce3;
    border-radius: 8px;
    background: #fff;
    color: #26323b;
    text-decoration: none;
    box-shadow: 0 1px 4px rgba(25, 45, 62, 0.12);
}

.b2b-public-order-row:hover {
    border-color: var(--b2b-brand);
    background: #f5fbfe;
}

.b2b-public-order-row > span {
    display: grid;
    gap: 4px;
    min-width: 0;
}

.b2b-public-order-row strong,
.b2b-public-order-row small,
.b2b-public-order-row time {
    min-width: 0;
    overflow-wrap: anywhere;
}

.b2b-public-order-row small,
.b2b-public-order-row time {
    color: #51606c;
    font-size: 12px;
}

.b2b-public-order-detail {
    display: grid;
    gap: 12px;
}

.b2b-public-order-detail-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    padding: 16px;
    border: 1px solid #d4dce3;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 1px 4px rgba(25, 45, 62, 0.12);
}

.b2b-public-order-detail-head h1 {
    margin: 0;
    color: #26323b;
    font-size: 16px;
    font-weight: 600;
}

.b2b-public-order-detail-head span {
    display: block;
    margin-top: 4px;
    color: #687785;
    font-size: 12px;
}

.b2b-public-order-detail-head > strong {
    flex: 0 0 auto;
    color: #26323b;
    font-size: 16px;
}

.b2b-public-order-detail-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.b2b-public-order-info-card {
    min-width: 0;
    padding: 14px;
    border: 1px solid #d4dce3;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 1px 4px rgba(25, 45, 62, 0.12);
}

.b2b-public-order-info-card h2 {
    margin: 0 0 10px;
    color: #26323b;
    font-size: 15px;
    font-weight: 700;
}

.b2b-public-order-info-card address {
    display: grid;
    gap: 4px;
    color: #3f4b55;
    font-style: normal;
    font-size: 12px;
    line-height: 1.35;
}

.b2b-public-order-info-card address span {
    overflow-wrap: anywhere;
}

.b2b-public-order-facts {
    display: grid;
    gap: 8px;
    margin: 0;
}

.b2b-public-order-facts div {
    display: grid;
    grid-template-columns: minmax(110px, 0.42fr) minmax(0, 1fr);
    gap: 10px;
}

.b2b-public-order-facts dt {
    color: #687785;
    font-size: 11px;
    font-weight: 700;
}

.b2b-public-order-facts dd {
    min-width: 0;
    margin: 0;
    color: #26323b;
    font-size: 12px;
    overflow-wrap: anywhere;
}

.b2b-public-order-lines {
    display: grid;
    gap: 8px;
}

.b2b-public-order-line {
    display: grid;
    grid-template-columns: 74px minmax(0, 1fr) 56px 110px 120px;
    gap: 12px;
    align-items: center;
    padding: 14px;
    border: 1px solid #d5dee5;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 1px 4px rgba(25, 45, 62, 0.12);
}

.b2b-public-order-line-main {
    display: grid;
    gap: 5px;
    min-width: 0;
}

.b2b-public-order-line-main strong {
    color: var(--b2b-brand);
    font-size: 13px;
    overflow-wrap: anywhere;
}

.b2b-public-order-line-main span,
.b2b-public-order-line-main small {
    color: #687785;
    font-size: 11px;
    line-height: 1.35;
    overflow-wrap: anywhere;
}

.b2b-public-order-line-quantity,
.b2b-public-order-line-unit,
.b2b-public-order-line-total {
    color: #26323b;
    font-size: 12px;
    text-align: right;
}

.b2b-public-order-line-total {
    font-size: 13px;
}

.b2b-public-order-totals {
    display: grid;
    justify-items: end;
    gap: 6px;
    padding: 12px 4px 0;
    color: #26323b;
    font-size: 12px;
}

.b2b-public-order-totals span {
    display: inline-flex;
    gap: 18px;
    min-width: 260px;
    justify-content: space-between;
}

.b2b-public-order-totals span:last-child {
    font-size: 14px;
}

.b2b-public-cart-lines {
    display: grid;
    gap: 8px;
}

.b2b-public-cart-line {
    display: grid;
    grid-template-columns: 74px minmax(0, 1fr) 72px 120px;
    gap: 12px;
    align-items: center;
    padding: 14px;
    border: 1px solid #d5dee5;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 1px 4px rgba(25, 45, 62, 0.12);
}

.b2b-public-cart-thumb {
    display: grid;
    place-items: center;
    width: 58px;
    min-height: 50px;
    overflow: hidden;
}

.b2b-public-cart-thumb img {
    display: block;
    max-width: 58px;
    max-height: 50px;
    object-fit: contain;
}

.b2b-public-cart-thumb .b2b-device {
    width: 52px;
    height: 34px;
    border-radius: 4px 4px 2px 2px;
    box-shadow: inset 0 0 0 3px #111827;
}

.b2b-public-cart-thumb .b2b-device::before {
    top: 7px;
    right: 8px;
    bottom: 8px;
    left: 8px;
    border-radius: 2px;
}

.b2b-public-cart-thumb .b2b-device span {
    right: -5px;
    bottom: -6px;
    left: -5px;
    height: 7px;
    border-radius: 2px;
}

.b2b-public-cart-main {
    display: grid;
    gap: 5px;
    min-width: 0;
}

.b2b-public-cart-main strong {
    overflow-wrap: anywhere;
    color: var(--b2b-brand);
    font-size: 13px;
}

.b2b-public-cart-main span {
    color: #687785;
    font-size: 11px;
}

.b2b-public-cart-main input {
    width: min(100%, 300px);
    height: 30px;
    padding: 5px 8px;
    border: 1px solid #aeb9c2;
    border-radius: 2px;
    font: inherit;
}

.b2b-public-cart-quantity,
.b2b-public-cart-price {
    text-align: right;
    white-space: nowrap;
}

.b2b-public-checkout-bottom {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;
}

.b2b-public-checkout-submit {
    min-height: 42px;
    padding: 0 18px;
    border: 1px solid var(--b2b-brand);
    border-radius: 3px;
    background: var(--b2b-brand);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.b2b-public-checkout-submit:disabled {
    border-color: #aeb9c2;
    background: #cbd5df;
    cursor: not-allowed;
}

.b2b-public-total-box {
    display: grid;
    justify-items: end;
    gap: 3px;
    color: #333;
    font-size: 12px;
}

.b2b-public-total-box strong {
    font-size: 22px;
    font-weight: 500;
}

.b2b-detail-template-commerce {
    display: grid;
    gap: 18px;
    padding: 26px 28px 32px;
    border: 0;
    background: #fff;
}

.b2b-commerce-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
}

.b2b-commerce-title {
    display: grid;
    gap: 6px;
}

.b2b-commerce-title h1 {
    max-width: 980px;
    margin: 0;
    color: #2d343b;
    font-size: 17px;
    font-weight: 600;
    line-height: 1.35;
}

.b2b-commerce-title p {
    margin: 0;
    color: #697781;
    font-size: 12px;
}

.b2b-commerce-stage {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(330px, 390px);
    gap: 28px;
    align-items: start;
}

.b2b-commerce-gallery {
    display: grid;
    grid-template-columns: 78px minmax(0, 1fr);
    gap: 22px;
    min-height: 430px;
    align-items: center;
}

.b2b-commerce-gallery > .b2b-product-image {
    grid-column: 1 / -1;
    min-height: 360px;
}

.b2b-commerce-thumbs {
    display: grid;
    gap: 9px;
    align-self: start;
}

.b2b-commerce-thumb,
.b2b-commerce-main-image {
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #9aa5ad;
    border-radius: 2px;
    background: #fff;
    cursor: pointer;
}

.b2b-commerce-thumb {
    width: 72px;
    height: 56px;
    padding: 4px;
}

.b2b-commerce-thumb.is-active,
.b2b-commerce-thumb:hover,
.b2b-commerce-thumb:focus-visible,
.b2b-commerce-main-image:hover,
.b2b-commerce-main-image:focus-visible {
    border-color: var(--b2b-brand);
    outline: none;
}

.b2b-commerce-thumb img,
.b2b-commerce-main-image img {
    display: block;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.b2b-commerce-main-image {
    min-height: 420px;
    padding: 20px;
    border-color: transparent;
}

.b2b-commerce-main-image img {
    max-height: 390px;
}

.b2b-commerce-buybox {
    display: grid;
    gap: 12px;
    padding: 13px;
    border: 1px solid #9da8b0;
    border-radius: 3px;
    background: #fff;
}

.b2b-commerce-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 4px 9px;
    color: #6d7882;
    font-size: 10px;
    line-height: 1.45;
}

.b2b-commerce-meta strong {
    color: #46515a;
    font-weight: 700;
}

.b2b-commerce-price-tabs {
    display: grid;
    min-height: 30px;
    border: 1px solid #aeb7bf;
    border-radius: 3px;
    overflow: hidden;
}

.b2b-commerce-price-tabs strong {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #484848;
    color: #fff;
    font-size: 12px;
}

.b2b-commerce-price {
    color: #4a4a4a;
    font-size: 31px;
    font-weight: 700;
    letter-spacing: 0;
    line-height: 1.1;
}

.b2b-commerce-buybox small,
.b2b-commerce-buybox .b2b-hek {
    margin: 0;
    color: #6d7882;
    font-size: 11px;
}

.b2b-commerce-stock {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    align-items: center;
    font-size: 12px;
}

.b2b-commerce-stock strong {
    color: #2d7d32;
}

.b2b-commerce-stock.is-unavailable strong {
    color: #b42318;
}

.b2b-commerce-stock span {
    color: #5f6972;
}

.b2b-commerce-cart {
    display: grid;
    grid-template-columns: 74px minmax(0, 1fr);
    gap: 8px;
    align-items: end;
}

.b2b-commerce-cart label {
    display: grid;
    gap: 4px;
    color: #56616d;
    font-size: 11px;
    font-weight: 700;
}

.b2b-commerce-cart input {
    width: 100%;
    height: 34px;
    padding: 0 8px;
    border: 1px solid #9aa5ad;
    border-radius: 3px;
}

.b2b-commerce-cart button,
.b2b-commerce-accessory-card button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 34px;
    padding: 0 14px;
    border: 0;
    border-radius: 3px;
    background: #444;
    color: #fff;
    cursor: pointer;
    font-size: 12px;
    font-weight: 700;
}

.b2b-commerce-tech-link,
.b2b-commerce-datasheet {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 34px;
    padding: 0 12px;
    border: 1px solid #9da8b0;
    border-radius: 3px;
    background: #fff;
    color: #444;
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
}

.b2b-commerce-info-assets {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    padding-top: 6px;
}

.b2b-commerce-info-assets .b2b-eprel-card,
.b2b-commerce-info-assets .b2b-charger-pictograms {
    display: inline-flex;
    flex-wrap: wrap;
    gap: 7px;
    align-items: center;
}

.b2b-commerce-info-assets .b2b-eprel-pictogram,
.b2b-commerce-info-assets .b2b-charger-pictogram {
    width: 48px;
    height: 48px;
    padding: 3px;
    border-radius: 3px;
}

.b2b-detail-template-commerce .b2b-detail-tabs {
    margin-top: 10px;
    padding: 0;
    border-top: 0;
}

.b2b-detail-template-commerce .b2b-detail-content {
    padding: 0;
}

.b2b-commerce-accessories {
    display: grid;
    gap: 16px;
    padding-top: 14px;
    border-top: 1px solid #cdd6de;
}

.b2b-commerce-accessory-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    color: #687785;
    font-size: 12px;
}

.b2b-commerce-accessory-nav span {
    padding-bottom: 4px;
    border-bottom: 1px solid #aeb7bf;
}

.b2b-commerce-accessory-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(150px, 1fr));
    gap: 18px;
}

.b2b-commerce-accessory-card {
    display: grid;
    grid-template-rows: 142px auto minmax(54px, auto) auto;
    gap: 10px;
    min-width: 0;
    padding: 14px;
    border: 1px solid #9da8b0;
    background: #fff;
}

.b2b-commerce-accessory-image {
    display: flex;
    align-items: center;
    justify-content: center;
    color: inherit;
    text-decoration: none;
}

.b2b-commerce-accessory-image img {
    max-width: 100%;
    max-height: 132px;
    object-fit: contain;
}

.b2b-commerce-accessory-card strong {
    color: #333;
    font-size: 12px;
    line-height: 1.35;
}

.b2b-commerce-accessory-card > span {
    color: #687785;
    font-size: 11px;
    line-height: 1.4;
}

.b2b-commerce-accessory-bottom {
    display: grid;
    gap: 10px;
    align-self: end;
}

.b2b-commerce-accessory-bottom b {
    color: #555;
    font-size: 18px;
}

.b2b-public-error {
    display: grid;
    justify-items: start;
    gap: 12px;
    max-width: 520px;
    margin: 80px auto;
    padding: 24px;
    border: 1px solid #d7dee4;
    border-radius: 8px;
    background: #fff;
}

.b2b-public-error h1 {
    margin: 0;
    font-size: 20px;
}

.b2b-public-error p {
    margin: 0;
    color: #687785;
}

.b2b-public-error a {
    color: #0098c7;
    font-weight: 600;
}

.b2b-login-body {
    --b2b-brand: #0098c7;
    --b2b-brand-dark: #0079a6;
    display: grid;
    min-height: 100vh;
    place-items: center;
    padding: 32px;
    background:
        linear-gradient(120deg, rgba(0, 152, 199, 0.09), transparent 34%),
        repeating-linear-gradient(90deg, rgba(31, 41, 51, 0.045) 0 1px, transparent 1px 88px),
        repeating-linear-gradient(0deg, rgba(31, 41, 51, 0.035) 0 1px, transparent 1px 88px),
        #eef2f5;
}

.b2b-suite-login-shell {
    display: grid;
    grid-template-columns: minmax(320px, 1fr) minmax(360px, 440px);
    width: min(100%, 1040px);
    min-height: 620px;
    overflow: hidden;
    border: 1px solid rgba(148, 163, 184, 0.42);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 24px 70px rgba(15, 23, 42, 0.18);
}

.b2b-suite-login-stage {
    position: relative;
    isolation: isolate;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-width: 0;
    padding: 34px;
    border-right: 1px solid #dbe3ea;
    background:
        #102331 url("/assets/b2b-suite-login-hero.jpg?v=20260710-01") center center / cover no-repeat;
    color: #fff;
    overflow: hidden;
}

.b2b-suite-login-stage::before,
.b2b-suite-login-stage::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.b2b-suite-login-stage::before {
    z-index: 0;
    background:
        linear-gradient(90deg, rgba(6, 18, 30, 0.78) 0%, rgba(6, 18, 30, 0.4) 48%, rgba(6, 18, 30, 0.12) 100%),
        linear-gradient(180deg, rgba(6, 18, 30, 0.22) 0%, rgba(6, 18, 30, 0.05) 42%, rgba(6, 18, 30, 0.72) 100%);
}

.b2b-suite-login-stage::after {
    z-index: 0;
    background:
        linear-gradient(135deg, rgba(0, 152, 199, 0.26), transparent 46%),
        linear-gradient(0deg, rgba(255, 255, 255, 0.1), transparent 34%);
}

.b2b-suite-product-mark {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: max-content;
    max-width: min(100%, 260px);
    min-height: 64px;
    padding: 10px 14px;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 16px 36px rgba(6, 18, 30, 0.2);
    backdrop-filter: blur(12px);
}

.b2b-suite-product-logo {
    display: block;
    max-width: 200px;
    max-height: 48px;
    object-fit: contain;
}

.b2b-suite-photo-panel {
    position: relative;
    z-index: 1;
    width: min(100%, 360px);
    padding: 16px 18px;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 8px;
    background: rgba(9, 26, 42, 0.44);
    box-shadow: 0 20px 42px rgba(6, 18, 30, 0.26);
    color: #fff;
    backdrop-filter: blur(14px);
}

.b2b-suite-photo-panel span,
.b2b-suite-photo-panel strong {
    display: block;
}

.b2b-suite-photo-panel span {
    color: rgba(255, 255, 255, 0.76);
    font-size: 12px;
    font-weight: 700;
}

.b2b-suite-photo-panel strong {
    margin-top: 4px;
    font-size: 26px;
    font-weight: 800;
    line-height: 1.1;
}

.b2b-suite-login-card {
    display: grid;
    align-content: center;
    min-width: 0;
    border: 0;
    border-radius: 0;
    background: #fff;
    box-shadow: none;
}

.b2b-suite-login-copy {
    padding: 0 34px 8px;
}

.b2b-suite-login-copy h1 {
    margin: 0;
    color: #182430;
    font-size: 28px;
    font-weight: 800;
    line-height: 1.12;
}

.b2b-suite-login-copy p {
    max-width: 310px;
    margin: 9px 0 0;
    color: #687785;
    font-size: 13px;
    line-height: 1.5;
}

.b2b-login-form {
    display: grid;
    gap: 14px;
    padding: 18px 34px 0;
}

.b2b-login-form label {
    display: grid;
    gap: 6px;
    color: #40515f;
    font-size: 12px;
    font-weight: 700;
}

.b2b-login-form input {
    min-height: 42px;
    padding: 8px 11px;
    border: 1px solid #cbd5df;
    border-radius: 6px;
    background: #fff;
    color: #1f2933;
    font: inherit;
}

.b2b-login-form input:focus {
    border-color: var(--b2b-brand);
    box-shadow: 0 0 0 3px rgba(0, 152, 199, 0.14);
    outline: 0;
}

.b2b-login-form button {
    min-height: 42px;
    margin-top: 2px;
    border: 1px solid var(--b2b-brand);
    border-radius: 6px;
    background: var(--b2b-brand);
    color: #fff;
    font: inherit;
    font-weight: 800;
    cursor: pointer;
}

.b2b-login-form button:hover {
    border-color: var(--b2b-brand-dark);
    background: var(--b2b-brand-dark);
}

.b2b-login-error {
    margin: 12px 34px 0;
    padding: 10px 12px;
    border: 1px solid #f1aaa8;
    border-radius: 6px;
    background: #fff2f1;
    color: #b42318;
    font-size: 12px;
    font-weight: 600;
}

@media (max-width: 900px) {
    .b2b-public-userbar {
        align-items: stretch;
        flex-direction: column;
    }

    .b2b-company-switch {
        align-items: stretch;
        flex-direction: column;
        margin-left: 0;
    }

    .b2b-company-switch select {
        width: 100%;
        min-width: 0;
    }

    .b2b-public-checkout-grid,
    .b2b-public-checkout-fields,
    .b2b-public-address-create-grid,
    .b2b-address-modal-body,
    .b2b-modal-address-form,
    .b2b-public-order-detail-grid,
    .b2b-public-cart-line {
        grid-template-columns: 1fr;
    }

    .b2b-public-order-list-head {
        display: none;
    }

    .b2b-public-order-row,
    .b2b-public-order-line {
        grid-template-columns: 1fr;
        align-items: start;
    }

    .b2b-public-order-row time,
    .b2b-public-order-row > strong,
    .b2b-public-order-line-quantity,
    .b2b-public-order-line-unit,
    .b2b-public-order-line-total {
        text-align: left;
    }

    .b2b-public-order-detail-head,
    .b2b-public-orders-head {
        align-items: stretch;
        flex-direction: column;
    }

    .b2b-public-order-totals {
        justify-items: stretch;
    }

    .b2b-public-order-totals span {
        min-width: 0;
        width: 100%;
    }

    .b2b-address-modal {
        width: calc(100vw - 18px);
        max-height: calc(100vh - 18px);
    }

    .b2b-address-book {
        border-right: 0;
        border-bottom: 1px solid #d9e1e8;
    }

    .b2b-modal-address-list {
        max-height: none;
    }

    .b2b-modal-address-form .b2b-public-checkout-field {
        grid-column: 1 / -1;
    }

    .b2b-public-cart-quantity,
    .b2b-public-cart-price {
        text-align: left;
    }

    .b2b-public-checkout-bottom {
        flex-direction: column;
    }

    .b2b-public-total-box {
        justify-items: start;
    }

    .b2b-public-userlinks,
    .b2b-public-session {
        justify-content: flex-start;
    }

    .b2b-login-body {
        padding: 16px;
    }

    .b2b-suite-login-shell {
        grid-template-columns: 1fr;
        min-height: 0;
    }

    .b2b-suite-login-stage {
        min-height: 260px;
        padding: 22px;
        border-right: 0;
        border-bottom: 1px solid #dbe3ea;
        background-position: center 42%;
    }

    .b2b-suite-photo-panel {
        width: min(100%, 320px);
    }

    .b2b-suite-login-card {
        padding: 28px 0 34px;
    }
}

@media (max-width: 560px) {
    .b2b-suite-login-stage {
        display: none;
    }

    .b2b-suite-login-copy h1 {
        font-size: 24px;
    }

    .b2b-suite-login-copy,
    .b2b-login-form {
        padding-right: 22px;
        padding-left: 22px;
    }

    .b2b-login-error {
        margin-right: 22px;
        margin-left: 22px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .b2b-detail-tabs a,
    .b2b-detail-tabs a::before,
    .b2b-detail-content {
        transition: none;
    }

    .b2b-detail-tabs a.is-loading::after,
    .b2b-detail-content.is-entering,
    .b2b-detail-page.is-loading .b2b-detail-content::after,
    .b2b-detail-loader-orbit::before,
    .b2b-detail-loader-orbit i,
    .b2b-detail-loader-lines i {
        animation: none;
    }
}
