/* WIZZ_ORDER_SHEET_NO_SHIPPING_V15U */
.wiz-order-sheet,
.wiz-location-sheet {
    position: fixed;
    z-index: 350;
    inset: 0;
    width: 100%;
    pointer-events: none;
    visibility: hidden;
}

.wiz-order-sheet.is-open,
.wiz-location-sheet.is-open {
    pointer-events: auto;
    visibility: visible;
}

.wiz-order-backdrop,
.wiz-sheet-backdrop {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    padding: 0;
    border: 0;
    background: rgba(18, 18, 22, .48);
    opacity: 0;
    transition: opacity .18s ease;
}

.wiz-order-sheet.is-open .wiz-order-backdrop,
.wiz-location-sheet.is-open .wiz-sheet-backdrop {
    opacity: 1;
}

.wiz-order-panel,
.wiz-location-sheet > section {
    position: absolute;
    z-index: 2;
    right: 50%;
    bottom: 0;
    width: 100%;
    max-width: 520px;
    max-height: min(92dvh, 780px);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transform: translate(50%, 105%);
    border-radius: 25px 25px 0 0;
    background: #f7f7f9;
    color: #17171a;
    box-shadow: 0 -18px 50px rgba(15, 15, 20, .2);
    transition: transform .22s cubic-bezier(.22, .78, .28, 1);
    will-change: transform;
}

.wiz-order-sheet.is-open .wiz-order-panel,
.wiz-location-sheet.is-open > section {
    transform: translate(50%, 0);
}

.wiz-sheet-handle {
    width: 44px;
    height: 5px;
    flex: 0 0 auto;
    margin: 8px auto 2px;
    border-radius: 999px;
    background: #d1d1d6;
}

.wiz-order-header {
    min-height: 66px;
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 8px 16px 11px;
    border-bottom: 1px solid #e9e9ed;
    background: #fff;
}

.wiz-order-header small {
    display: block;
    color: #85858a;
    font-size: 9px;
}

.wiz-order-header h2 {
    margin: 1px 0 0;
    color: #17171a;
    font-size: 19px;
    font-weight: 900;
}

.wiz-order-close,
.wiz-sheet-close {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    padding: 0;
    border: 1px solid #e7e7eb;
    border-radius: 50%;
    background: #fff;
    color: #3c3c40;
    font-size: 24px;
    line-height: 1;
}

.wiz-order-scroll {
    min-height: 0;
    flex: 1 1 auto;
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
    padding: 12px 13px calc(18px + env(safe-area-inset-bottom));
}

.wiz-order-loading {
    min-height: 210px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
}

.wiz-order-loading[hidden],
.wiz-order-empty[hidden],
#wizOrderContent[hidden] {
    display: none !important;
}

.wiz-order-loading span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ff5a00;
    animation: wizOrderPulse .9s infinite ease-in-out;
}
.wiz-order-loading span:nth-child(2) { animation-delay: .12s; }
.wiz-order-loading span:nth-child(3) { animation-delay: .24s; }

@keyframes wizOrderPulse {
    0%, 70%, 100% { transform: scale(.65); opacity: .45; }
    35% { transform: scale(1); opacity: 1; }
}

.wiz-order-empty {
    min-height: 310px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 24px;
    border: 1px solid #ececef;
    border-radius: 21px;
    background: #fff;
    text-align: center;
}

.wiz-order-empty-icon {
    width: 70px;
    height: 70px;
    display: grid;
    place-items: center;
    border-radius: 23px;
    background: #fff0e7;
    color: #ff5a00;
}

.wiz-order-empty-icon svg {
    width: 34px;
    height: 34px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.6;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.wiz-order-empty h3 { margin: 14px 0 5px; font-size: 18px; font-weight: 900; }
.wiz-order-empty p { max-width: 290px; margin: 0; color: #77777c; font-size: 11px; line-height: 1.8; }
.wiz-order-empty > button { min-height: 42px; margin-top: 16px; padding: 8px 18px; border: 0; border-radius: 13px; background: #ff5a00; color: #fff; font-size: 11px; font-weight: 900; }

.wiz-order-groups,
.wiz-order-actions {
    display: grid;
    gap: 10px;
}

.wiz-order-store,
.wiz-order-send-card,
.wiz-order-customer {
    overflow: hidden;
    border: 1px solid #e8e8ec;
    border-radius: 18px;
    background: #fff;
}

.wiz-order-store-header {
    min-height: 58px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 9px 11px;
    border-bottom: 1px solid #eeeeF1;
}

.wiz-order-store-header > div {
    display: flex;
    align-items: center;
    gap: 9px;
}

.wiz-order-store-avatar {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border-radius: 13px;
    background: #fff0e7;
    color: #ff5a00;
    font-size: 15px;
    font-weight: 900;
}

.wiz-order-store-header small,
.wiz-order-store-header strong {
    display: block;
}
.wiz-order-store-header small { color: #8a8a90; font-size: 9px; }
.wiz-order-store-header strong { margin-top: 1px; font-size: 12px; font-weight: 900; }
.wiz-order-store-header a { color: #ff5a00; text-decoration: none; font-size: 9px; font-weight: 800; }

.wiz-order-items { padding: 2px 10px; }
.wiz-order-item {
    min-height: 86px;
    display: grid;
    grid-template-columns: 66px minmax(0, 1fr);
    gap: 10px;
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f2;
}
.wiz-order-item:last-child { border-bottom: 0; }
.wiz-order-item-image { width: 66px; height: 66px; overflow: hidden; border-radius: 13px; background: #f0f0f2; }
.wiz-order-item-image img { width: 100%; height: 100%; object-fit: cover; }
.wiz-order-item-body { min-width: 0; }
.wiz-order-item-title { display: -webkit-box; overflow: hidden; -webkit-box-orient: vertical; -webkit-line-clamp: 2; color: #222226; text-decoration: none; font-size: 11px; font-weight: 800; line-height: 1.55; }
.wiz-order-item-options { display: block; margin-top: 2px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; color: #86868b; font-size: 9px; }
.wiz-order-item-price { display: block; margin-top: 4px; color: #17171a; font-size: 11px; font-weight: 900; }
.wiz-order-item-actions { display: flex; align-items: center; justify-content: space-between; gap: 8px; margin-top: 7px; }
.wiz-order-remove { padding: 3px 0; border: 0; background: transparent; color: #b43232; font-size: 9px; font-weight: 700; }
.wiz-order-quantity { height: 33px; display: grid; grid-template-columns: 31px 34px 31px; align-items: center; overflow: hidden; border: 1px solid #e2e2e6; border-radius: 11px; background: #fff; }
.wiz-order-quantity button { width: 31px; height: 31px; padding: 0; border: 0; background: transparent; color: #ff5a00; font-size: 18px; font-weight: 900; }
.wiz-order-quantity strong { text-align: center; font-size: 11px; }
.wiz-order-store-total { min-height: 46px; display: flex; align-items: center; justify-content: space-between; padding: 9px 11px; border-top: 1px solid #eeeeF1; background: #fbfbfc; }
.wiz-order-store-total span { color: #737378; font-size: 10px; }
.wiz-order-store-total strong { font-size: 13px; font-weight: 900; }

.wiz-order-customer {
    margin: 11px 0;
    padding: 13px;
}

.wiz-order-section-title {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 8px;
    margin-bottom: 12px;
}
.wiz-order-section-title small { display: block; color: #848489; font-size: 8.5px; }
.wiz-order-section-title h3 { margin: 2px 0 0; font-size: 16px; font-weight: 900; }
.wiz-order-section-title > span { flex: 0 0 auto; padding: 5px 8px; border-radius: 999px; background: #eaf9ef; color: #168143; font-size: 8.5px; font-weight: 900; }

.wiz-order-customer label {
    display: block;
    margin: 9px 2px 5px;
    color: #4f4f54;
    font-size: 10px;
    font-weight: 800;
}

.wiz-order-customer input,
.wiz-order-customer textarea,
.wiz-order-choice select {
    width: 100%;
    min-height: 45px;
    padding: 10px 12px;
    border: 1px solid #e3e3e7;
    border-radius: 13px;
    outline: 0;
    background: #fafafd;
    color: #202024;
    font-size: 11px;
    box-shadow: none;
}
.wiz-order-customer textarea { min-height: 68px; resize: vertical; }
.wiz-order-customer input:focus,
.wiz-order-customer textarea:focus,
.wiz-order-choice select:focus { border-color: #ffb58e; background: #fff; box-shadow: 0 0 0 3px #fff0e8; }

.wiz-order-send-card { padding: 12px; }
.wiz-order-send-card.is-disabled { opacity: .72; }
.wiz-order-send-heading { display: flex; align-items: center; justify-content: space-between; gap: 8px; margin-bottom: 10px; }
.wiz-order-send-heading strong { font-size: 12px; font-weight: 900; }
.wiz-order-send-heading span { color: #737378; font-size: 9px; }
.wiz-order-choice { display: block; margin-top: 8px; }
.wiz-order-choice > span { display: block; margin: 0 2px 5px; color: #55555a; font-size: 9px; font-weight: 800; }
.wiz-order-send-button {
    width: 100%;
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 11px;
    padding: 10px 13px;
    border: 0;
    border-radius: 14px;
    background: #20b95a;
    color: #fff;
    font-size: 11px;
    font-weight: 900;
}
.wiz-order-send-button:disabled { opacity: .55; }
.wiz-order-send-button svg { width: 19px; height: 19px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.wiz-order-unavailable { margin: 8px 0 0; padding: 10px; border-radius: 12px; background: #fff0f0; color: #a42828; font-size: 9px; line-height: 1.7; }
.wiz-order-status { min-height: 20px; margin: 10px 2px 0; color: #188443; text-align: center; font-size: 10px; font-weight: 800; }
.wiz-order-status.is-error { color: #b62e2e; }

/* Delivery location bottom sheet */
.wiz-location-sheet > section {
    max-height: min(78dvh, 590px);
    padding: 8px 16px calc(18px + env(safe-area-inset-bottom));
    background: #fff;
}
.wiz-location-sheet h2 { margin: 5px 0 4px; font-size: 19px; font-weight: 900; }
.wiz-location-sheet p { margin: 0 0 13px; color: #77777c; font-size: 10px; line-height: 1.75; }
.wiz-location-sheet label { display: block; margin: 11px 2px 5px; color: #4e4e53; font-size: 10px; font-weight: 800; }
.wiz-location-sheet input { width: 100%; min-height: 47px; padding: 10px 12px; border: 1px solid #e3e3e7; border-radius: 14px; outline: 0; background: #fafafd; font-size: 11px; }
.wiz-current-location,
.wiz-save-location { width: 100%; min-height: 47px; display: flex; align-items: center; justify-content: center; gap: 8px; border: 0; border-radius: 14px; font-size: 11px; font-weight: 900; }
.wiz-current-location { background: #fff0e8; color: #e84f00; }
.wiz-current-location svg { width: 19px; height: 19px; fill: none; stroke: currentColor; stroke-width: 1.8; }
.wiz-save-location { margin-top: 12px; background: #ff5a00; color: #fff; }
.wiz-location-status { min-height: 20px; margin: 9px 0 0 !important; color: #188443 !important; text-align: center; font-weight: 800; }

@media (min-width: 600px) {
    .wiz-order-panel,
    .wiz-location-sheet > section {
        bottom: 16px;
        border-radius: 25px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .wiz-order-backdrop,
    .wiz-sheet-backdrop,
    .wiz-order-panel,
    .wiz-location-sheet > section { transition: none !important; }
    .wiz-order-loading span { animation: none !important; }
}

/* WIZZ_SINGLE_VENDOR_CART_V21 */
.wiz-vendor-switch-dialog[hidden]{display:none!important}
.wiz-vendor-switch-dialog{
    position:fixed;inset:0;z-index:10050;
    display:flex;align-items:flex-end;justify-content:center;
    padding:16px;background:rgba(20,16,12,.48);
    backdrop-filter:blur(2px)
}
.wiz-vendor-switch-panel{
    width:min(100%,440px);direction:rtl;text-align:right;
    background:#fff;color:#2f2418;border:1px solid #eadfd2;
    border-radius:22px;padding:20px;
    box-shadow:0 22px 60px rgba(0,0,0,.20)
}
.wiz-vendor-switch-icon{
    width:48px;height:48px;display:flex;align-items:center;
    justify-content:center;margin:0 0 10px auto;
    border-radius:15px;background:#fff2e8;font-size:24px
}
.wiz-vendor-switch-panel h3{
    margin:0;color:#2f2418;font-size:21px;
    line-height:1.4;font-weight:900
}
.wiz-vendor-switch-message{
    margin:8px 0 14px;color:#665747;
    font-size:15px;line-height:1.75
}
.wiz-vendor-switch-store{
    display:flex;align-items:center;min-height:45px;
    padding:10px 12px;border:1px solid #eadfd2;
    border-radius:13px;background:#faf8f4;
    color:#574838;font-weight:800
}
.wiz-vendor-switch-store.is-new{
    border-color:#f7ba8d;background:#fff3e9;color:#c64d08
}
.wiz-vendor-switch-arrow{
    text-align:center;color:#a38e78;
    font-size:19px;line-height:1;padding:5px 0
}
.wiz-vendor-switch-note{
    display:block;margin-top:10px;color:#7c6c5a;
    font-size:12px;line-height:1.5
}
.wiz-vendor-switch-actions{
    display:grid;grid-template-columns:1fr;
    gap:9px;margin-top:16px
}
.wiz-vendor-switch-actions button{
    width:100%;min-height:48px;border-radius:13px;
    font-size:15px;font-weight:900;cursor:pointer
}
.wiz-vendor-switch-confirm{
    order:1;border:1px solid #f97316;
    background:#f97316;color:#fff
}
.wiz-vendor-switch-cancel{
    order:2;border:1px solid #e5dacd;
    background:#fff;color:#514335
}
body.is-vendor-switch-open{overflow:hidden!important}
@media(min-width:700px){
    .wiz-vendor-switch-dialog{align-items:center}
    .wiz-vendor-switch-actions{grid-template-columns:1fr 1fr}
    .wiz-vendor-switch-confirm{order:2}
    .wiz-vendor-switch-cancel{order:1}
}


/* WIZZ_CART_SYNC_AND_FEEDBACK_V23 */
.wiz-cart-feedback-v23 {
    position: fixed;
    z-index: 10080;
    left: 50%;
    bottom: calc(88px + env(safe-area-inset-bottom, 0px));
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 230px;
    max-width: calc(100vw - 28px);
    padding: 11px 15px;
    transform: translate(-50%, 18px) scale(.96);
    opacity: 0;
    pointer-events: none;
    background: #20261f;
    color: #fff;
    border: 1px solid rgba(255,255,255,.10);
    border-radius: 16px;
    box-shadow: 0 12px 30px rgba(0,0,0,.18);
    transition: opacity .18s ease, transform .18s ease;
}
.wiz-cart-feedback-v23.is-visible {
    opacity: 1;
    transform: translate(-50%, 0) scale(1);
}
.wiz-cart-feedback-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 34px;
    width: 34px;
    height: 34px;
    border-radius: 999px;
    background: #2f9e44;
    color: #fff;
    font-size: 20px;
    font-weight: 900;
}
.wiz-cart-feedback-v23 strong,
.wiz-cart-feedback-v23 small {
    display: block;
    line-height: 1.35;
}
.wiz-cart-feedback-v23 strong {
    font-size: 14px;
    font-weight: 900;
}
.wiz-cart-feedback-v23 small {
    margin-top: 2px;
    color: rgba(255,255,255,.72);
    font-size: 12px;
}
.wiz-cart-count-pop-v23 {
    animation: wizCartCountPopV23 .42s ease;
}
@keyframes wizCartCountPopV23 {
    0% { transform: scale(1); }
    45% { transform: scale(1.45); }
    100% { transform: scale(1); }
}
.is-added-v23 {
    animation: wizAddedV23 .55s ease !important;
}
@keyframes wizAddedV23 {
    0% { transform: scale(1); }
    40% { transform: scale(.88); background:#2f9e44 !important; color:#fff !important; }
    100% { transform: scale(1); }
}
