/* /Components/Layout/MainLayout.razor.rz.scp.css */
#blazor-error-ui[b-mhmr9aauyd] {
    color-scheme: light only;
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    box-sizing: border-box;
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

    #blazor-error-ui .dismiss[b-mhmr9aauyd] {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }
/* /Components/Layout/ReconnectModal.razor.rz.scp.css */
.components-reconnect-first-attempt-visible[b-qbex6w3y9h],
.components-reconnect-repeated-attempt-visible[b-qbex6w3y9h],
.components-reconnect-failed-visible[b-qbex6w3y9h],
.components-pause-visible[b-qbex6w3y9h],
.components-resume-failed-visible[b-qbex6w3y9h],
.components-rejoining-animation[b-qbex6w3y9h] {
    display: none;
}

#components-reconnect-modal.components-reconnect-show .components-reconnect-first-attempt-visible[b-qbex6w3y9h],
#components-reconnect-modal.components-reconnect-show .components-rejoining-animation[b-qbex6w3y9h],
#components-reconnect-modal.components-reconnect-paused .components-pause-visible[b-qbex6w3y9h],
#components-reconnect-modal.components-reconnect-resume-failed .components-resume-failed-visible[b-qbex6w3y9h],
#components-reconnect-modal.components-reconnect-retrying[b-qbex6w3y9h],
#components-reconnect-modal.components-reconnect-retrying .components-reconnect-repeated-attempt-visible[b-qbex6w3y9h],
#components-reconnect-modal.components-reconnect-retrying .components-rejoining-animation[b-qbex6w3y9h],
#components-reconnect-modal.components-reconnect-failed[b-qbex6w3y9h],
#components-reconnect-modal.components-reconnect-failed .components-reconnect-failed-visible[b-qbex6w3y9h] {
    display: block;
}


#components-reconnect-modal[b-qbex6w3y9h] {
    background-color: white;
    width: 20rem;
    margin: 20vh auto;
    padding: 2rem;
    border: 0;
    border-radius: 0.5rem;
    box-shadow: 0 3px 6px 2px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transition: display 0.5s allow-discrete, overlay 0.5s allow-discrete;
    animation: components-reconnect-modal-fadeOutOpacity-b-qbex6w3y9h 0.5s both;
    &[open]

{
    animation: components-reconnect-modal-slideUp-b-qbex6w3y9h 1.5s cubic-bezier(.05, .89, .25, 1.02) 0.3s, components-reconnect-modal-fadeInOpacity-b-qbex6w3y9h 0.5s ease-in-out 0.3s;
    animation-fill-mode: both;
}

}

#components-reconnect-modal[b-qbex6w3y9h]::backdrop {
    background-color: rgba(0, 0, 0, 0.4);
    animation: components-reconnect-modal-fadeInOpacity-b-qbex6w3y9h 0.5s ease-in-out;
    opacity: 1;
}

@keyframes components-reconnect-modal-slideUp-b-qbex6w3y9h {
    0% {
        transform: translateY(30px) scale(0.95);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes components-reconnect-modal-fadeInOpacity-b-qbex6w3y9h {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes components-reconnect-modal-fadeOutOpacity-b-qbex6w3y9h {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

.components-reconnect-container[b-qbex6w3y9h] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

#components-reconnect-modal p[b-qbex6w3y9h] {
    margin: 0;
    text-align: center;
}

#components-reconnect-modal button[b-qbex6w3y9h] {
    border: 0;
    background-color: #6b9ed2;
    color: white;
    padding: 4px 24px;
    border-radius: 4px;
}

    #components-reconnect-modal button:hover[b-qbex6w3y9h] {
        background-color: #3b6ea2;
    }

    #components-reconnect-modal button:active[b-qbex6w3y9h] {
        background-color: #6b9ed2;
    }

.components-rejoining-animation[b-qbex6w3y9h] {
    position: relative;
    width: 80px;
    height: 80px;
}

    .components-rejoining-animation div[b-qbex6w3y9h] {
        position: absolute;
        border: 3px solid #0087ff;
        opacity: 1;
        border-radius: 50%;
        animation: components-rejoining-animation-b-qbex6w3y9h 1.5s cubic-bezier(0, 0.2, 0.8, 1) infinite;
    }

        .components-rejoining-animation div:nth-child(2)[b-qbex6w3y9h] {
            animation-delay: -0.5s;
        }

@keyframes components-rejoining-animation-b-qbex6w3y9h {
    0% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 0;
    }

    4.9% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 0;
    }

    5% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 1;
    }

    100% {
        top: 0px;
        left: 0px;
        width: 80px;
        height: 80px;
        opacity: 0;
    }
}
/* /Components/Pages/Favorites/Index.razor.rz.scp.css */
.favorites-page[b-lw8lmjd3mp] {
    display: grid;
    gap: 1rem;
    margin: 0 auto;
    max-width: 1120px;
    padding: 1rem 0.75rem 2rem;
}

.favorites-heading[b-lw8lmjd3mp] {
    align-items: baseline;
    display: flex;
    gap: 0.75rem;
    justify-content: space-between;
}

.favorites-heading h1[b-lw8lmjd3mp] {
    font-size: 1.45rem;
    margin: 0;
}

.favorites-heading span[b-lw8lmjd3mp] {
    color: var(--bs-secondary-color);
    font-size: 0.86rem;
}

.favorite-grid[b-lw8lmjd3mp] {
    display: grid;
    gap: 0.75rem;
}

.favorite-card[b-lw8lmjd3mp] {
    border: 1px solid var(--bs-border-color);
    border-radius: 8px;
    display: grid;
    overflow: hidden;
    position: relative;
}

.favorite-button[b-lw8lmjd3mp] {
    align-items: center;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid var(--bs-border-color);
    border-radius: 999px;
    color: #dc3545;
    display: inline-flex;
    height: 36px;
    justify-content: center;
    position: absolute;
    right: 0.55rem;
    top: 0.55rem;
    width: 36px;
    z-index: 1;
}

.favorite-button:hover[b-lw8lmjd3mp],
.favorite-button:focus[b-lw8lmjd3mp] {
    border-color: #dc3545;
}

.favorite-image[b-lw8lmjd3mp] {
    aspect-ratio: 4 / 3;
    object-fit: cover;
    width: 100%;
}

.favorite-body[b-lw8lmjd3mp] {
    display: grid;
    gap: 0.55rem;
    padding: 0.75rem;
}

.favorite-topline[b-lw8lmjd3mp] {
    align-items: start;
    display: flex;
    gap: 0.75rem;
    justify-content: space-between;
}

.favorite-topline h2[b-lw8lmjd3mp] {
    font-size: 1.05rem;
    line-height: 1.2;
    margin: 0;
    overflow-wrap: anywhere;
}

.favorite-body p[b-lw8lmjd3mp] {
    color: var(--bs-secondary-color);
    font-size: 0.9rem;
    line-height: 1.35;
    margin: 0;
}

.favorite-tags[b-lw8lmjd3mp] {
    display: flex;
    flex-wrap: wrap;
    gap: 0.3rem;
}

.favorite-footer[b-lw8lmjd3mp] {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 0.75rem;
    justify-content: space-between;
}

.store-link[b-lw8lmjd3mp] {
    font-weight: 700;
    text-decoration: none;
}

.pickup-location[b-lw8lmjd3mp] {
    color: var(--bs-secondary-color);
    font-size: 0.84rem;
}

@media (min-width: 768px) {
    .favorites-page[b-lw8lmjd3mp] {
        padding: 1.5rem;
    }

    .favorites-heading h1[b-lw8lmjd3mp] {
        font-size: 2rem;
    }

    .favorite-grid[b-lw8lmjd3mp] {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .favorite-card[b-lw8lmjd3mp] {
        grid-template-columns: 150px minmax(0, 1fr);
    }

    .favorite-image[b-lw8lmjd3mp] {
        aspect-ratio: auto;
        height: 100%;
    }
}

@media (min-width: 1100px) {
    .favorite-grid[b-lw8lmjd3mp] {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .favorite-card[b-lw8lmjd3mp] {
        grid-template-columns: 130px minmax(0, 1fr);
    }
}
/* /Components/Pages/Home.razor.rz.scp.css */
.home-search-page[b-qffbobcomt] {
    display: grid;
    gap: 1.25rem;
    margin: 0 auto;
    max-width: 1120px;
    padding: 1rem 0.75rem 2rem;
}

.home-search-panel[b-qffbobcomt] {
    display: grid;
    gap: 0.9rem;
}

.home-search-panel h1[b-qffbobcomt] {
    font-size: 1.6rem;
    line-height: 1.15;
    margin: 0;
}

.home-search-form[b-qffbobcomt] {
    align-items: end;
    display: grid;
    gap: 0.65rem;
}

.search-field[b-qffbobcomt] {
    display: grid;
    gap: 0.25rem;
}

.search-field label[b-qffbobcomt] {
    color: var(--bs-secondary-color);
    font-size: 0.82rem;
    font-weight: 600;
}

.search-button[b-qffbobcomt] {
    min-height: 42px;
}

.search-results[b-qffbobcomt] {
    display: grid;
    gap: 0.75rem;
}

.results-heading[b-qffbobcomt] {
    align-items: baseline;
    display: flex;
    gap: 0.75rem;
    justify-content: space-between;
}

.results-heading h2[b-qffbobcomt] {
    font-size: 1.25rem;
    margin: 0;
}

.results-heading span[b-qffbobcomt] {
    color: var(--bs-secondary-color);
    font-size: 0.86rem;
}

.result-grid[b-qffbobcomt] {
    display: grid;
    gap: 0.75rem;
}

.result-card[b-qffbobcomt] {
    border: 1px solid var(--bs-border-color);
    border-radius: 8px;
    display: grid;
    overflow: hidden;
    position: relative;
}

.favorite-button[b-qffbobcomt] {
    align-items: center;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid var(--bs-border-color);
    border-radius: 999px;
    color: var(--bs-secondary-color);
    display: inline-flex;
    height: 36px;
    justify-content: center;
    position: absolute;
    right: 0.55rem;
    top: 0.55rem;
    width: 36px;
    z-index: 1;
}

.favorite-button.active[b-qffbobcomt] {
    color: #dc3545;
}

.favorite-button:hover[b-qffbobcomt],
.favorite-button:focus[b-qffbobcomt] {
    border-color: #dc3545;
    color: #dc3545;
}

.result-image[b-qffbobcomt] {
    aspect-ratio: 4 / 3;
    object-fit: cover;
    width: 100%;
}

.result-body[b-qffbobcomt] {
    display: grid;
    gap: 0.55rem;
    padding: 0.75rem;
}

.result-topline[b-qffbobcomt] {
    align-items: start;
    display: flex;
    gap: 0.75rem;
    justify-content: space-between;
}

.result-topline h3[b-qffbobcomt] {
    font-size: 1.05rem;
    line-height: 1.2;
    margin: 0;
    overflow-wrap: anywhere;
}

.result-body p[b-qffbobcomt] {
    color: var(--bs-secondary-color);
    font-size: 0.9rem;
    line-height: 1.35;
    margin: 0;
}

.result-tags[b-qffbobcomt] {
    display: flex;
    flex-wrap: wrap;
    gap: 0.3rem;
}

.result-footer[b-qffbobcomt] {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 0.75rem;
    justify-content: space-between;
}

.store-link[b-qffbobcomt] {
    font-weight: 700;
    text-decoration: none;
}

.pickup-location[b-qffbobcomt] {
    color: var(--bs-secondary-color);
    font-size: 0.84rem;
}

@media (min-width: 768px) {
    .home-search-page[b-qffbobcomt] {
        padding: 1.5rem;
    }

    .home-search-panel h1[b-qffbobcomt] {
        font-size: 2.1rem;
    }

    .home-search-form[b-qffbobcomt] {
        grid-template-columns: minmax(220px, 1fr) 130px 120px auto;
    }

    .result-grid[b-qffbobcomt] {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .result-card[b-qffbobcomt] {
        grid-template-columns: 150px minmax(0, 1fr);
    }

    .result-image[b-qffbobcomt] {
        aspect-ratio: auto;
        height: 100%;
    }
}

@media (min-width: 1100px) {
    .result-grid[b-qffbobcomt] {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .result-card[b-qffbobcomt] {
        grid-template-columns: 130px minmax(0, 1fr);
    }
}
/* /Components/Pages/Messages/Index.razor.rz.scp.css */
.messages-page[b-kvpbh18cv0] {
    padding: 0.75rem;
}

.messages-title[b-kvpbh18cv0] {
    font-size: 1.35rem;
    margin-bottom: 1rem;
}

.messages-layout[b-kvpbh18cv0] {
    display: grid;
    gap: 1rem;
}

.thread-select-wrap[b-kvpbh18cv0] {
    display: grid;
    gap: 0.25rem;
}

.thread-list[b-kvpbh18cv0] {
    align-content: start;
    align-items: start;
    display: none;
    gap: 0.5rem;
}

.thread-item[b-kvpbh18cv0] {
    background: var(--bs-body-bg);
    border: 1px solid var(--bs-border-color);
    border-radius: 8px;
    display: grid;
    gap: 0.2rem;
    padding: 0.65rem;
    text-align: left;
}

.thread-item.active[b-kvpbh18cv0] {
    border-color: #ff9900;
}

.thread-topline[b-kvpbh18cv0] {
    align-items: center;
    display: flex;
    gap: 0.5rem;
    justify-content: space-between;
    min-width: 0;
}

.thread-topline strong[b-kvpbh18cv0] {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.thread-meta[b-kvpbh18cv0] {
    align-items: center;
    display: inline-flex;
    flex-shrink: 0;
    gap: 0.35rem;
}

.thread-product[b-kvpbh18cv0],
.thread-date[b-kvpbh18cv0] {
    color: var(--bs-secondary-color);
    font-size: 0.82rem;
}

.thread-preview[b-kvpbh18cv0] {
    font-size: 0.9rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.chat-panel[b-kvpbh18cv0] {
    border: 1px solid var(--bs-border-color);
    border-radius: 8px;
    min-height: 320px;
    padding: 0.75rem;
}

.chat-header[b-kvpbh18cv0] {
    display: grid;
    gap: 0.15rem;
    margin-bottom: 0.75rem;
}

.chat-header span[b-kvpbh18cv0] {
    color: var(--bs-secondary-color);
    font-size: 0.85rem;
}

.chat-messages[b-kvpbh18cv0] {
    display: grid;
    gap: 0.5rem;
    max-height: 52vh;
    overflow-y: auto;
    padding-right: 0.15rem;
}

.chat-message[b-kvpbh18cv0] {
    border: 1px solid var(--bs-border-color);
    border-radius: 8px;
    max-width: 92%;
    padding: 0.5rem;
}

.chat-message.mine[b-kvpbh18cv0] {
    justify-self: end;
}

.chat-message.theirs[b-kvpbh18cv0] {
    justify-self: start;
}

.chat-message.seller[b-kvpbh18cv0] {
    background: #dff5df;
    border-color: #a9d9aa;
}

.chat-message.buyer[b-kvpbh18cv0] {
    background: #eef4ff;
    border-color: #bfd2f2;
}

.chat-message-meta[b-kvpbh18cv0] {
    color: var(--bs-secondary-color);
    display: flex;
    flex-wrap: wrap;
    font-size: 0.72rem;
    gap: 0.5rem;
    justify-content: space-between;
    margin-bottom: 0.25rem;
}

.chat-message-text[b-kvpbh18cv0] {
    font-size: 0.9rem;
    overflow-wrap: anywhere;
    white-space: pre-wrap;
}

.chat-composer[b-kvpbh18cv0] {
    display: grid;
    gap: 0.5rem;
    margin-top: 0.75rem;
}

.chat-composer .btn[b-kvpbh18cv0] {
    min-height: 42px;
}

@media (min-width: 768px) {
    .messages-page[b-kvpbh18cv0] {
        padding: 1.5rem;
    }

    .messages-title[b-kvpbh18cv0] {
        font-size: 2rem;
    }

    .messages-layout[b-kvpbh18cv0] {
        grid-template-columns: minmax(260px, 360px) minmax(0, 1fr);
    }

    .thread-select-wrap[b-kvpbh18cv0] {
        display: none;
    }

    .thread-list[b-kvpbh18cv0] {
        display: grid;
        gap: 0.35rem;
    }

    .thread-item[b-kvpbh18cv0] {
        gap: 0.08rem;
        height: 68px;
        overflow: hidden;
        padding: 0.42rem 0.5rem;
    }

    .thread-topline[b-kvpbh18cv0] {
        line-height: 1.1;
    }

    .thread-topline strong[b-kvpbh18cv0] {
        font-size: 0.92rem;
    }

    .thread-product[b-kvpbh18cv0],
    .thread-date[b-kvpbh18cv0] {
        font-size: 0.72rem;
        line-height: 1.1;
    }

    .thread-product[b-kvpbh18cv0] {
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .thread-preview[b-kvpbh18cv0] {
        font-size: 0.78rem;
        line-height: 1.15;
    }

    .chat-composer[b-kvpbh18cv0] {
        align-items: stretch;
        grid-template-columns: 1fr auto;
    }
}
/* /Components/Pages/Orders/Index.razor.rz.scp.css */
.orders-page[b-xq8jyhs3yi] {
    font-size: 0.84rem;
    padding: 0.5rem;
}

.orders-title[b-xq8jyhs3yi] {
    font-size: 1.25rem;
    line-height: 1.2;
    margin: 0 0 1rem;
    text-align: center;
}

.orders-container[b-xq8jyhs3yi] {
    display: grid;
    gap: 0.5rem;
    margin: 0 auto;
    max-width: 1120px;
}

.order-card[b-xq8jyhs3yi] {
    border: 1px solid var(--bs-border-color);
    border-radius: 8px;
    padding: 0.5rem;
}

.order-header[b-xq8jyhs3yi] {
    display: grid;
    gap: 0.5rem;
    margin-bottom: 0.65rem;
}

.order-label[b-xq8jyhs3yi] {
    color: var(--bs-secondary-color);
    display: block;
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
}

.order-id[b-xq8jyhs3yi] {
    font-size: 0.78rem;
    overflow-wrap: anywhere;
}

.order-meta-grid[b-xq8jyhs3yi] {
    display: grid;
    gap: 0.5rem;
}

.order-status[b-xq8jyhs3yi] {
    font-size: 0.84rem;
    font-weight: 700;
}

.seller-order-section[b-xq8jyhs3yi] {
    border-top: 1px solid var(--bs-border-color);
    padding-top: 1rem;
}

.seller-order-section:first-child[b-xq8jyhs3yi] {
    border-top: 0;
    padding-top: 0;
}

.seller-summary[b-xq8jyhs3yi] {
    display: grid;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.seller-summary h4[b-xq8jyhs3yi] {
    font-size: 0.98rem;
    margin: 0;
    overflow-wrap: anywhere;
}

.pickup-summary h5[b-xq8jyhs3yi] {
    font-size: 0.88rem;
    margin-bottom: 0.35rem;
}

.pickup-summary p[b-xq8jyhs3yi] {
    font-size: 0.84rem;
    margin-bottom: 0.75rem;
}

.order-item-list[b-xq8jyhs3yi] {
    display: grid;
    gap: 0.5rem;
    list-style: none;
    margin: 0.65rem 0 0;
    padding: 0;
}

.item-details[b-xq8jyhs3yi] {
    align-items: flex-start;
    display: flex;
    gap: 0.5rem;
}

.item-image[b-xq8jyhs3yi] {
    aspect-ratio: 1 / 1;
    border: 1px solid var(--bs-border-color);
    border-radius: 8px;
    flex: 0 0 72px;
    object-fit: cover;
    width: 72px;
}

.item-copy[b-xq8jyhs3yi] {
    flex: 1 1 auto;
    font-size: 0.86rem;
    min-width: 0;
    overflow-wrap: anywhere;
}

.item-meta[b-xq8jyhs3yi] {
    color: var(--bs-secondary-color);
    display: grid;
    font-size: 0.78rem;
    gap: 0.1rem;
    margin-top: 0.25rem;
}

.order-payment-action[b-xq8jyhs3yi] {
    align-items: stretch;
    display: grid;
    font-size: 0.82rem;
    gap: 0.5rem;
    margin-top: 0.65rem;
}

.order-payment-action .btn[b-xq8jyhs3yi] {
    font-size: 0.82rem;
    min-height: 40px;
    width: 100%;
}

@media (min-width: 576px) {
    .order-payment-action[b-xq8jyhs3yi] {
        align-items: center;
        grid-template-columns: auto 1fr;
    }

    .order-payment-action .btn[b-xq8jyhs3yi] {
        width: auto;
    }
}

@media (min-width: 768px) {
    .orders-page[b-xq8jyhs3yi] {
        font-size: 1rem;
        padding: 1.5rem;
    }

    .orders-title[b-xq8jyhs3yi] {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }

    .order-label[b-xq8jyhs3yi] {
        font-size: 0.78rem;
    }

    .order-id[b-xq8jyhs3yi] {
        font-size: 0.9rem;
    }

    .order-status[b-xq8jyhs3yi],
    .pickup-summary p[b-xq8jyhs3yi],
    .order-payment-action[b-xq8jyhs3yi],
    .order-payment-action .btn[b-xq8jyhs3yi] {
        font-size: 1rem;
    }

    .order-card[b-xq8jyhs3yi] {
        padding: 1.25rem;
    }

    .order-meta-grid[b-xq8jyhs3yi],
    .seller-summary[b-xq8jyhs3yi] {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .seller-summary[b-xq8jyhs3yi] {
        grid-template-columns: 1fr auto;
    }

    .item-meta[b-xq8jyhs3yi] {
        display: flex;
        font-size: 1rem;
        flex-wrap: wrap;
        gap: 0.75rem;
    }

    .item-copy[b-xq8jyhs3yi] {
        font-size: 1rem;
    }

    .seller-summary h4[b-xq8jyhs3yi] {
        font-size: 1.15rem;
    }

    .pickup-summary h5[b-xq8jyhs3yi] {
        font-size: 1rem;
    }
}
/* /Components/Pages/Vendor/Orders/Index.razor.rz.scp.css */
.orders-page[b-w816qf073k] {
    font-size: 0.84rem;
    padding: 0.5rem;
}

.orders-title[b-w816qf073k] {
    font-size: 1.25rem;
    line-height: 1.2;
    margin: 0 0 1rem;
    text-align: center;
}

.orders-container[b-w816qf073k] {
    display: grid;
    gap: 0.5rem;
    margin: 0 auto;
    max-width: 1120px;
}

.order-card[b-w816qf073k] {
    border: 1px solid var(--bs-border-color);
    border-radius: 8px;
    padding: 0.5rem;
}

.order-header[b-w816qf073k] {
    display: grid;
    gap: 0.5rem;
    margin-bottom: 0.65rem;
}

.order-label[b-w816qf073k] {
    color: var(--bs-secondary-color);
    display: block;
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
}

.order-id[b-w816qf073k] {
    font-size: 0.78rem;
    overflow-wrap: anywhere;
}

.order-meta-grid[b-w816qf073k],
.order-summary-grid[b-w816qf073k] {
    display: grid;
    gap: 0.5rem;
}

.order-status[b-w816qf073k] {
    font-size: 0.84rem;
    font-weight: 700;
}

.order-summary-grid h5[b-w816qf073k] {
    font-size: 0.88rem;
    margin-bottom: 0.35rem;
}

.order-summary-grid p[b-w816qf073k] {
    font-size: 0.84rem;
    margin-bottom: 0.75rem;
}

.order-totals[b-w816qf073k] {
    font-size: 0.84rem;
    margin-top: 0.75rem;
}

.order-item-list[b-w816qf073k] {
    display: grid;
    gap: 0.5rem;
    list-style: none;
    margin: 0.65rem 0 0;
    padding: 0;
}

.item-details[b-w816qf073k] {
    align-items: flex-start;
    display: flex;
    gap: 0.5rem;
}

.item-image[b-w816qf073k] {
    aspect-ratio: 1 / 1;
    border: 1px solid var(--bs-border-color);
    border-radius: 8px;
    flex: 0 0 72px;
    object-fit: cover;
    width: 72px;
}

.item-copy[b-w816qf073k] {
    flex: 1 1 auto;
    font-size: 0.86rem;
    min-width: 0;
    overflow-wrap: anywhere;
}

.item-meta[b-w816qf073k] {
    color: var(--bs-secondary-color);
    display: grid;
    font-size: 0.78rem;
    gap: 0.1rem;
    margin-top: 0.25rem;
}

.order-actions[b-w816qf073k] {
    align-items: stretch;
    display: grid;
    font-size: 0.82rem;
    gap: 0.6rem;
}

.order-actions .btn[b-w816qf073k] {
    font-size: 0.82rem;
    min-height: 40px;
    width: 100%;
}

.modal-dialog[b-w816qf073k] {
    margin: 0.75rem;
}

.modal-content[b-w816qf073k],
.form-control[b-w816qf073k],
.form-select[b-w816qf073k],
.alert[b-w816qf073k],
.validation-message[b-w816qf073k] {
    font-size: 0.86rem;
}

.modal-title[b-w816qf073k] {
    font-size: 1rem;
}

@media (min-width: 576px) {
    .order-actions[b-w816qf073k] {
        align-items: center;
        grid-template-columns: 1fr auto auto;
    }

    .order-actions .btn[b-w816qf073k] {
        width: auto;
    }
}

@media (min-width: 768px) {
    .orders-page[b-w816qf073k] {
        font-size: 1rem;
        padding: 1.5rem;
    }

    .orders-title[b-w816qf073k] {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }

    .order-label[b-w816qf073k] {
        font-size: 0.78rem;
    }

    .order-id[b-w816qf073k] {
        font-size: 0.9rem;
    }

    .order-status[b-w816qf073k],
    .order-summary-grid p[b-w816qf073k],
    .order-totals[b-w816qf073k],
    .order-actions[b-w816qf073k],
    .order-actions .btn[b-w816qf073k],
    .modal-content[b-w816qf073k],
    .form-control[b-w816qf073k],
    .form-select[b-w816qf073k],
    .alert[b-w816qf073k],
    .validation-message[b-w816qf073k] {
        font-size: 1rem;
    }

    .modal-title[b-w816qf073k] {
        font-size: 1.25rem;
    }

    .order-card[b-w816qf073k] {
        padding: 1.25rem;
    }

    .order-meta-grid[b-w816qf073k],
    .order-summary-grid[b-w816qf073k] {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .order-summary-grid[b-w816qf073k] {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .item-meta[b-w816qf073k] {
        display: flex;
        font-size: 1rem;
        flex-wrap: wrap;
        gap: 0.75rem;
    }

    .item-copy[b-w816qf073k] {
        font-size: 1rem;
    }

    .order-summary-grid h5[b-w816qf073k] {
        font-size: 1rem;
    }
}
/* /Components/Pages/Vendor/Store/Index.razor.rz.scp.css */
.storefront-container[b-mjrpvcr8rc] {
    max-width: 1120px;
    padding-bottom: 2rem;
}

.storefront-header[b-mjrpvcr8rc] {
    margin-bottom: 1.25rem;
}

.store-title[b-mjrpvcr8rc] {
    font-size: 1.5rem;
    line-height: 1.2;
    margin: 0;
    overflow-wrap: anywhere;
}

.store-product[b-mjrpvcr8rc] {
    padding: 1rem 0 1.5rem;
    position: relative;
}

.store-product + .store-product[b-mjrpvcr8rc] {
    border-top: 1px solid var(--bs-border-color);
}

.store-favorite-button[b-mjrpvcr8rc] {
    align-items: center;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid var(--bs-border-color);
    border-radius: 999px;
    color: var(--bs-secondary-color);
    display: inline-flex;
    height: 36px;
    justify-content: center;
    position: absolute;
    right: 0;
    top: 1rem;
    width: 36px;
    z-index: 2;
}

.store-favorite-button.active[b-mjrpvcr8rc],
.store-favorite-button:hover[b-mjrpvcr8rc],
.store-favorite-button:focus[b-mjrpvcr8rc] {
    border-color: #dc3545;
    color: #dc3545;
}

.store-product-tags[b-mjrpvcr8rc] {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    min-height: 0.5rem;
    margin-bottom: 0.75rem;
}

.store-product-media[b-mjrpvcr8rc] {
    width: 100%;
}

.store-product-figure[b-mjrpvcr8rc] {
    margin: 0;
    width: 100%;
}

.store-product-image[b-mjrpvcr8rc] {
    aspect-ratio: 4 / 3;
    display: block;
    object-fit: cover;
    width: 100%;
}

.store-product-title[b-mjrpvcr8rc] {
    font-size: 1.35rem;
    line-height: 1.2;
    margin-bottom: 0.35rem;
    overflow-wrap: anywhere;
}

.store-product-price[b-mjrpvcr8rc] {
    font-size: 1.1rem;
    line-height: 1.25;
    margin-bottom: 0.75rem;
}

.store-product-description[b-mjrpvcr8rc] {
    overflow-wrap: anywhere;
}

.store-product-description :last-child[b-mjrpvcr8rc] {
    margin-bottom: 0;
}

.store-selected-option[b-mjrpvcr8rc] {
    margin: 1rem 0 0.65rem;
}

.modifier-options[b-mjrpvcr8rc] {
    display: grid;
    gap: 0.6rem;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
}

.option-box[b-mjrpvcr8rc] {
    background: var(--bs-body-bg);
    border: 1px solid var(--bs-border-color);
    border-radius: 8px;
    cursor: pointer;
    padding: 0.75rem 1rem;
    text-align: left;
    transition: border-color 0.2s ease, background-color 0.2s ease;
}

.option-box:hover[b-mjrpvcr8rc],
.option-box:focus[b-mjrpvcr8rc] {
    border-color: #666;
}

.option-box.selected[b-mjrpvcr8rc] {
    background: #fff8e7;
    border: 2px solid #ff9900;
}

.store-option[b-mjrpvcr8rc] {
    min-height: 58px;
    width: 100%;
}

.price[b-mjrpvcr8rc] {
    font-size: 1rem;
    font-weight: 700;
}

.description[b-mjrpvcr8rc] {
    color: #555;
    font-size: 0.9rem;
    margin-top: 0.25rem;
    overflow-wrap: anywhere;
}

.store-actions[b-mjrpvcr8rc] {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
}

.store-add-button[b-mjrpvcr8rc],
.store-chat-button[b-mjrpvcr8rc] {
    min-height: 44px;
    width: 100%;
}

.product-chat-panel[b-mjrpvcr8rc] {
    border: 1px solid var(--bs-border-color);
    border-radius: 8px;
    margin-top: 1rem;
    padding: 0.75rem;
}

.product-chat-header[b-mjrpvcr8rc] {
    align-items: center;
    display: flex;
    gap: 0.75rem;
    justify-content: space-between;
    font-size: 0.95rem;
    margin-bottom: 0.65rem;
    overflow-wrap: anywhere;
}

.product-chat-thread-list[b-mjrpvcr8rc] {
    display: grid;
    gap: 0.5rem;
}

.product-chat-thread[b-mjrpvcr8rc] {
    background: var(--bs-body-bg);
    border: 1px solid var(--bs-border-color);
    border-radius: 8px;
    display: grid;
    gap: 0.2rem;
    padding: 0.5rem;
    text-align: left;
}

.product-chat-messages[b-mjrpvcr8rc] {
    display: grid;
    gap: 0.5rem;
    max-height: 260px;
    overflow-y: auto;
    padding-right: 0.15rem;
}

.chat-message[b-mjrpvcr8rc] {
    border: 1px solid var(--bs-border-color);
    border-radius: 8px;
    max-width: 92%;
    padding: 0.5rem;
}

.chat-message.mine[b-mjrpvcr8rc] {
    justify-self: end;
}

.chat-message.theirs[b-mjrpvcr8rc] {
    justify-self: start;
}

.chat-message.seller[b-mjrpvcr8rc] {
    background: #dff5df;
    border-color: #a9d9aa;
}

.chat-message.buyer[b-mjrpvcr8rc] {
    background: #eef4ff;
    border-color: #bfd2f2;
}

.chat-message-meta[b-mjrpvcr8rc] {
    color: var(--bs-secondary-color);
    display: flex;
    flex-wrap: wrap;
    font-size: 0.72rem;
    gap: 0.5rem;
    justify-content: space-between;
    margin-bottom: 0.25rem;
}

.chat-message-text[b-mjrpvcr8rc] {
    font-size: 0.9rem;
    overflow-wrap: anywhere;
    white-space: pre-wrap;
}

.product-chat-composer[b-mjrpvcr8rc] {
    display: grid;
    gap: 0.5rem;
    margin-top: 0.75rem;
}

.product-chat-composer .btn[b-mjrpvcr8rc] {
    min-height: 42px;
}

.store-profile-section[b-mjrpvcr8rc] {
    border-top: 1px solid var(--bs-border-color);
    display: grid;
    gap: 1rem;
    margin-top: 1rem;
    padding-top: 1.5rem;
}

.store-profile-image[b-mjrpvcr8rc] {
    aspect-ratio: 1 / 1;
    border: 1px solid var(--bs-border-color);
    border-radius: 8px;
    display: block;
    max-width: 180px;
    object-fit: cover;
    width: 100%;
}

.store-profile-content[b-mjrpvcr8rc] {
    display: grid;
    gap: 1rem;
}

.store-profile-content h3[b-mjrpvcr8rc] {
    font-size: 1.1rem;
    line-height: 1.25;
    margin-bottom: 0.35rem;
}

.store-profile-content p[b-mjrpvcr8rc] {
    margin-bottom: 0;
    overflow-wrap: anywhere;
    white-space: pre-wrap;
}

.store-profile-location[b-mjrpvcr8rc] {
    color: var(--bs-secondary-color);
}

@media (min-width: 576px) {
    .store-add-button[b-mjrpvcr8rc],
    .store-chat-button[b-mjrpvcr8rc] {
        width: auto;
    }

    .product-chat-composer[b-mjrpvcr8rc] {
        align-items: stretch;
        grid-template-columns: 1fr auto;
    }

    .store-profile-section[b-mjrpvcr8rc] {
        align-items: start;
        grid-template-columns: 180px 1fr;
    }
}

@media (min-width: 992px) {
    .storefront-header[b-mjrpvcr8rc] {
        margin-bottom: 1.75rem;
    }

    .store-title[b-mjrpvcr8rc] {
        font-size: 2rem;
    }

    .store-product[b-mjrpvcr8rc] {
        padding: 1.5rem 0 2rem;
    }

    .store-product-title[b-mjrpvcr8rc] {
        font-size: 1.6rem;
    }
}

@media (max-width: 575.98px) {
    .storefront-container[b-mjrpvcr8rc] {
        --bs-gutter-x: 1rem;
    }

    .store-product[b-mjrpvcr8rc] {
        padding: 0.75rem 0 1.25rem;
    }

    .store-product-tags[b-mjrpvcr8rc] {
        margin-bottom: 0.55rem;
    }

    .store-product-image[b-mjrpvcr8rc] {
        aspect-ratio: 1 / 1;
    }

    .modifier-options[b-mjrpvcr8rc] {
        grid-template-columns: 1fr;
    }

    .store-option[b-mjrpvcr8rc] {
        min-height: 54px;
        padding: 0.75rem 0.9rem;
    }

    .store-product-media .swiper-button-prev[b-mjrpvcr8rc],
    .store-product-media .swiper-button-next[b-mjrpvcr8rc] {
        transform: scale(0.8);
    }
}
/* /Shared/SelectVariations.razor.rz.scp.css */

.option-container[b-ioqrt3oc6q] {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.option-box[b-ioqrt3oc6q] {
    border: 1px solid #ccc;
    border-radius: 8px;
    padding: 12px 16px;
    min-width: 140px;
    background: white;
    cursor: pointer;
    text-align: left;
    transition: all 0.2s ease;

}

    .option-box:hover[b-ioqrt3oc6q] {
        border-color: #666;
    }

    .option-box.selected[b-ioqrt3oc6q] {
        border: 2px solid #ff9900;
        background: #fff8e7;
    }

.price[b-ioqrt3oc6q] {
    font-weight: bold;
    font-size: 16px;
}

.description[b-ioqrt3oc6q] {
    font-size: 13px;
    color: #555;
    margin-top: 4px;
}

.checkmark[b-ioqrt3oc6q] {
    position: absolute;
    top: 8px;
    right: 8px;
    background: #ffa41c;
    border-radius: 50%;
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
}
/* /Shared/TextEditor.razor.rz.scp.css */
.text-editor[b-in3vjbisck] {
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    background: #fff;
    overflow: hidden;
}

.text-editor__toolbar[b-in3vjbisck] {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    min-height: 2.75rem;
    padding: 0.35rem 0.5rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    background: #f8f9fa;
}

.text-editor__button[b-in3vjbisck] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    padding: 0;
    border: 0;
    border-radius: 6px;
    color: #343a40;
    background: transparent;
}

.text-editor__button:hover[b-in3vjbisck],
.text-editor__button:focus-visible[b-in3vjbisck] {
    color: #111;
    background: rgba(0, 0, 0, 0.08);
    outline: none;
}

.text-editor__separator[b-in3vjbisck] {
    width: 1px;
    height: 1.5rem;
    margin: 0 0.25rem;
    background: rgba(0, 0, 0, 0.14);
}

.text-editor__surface[b-in3vjbisck] {
    min-height: 12rem;
    padding: 0.875rem 1rem;
    color: #212529;
    background: #fff;
    outline: none;
    overflow-y: auto;
}

.text-editor__surface:focus[b-in3vjbisck] {
    box-shadow: inset 0 0 0 2px rgba(13, 110, 253, 0.2);
}

.text-editor__surface:empty[b-in3vjbisck]::before {
    content: attr(data-placeholder);
    color: #6c757d;
    pointer-events: none;
}

.text-editor__surface ol[b-in3vjbisck],
.text-editor__surface ul[b-in3vjbisck] {
    padding-left: 1.5rem;
}
