body.restaurant-v7-cart-lock {
    overflow: hidden !important;
}

.restaurant-v7-fab,
.restaurant-v7-cart,
.restaurant-v7-cart * {
    box-sizing: border-box;
    font-family: var(--restaurant-v8-font-family, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif);
}

	.restaurant-v7-fab {
	    position: fixed;
	    right: 22px;
    bottom: calc(22px + env(safe-area-inset-bottom));
    z-index: var(--restaurant-z-toast, 9400);
    min-height: 64px;
    display: inline-flex;
    align-items: center;
    gap: var(--restaurant-v8-cart-item-gap, 12px);
    max-width: min(420px, calc(100vw - 28px));
    border: 1px solid rgba(255, 255, 255, .62);
    border-radius: var(--restaurant-v8-radius-button, 999px);
    padding: 8px 10px 8px 8px;
    background: rgba(23, 20, 18, .96);
    color: #fff;
    cursor: pointer;
    box-shadow: var(--restaurant-v8-shadow-elevation, 0 24px 70px rgba(0, 0, 0, .22));
    backdrop-filter: blur(14px);
	    touch-action: manipulation;
	}

.restaurant-v7-fab.is-toolbar-mounted {
    position: static;
    inset: auto;
    z-index: auto;
    width: auto;
    min-width: 0;
    min-height: 36px;
    max-width: 100%;
    gap: 6px;
    padding: 0 10px;
    border: 0;
    border-radius: var(--restaurant-v8-radius-pill, 999px);
    box-shadow: none;
    backdrop-filter: none;
    transform: none;
    will-change: auto;
}

.restaurant-v7-fab.is-toolbar-mounted .restaurant-v7-fab__icon {
    width: 18px;
    height: 18px;
    background: transparent;
}

.restaurant-v7-fab.is-toolbar-mounted .restaurant-v7-fab__icon svg {
    width: 18px;
    height: 18px;
}

.restaurant-v7-fab.is-toolbar-mounted .restaurant-v7-fab__text {
    min-width: 0;
    display: block;
    overflow: hidden;
}

.restaurant-v7-fab.is-toolbar-mounted .restaurant-v7-fab__text strong,
.restaurant-v7-fab.is-toolbar-mounted .restaurant-v7-fab__count {
    display: none;
}

.restaurant-v7-fab.is-toolbar-mounted .restaurant-v7-fab__text small {
    display: block;
    max-width: min(140px, 32vw);
    color: #fff;
    font-size: 12px;
    line-height: 1;
    font-weight: 700;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

	.restaurant-v7-fab[hidden] {
	    display: none !important;
	}

body.restaurant-v7-cart-drawer-open .restaurant-v7-fab[data-restaurant-v7-cart-open] {
    display: none !important;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

	.restaurant-v7-fab__icon {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border-radius: var(--restaurant-v8-radius-button, 999px);
    background: rgba(255, 255, 255, .10);
}

.restaurant-v7-fab__icon svg {
    width: var(--restaurant-v8-icon-size, 24px);
    height: var(--restaurant-v8-icon-size, 24px);
}

.restaurant-v7-fab__icon path {
    fill: none;
    stroke: currentColor;
    stroke-width: 2.2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.restaurant-v7-fab__text {
    min-width: 0;
    display: grid;
    gap: 1px;
    text-align: left;
}

.restaurant-v7-fab__text strong {
    font-size: 15px;
    line-height: 1.1;
    font-weight: 700;
}

.restaurant-v7-fab__text small {
    max-width: 180px;
    color: rgba(255, 255, 255, .72);
    font-size: 12px;
    line-height: 1.2;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.restaurant-v7-fab__count {
    min-width: 32px;
    height: 32px;
    display: grid;
    place-items: center;
    border-radius: var(--restaurant-v8-radius-pill, 999px);
    background: #d92d20;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
}

.restaurant-v7-fab.is-pulsing .restaurant-v7-fab__count {
    animation: restaurantV7CountPulse .42s ease both;
}

@keyframes restaurantV7CountPulse {
    0% { transform: scale(1); }
    45% { transform: scale(1.22); }
    100% { transform: scale(1); }
}

.restaurant-v7-cart[hidden],
.restaurant-v7-cart [hidden] {
    display: none !important;
}

.restaurant-v7-cart {
    position: fixed;
    inset: 0;
    z-index: var(--restaurant-z-drawer, 9200);
    color: #171412;
}

.restaurant-v7-cart__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(14, 12, 10, .54);
    backdrop-filter: blur(10px);
    opacity: 0;
    transition: opacity .22s ease;
}

.restaurant-v7-cart.is-open .restaurant-v7-cart__backdrop {
    opacity: 1;
}

.restaurant-v7-cart__panel {
    position: absolute;
    top: 14px;
    right: 14px;
    bottom: 14px;
    width: min(var(--restaurant-v8-cart-panel-width, 600px), calc(100vw - 28px));
    max-width: var(--restaurant-v8-cart-panel-width, 600px);
    display: grid;
    grid-template-rows: auto auto minmax(0, 1fr) auto;
    overflow: hidden;
    outline: none;
    border-radius: var(--restaurant-v8-radius-drawer, 34px);
    border: 1px solid rgba(255, 255, 255, .72);
    background: #fff8ef;
    box-shadow: var(--restaurant-v8-shadow-elevation, 0 44px 150px rgba(0, 0, 0, .34));
    transform: translateX(calc(100% + 30px));
    transition: transform .28s cubic-bezier(.2, .9, .2, 1);
}

.restaurant-v7-sr-only {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

.restaurant-v7-cart.is-open .restaurant-v7-cart__panel {
    transform: translateX(0);
}

.restaurant-v7-cart__header {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--restaurant-v8-grid-gap, 14px);
    min-height: 58px;
    padding: 14px 68px 8px var(--restaurant-v8-drawer-padding, 18px);
}

.restaurant-v7-cart__header span {
    width: max-content;
    display: inline-flex;
    min-height: 28px;
    align-items: center;
    border-radius: var(--restaurant-v8-radius-pill, 999px);
    padding: 0 10px;
    background: rgba(217, 45, 32, .10);
    color: #d92d20;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.restaurant-v7-cart__header h2 {
    margin: 0;
    font-size: var(--restaurant-v8-font-size-cart-title, 34px);
    font-weight: var(--restaurant-v8-font-weight-cart-title, 700);
    line-height: .95;
    letter-spacing: -.055em;
}

.restaurant-v7-cart__close {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 5;
    width: 38px;
    height: 38px;
    min-width: 38px;
    min-height: 38px;
    padding: 0;
    border: 0;
    border-radius: var(--restaurant-v8-radius-button, 999px);
    background: #171412;
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 0;
    touch-action: manipulation;
}

.restaurant-v7-cart__close svg {
    width: 18px;
    height: 18px;
    display: block;
}

.restaurant-v7-cart__close path {
    fill: none;
    stroke: currentColor;
    stroke-width: 2.75;
    stroke-linecap: round;
}

.restaurant-v7-cart__steps {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    padding: 0 18px 10px;
}

.restaurant-v7-cart__steps button {
    min-height: 36px;
    padding: 0 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    border-radius: 999px;
    border: 1px solid rgba(23, 20, 18, .12);
    background: #fff;
    color: #171412;
    cursor: pointer;
    font-weight: 700;
    font-size: 13px;
    line-height: 1;
    touch-action: manipulation;
}

.restaurant-v7-cart__steps button span {
    width: 19px;
    height: 19px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    background: rgba(23, 20, 18, .07);
    font-size: 10px;
}

.restaurant-v7-cart__steps button.is-active {
    background: #171412;
    color: #fff;
    border-color: #171412;
}

.restaurant-v7-cart__steps button.is-active span {
    background: rgba(255, 255, 255, .16);
}

.restaurant-v7-cart__body {
    min-height: 0;
    overflow: hidden;
}

.restaurant-v7-cart__view {
    height: 100%;
    min-height: 0;
    overflow: auto;
    padding: 0 18px 18px;
    -webkit-overflow-scrolling: touch;
}

.restaurant-v7-cart__view:not(.is-active) {
    display: none;
}

.restaurant-v7-cart__items {
    display: grid;
    gap: 10px;
}

.restaurant-v7-empty {
    min-height: 270px;
    display: grid;
    place-items: center;
    align-content: center;
    text-align: center;
    gap: 10px;
    border-radius: 28px;
    background: rgba(255, 255, 255, .62);
    border: 1px dashed rgba(23, 20, 18, .16);
    padding: 28px;
}

.restaurant-v7-empty div {
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    background: rgba(217, 45, 32, .10);
    font-size: 26px;
}

.restaurant-v7-empty h3 {
    margin: 0;
    font-size: 24px;
    letter-spacing: -.04em;
}

.restaurant-v7-empty p {
    margin: 0;
    color: rgba(23, 20, 18, .58);
}

.restaurant-v7-item {
    position: relative;
    display: grid;
    grid-template-columns: 76px minmax(0, 1fr);
    gap: 10px;
    border-radius: 20px;
    background: #fff;
    border: 1px solid rgba(23, 20, 18, .10);
    padding: 10px 48px 10px 10px;
    box-shadow: var(--restaurant-v8-shadow-elevation, 0 16px 45px rgba(55, 36, 22, .06));
    transition: opacity .18s ease, transform .18s ease;
}

.restaurant-v7-item__media {
    width: 76px;
    height: 76px;
    border-radius: 16px;
    overflow: hidden;
    background: linear-gradient(135deg, #2a120d, #7a2b20);
}

.restaurant-v7-item__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.restaurant-v7-item__media.no-image {
    display: grid;
    place-items: center;
    color: #fff;
    font-size: 28px;
    font-weight: 700;
}

.restaurant-v7-item__main {
    min-width: 0;
    display: grid;
    gap: 7px;
}

.restaurant-v7-item__top {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: start;
    gap: 10px;
}

.restaurant-v7-item__top h3 {
    margin: 0;
    font-size: var(--restaurant-v8-cart-item-title-size, 15px);
    line-height: 1.18;
    letter-spacing: -.035em;
}

.restaurant-v7-item__top strong {
    display: inline-block;
    color: #d92d20;
    font-size: 13px;
    white-space: nowrap;
}

.restaurant-v7-item__meta {
    color: rgba(23, 20, 18, .58);
    font-size: 12px;
    line-height: 1.35;
}

.restaurant-v7-item__meta dl,
.restaurant-v7-item__meta dd,
.restaurant-v7-item__meta dt,
.restaurant-v7-item__meta p {
    margin: 0;
}

.restaurant-v7-item__actions {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
}

.restaurant-v7-qty {
    height: 34px;
    display: inline-grid;
    grid-template-columns: 32px 38px 32px;
    overflow: hidden;
    border-radius: 999px;
    background: #fff;
    border: 1px solid rgba(23, 20, 18, .12);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .65);
    transition: transform .18s ease, opacity .18s ease;
}

.restaurant-v7-qty button {
    width: 32px;
    height: 34px;
    border: 0;
    background: transparent;
    color: #171412;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    display: grid;
    place-items: center;
    line-height: 1;
    touch-action: manipulation;
}

.restaurant-v7-qty button:hover {
    background: rgba(217, 45, 32, .08);
    color: #d92d20;
}

.restaurant-v7-qty input {
    width: 38px !important;
    height: 34px !important;
    min-height: 34px !important;
    display: grid !important;
    place-items: center !important;
    padding: 0 !important;
    border: 0 !important;
    background: transparent !important;
    color: #171412 !important;
    text-align: center !important;
    font-size: 14px !important;
    font-weight: 700 !important;
    line-height: 34px !important;
    letter-spacing: 0 !important;
    opacity: 1 !important;
    visibility: visible !important;
    caret-color: transparent !important;
    pointer-events: none !important;
    appearance: textfield !important;
    -webkit-appearance: none !important;
    -moz-appearance: textfield;
}

.restaurant-v7-qty input::-webkit-outer-spin-button,
.restaurant-v7-qty input::-webkit-inner-spin-button {
    margin: 0;
    -webkit-appearance: none;
}

.restaurant-v7-item__buttons {
    display: inline-flex;
    align-items: center;
    justify-content: flex-end;
    gap: 6px;
}

.restaurant-v7-remove {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 31px;
    min-width: 31px;
    height: 31px;
    min-height: 31px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    padding: 0;
    font-size: 0;
    line-height: 1;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    touch-action: manipulation;
    border: 1px solid rgba(217, 45, 32, .14);
    background: rgba(217, 45, 32, .08);
    color: #d92d20;
}

.restaurant-v7-remove svg {
    width: 15px;
    height: 15px;
    display: block;
}

.restaurant-v7-remove:hover {
    background: #d92d20;
    color: #fff;
}

.restaurant-v7-item.is-qty-updating {
    opacity: .72;
}

.restaurant-v7-item.is-qty-updating .restaurant-v7-qty {
    transform: scale(.97);
}

.restaurant-v7-cart.is-price-updated .restaurant-v7-item__top strong,
.restaurant-v7-cart.is-price-updated .restaurant-v7-total-row.is-total strong,
.restaurant-v7-cart.is-price-updated .restaurant-v7-cart__footer-total strong {
    animation: restaurant-v7-price-change .34s cubic-bezier(.2, .8, .2, 1);
}

@keyframes restaurant-v7-price-change {
    0% {
        transform: translateY(3px);
        opacity: .55;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

.restaurant-v7-coupon {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 8px;
    margin-top: 14px;
    padding: 10px;
    border-radius: 22px;
    background: rgba(255, 255, 255, .62);
    border: 1px solid rgba(23, 20, 18, .10);
}

.restaurant-v7-coupon input {
    width: 100%;
    min-height: 38px;
    border-radius: 999px;
    border: 1px solid rgba(23, 20, 18, .12);
    background: #fff;
    padding: 0 14px;
    font-size: 14px;
}

.restaurant-v7-coupon button {
    min-height: 38px;
    border: 0;
    border-radius: 999px;
    padding: 0 14px;
    background: #171412;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    touch-action: manipulation;
}

.restaurant-v7-checkout-head button {
    min-height: 32px;
    border: 0;
    border-radius: 999px;
    padding: 0 12px;
    background: transparent;
    color: #776d66;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    touch-action: manipulation;
}

.restaurant-v7-cart__totals {
    display: grid;
    gap: 9px;
    margin-top: 14px;
    border-radius: 22px;
    background: #fff;
    border: 1px solid rgba(23, 20, 18, .10);
    padding: 14px;
}

.restaurant-v7-total-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    color: rgba(23, 20, 18, .68);
    font-size: 14px;
}

.restaurant-v7-total-row strong {
    display: inline-block;
    color: #171412;
}

.restaurant-v7-total-row.is-total {
    padding-top: 10px;
    border-top: 1px solid rgba(23, 20, 18, .10);
    color: #171412;
    font-size: 16px;
    font-weight: 700;
}

.restaurant-v7-total-row.is-total strong {
    color: #d92d20;
    font-size: 18px;
}

.restaurant-v7-total-row.is-coupon button {
    border: 0;
    background: transparent;
    color: #d92d20;
    font-weight: 700;
    cursor: pointer;
}

.restaurant-v7-total-note {
    color: rgba(23, 20, 18, .52);
    font-size: 12px;
    line-height: 1.35;
}

.restaurant-v7-cart__footer {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: var(--restaurant-v8-grid-gap, 12px);
    padding: 10px var(--restaurant-v8-drawer-padding, 18px) calc(10px + env(safe-area-inset-bottom));
    background: rgba(255, 255, 255, .94);
    border-top: 1px solid rgba(23, 20, 18, .10);
    box-shadow: var(--restaurant-v8-shadow-elevation, 0 -18px 60px rgba(55, 36, 22, .08));
    backdrop-filter: blur(14px);
}

.restaurant-v7-cart__footer-total {
    min-width: 0;
    display: flex;
    align-items: baseline;
    gap: 10px;
}

.restaurant-v7-cart__footer-total span {
    color: rgba(23, 20, 18, .56);
    font-size: 12px;
    font-weight: 600;
}

.restaurant-v7-cart__footer-total strong {
    display: inline-block;
    color: #d92d20;
    font-size: 18px;
    font-weight: 700;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.restaurant-v7-checkout-button {
    min-height: 46px;
    border: 0;
    border-radius: var(--restaurant-v8-radius-button, 999px);
    padding: 0 18px;
    background: #d92d20;
    color: #fff;
    font-weight: var(--restaurant-v8-button-font-weight, 700);
    cursor: pointer;
    box-shadow: var(--restaurant-v8-shadow-elevation, 0 14px 34px rgba(217, 45, 32, .18));
    touch-action: manipulation;
}

.restaurant-v7-checkout-button:disabled {
    opacity: .5;
    cursor: not-allowed;
}

.restaurant-v7-checkout-head {
    position: sticky;
    top: 0;
    z-index: 4;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding-bottom: 12px;
    background: #fff8ef;
}

.restaurant-v7-checkout-head strong {
    font-size: 16px;
    font-weight: 700;
}

.restaurant-v7-checkout-frame-wrap {
    height: calc(100dvh - 260px);
    min-height: 520px;
    overflow: hidden;
    border-radius: 26px;
    background: #fff;
    border: 1px solid rgba(23, 20, 18, .10);
    box-shadow: 0 18px 60px rgba(55, 36, 22, .07);
}

.restaurant-v7-checkout-frame-wrap iframe {
    width: 100%;
    height: 100%;
    display: block;
    border: 0;
    background: #fff8ef;
}

.restaurant-v7-checkout-qr-box {
    margin-bottom: 10px;
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(23, 20, 18, .08);
    color: #171412;
    font-size: 12px;
    font-weight: 700;
    text-align: center;
}

.restaurant-v7-toast {
    position: absolute;
    left: 50%;
    bottom: 24px;
    transform: translate(-50%, 8px);
    z-index: 20;
    max-width: min(92vw, 420px);
    border-radius: 999px;
    padding: 12px 16px;
    background: #171412;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    text-align: center;
    box-shadow: 0 18px 55px rgba(0, 0, 0, .24);
    opacity: 0;
    pointer-events: none;
    transition: opacity .16s ease, transform .16s ease;
}

.restaurant-v7-toast.is-visible {
    opacity: 1;
    transform: translate(-50%, 0);
}

.restaurant-v7-toast.is-error {
    background: #d92d20;
}

.restaurant-v7-cart.is-loading .restaurant-v7-cart__items,
.restaurant-v7-cart.is-loading .restaurant-v7-cart__totals,
.restaurant-v7-cart.is-loading .restaurant-v7-cart__footer {
    opacity: .58;
    pointer-events: none;
}

@media (max-width: 600px) {
    .restaurant-v7-fab {
        left: auto;
        right: calc(12px + env(safe-area-inset-right));
        bottom: calc(12px + env(safe-area-inset-bottom));
        width: auto;
        max-width: min(320px, calc(100vw - 24px));
        min-height: 58px;
        justify-content: flex-start;
        padding: 7px 10px 7px 7px;
        transform: translateZ(0);
        will-change: auto;
    }

    .restaurant-v7-fab__icon {
        width: 44px;
        height: 44px;
    }

    .restaurant-v7-fab__text small {
        max-width: 145px;
    }

    .restaurant-v7-cart__panel {
        top: 12px;
        left: auto;
        right: 12px;
        bottom: 12px;
        width: calc(100vw - 24px);
        max-width: 480px;
        height: auto;
        border-radius: 30px;
        transform: translateX(calc(100% + 30px));
    }

    .restaurant-v7-cart.is-open .restaurant-v7-cart__panel {
        transform: translateX(0);
    }

    .restaurant-v7-cart__header {
        min-height: 50px;
        padding: 10px 56px 6px 14px;
    }

    .restaurant-v7-cart__header h2 {
        font-size: var(--restaurant-v8-font-size-cart-title-mobile, 26px);
    }

    .restaurant-v7-cart__close {
        top: 8px;
        right: 8px;
        width: min(var(--restaurant-v8-cart-mobile-close-size, 34px), 34px);
        height: min(var(--restaurant-v8-cart-mobile-close-size, 34px), 34px);
        min-width: min(var(--restaurant-v8-cart-mobile-close-size, 34px), 34px);
        min-height: min(var(--restaurant-v8-cart-mobile-close-size, 34px), 34px);
    }

    .restaurant-v7-cart__steps {
        padding: 0 14px 8px;
    }

    .restaurant-v7-cart__steps button {
        min-height: 34px;
        font-size: 12px;
    }

    .restaurant-v7-cart__view {
        padding: 0 14px 14px;
    }

    .restaurant-v7-cart__footer {
        grid-template-columns: minmax(0, 1fr) auto;
        padding: 9px 14px calc(9px + env(safe-area-inset-bottom));
    }

    .restaurant-v7-cart__footer-total {
        gap: 7px;
    }

    .restaurant-v7-cart__footer-total strong {
        font-size: 16px;
    }

    .restaurant-v7-checkout-button {
        width: auto;
        min-height: min(var(--restaurant-v8-cart-mobile-checkout-height, 42px), 42px);
        font-size: min(var(--restaurant-v8-cart-mobile-checkout-font-size, 13px), 13px);
        padding-inline: 14px;
    }

    .restaurant-v7-checkout-frame-wrap {
        height: calc(92dvh - 172px);
        min-height: 460px;
        border-radius: 22px;
    }
}

@media (max-width: 390px) {
    .restaurant-v7-item {
        grid-template-columns: 68px minmax(0, 1fr);
        gap: 10px;
        padding-right: 44px;
    }

    .restaurant-v7-item__media {
        width: 68px;
        height: 68px;
        border-radius: 16px;
    }

    .restaurant-v7-item__top {
        grid-template-columns: 1fr;
        gap: 4px;
    }

    .restaurant-v7-item__actions {
        align-items: center;
        flex-direction: row;
    }

    .restaurant-v7-item__buttons {
        display: contents;
    }

    .restaurant-v7-remove {
        width: 30px;
        height: 30px;
        min-width: 30px;
        min-height: 30px;
    }

    .restaurant-v7-coupon {
        grid-template-columns: 1fr;
    }
}


@media (max-width: 390px) {
    .restaurant-v7-fab__text small {
        max-width: 118px;
    }
}
@media (prefers-reduced-motion: reduce) {
    .restaurant-v7-cart *,
    .restaurant-v7-fab {
        animation-duration: .01ms !important;
        transition-duration: .01ms !important;
        scroll-behavior: auto !important;
    }
}
