@import url('https://fonts.googleapis.com/css2?family=Halant&family=Poppins:wght@700;900&display=swap');

* {
    box-sizing: border-box;
}

body.lo-page {
    margin: 0;
    min-height: 100vh;
    overflow-x: hidden;
    color: #fff;
    background: #070707 url('/images/bg-pattern.jpg') center top repeat;
    font-family: 'Halant', serif;
    font-size: 18px;
}

body.lo-cart-open,
body.lo-waiting-open {
    overflow: hidden;
}

.lo-header {
    position: sticky;
    top: 0;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 14px clamp(16px, 4vw, 48px);
    background: rgba(0, 0, 0, 0.88);
    border-bottom: 1px solid rgba(255, 211, 0, 0.22);
}

.lo-logo img {
    display: block;
    height: 70px;
    width: auto;
}

.lo-header-link,
.lo-header-link:visited {
    color: #ffd300;
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    text-decoration: none;
    text-transform: uppercase;
    text-align: right;
}

.lo-shell {
    width: min(1200px, calc(100% - 28px));
    margin: 0 auto;
    padding: 44px 0 120px;
}

.lo-hero {
    min-height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(28px, 6vw, 62px);
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.88), rgba(0, 0, 0, 0.52)), url('/images/bg-header.jpg') center / cover no-repeat;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.lo-hero-compact {
    min-height: 220px;
}

.lo-kicker,
.lo-status,
.lo-button,
.lo-tabs button,
.lo-total,
.lo-form label,
.lo-console-head,
.lo-order-meta,
.lo-pill {
    font-family: 'Poppins', sans-serif;
}

.lo-kicker {
    margin: 0 0 12px;
    color: #ffd300;
    text-transform: uppercase;
    font-size: 13px;
}

.lo-hero h1 {
    margin: 0;
    max-width: 760px;
    font-family: 'Poppins', sans-serif;
    font-size: clamp(38px, 7vw, 82px);
    line-height: 1;
    text-transform: uppercase;
}

.lo-hero p {
    max-width: 620px;
    margin: 18px 0 0;
    color: #e5e5e5;
}

.lo-status {
    display: inline-flex;
    width: fit-content;
    margin-top: 24px;
    padding: 9px 12px;
    color: #fff;
    background: #139e68;
    border-radius: 4px;
    font-size: 13px;
}

.lo-status.is-closed {
    color: #fff;
    background: #9e2323;
}

.lo-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 24px;
    align-items: start;
    margin-top: 24px;
}

.lo-menu-panel,
.lo-cart,
.lo-console {
    background: rgba(0, 0, 0, 0.78);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.lo-menu-panel {
    padding: 24px;
}

.lo-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 24px;
}

.lo-tabs button {
    min-height: 40px;
    padding: 8px 14px;
    color: #111;
    background: #ffd300;
    border: 0;
    border-radius: 4px;
    cursor: pointer;
    text-transform: uppercase;
}

.lo-tabs button.is-active {
    background: #b8b8b8;
}

.lo-category {
    display: none;
}

.lo-category.is-active {
    display: block;
}

.lo-category h2,
.lo-cart h2,
.lo-console h2 {
    margin: 0 0 20px;
    font-family: 'Poppins', sans-serif;
    text-transform: uppercase;
}

.lo-products {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.lo-product {
    display: grid;
    grid-template-columns: 104px minmax(0, 1fr);
    gap: 14px;
    min-height: 128px;
    padding: 12px;
    background: #111;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.lo-product img,
.lo-product-placeholder {
    width: 104px;
    height: 104px;
    object-fit: cover;
    background: #222;
}

.lo-product h3 {
    margin: 0 0 6px;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    line-height: 1.25;
    text-transform: uppercase;
}

.lo-product p {
    margin: 0;
    color: #b8b8b8;
    font-size: 16px;
}

.lo-product-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-top: 12px;
}

.lo-price {
    color: #ffd300;
    font-family: 'Poppins', sans-serif;
}

.lo-icon-button {
    min-width: 38px;
    min-height: 38px;
    color: #111;
    background: #ffd300;
    border: 0;
    border-radius: 4px;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    font-size: 22px;
}

.lo-icon-button.is-added {
    background: #b8b8b8;
}

.lo-cart-bar {
    position: fixed;
    left: 50%;
    bottom: 18px;
    z-index: 90;
    width: min(560px, calc(100% - 28px));
    transform: translateX(-50%);
    opacity: 1;
    pointer-events: auto;
    transition: opacity 0.18s ease, transform 0.18s ease;
}

.lo-cart-bar.is-empty {
    opacity: 0;
    pointer-events: none;
    transform: translate(-50%, 14px);
}

.lo-cart-bar.has-two {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
}

.lo-cart-summary {
    width: 100%;
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 10px 14px;
    color: #111;
    background: #ffd300;
    border: 0;
    border-radius: 6px;
    cursor: pointer;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45);
    font-family: 'Poppins', sans-serif;
}

.lo-cart-summary.is-pulsing {
    animation: lo-cart-pulse 0.38s ease;
}

@keyframes lo-cart-pulse {
    0% { transform: scale(1); }
    45% { transform: scale(1.025); }
    100% { transform: scale(1); }
}

.lo-cart-mark {
    width: 34px;
    flex: 0 0 auto;
    color: #111;
    font-size: 28px;
    line-height: 1;
    text-align: center;
}

.lo-cart-summary-text {
    display: grid;
    gap: 2px;
    min-width: 0;
    text-align: left;
}

.lo-cart-summary-text strong,
.lo-cart-summary-text span,
.lo-cart-summary-action {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.lo-cart-summary-action {
    margin-left: auto;
    padding: 8px 10px;
    color: #fff;
    background: #111;
    border-radius: 4px;
    font-size: 12px;
    text-transform: uppercase;
}

.lo-cart-backdrop {
    position: fixed;
    inset: 0;
    z-index: 110;
    display: none;
    background: rgba(0, 0, 0, 0.68);
}

.lo-cart {
    position: fixed;
    top: 50%;
    left: 50%;
    z-index: 120;
    width: min(560px, calc(100% - 28px));
    max-height: min(86vh, 760px);
    display: none;
    overflow-y: auto;
    padding: 24px;
    transform: translate(-50%, -50%);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.58);
}

.lo-customer-page #cartModal {
    width: min(600px, calc(100% - 28px));
    max-height: min(92vh, 760px);
    padding: 16px 30px;
    background: #0c0c0c;
    border-color: rgba(255, 255, 255, 0.12);
    border-radius: 6px;
}

.lo-cart-open #cartModal,
.lo-orders-open .lo-orders-modal,
.lo-waiting-open #waitingModal,
.lo-cart-open .lo-cart-backdrop {
    display: block;
}

.lo-cart-open #ordersModal,
.lo-orders-open #cartModal {
    display: none;
}

.lo-orders-open .lo-cart-backdrop,
.lo-waiting-open .lo-cart-backdrop {
    display: block;
}

.lo-waiting-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    z-index: 130;
    width: min(420px, calc(100% - 28px));
    display: none;
    padding: 30px 24px;
    color: #fff;
    background: #111;
    border: 1px solid rgba(255, 255, 255, 0.12);
    text-align: center;
    transform: translate(-50%, -50%);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.58);
}

.lo-waiting-modal h2 {
    margin: 18px 0 10px;
    font-family: 'Poppins', sans-serif;
    font-size: 24px;
    line-height: 1.2;
    text-transform: uppercase;
}

.lo-waiting-modal p {
    margin: 0;
    color: #d8d8d8;
}

.lo-waiting-spinner {
    width: 54px;
    height: 54px;
    margin: 0 auto;
    border: 4px solid rgba(255, 211, 0, 0.24);
    border-top-color: #ffd300;
    border-radius: 50%;
    animation: lo-message-spin 0.8s linear infinite;
}

.lo-cart-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 18px;
}

.lo-cart-head h2 {
    margin: 0;
}

.lo-customer-page #cartModal .lo-cart-head {
    margin-bottom: 12px;
}

.lo-customer-page #cartModal .lo-cart-head h2 {
    font-size: 22px;
    line-height: 1.2;
    text-transform: none;
}

.lo-orders-head-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

.lo-clear-orders {
    min-height: 34px;
    padding: 7px 9px;
    color: #f7f0df;
    background: rgba(247, 240, 223, 0.14);
    border: 0;
    border-radius: 4px;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    font-size: 11px;
    text-transform: uppercase;
}

.lo-cart-close {
    width: 40px;
    height: 40px;
    color: #111;
    background: #ffd300;
    border: 0;
    border-radius: 4px;
    cursor: pointer;
    font-size: 28px;
    line-height: 1;
}

.lo-customer-page #cartModal .lo-cart-close,
.lo-customer-page #ordersModal .lo-cart-close {
    width: 30px;
    height: 30px;
    color: #f7f0df;
    background: #171717;
    border: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 20px;
}

.lo-cart-line {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.lo-customer-page #cartModal .lo-cart-line {
    grid-template-columns: 88px minmax(0, 1fr) auto;
    align-items: center;
    gap: 12px;
    padding: 0 0 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.lo-cart-product-media {
    width: 88px;
    height: 66px;
    overflow: hidden;
    background: #181818;
    border-radius: 4px;
}

.lo-cart-product-media img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.lo-cart-product-info {
    min-width: 0;
    display: grid;
    gap: 3px;
}

.lo-cart-product-info strong {
    overflow: hidden;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    line-height: 1.2;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.lo-cart-product-desc {
    overflow: hidden;
    color: #8f8f8f;
    font-size: 13px;
    line-height: 1.2;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.lo-cart-product-price {
    color: #ffd300;
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    font-weight: 700;
}

.lo-cart-product-qty {
    display: grid;
    gap: 6px;
    justify-items: center;
    color: #8f8f8f;
    font-family: 'Poppins', sans-serif;
    font-size: 11px;
}

.lo-cart-products-total {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: -2px 0 4px;
    padding: 12px 0;
    color: #f3f3f3;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
}

.lo-cart-products-total strong {
    color: #ffd300;
    font-size: 18px;
}

.lo-qty {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.lo-qty button {
    width: 30px;
    height: 30px;
    border: 0;
    border-radius: 4px;
    background: #333;
    color: #fff;
    cursor: pointer;
}

.lo-customer-page #cartModal .lo-qty {
    gap: 4px;
}

.lo-customer-page #cartModal .lo-qty button {
    width: 28px;
    height: 28px;
    color: #fff;
    background: #171717;
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.lo-customer-page #cartModal .lo-qty span {
    width: 18px;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    text-align: center;
}

.lo-total {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 0;
    color: #ffd300;
}

.lo-form {
    display: grid;
    gap: 13px;
}

.lo-customer-page #cartModal .lo-form {
    gap: 10px;
}

.lo-form label {
    display: grid;
    gap: 6px;
    font-size: 13px;
    text-transform: uppercase;
}

.lo-customer-page #cartModal .lo-form label {
    position: relative;
    gap: 5px;
    color: #f3f3f3;
    font-size: 13px;
    text-transform: none;
}

.lo-customer-page #cartModal .lo-form label em {
    color: #ff5252;
    font-style: normal;
}

.lo-customer-page #cartModal .lo-form label small {
    color: #9a9a9a;
    font-size: 12px;
}

.lo-form input,
.lo-form textarea,
.lo-seller-login input {
    width: 100%;
    min-height: 42px;
    padding: 10px 12px;
    color: #fff;
    background: #111;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 4px;
    font: inherit;
}

.lo-customer-page #cartModal .lo-form input,
.lo-customer-page #cartModal .lo-form textarea {
    min-height: 38px;
    padding: 9px 10px;
    color: #fff;
    background: #111;
    border-color: rgba(255, 255, 255, 0.12);
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
}

.lo-customer-page #cartModal .lo-form textarea {
    min-height: 74px;
    resize: vertical;
}

.lo-customer-page #cartModal .lo-form input::placeholder,
.lo-customer-page #cartModal .lo-form textarea::placeholder {
    color: #777;
}

.lo-segment {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
}

.lo-segment label {
    min-height: 44px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px;
    background: #111;
    border-radius: 4px;
}

.lo-mode-radios {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    align-items: center;
}

.lo-mode-radios.is-single {
    grid-template-columns: 1fr;
}

.lo-mode-radios label {
    width: 100%;
    min-width: 0;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 2px 0;
    color: #b8b8b8;
    background: transparent;
    border: 0;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    text-align: left;
    text-transform: none;
    white-space: normal;
}

.lo-customer-page #cartModal .lo-mode-radios label {
    min-height: 48px;
    gap: 8px;
    padding: 9px 10px;
    color: #d8d8d8;
    background: #111;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 4px;
    font-size: 13px;
}

.lo-mode-radios label.is-active {
    color: #fff;
}

.lo-customer-page #cartModal .lo-mode-radios label.is-active {
    border-color: rgba(255, 211, 0, 0.78);
}

.lo-mode-radios input {
    accent-color: #ffd300;
}

.lo-customer-page #cartModal .lo-mode-radios input {
    width: 14px;
    min-height: 14px;
    flex: 0 0 auto;
}

.lo-radio-icon {
    width: 16px;
    flex: 0 0 auto;
    color: #8f8f8f;
    font-size: 15px;
    text-align: center;
}

.lo-mode-radios label.is-active .lo-radio-icon {
    color: #ffd300;
}

.lo-customer-page #cartModal .lo-mode-radios label > span:last-child {
    display: grid;
    gap: 1px;
    min-width: 0;
}

.lo-customer-page #cartModal .lo-mode-radios small {
    color: #858585;
    font-size: 11px;
    line-height: 1.15;
}

.lo-radio-group {
    display: grid;
    gap: 8px;
}

.lo-radio-group p {
    margin: 0;
    color: #ffd300;
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
}

.lo-customer-page #cartModal .lo-radio-group {
    gap: 6px;
}

.lo-customer-page #cartModal .lo-radio-group p {
    color: #f3f3f3;
    font-size: 13px;
}

.lo-radio-divider {
    height: 1px;
    margin: 2px 0;
    background: rgba(255, 255, 255, 0.16);
}

.lo-customer-page #cartModal .lo-radio-divider {
    margin: 1px 0;
}

.lo-form .lo-scheduled {
    display: none;
}

.lo-form .lo-scheduled.is-visible {
    display: grid;
}

.lo-customer-page #cartModal .lo-scheduled input {
    width: 12ch;
    min-width: 12ch;
    max-width: 12ch;
    text-align: center;
    color-scheme: dark;
}

.lo-customer-page #cartModal .lo-scheduled input::-webkit-calendar-picker-indicator {
    filter: invert(1);
    opacity: 0.78;
}

.lo-pickup-note {
    margin: 0;
    padding: 10px 12px;
    color: #f7f0df;
    background: rgba(255, 211, 0, 0.12);
    border: 1px solid rgba(255, 211, 0, 0.28);
    border-radius: 4px;
    font-size: 14px;
    line-height: 1.4;
}

.lo-customer-page #cartModal .lo-pickup-note {
    display: none;
}

.lo-comment-counter {
    position: absolute;
    right: 8px;
    bottom: 7px;
    color: #8f8f8f;
    font-family: 'Poppins', sans-serif;
    font-size: 11px;
}

.lo-checkout-footer {
    display: block;
}

.lo-checkout-footer .lo-button {
    width: 100%;
    min-height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 9px 12px;
    font-size: 13px;
}

.lo-data-note {
    margin: -2px 0 0;
    color: #8f8f8f;
    font-family: 'Poppins', sans-serif;
    font-size: 11px;
    text-align: center;
}

.lo-data-note span {
    margin-right: 5px;
}

.lo-button {
    min-height: 46px;
    padding: 10px 16px;
    color: #111;
    background: #ffd300;
    border: 0;
    border-radius: 4px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-transform: uppercase;
}

.lo-button i {
    pointer-events: none;
}

.lo-button,
.lo-icon-button,
.lo-tab-button,
.lo-tabs button,
.lo-qty button {
    touch-action: manipulation;
}

.lo-button:disabled {
    cursor: not-allowed;
    opacity: 0.45;
}

.lo-button-muted {
    color: #f7f0df;
    background: rgba(247, 240, 223, 0.14);
}

.lo-button-success {
    color: #fff;
    background: #139e68;
}

.lo-button-warning {
    color: #111;
    background: #ff9f1a;
}

.lo-sound-toggle {
    border: 1px solid rgba(255, 211, 0, 0.34);
}

.lo-seller-brand .lo-sound-toggle {
    flex: 0 0 auto;
    min-height: 34px;
    padding: 6px 10px;
    gap: 7px;
    font-size: 12px;
}

.lo-message {
    min-height: 24px;
    margin: 0;
    color: #ffd300;
}

.lo-message.is-loading {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.lo-message-spinner {
    width: 18px;
    height: 18px;
    flex: 0 0 auto;
    border: 2px solid rgba(255, 211, 0, 0.28);
    border-top-color: #ffd300;
    border-radius: 50%;
    animation: lo-message-spin 0.8s linear infinite;
}

@keyframes lo-message-spin {
    to { transform: rotate(360deg); }
}

.lo-order-state {
    margin-top: 18px;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.lo-orders-list {
    display: grid;
    gap: 14px;
}

.lo-my-order {
    display: grid;
    gap: 12px;
    padding: 14px;
    background: #111;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.lo-my-order-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
}

.lo-my-order-top strong {
    display: block;
    font-family: 'Poppins', sans-serif;
    text-transform: uppercase;
}

.lo-my-order-top span,
.lo-order-meta-grid,
.lo-my-order-items {
    color: #b8b8b8;
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
}

.lo-order-meta-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
}

.lo-order-properties {
    grid-column: 1 / -1;
}

.lo-order-ready-estimate {
    grid-column: 1 / -1;
    color: #ffd300;
}

.lo-my-order-items {
    display: grid;
    gap: 6px;
    margin: 0;
    padding-left: 18px;
}

.lo-order-total {
    margin: 0;
    padding-top: 10px;
    color: #ffd300;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    text-transform: uppercase;
}

.lo-payment-history {
    display: grid;
    gap: 6px;
    color: #b8b8b8;
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
}

.lo-payment-history strong {
    color: #ffd300;
    text-transform: uppercase;
}

.lo-payment-history ul {
    display: grid;
    gap: 5px;
    margin: 0;
    padding-left: 18px;
}

.lo-my-order-actions {
    display: grid;
    gap: 8px;
}

.lo-cancel-comment {
    margin: 12px 0 0;
    padding: 10px 12px;
    color: #fff;
    background: rgba(158, 35, 35, 0.28);
    border-left: 4px solid #9e2323;
}

.lo-update-comment {
    margin: 0;
    padding: 10px 12px;
    color: #fff;
    background: rgba(231, 126, 34, 0.24);
    border-left: 4px solid #e67e22;
}

.lo-order-discount-line {
    color: #ffd300;
}

.lo-seller-login,
.lo-seller-toolbar {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    margin-top: 24px;
}

.lo-seller-remember {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #d8d8d8;
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    cursor: pointer;
}

.lo-seller-remember input {
    width: 16px;
    height: 16px;
    accent-color: #ffd300;
}

.lo-seller-page {
    --lo-seller-header-height: 99px;
    --lo-seller-strip-height: 20px;
}

.lo-seller-page .lo-header {
    position: fixed;
    right: 0;
    left: 0;
    flex-wrap: wrap;
    height: var(--lo-seller-header-height);
    min-height: var(--lo-seller-header-height);
    padding: 8px clamp(16px, 4vw, 48px) calc(var(--lo-seller-strip-height) + 1px);
    background: rgba(0, 0, 0, 0.88);
    transition: background 0.18s ease;
}

.lo-seller-page .lo-header.is-open {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.88) 0 80%, #139e68 80% 100%);
}

.lo-seller-page .lo-header.is-closed {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.88) 0 80%, #9e2323 80% 100%);
}

.lo-seller-page .lo-logo img {
    height: 70px;
}

.lo-seller-brand {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    gap: 16px;
    min-width: 0;
}

.lo-seller-page .lo-header-link {
    flex: 0 0 auto;
    text-align: left;
    white-space: nowrap;
}

.lo-seller-page .lo-shell {
    padding-top: calc(var(--lo-seller-header-height) + 16px);
}

.lo-seller-page .lo-hero-compact {
    width: 100vw;
    min-height: 0;
    margin-left: calc(50% - 50vw);
    padding: 12px clamp(16px, 4vw, 48px);
    background: rgba(17, 17, 17, 0.96);
    border-width: 0 0 1px;
    border-color: rgba(255, 255, 255, 0.1);
}

.lo-seller-page.is-seller-logged .lo-hero-compact {
    display: none;
}

.lo-seller-page .lo-hero-compact .lo-kicker,
.lo-seller-page .lo-hero-compact h1 {
    display: none;
}

.lo-seller-page .lo-seller-login,
.lo-seller-page .lo-seller-toolbar {
    width: min(1200px, calc(100% - 28px));
    margin: 0 auto;
}

.lo-seller-page .lo-seller-toolbar {
    flex: 0 0 auto;
    gap: 8px;
    justify-content: flex-end;
    width: auto;
    max-width: 760px;
    margin: 0 156px 0 auto;
}

.lo-seller-page .lo-seller-toolbar .lo-button,
.lo-seller-page .lo-status-toggle {
    min-height: 34px;
    padding: 6px 10px;
    font-size: 12px;
}

.lo-seller-page .lo-status-toggle {
    order: 10;
    position: absolute;
    top: calc((var(--lo-seller-header-height) - var(--lo-seller-strip-height)) / 2);
    right: clamp(16px, 4vw, 48px);
    z-index: 3;
    transform: translateY(-50%);
    white-space: nowrap;
}

.lo-seller-page .lo-status {
    order: -1;
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    flex: none;
    width: 100%;
    height: var(--lo-seller-strip-height);
    min-height: var(--lo-seller-strip-height);
    margin-top: 0;
    padding: 0;
    color: #fff;
    background: transparent;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    letter-spacing: 0;
    line-height: 1;
    pointer-events: none;
}

.lo-status-toggle {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 34px;
    padding: 0;
    color: #fff;
    background: transparent;
    border: 0;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    text-transform: uppercase;
}

.lo-status-toggle span {
    position: relative;
    width: 38px;
    height: 22px;
    background: #c9c9c9;
    border-radius: 999px;
}

.lo-status-toggle span::after {
    content: '';
    position: absolute;
    top: 3px;
    left: 3px;
    width: 16px;
    height: 16px;
    background: #111;
    border-radius: 50%;
    transition: transform 0.18s ease;
}

.lo-status-toggle[aria-pressed="true"] span {
    background: #ffd300;
}

.lo-status-toggle[aria-pressed="true"] span::after {
    transform: translateX(16px);
}

.lo-seller-login input {
    max-width: 360px;
}

.lo-seller-login .lo-seller-remember input {
    flex: 0 0 16px;
    width: 16px;
    min-height: 16px;
    max-width: 16px;
    padding: 0;
}

.lo-seller-cancel-modal {
    position: fixed;
    inset: 0;
    z-index: 40;
}

.lo-seller-cancel-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.72);
}

.lo-seller-cancel-dialog {
    position: relative;
    width: min(520px, calc(100% - 28px));
    margin: 12vh auto 0;
    padding: 24px;
    color: #fff;
    background: #111;
    border: 1px solid rgba(255, 255, 255, 0.14);
}

.lo-seller-cancel-dialog .lo-cart-close {
    position: absolute;
    top: 14px;
    right: 14px;
}

.lo-seller-cancel-dialog h2 {
    margin: 0 46px 12px 0;
    font-family: 'Poppins', sans-serif;
    text-transform: uppercase;
}

.lo-seller-cancel-dialog p {
    margin: 0 0 14px;
    color: #d8d8d8;
}

.lo-seller-cancel-dialog textarea {
    width: 100%;
    min-height: 118px;
    resize: vertical;
    padding: 12px;
    color: #fff;
    background: #070707;
    border: 1px solid rgba(255, 255, 255, 0.18);
    font: inherit;
}

.lo-seller-cancel-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 10px;
    margin-top: 16px;
}

.lo-prep-modal-input {
    width: 100%;
    min-height: 72px;
    padding: 12px 14px;
    color: #fff;
    background: #111;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 4px;
    font-size: 34px;
    font-weight: 700;
    text-align: center;
    appearance: textfield;
    -moz-appearance: textfield;
}

.lo-prep-modal-input::-webkit-outer-spin-button,
.lo-prep-modal-input::-webkit-inner-spin-button {
    margin: 0;
    -webkit-appearance: none;
}

.lo-edit-dialog {
    width: min(900px, calc(100% - 28px));
    max-height: 92vh;
    overflow-y: auto;
    padding: 0;
    background:
        radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.08), transparent 34%),
        #0b0b0b;
    border-color: rgba(255, 255, 255, 0.22);
    border-radius: 8px;
}

.lo-edit-header {
    position: relative;
    min-height: 88px;
    display: flex;
    align-items: center;
    padding: 24px 82px 20px 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.lo-edit-header h2 {
    margin: 0;
    font-size: clamp(30px, 5vw, 44px);
    line-height: 1;
}

.lo-edit-dialog .lo-cart-close {
    top: 16px;
    right: 24px;
    width: 56px;
    height: 56px;
    color: #111;
    background: #ffd300;
    font-size: 44px;
}

.lo-edit-body {
    display: grid;
    gap: 16px;
    padding: 22px 30px 18px;
}

.lo-edit-section,
.lo-edit-total {
    padding: 20px 26px;
    background: rgba(10, 10, 10, 0.78);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 8px;
}

.lo-edit-dialog h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 18px;
    font-family: 'Poppins', sans-serif;
    font-size: 24px;
    line-height: 1.2;
}

.lo-edit-title-icon {
    display: inline-grid;
    place-items: center;
    width: 34px;
    height: 34px;
    color: #111;
    background: #ffd300;
    border-radius: 50%;
    font-size: 24px;
}

.lo-edit-line,
.lo-edit-product {
    display: grid;
    align-items: center;
    gap: 12px;
}

.lo-edit-line {
    grid-template-columns: minmax(0, 1fr) auto auto;
    grid-template-areas:
        "info price remove"
        "qty qty qty";
    min-height: 132px;
    padding: 22px 26px;
    background: rgba(8, 8, 8, 0.72);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 8px;
}

.lo-edit-line + .lo-edit-line {
    margin-top: 16px;
}

.lo-edit-line-info {
    grid-area: info;
}

.lo-edit-line-info strong,
.lo-edit-product span,
.lo-edit-total-final span,
.lo-edit-total-final strong {
    font-family: 'Poppins', sans-serif;
}

.lo-edit-line-info strong {
    display: block;
    font-size: 24px;
    line-height: 1.2;
}

.lo-edit-line-price {
    grid-area: price;
    min-width: 110px;
    font-family: 'Poppins', sans-serif;
    font-size: 24px;
    text-align: right;
}

.lo-edit-qty {
    grid-area: qty;
    justify-self: center;
    display: grid;
    grid-template-columns: 64px 88px 64px;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border: 1px solid #ffd300;
    border-radius: 8px;
}

.lo-edit-qty button {
    min-height: 54px;
    color: #ffd300;
    background: rgba(255, 211, 0, 0.08);
    border: 0;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    font-size: 30px;
}

.lo-edit-qty span {
    min-height: 54px;
    display: grid;
    place-items: center;
    color: #fff;
    border-width: 0 1px;
    border-style: solid;
    border-color: #ffd300;
    font-family: 'Poppins', sans-serif;
    font-size: 22px;
}

.lo-edit-remove {
    grid-area: remove;
    width: 54px;
    height: 54px;
    color: #d8d8d8;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 8px;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    font-size: 24px;
}

.lo-edit-total {
    display: grid;
    gap: 14px;
    margin: 0;
}

.lo-edit-total-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    font-size: 24px;
}

.lo-edit-total-row strong {
    font-weight: 400;
}

.lo-edit-total-final {
    margin-top: 4px;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
    text-transform: uppercase;
}

.lo-edit-total-final span {
    font-size: 34px;
}

.lo-edit-total-final strong {
    color: #ffd300;
    font-size: 38px;
}

.lo-edit-discount-fields {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(180px, 360px);
    gap: 26px;
}

.lo-edit-add input,
.lo-edit-discount input,
.lo-edit-discount select {
    width: 100%;
    min-height: 64px;
    padding: 0 18px;
    color: #fff;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 8px;
    font: inherit;
    font-size: 22px;
}

.lo-edit-discount select option {
    color: #f7f0df;
    background: #181818;
}

.lo-edit-discount label {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 52px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 8px;
}

.lo-edit-discount label input {
    border: 0;
    background: transparent;
}

.lo-edit-discount label span {
    display: grid;
    place-items: center;
    color: #fff;
    border-left: 1px solid rgba(255, 255, 255, 0.14);
    font-size: 22px;
}

.lo-edit-search {
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr);
    align-items: center;
    border: 1px solid #ffd300;
    border-radius: 8px;
}

.lo-edit-search span {
    color: #b8b8b8;
    font-size: 30px;
    text-align: center;
}

.lo-edit-search input {
    border: 0;
    background: transparent;
}

#sellerEditProducts {
    display: grid;
    gap: 0;
    max-height: 260px;
    overflow-y: auto;
    margin-top: 14px;
    background: rgba(8, 8, 8, 0.72);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
}

.lo-edit-product {
    grid-template-columns: minmax(0, 1fr) auto 68px;
    min-height: 66px;
    padding: 0 14px 0 20px;
    color: #fff;
    background: transparent;
    border: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.13);
    cursor: pointer;
    font-size: 22px;
    text-align: left;
}

.lo-edit-product:last-child {
    border-bottom: 0;
}

.lo-edit-product strong {
    font-weight: 400;
}

.lo-edit-product em {
    width: 54px;
    height: 48px;
    display: grid;
    place-items: center;
    color: #111;
    background: #ffd300;
    border-radius: 8px;
    font-style: normal;
    font-size: 34px;
}

.lo-edit-footer {
    display: grid;
    grid-template-columns: minmax(180px, 270px) minmax(0, 1fr);
    gap: 26px;
    padding: 22px 30px 24px;
    background: rgba(255, 255, 255, 0.05);
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.lo-edit-footer .lo-button {
    min-height: 68px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    font-size: 22px;
}

.lo-edit-footer .lo-button span,
.lo-edit-footer .lo-button i {
    font-size: 32px;
}

.lo-edit-dialog {
    width: min(720px, calc(100% - 28px));
    max-height: 88vh;
}

.lo-edit-modal {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: max(8px, env(safe-area-inset-top)) 8px max(8px, env(safe-area-inset-bottom));
    overflow: hidden;
}

.lo-edit-modal .lo-edit-dialog {
    display: flex;
    flex-direction: column;
    width: min(720px, 100%);
    max-height: calc(100vh - 96px);
    max-height: calc(100svh - 40px);
    margin: 0;
    overflow: hidden;
}

.lo-edit-modal .lo-edit-body {
    min-height: 0;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.lo-edit-modal .lo-edit-header,
.lo-edit-modal .lo-edit-footer {
    flex: 0 0 auto;
}

@media (max-height: 760px) {
    .lo-edit-modal .lo-edit-header {
        min-height: 48px;
        padding-top: 10px;
        padding-bottom: 10px;
    }

    .lo-edit-modal .lo-edit-body {
        gap: 10px;
        padding-top: 10px;
        padding-bottom: 8px;
    }

    .lo-edit-modal .lo-edit-footer {
        gap: 8px;
        padding-top: 8px;
        padding-bottom: 8px;
    }

    .lo-edit-modal .lo-edit-footer .lo-button {
        min-height: 38px;
    }
}

.lo-edit-header {
    min-height: 64px;
    padding: 18px 66px 16px 22px;
}

.lo-edit-header h2 {
    font-size: 24px;
    line-height: 1.1;
}

.lo-edit-dialog .lo-cart-close {
    top: 12px;
    right: 16px;
    width: 42px;
    height: 42px;
    font-size: 30px;
}

.lo-edit-body {
    gap: 12px;
    padding: 16px 22px 14px;
}

.lo-edit-section,
.lo-edit-total {
    padding: 14px 16px;
}

.lo-edit-dialog h3 {
    gap: 8px;
    margin-bottom: 12px;
    font-size: 16px;
}

.lo-edit-title-icon {
    width: 24px;
    height: 24px;
    font-size: 15px;
}

.lo-edit-current {
    padding: 0;
    background: transparent;
    border: 0;
}

.lo-edit-current h3 {
    margin-left: 2px;
}

.lo-edit-current .lo-edit-title-icon {
    width: auto;
    height: auto;
    color: #ffd300;
    background: transparent;
    border-radius: 0;
    font-size: 18px;
}

.lo-edit-remove i {
    pointer-events: none;
}

.lo-edit-line {
    min-height: 96px;
    padding: 14px 16px;
}

.lo-edit-line + .lo-edit-line {
    margin-top: 10px;
}

.lo-edit-line-info strong,
.lo-edit-line-price {
    font-size: 16px;
}

.lo-edit-line-price {
    min-width: 78px;
}

.lo-edit-qty {
    grid-template-columns: 48px 60px 48px;
}

.lo-edit-qty button,
.lo-edit-qty span {
    min-height: 40px;
}

.lo-edit-qty button {
    font-size: 22px;
}

.lo-edit-qty span {
    font-size: 15px;
}

.lo-edit-remove {
    width: 40px;
    height: 40px;
    font-size: 18px;
}

.lo-edit-total {
    gap: 8px;
}

.lo-edit-total-row {
    gap: 14px;
    font-size: 16px;
}

.lo-edit-total-final {
    padding-top: 12px;
}

.lo-edit-total-final span {
    font-size: 22px;
}

.lo-edit-total-final strong {
    font-size: 24px;
}

.lo-edit-discount-fields {
    grid-template-columns: minmax(0, 1fr) minmax(140px, 240px);
    gap: 14px;
}

.lo-edit-add input,
.lo-edit-discount input,
.lo-edit-discount select {
    min-height: 42px;
    padding: 0 12px;
    font-size: 15px;
}

.lo-edit-discount label {
    grid-template-columns: minmax(0, 1fr) 42px;
}

.lo-edit-discount label span {
    font-size: 15px;
}

.lo-edit-search {
    grid-template-columns: 38px minmax(0, 1fr);
}

.lo-edit-search span {
    font-size: 20px;
}

#sellerEditProducts {
    max-height: 220px;
    margin-top: 10px;
}

.lo-edit-product {
    grid-template-columns: minmax(0, 1fr) auto 52px;
    min-height: 48px;
    padding: 0 10px 0 14px;
    font-size: 15px;
}

.lo-edit-product em {
    width: 38px;
    height: 34px;
    font-size: 24px;
}

.lo-edit-footer {
    grid-template-columns: minmax(140px, 230px) minmax(0, 1fr);
    gap: 14px;
    padding: 16px 22px 18px;
}

.lo-edit-footer .lo-button {
    min-height: 48px;
    gap: 10px;
    font-size: 14px;
}

.lo-edit-footer .lo-button span,
.lo-edit-footer .lo-button i {
    font-size: 22px;
}

.lo-seller-toolbar {
    display: none;
}

.lo-console-tabs {
    display: none;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 24px;
}

.lo-tab-button {
    min-height: 42px;
    padding: 9px 14px;
    color: #111;
    background: #ffd300;
    border: 0;
    border-radius: 4px;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    text-transform: uppercase;
}

.lo-tab-button.is-active {
    background: #b8b8b8;
}

.lo-tab-logout {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-left: auto;
    color: #fff;
    background: #671515;
}

.lo-tab-logout:hover,
.lo-tab-logout:focus {
    background: #821d1d;
}

.lo-hidden {
    display: none !important;
}

.lo-console {
    margin-top: 24px;
    padding: 24px;
}

.lo-console-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 18px;
}

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

.lo-order-card {
    position: relative;
    padding: 18px;
    background: #111;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.lo-order-card.is-new {
    border-color: #ffd300;
}

.lo-order-card.is-unread {
    box-shadow: 0 0 0 1px rgba(255, 211, 0, 0.42), 0 0 28px rgba(255, 211, 0, 0.12);
}

.lo-order-read-overlay {
    position: absolute;
    inset: 0;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 18px;
    background: rgba(0, 0, 0, 0.62);
    backdrop-filter: blur(2px);
}

.lo-read-button {
    min-width: 180px;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.34);
}

.lo-order-top,
.lo-order-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.lo-action-group {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
}

.lo-action-accept {
    flex: 1 1 420px;
}

.lo-action-payment {
    flex: 0 0 auto;
    justify-content: center;
}

.lo-action-final {
    flex: 0 0 auto;
    justify-content: flex-end;
}

.lo-order-meta {
    color: #b8b8b8;
    font-size: 13px;
    text-transform: uppercase;
}

.lo-order-items {
    margin: 14px 0;
    padding-left: 20px;
}

.lo-pill {
    display: inline-flex;
    padding: 5px 8px;
    color: #111;
    background: #ffd300;
    border-radius: 4px;
    font-size: 12px;
    text-transform: uppercase;
}

.lo-pill.lo-status-sent {
    color: #111;
    background: #fff;
}

.lo-pill.lo-status-accepted {
    color: #111;
    background: #ffd300;
}

.lo-pill.lo-status-ready {
    color: #fff;
    background: #139e68;
}

.lo-pill.lo-status-cancelled {
    color: #fff;
    background: #b92727;
}

.lo-pill.lo-status-updated {
    color: #111;
    background: #e67e22;
}

.lo-prep {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.lo-products-admin {
    display: grid;
    gap: 16px;
}

.lo-product-group {
    display: grid;
    gap: 10px;
}

.lo-product-group-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 12px 14px;
    background: rgba(255, 211, 0, 0.12);
    border: 1px solid rgba(255, 211, 0, 0.22);
}

.lo-product-group-head h3 {
    margin: 0;
    color: #ffd300;
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    text-transform: uppercase;
}

.lo-category-switch {
    margin-left: auto;
}

.lo-product-group-head span {
    color: #b8b8b8;
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    text-transform: uppercase;
}

.lo-product-group-list {
    display: grid;
    gap: 10px;
}

.lo-product-admin {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 14px 16px;
    background: #111;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.lo-product-admin.is-disabled {
    opacity: 0.55;
}

.lo-product-admin h3 {
    margin: 0 0 4px;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    text-transform: uppercase;
}

.lo-product-admin p {
    margin: 0;
    color: #b8b8b8;
}

.lo-switch {
    position: relative;
    display: inline-flex;
    width: 56px;
    height: 32px;
    flex: 0 0 auto;
}

.lo-switch input {
    position: absolute;
    opacity: 0;
}

.lo-switch span {
    position: absolute;
    inset: 0;
    cursor: pointer;
    background: #555;
    border-radius: 999px;
}

.lo-switch span:before {
    content: '';
    position: absolute;
    top: 4px;
    left: 4px;
    width: 24px;
    height: 24px;
    background: #fff;
    border-radius: 50%;
    transition: transform 0.2s ease;
}

.lo-switch input:checked + span {
    background: #ffd300;
}

.lo-switch input:checked + span:before {
    transform: translateX(24px);
}

@media (min-width: 1280px) {
    .lo-shell {
        width: min(1320px, calc(100% - 56px));
    }

}

@media (max-width: 1100px) {
    .lo-products {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 980px) {
    .lo-shell {
        width: min(820px, calc(100% - 28px));
        padding-top: 28px;
    }

    .lo-seller-page {
        --lo-seller-header-height: 99px;
        --lo-seller-strip-height: 20px;
    }

    .lo-layout {
        grid-template-columns: 1fr;
    }

    .lo-products {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 720px) {
    body.lo-page {
        font-size: 17px;
    }

    .lo-header {
        gap: 10px;
        padding: 10px 14px;
    }

    .lo-seller-page {
        --lo-seller-header-height: 72px;
        --lo-seller-strip-height: 14px;
    }

    .lo-seller-page .lo-header {
        padding: 5px 10px var(--lo-seller-strip-height);
    }

    .lo-seller-page .lo-status-toggle {
        right: 10px;
    }

    .lo-seller-page .lo-logo img {
        height: 52px;
    }

    .lo-seller-brand {
        gap: 10px;
    }

    .lo-logo img {
        height: 52px;
    }

    .lo-header-link,
    .lo-header-link:visited {
        font-size: 12px;
        line-height: 1.25;
    }

    .lo-shell {
        width: calc(100% - 20px);
        padding: 18px 0 112px;
    }

    .lo-hero {
        min-height: 0;
        padding: 24px 18px;
        background-position: center;
    }

    .lo-hero h1 {
        font-size: 38px;
    }

    .lo-hero p {
        margin-top: 12px;
    }

    .lo-status {
        width: 100%;
        justify-content: center;
        margin-top: 18px;
        text-align: center;
    }

    .lo-layout {
        gap: 14px;
        margin-top: 14px;
    }

    .lo-menu-panel,
    .lo-console {
        padding: 16px;
    }

    .lo-cart {
        inset: 0;
        width: auto;
        height: auto;
        max-height: none;
        background: #070707 url('/images/bg-pattern.jpg') center top repeat;
        padding: 18px 16px calc(18px + env(safe-area-inset-bottom));
        transform: none;
        border-radius: 0;
    }

    .lo-customer-page #cartModal {
        inset: auto;
        top: 50%;
        left: 50%;
        width: min(430px, calc(100% - 16px));
        height: auto;
        max-height: calc(100vh - 16px);
        padding: 12px;
        transform: translate(-50%, -50%);
        border-radius: 6px;
    }

    .lo-customer-page #cartModal .lo-cart-line {
        grid-template-columns: 68px minmax(0, 1fr) auto;
        gap: 10px;
    }

    .lo-customer-page #cartModal .lo-cart-product-media {
        width: 68px;
        height: 54px;
    }

    .lo-customer-page #cartModal .lo-cart-product-info strong {
        display: -webkit-box;
        overflow: hidden;
        font-size: 14px;
        line-height: 1.25;
        text-overflow: clip;
        white-space: normal;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
    }

    .lo-customer-page #cartModal .lo-cart-product-desc {
        font-size: 11px;
    }

    .lo-customer-page #cartModal .lo-cart-product-price {
        font-size: 18px;
    }

    .lo-cart-open .lo-cart-bar,
    .lo-orders-open .lo-cart-bar,
    .lo-waiting-open .lo-cart-bar {
        display: none;
    }

    .lo-tabs {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        width: 100%;
        min-width: 0;
        margin: -2px 0 18px;
        padding: 2px 0 8px;
        overflow-x: hidden;
    }

    .lo-tabs button {
        width: 100%;
        min-width: 0;
        min-height: 42px;
        white-space: normal;
    }

    .lo-category h2,
    .lo-cart h2,
    .lo-console h2 {
        font-size: 22px;
        line-height: 1.2;
    }

    .lo-orders-head-actions {
        flex: 0 0 auto;
    }

    .lo-clear-orders {
        max-width: 150px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .lo-products,
    .lo-segment {
        grid-template-columns: 1fr;
    }

    .lo-product {
        grid-template-columns: 92px minmax(0, 1fr);
        min-height: 116px;
        gap: 12px;
    }

    .lo-product img,
    .lo-product-placeholder {
        width: 92px;
        height: 92px;
    }

    .lo-product h3 {
        font-size: 15px;
    }

    .lo-product p {
        font-size: 15px;
    }

    .lo-product-bottom {
        align-items: flex-end;
    }

    .lo-icon-button {
        min-width: 42px;
        min-height: 42px;
    }

    .lo-cart-line {
        grid-template-columns: 1fr;
    }

    .lo-qty {
        justify-content: flex-start;
    }

    .lo-qty button {
        width: 38px;
        height: 38px;
    }

    .lo-form input,
    .lo-form textarea,
    .lo-seller-login input {
        min-height: 46px;
        font-size: 16px;
    }

    .lo-button {
        width: 100%;
    }

    .lo-cart-bar {
        bottom: max(10px, env(safe-area-inset-bottom));
        width: calc(100% - 20px);
    }

    .lo-cart-summary {
        min-height: 58px;
        gap: 10px;
        padding: 9px 12px;
    }

    .lo-cart-bar.has-two .lo-cart-summary {
        gap: 8px;
        padding: 9px 10px;
    }

    .lo-cart-bar.has-two .lo-cart-mark {
        width: 24px;
        font-size: 22px;
    }

    .lo-cart-summary-action {
        display: none;
    }

    .lo-seller-login,
    .lo-seller-toolbar,
    .lo-console-head,
    .lo-order-top,
    .lo-order-actions,
    .lo-product-admin,
    .lo-product-group-head {
        align-items: stretch;
        flex-direction: column;
    }

    .lo-seller-page .lo-seller-login,
    .lo-seller-page .lo-seller-toolbar {
        align-items: center;
        flex-direction: row;
    }

    .lo-seller-page .lo-seller-login input {
        flex: 1 1 180px;
    }

    .lo-seller-page .lo-seller-toolbar {
        justify-content: flex-end;
        margin-right: 0;
    }

    .lo-seller-page .lo-seller-toolbar .lo-button {
        width: auto;
    }

    .lo-seller-page .lo-status {
        width: 100%;
        justify-content: center;
        margin-top: 0;
        text-align: center;
    }

    .lo-seller-page .lo-status-toggle {
        flex: 0 0 auto;
        min-height: 40px;
        white-space: nowrap;
    }

    .lo-seller-login input {
        max-width: none;
    }

    .lo-console-tabs {
        flex-wrap: nowrap;
        margin-top: 14px;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .lo-tab-button {
        flex: 0 0 auto;
        white-space: nowrap;
    }

    .lo-order-meta-grid {
        grid-template-columns: 1fr;
    }

    .lo-my-order-top {
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
        gap: 10px;
    }

    .lo-my-order-top .lo-pill {
        flex: 0 0 auto;
    }

    .lo-prep {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .lo-action-group {
        width: 100%;
    }

    .lo-action-final {
        justify-content: stretch;
    }

    .lo-action-final .lo-button,
    .lo-action-payment .lo-button {
        flex: 1 1 0;
    }

    .lo-product-admin {
        gap: 12px;
    }

    .lo-product-admin .lo-switch,
    .lo-product-group-head .lo-switch {
        align-self: flex-start;
    }
}

@media (max-width: 600px) {
    .lo-seller-page .lo-header-link {
        display: none;
    }
}

@media (max-width: 420px) {
    .lo-header {
        align-items: flex-start;
    }

    .lo-seller-page {
        --lo-seller-header-height: 66px;
        --lo-seller-strip-height: 13px;
    }

    .lo-seller-page .lo-header {
        padding-top: 6px;
    }

    .lo-seller-page .lo-status-toggle {
        right: 10px;
    }

    .lo-seller-page .lo-logo img {
        height: 46px;
    }

    .lo-seller-brand {
        align-items: center;
        gap: 8px;
    }

    .lo-logo img {
        height: 46px;
    }

    .lo-hero h1 {
        font-size: 32px;
    }

    .lo-product {
        grid-template-columns: 76px minmax(0, 1fr);
        padding: 10px;
    }

    .lo-product img,
    .lo-product-placeholder {
        width: 76px;
        height: 76px;
    }

    .lo-product-bottom {
        flex-direction: column;
        align-items: flex-start;
    }

    .lo-prep {
        grid-template-columns: 1fr;
    }

    .lo-cart-summary-text strong,
    .lo-cart-summary-text span {
        font-size: 13px;
    }
}
