body.termol-storefront,
body.termol-storefront input,
body.termol-storefront button,
body.termol-storefront select,
body.termol-storefront textarea {
    font-family: "Sora", Arial, Helvetica, sans-serif;
}

.header .store-header-logo-link {
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.header .store-header-logo {
    display: block;
    width: auto;
    height: auto;
    max-width: 150px;
    max-height: 34px;
    object-fit: contain;
}
@media (min-width: 1025px) {
    .site-main-header {
        position: relative;
        top: auto;
        width: 100%;
    }

    .site-main-header.is-sticky {
        position: fixed;
        top: 0;
        right: 0;
        left: 0;
    }

    .site-main-header-row {
        transition: none;
    }

    .site-main-header-spacer {
        display: none;
    }

    .site-main-header.is-sticky + .site-main-header-spacer {
        display: block;
        height: var(--site-main-header-expanded-height, 224px);
    }
}

.product-cart-modal {
    --product-cart-modal-brand: var(--store-announcement-background-color, #0057c8);
    --product-cart-modal-accent: var(--navigation-background-color, #e65100);
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    padding: clamp(1rem, 3vw, 2rem);
}

.product-cart-modal.hidden {
    display: none;
}

.product-cart-modal-backdrop {
    position: fixed;
    inset: 0;
    z-index: 1;
    background: rgb(5 19 39 / 68%);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
}

.product-cart-modal-panel {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 660px;
    overflow: hidden;
    border: 1px solid rgb(203 213 225 / 85%);
    border-top: 4px solid var(--product-cart-modal-accent);
    border-radius: 3px;
    background: #fff;
    box-shadow: 0 28px 80px rgb(5 19 39 / 32%);
    animation: product-cart-modal-enter .22s ease-out both;
}

.product-cart-modal-status {
    display: flex;
    min-height: 72px;
    align-items: center;
    gap: .8rem;
    border-bottom: 1px solid #e2e8f0;
    padding: 1rem 4.25rem 1rem 1.75rem;
    background: #f8fafc;
}

.product-cart-modal-status-icon {
    display: inline-flex;
    width: 34px;
    height: 34px;
    flex: 0 0 34px;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: var(--product-cart-modal-brand);
    color: #fff;
    box-shadow: 0 5px 14px color-mix(in srgb, var(--product-cart-modal-brand) 25%, transparent);
}

.product-cart-modal-status-icon svg {
    width: 17px;
    height: 17px;
}

.product-cart-modal-status-title {
    margin: 0;
    color: #0f172a;
    font-size: .9rem;
    font-weight: 700;
    line-height: 1.35;
}

.product-cart-modal-close {
    position: absolute;
    top: 17px;
    right: 18px;
    z-index: 3;
    display: inline-flex;
    width: 36px;
    height: 36px;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 999px;
    padding: 0;
    background: transparent;
    color: #64748b;
    cursor: pointer;
    transition: background-color .18s ease, color .18s ease;
}

.product-cart-modal-close:hover,
.product-cart-modal-close:focus-visible {
    outline: none;
    background: #e8eef5;
    color: #0f172a;
}

.product-cart-modal-close svg {
    width: 18px;
    height: 18px;
}

.product-cart-modal-product {
    display: grid;
    grid-template-columns: 148px minmax(0, 1fr);
    gap: 1.75rem;
    align-items: center;
    padding: 1.75rem;
}

.product-cart-modal-image-wrap {
    display: flex;
    width: 148px;
    height: 148px;
    align-items: center;
    justify-content: center;
    border: 1px solid #dbe4ee;
    background: #fff;
}

.product-cart-modal-image-wrap[hidden] {
    display: none !important;
}

.product-cart-modal-image {
    display: block;
    width: 100%;
    height: 100%;
    padding: .65rem;
    object-fit: contain;
    object-position: center;
}

.product-cart-modal-info {
    min-width: 0;
}

.product-cart-modal-name {
    margin: 0;
    color: #111827;
    font-size: clamp(1.05rem, 2.3vw, 1.35rem);
    font-weight: 700;
    line-height: 1.4;
    overflow-wrap: anywhere;
}

.product-cart-modal-details {
    display: flex;
    flex-wrap: wrap;
    gap: .55rem;
    margin-top: 1rem;
}

.product-cart-modal-detail {
    display: inline-flex;
    min-height: 34px;
    align-items: center;
    gap: .35rem;
    margin: 0;
    border: 1px solid #dbe4ee;
    padding: .4rem .65rem;
    background: #f8fafc;
    color: #475569;
    font-size: .82rem;
    line-height: 1.35;
}

.product-cart-modal-detail[hidden] {
    display: none !important;
}

.product-cart-modal-detail-label {
    color: #0f172a;
    font-weight: 700;
}

.product-cart-modal-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .75rem;
    border-top: 1px solid #e2e8f0;
    padding: 1.25rem 1.75rem;
    background: #f8fafc;
}

.product-cart-modal-action {
    display: inline-flex;
    min-width: 0;
    min-height: 52px;
    align-items: center;
    justify-content: center;
    gap: .6rem;
    border: 1px solid var(--product-cart-modal-brand);
    border-radius: 0;
    padding: .75rem 1rem;
    font: inherit;
    font-size: .9rem;
    font-weight: 700;
    line-height: 1.25;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    transition: border-color .18s ease, background-color .18s ease, color .18s ease, transform .18s ease;
}

.product-cart-modal-action:hover {
    text-decoration: none;
}

.product-cart-modal-action:focus-visible {
    outline: 3px solid color-mix(in srgb, var(--product-cart-modal-brand) 25%, transparent);
    outline-offset: 2px;
}

.product-cart-modal-action svg {
    width: 17px;
    height: 17px;
    flex: 0 0 17px;
}

.product-cart-modal-action-secondary {
    background: #fff;
    color: var(--product-cart-modal-brand);
}

.product-cart-modal-action-secondary:hover {
    background: color-mix(in srgb, var(--product-cart-modal-brand) 7%, #fff);
    color: var(--product-cart-modal-brand);
}

.product-cart-modal-action-primary {
    background: var(--product-cart-modal-brand);
    color: #fff;
}

.product-cart-modal-action-primary:hover {
    border-color: color-mix(in srgb, var(--product-cart-modal-brand) 84%, #000);
    background: color-mix(in srgb, var(--product-cart-modal-brand) 84%, #000);
    color: #fff;
}

@keyframes product-cart-modal-enter {
    from {
        opacity: 0;
        transform: translateY(10px) scale(.985);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@media (prefers-reduced-motion: reduce) {
    .product-cart-modal-panel {
        animation: none;
    }
}

@media (max-width: 640px) {
    .product-cart-modal {
        align-items: flex-end;
        padding: .75rem;
    }

    .product-cart-modal-panel {
        max-height: calc(100dvh - 1.5rem);
        overflow-y: auto;
    }

    .product-cart-modal-status {
        min-height: 64px;
        padding: .85rem 3.75rem .85rem 1rem;
    }

    .product-cart-modal-close {
        top: 13px;
        right: 12px;
    }

    .product-cart-modal-product {
        grid-template-columns: 104px minmax(0, 1fr);
        gap: 1rem;
        padding: 1.15rem 1rem;
    }

    .product-cart-modal-image-wrap {
        width: 104px;
        height: 104px;
    }

    .product-cart-modal-name {
        font-size: 1rem;
        line-height: 1.35;
    }

    .product-cart-modal-details {
        gap: .4rem;
        margin-top: .75rem;
    }

    .product-cart-modal-detail {
        min-height: 30px;
        padding: .3rem .5rem;
        font-size: .75rem;
    }

    .product-cart-modal-actions {
        grid-template-columns: 1fr;
        padding: 1rem;
    }

    .product-cart-modal-action {
        min-height: 48px;
    }

    .product-cart-modal-action-primary {
        order: -1;
    }

    .site-footer-payments {
        padding: .75rem;
    }

    .site-footer-payment-logos {
        gap: .35rem;
    }

    .site-footer-payment-logo {
        width: auto;
        height: 2.75rem;
        flex: 0 0 calc((100% - 1.05rem) / 4);
        padding-right: .125rem;
        padding-left: .125rem;
    }

    .site-footer-payment-logo img {
        width: auto;
        max-width: 100%;
        height: 1.35rem;
        object-fit: contain;
    }
}

@media (max-width: 380px) {
    .product-cart-modal-product {
        grid-template-columns: 82px minmax(0, 1fr);
        gap: .8rem;
    }

    .product-cart-modal-image-wrap {
        width: 82px;
        height: 82px;
    }
}

.header-search-suggestion-b2b {
    color: #0e7490;
    font-size: .65rem;
    font-weight: 700;
    line-height: 1.15;
}
