  
                                                                           
                                      
                                                                           
                                                
                                    
                                                                           
  

:root {
    --background: #090909;
    --surface-glass: rgba(21, 20, 18, 0.86);
    --surface-dense: rgba(28, 26, 23, 0.92);
    --surface-container: #201f1f;
    --surface-container-lowest: #0e0e0e;
    --gold-border: rgba(242, 202, 80, 0.16);
    --primary: #ffe9b0;
    --primary-container: #f2ca50;
    --secondary: #e9c349;
    --on-primary: #3d2f00;
    --on-primary-container: #6b5500;
    --cream-text: #fff6df;
    --body-text: #f7f1e6;
    --muted-text: #cfc2a8;
    --danger: #ffdad6;
    --danger-bg: rgba(147, 0, 10, .22);
    --danger-line: rgba(255, 180, 171, .22);
    --page-margin: 20px;
    --unit-xs: 4px;
    --unit-sm: 8px;
    --unit-md: 16px;
    --unit-lg: 24px;
    --unit-xl: 32px;
}

* {
    box-sizing: border-box;
}

html,
body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}

body.cardapio-page.delivery-page {
    min-height: max(884px, 100dvh);
    margin: 0;
    background-color: var(--background) !important;
    background-image:
        linear-gradient(rgba(242, 202, 80, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(242, 202, 80, 0.03) 1px, transparent 1px) !important;
    background-size: 52px 52px !important;
    color: var(--body-text);
    font-family: "Manrope", system-ui, sans-serif;
    -webkit-font-smoothing: antialiased;
}

                       
.glass-panel,
.delivery-search-form,
.delivery-page .product-card,
.delivery-cart,
.delivery-closed-box,
.delivery-page .catbar {
    background: rgba(28, 26, 23, 0.75);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(242, 202, 80, 0.12);
}

.gold-gradient-btn {
    background: linear-gradient(135deg, #ffe9b0 0%, #e9c349 50%, #af8d11 100%) !important;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.shimmer {
    position: relative;
    overflow: hidden;
}

.shimmer::after {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        to bottom right,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.12) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: rotate(45deg);
    animation: shimmer 4s infinite;
    pointer-events: none;
}

@keyframes shimmer {
    0% { transform: translateX(-150%) rotate(45deg); }
    100% { transform: translateX(150%) rotate(45deg); }
}

.material-symbols-outlined {
    font-variation-settings: "FILL" 0, "wght" 350, "GRAD" 0, "opsz" 24;
}

                                     
.delivery-topbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 50;
    height: 72px;
    padding: 0 var(--page-margin);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--surface-glass);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--gold-border);
    box-shadow: 0 16px 40px rgba(0, 0, 0, .45);
}

.delivery-brand {
    color: var(--primary);
    text-decoration: none;
}

.delivery-brand strong {
    font-family: "Playfair Display", Georgia, serif;
    font-size: 24px;
    line-height: 1;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .12em;
}

.delivery-top-actions {
    display: flex;
    align-items: center;
    gap: var(--unit-md);
}

.delivery-icon-btn {
    position: relative;
    width: 34px;
    height: 34px;
    border: 0;
    padding: 0;
    background: transparent;
    color: var(--primary);
    display: grid;
    place-items: center;
    text-decoration: none;
    cursor: pointer;
    transition: transform .16s ease;
}

.delivery-icon-btn:active {
    transform: scale(.95);
}

.delivery-icon-btn .material-symbols-outlined {
    font-size: 28px;
}

.delivery-icon-badge {
    position: absolute;
    top: -4px;
    right: -5px;
    min-width: 18px;
    height: 18px;
    padding: 0 5px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    background: #fff;
    color: #131313;
    font-size: 10px;
    font-weight: 900;
}

                 
body.delivery-page {
    padding-top: 72px;
    padding-bottom: 100px;
}

          
.delivery-page .sushi-slider {
    position: relative;
    width: 100%;
    height: 420px !important;
    min-height: 420px !important;
    display: flex;
    align-items: flex-end;
    padding: 0 var(--page-margin) var(--unit-xl);
    overflow: hidden;
}

.delivery-page .slider-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    opacity: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1.10);
    transition: opacity .7s ease;
}

.delivery-page .slider-bg.active {
    opacity: .60;
}

.delivery-page .slider-pattern {
    display: none !important;
}

.delivery-page .slider-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(to top, #090909 0%, rgba(9, 9, 9, .58) 50%, rgba(9,9,9,.10) 100%);
}

.delivery-page .slider-content {
    position: relative;
    z-index: 10;
    width: 100%;
    padding: 0;
    text-align: left;
}

.delivery-page .slider-chip {
    width: fit-content;
    min-height: 28px;
    margin: 0 0 var(--unit-md);
    padding: 0 var(--unit-sm);
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    gap: var(--unit-xs);
    background: rgba(242, 202, 80, .10);
    border: 1px solid rgba(255, 233, 176, .20);
    color: var(--primary);
    font-size: 9px;
    line-height: 1;
    font-weight: 950;
    text-transform: uppercase;
    letter-spacing: .10em;
}

.slider-dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: var(--secondary);
    animation: pulseDot 1.4s infinite;
}

@keyframes pulseDot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: .45; transform: scale(.78); }
}

.delivery-page .slider-content h1 {
    max-width: 350px;
    margin: 0 0 var(--unit-sm);
    color: var(--cream-text);
    font-family: "Playfair Display", Georgia, serif;
    font-size: 36px !important;
    line-height: 1.2 !important;
    font-weight: 700;
    text-transform: none !important;
    letter-spacing: -.04em;
}

.delivery-page .slider-content p {
    max-width: 280px;
    margin: 0;
    color: var(--muted-text);
    font-size: 13px;
    line-height: 1.5;
    font-weight: 600;
}

                            
.delivery-closed-box {
    width: 100%;
    max-width: 360px;
    margin: var(--unit-md) 0 0;
    padding: 11px 12px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: var(--unit-sm);
    background: var(--danger-bg);
    border-color: var(--danger-line);
    color: var(--danger);
}

.delivery-closed-icon {
    width: 30px;
    height: 30px;
    min-width: 30px;
    border-radius: 10px;
    display: grid;
    place-items: center;
    color: var(--danger);
}

.delivery-closed-icon .material-symbols-outlined {
    font-size: 26px;
}

.delivery-closed-text {
    font-size: 12px;
    line-height: 1.35;
    font-weight: 900;
}

                   
.delivery-page .cardapio-wrap {
    width: 100%;
    max-width: 560px;
    margin: 0 auto;
    padding: 0 var(--page-margin) var(--unit-xl) !important;
}

                
.delivery-page .menu-heading {
    position: relative;
    z-index: 20;
    margin: calc(var(--unit-lg) * -1) 0 0;
}

.delivery-search-form {
    width: 100%;
    height: 56px;
    padding: 0 var(--unit-md);
    border-radius: 999px;
    display: flex;
    align-items: center;
    gap: var(--unit-sm);
    box-shadow: 0 14px 32px rgba(0,0,0,.28);
}

.delivery-search-form::before {
    content: "search";
    font-family: "Material Symbols Outlined";
    font-size: 24px;
    color: var(--muted-text);
    font-variation-settings: "FILL" 0, "wght" 300, "GRAD" 0, "opsz" 24;
}

.delivery-search-form .input {
    flex: 1;
    width: 100%;
    min-width: 0;
    height: 54px;
    border: none !important;
    outline: none !important;
    background: transparent !important;
    color: var(--body-text) !important;
    padding: 0 !important;
    font-size: 14px;
    line-height: 1.5;
    font-weight: 700;
    box-shadow: none !important;
}

.delivery-search-form .input::placeholder {
    color: rgba(207, 194, 168, .50);
}

.delivery-search-btn {
    display: none !important;
}

                
.delivery-page .catbar {
    width: calc(100% + 40px);
    margin: var(--unit-xl) -20px 0 !important;
    padding: 0 var(--page-margin) !important;
    border: 0 !important;
    background: transparent !important;
    display: flex !important;
    gap: var(--unit-sm) !important;
    overflow-x: auto !important;
    scrollbar-width: none;
}

.delivery-page .catbar::-webkit-scrollbar {
    display: none;
}

.delivery-page .catbar .chip {
    flex: 0 0 auto !important;
    min-height: 34px;
    padding: 0 var(--unit-lg) !important;
    border-radius: 999px !important;
    border: 1px solid var(--gold-border) !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: transparent !important;
    color: var(--muted-text) !important;
    text-decoration: none;
    white-space: nowrap;
    font-size: 9px !important;
    line-height: 1;
    font-weight: 950;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.delivery-page .catbar .chip.active {
    background: var(--primary-container) !important;
    color: var(--on-primary-container) !important;
    border-color: rgba(255, 233, 176, .30) !important;
}

                   
.delivery-section-title {
    margin: var(--unit-xl) 0 var(--unit-md);
}

.delivery-section-title span {
    display: block;
    margin-bottom: 4px;
    color: var(--secondary);
    font-size: 9px;
    line-height: 1;
    font-weight: 950;
    text-transform: uppercase;
    letter-spacing: .13em;
}

.delivery-section-title h2 {
    margin: 0;
    color: var(--cream-text);
    font-family: "Playfair Display", Georgia, serif;
    font-size: 25px;
    line-height: 1.3;
    font-weight: 700;
}

                  
.delivery-page .products-area {
    margin-top: var(--unit-md);
}

.delivery-page .menu-grid {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: var(--unit-md) !important;
}

.delivery-page .product-card {
    min-width: 0;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform .18s ease;
}

.delivery-page .product-card:active {
    transform: scale(.95);
}

.delivery-page .product-click {
    width: 100%;
    min-height: 100%;
    border: 0;
    background: transparent;
    color: inherit;
    padding: 0;
    text-align: left;
    cursor: pointer;
    display: flex;
    flex-direction: column;
}

.delivery-page .product-media {
    position: relative;
    width: 100%;
    height: 140px;
    display: block;
    overflow: hidden;
    background: #151515;
}

.delivery-page .product-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform .7s ease;
    color: transparent;
    font-size: 0;
}

.delivery-page .product-card:hover .product-media img {
    transform: scale(1.10);
}

.delivery-page .featured-pill {
    position: absolute;
    top: 8px;
    right: 8px;
    max-width: calc(100% - 16px);
    padding: 3px 8px;
    border-radius: 999px;
    border: 1px solid var(--gold-border);
    background: rgba(9, 9, 9, .60);
    backdrop-filter: blur(12px);
    color: var(--primary);
    font-size: 8px;
    line-height: 1;
    font-weight: 950;
    text-transform: uppercase;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.delivery-page .product-content {
    padding: var(--unit-sm);
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.delivery-page .category-pill {
    margin-bottom: 4px;
    color: var(--secondary);
    font-size: 8px;
    line-height: 1;
    font-weight: 950;
    text-transform: uppercase;
    letter-spacing: .08em;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.delivery-page .product-content strong {
    margin-bottom: 4px;
    color: var(--cream-text);
    font-family: "Playfair Display", Georgia, serif;
    font-size: 16px;
    line-height: 1.16;
    font-weight: 700;
}

.delivery-page .product-content small {
    min-height: 30px;
    margin-bottom: var(--unit-sm);
    color: var(--muted-text);
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    font-size: 10px;
    line-height: 1.2;
    font-weight: 800;
}

.delivery-page .product-bottom {
    margin-top: auto;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.delivery-page .product-bottom b {
    color: var(--primary);
    font-size: 14px;
    line-height: 1.5;
    font-weight: 700;
}

.delivery-page .product-bottom em {
    width: 100%;
    min-height: 34px;
    padding: 0 10px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--on-primary);
    font-style: normal;
    font-size: 10px;
    line-height: 1;
    font-weight: 950;
    text-transform: uppercase;
    letter-spacing: .05em;
}

           
.empty-menu {
    grid-column: 1 / -1;
    padding: var(--unit-lg);
    border-radius: 12px;
    text-align: center;
    background: rgba(28, 26, 23, 0.75);
    border: 1px solid rgba(242, 202, 80, 0.12);
    color: var(--muted-text);
}

          
.delivery-cart {
    position: fixed;
    right: 12px;
    bottom: 94px;
    z-index: 70;
    width: min(400px, calc(100vw - 24px));
    max-height: calc(100dvh - 120px);
    overflow: auto;
    border-radius: 12px;
    box-shadow: 0 22px 80px rgba(0,0,0,.55);
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    pointer-events: none;
    transition: .18s ease;
}

.delivery-cart.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.delivery-cart-head {
    padding: var(--unit-md);
    border-bottom: 1px solid var(--gold-border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--unit-sm);
}

.delivery-cart-head span {
    display: block;
    color: var(--primary);
    font-size: 9px;
    line-height: 1;
    font-weight: 950;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.delivery-cart-head h2 {
    margin: 4px 0 0;
    color: var(--cream-text);
    font-family: "Playfair Display", Georgia, serif;
    font-size: 24px;
    line-height: 1.2;
}

.delivery-cart-close,
.delivery-cart-clear {
    height: 34px;
    border-radius: 8px;
    border: 1px solid var(--gold-border);
    background: transparent;
    color: var(--primary);
    padding: 0 10px;
    cursor: pointer;
    font-weight: 900;
}

.delivery-cart-close {
    width: 34px;
    padding: 0;
    font-size: 20px;
}

.delivery-cart-body {
    padding: var(--unit-md);
}

.delivery-empty {
    min-height: 90px;
    padding: var(--unit-md);
    border-radius: 12px;
    display: grid;
    place-items: center;
    text-align: center;
    color: var(--muted-text);
    border: 1px dashed var(--gold-border);
}

.delivery-empty strong {
    display: block;
    color: var(--cream-text);
}

.delivery-cart-items {
    display: grid;
    gap: 10px;
}

.delivery-cart-item {
    padding: 10px;
    border-radius: 12px;
    border: 1px solid var(--gold-border);
    background: rgba(255,255,255,.035);
}

.delivery-cart-item-main {
    display: flex;
    justify-content: space-between;
    gap: 10px;
}

.delivery-cart-item-main strong {
    color: var(--cream-text);
}

.delivery-cart-item-main small {
    display: block;
    margin-top: 3px;
    color: var(--muted-text);
}

.delivery-cart-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 10px;
}

.delivery-cart-actions button {
    min-width: 32px;
    height: 32px;
    border-radius: 8px;
    border: 1px solid var(--gold-border);
    background: transparent;
    color: var(--primary);
    cursor: pointer;
}

.delivery-cart-actions .remove {
    margin-left: auto;
    color: var(--danger);
}

.delivery-checkout {
    display: grid;
    gap: 10px;
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid var(--gold-border);
}

.delivery-field {
    display: grid;
    gap: 6px;
    color: var(--muted-text);
    font-size: 10px;
    font-weight: 950;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.delivery-field input,
.delivery-field select,
.delivery-field textarea {
    width: 100%;
    min-height: 42px;
    border-radius: 8px;
    border: 1px solid var(--gold-border);
    background: rgba(255,255,255,.045);
    color: var(--body-text);
    padding: 10px;
    outline: none;
}

.delivery-field textarea {
    min-height: 76px;
    resize: vertical;
}

.delivery-grid-2 {
    display: grid;
    grid-template-columns: 1fr 100px;
    gap: 10px;
}

.delivery-mode {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.delivery-mode button {
    min-height: 42px;
    border-radius: 8px;
    border: 1px solid var(--gold-border);
    background: transparent;
    color: var(--muted-text);
    font-weight: 950;
}

.delivery-mode button.active {
    background: rgba(242, 202, 80, .10);
    color: var(--primary);
}

.delivery-total-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--muted-text);
}

.delivery-total-row strong {
    color: var(--primary);
}

.delivery-send {
    min-height: 46px;
    border: 0;
    border-radius: 8px;
    color: var(--on-primary);
    font-weight: 950;
    background: linear-gradient(135deg, #ffe9b0 0%, #e9c349 50%, #af8d11 100%);
}

.delivery-send:disabled {
    opacity: .6;
}

.delivery-track {
    display: block;
    text-align: center;
    color: var(--primary);
    text-decoration: none;
    font-size: 10px;
    font-weight: 950;
    text-transform: uppercase;
    letter-spacing: .1em;
}

                           
.delivery-bottom-nav {
    position: fixed;
    left: 0;
    bottom: 0;
    z-index: 50;
    width: 100%;
    height: 84px;
    padding: 8px var(--unit-md) max(8px, env(safe-area-inset-bottom));
    border-top: 1px solid var(--gold-border);
    border-radius: 12px 12px 0 0;
    display: flex;
    justify-content: space-around;
    align-items: center;
    background: var(--surface-dense);
    backdrop-filter: blur(18px);
    box-shadow: 0 -12px 40px rgba(0,0,0,.50);
}

.bottom-nav-item {
    position: relative;
    min-width: 70px;
    border: 0;
    background: transparent;
    color: var(--muted-text);
    padding: 8px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    text-decoration: none;
    cursor: pointer;
    transition: .18s ease;
}

.bottom-nav-item.active {
    color: var(--primary);
    background: rgba(242, 202, 80, .10);
}

.bottom-nav-item:active {
    transform: translateY(1px);
}

.bottom-nav-item .material-symbols-outlined {
    font-size: 24px;
}

.bottom-nav-item span:last-child {
    font-size: 9px;
    line-height: 1;
    font-weight: 950;
    text-transform: uppercase;
    letter-spacing: .05em;
}

.bottom-nav-item b {
    position: absolute;
    top: 3px;
    right: 13px;
    min-width: 18px;
    height: 18px;
    padding: 0 5px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    background: var(--primary-container);
    color: var(--on-primary-container);
    font-size: 10px;
    line-height: 1;
    font-weight: 950;
}

                           
.product-modal .modal-box {
    border-radius: 12px;
    background: var(--surface-dense);
    color: var(--body-text);
    border: 1px solid var(--gold-border);
}

.product-modal .modal-add {
    border-radius: 8px;
    background: linear-gradient(135deg, #ffe9b0 0%, #e9c349 50%, #af8d11 100%);
    color: var(--on-primary);
}

                                                
@media (min-width: 761px) {
    .delivery-page .cardapio-wrap {
        max-width: 960px;
    }

    .delivery-page .menu-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    }

    .delivery-page .sushi-slider {
        height: 520px !important;
        min-height: 520px !important;
        padding-left: max(var(--page-margin), calc((100vw - 960px) / 2));
    }

    .delivery-page .slider-content h1 {
        max-width: 520px;
        font-size: 54px !important;
    }

    .delivery-page .slider-content p {
        max-width: 420px;
        font-size: 15px;
    }

    .delivery-page .product-media {
        height: 160px;
    }
}

@media (max-width: 380px) {
    .delivery-brand strong {
        font-size: 18px;
    }

    .delivery-page .product-media {
        height: 130px;
    }

    .delivery-page .product-content strong {
        font-size: 14px;
    }

    .bottom-nav-item {
        min-width: 62px;
    }
}


                                                                             
                                         
                                                                
                                                                                

.delivery-search-info {
    margin: 0 0 16px;
    padding: 12px 14px;
    border-radius: 12px;
    background: rgba(28, 26, 23, 0.75);
    border: 1px solid rgba(242, 202, 80, 0.12);
    color: var(--muted-text, #cfc2a8);
}

.delivery-search-info span {
    display: block;
    margin-bottom: 4px;
    color: var(--secondary, #e9c349);
    font-size: 9px;
    font-weight: 950;
    text-transform: uppercase;
    letter-spacing: .10em;
}

.delivery-search-info strong {
    color: var(--cream-text, #fff6df);
}

.delivery-category-section {
    margin: 0 0 28px;
    scroll-margin-top: 136px;
}

.delivery-category-head {
    margin: 0 0 12px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 14px;
}

.delivery-category-head h2 {
    margin: 0;
    color: var(--cream-text, #fff6df);
    font-family: "Playfair Display", Georgia, serif;
    font-size: 25px;
    line-height: 1.18;
    font-weight: 700;
}

.delivery-category-head p {
    margin: 4px 0 0;
    color: var(--muted-text, #cfc2a8);
    font-size: 12px;
    line-height: 1.35;
    font-weight: 700;
}

.delivery-category-head span {
    flex: 0 0 auto;
    color: var(--secondary, #e9c349);
    font-size: 10px;
    font-weight: 950;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.category-products-row {
    width: calc(100% + 40px);
    margin: 0 -20px;
    padding: 0 20px 10px;
    display: flex;
    gap: 16px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x proximity;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    cursor: grab;
}

.category-products-row::-webkit-scrollbar {
    display: none;
}

.category-products-row.arrastando,
.catbar.arrastando {
    cursor: grabbing;
}

.category-products-row .product-card {
    flex: 0 0 170px;
    width: 170px;
    min-width: 170px;
    scroll-snap-align: start;
}

.category-products-row .product-media {
    height: 140px;
}

.category-products-row .product-content {
    min-height: 168px;
}

                                                                 
.catbar .chip {
    scroll-snap-align: start;
}

                                                          
@media (min-width: 761px) {
    .category-products-row {
        width: 100%;
        margin: 0;
        padding: 0 0 12px;
    }

    .category-products-row .product-card {
        flex-basis: 220px;
        width: 220px;
        min-width: 220px;
    }

    .category-products-row .product-media {
        height: 170px;
    }
}

                                                                           
@media (max-width: 760px) {
    .delivery-category-section {
        margin-bottom: 26px;
    }

    .delivery-category-head {
        margin-bottom: 10px;
        padding: 0 2px;
    }

    .delivery-category-head h2 {
        font-size: 20px;
    }

    .delivery-category-head p {
        display: none;
    }

    .delivery-category-head span {
        font-size: 9px;
    }

    .category-products-row {
        width: calc(100% + 24px);
        margin: 0 -12px;
        padding: 0 12px 10px;
        gap: 12px;
    }

    .category-products-row .product-card {
        flex: 0 0 150px;
        width: 150px;
        min-width: 150px;
    }

    .category-products-row .product-media {
        height: 132px;
    }

    .category-products-row .product-content {
        min-height: 152px;
    }
}

@media (max-width: 380px) {
    .category-products-row .product-card {
        flex-basis: 138px;
        width: 138px;
        min-width: 138px;
    }

    .category-products-row .product-media {
        height: 122px;
    }
}

                                                                             
                                                           
                                                                                

                                           
.category-products-row .product-card {
    flex-basis: 176px;
    width: 176px;
    min-width: 176px;
}

                                         
.category-products-row .product-media {
    height: 156px;
}

                          
.category-products-row .product-content {
    min-height: 138px;
    padding: 8px 9px 10px;
}

                                  
.category-products-row .category-pill {
    font-size: 7px;
    line-height: 1;
    letter-spacing: .04em;
}

                               
.category-products-row .product-content strong {
    font-size: 12.8px;
    line-height: 1.15;
    min-height: 30px;
    font-weight: 700;
}

                             
.category-products-row .product-content small {
    font-size: 9.2px;
    line-height: 1.25;
    min-height: 24px;
}

                                    
.category-products-row .product-bottom b {
    font-size: 12.5px;
    line-height: 1;
}

                              
.category-products-row .product-bottom em {
    min-height: 27px;
    font-size: 7.5px;
    letter-spacing: .04em;
}

             
@media (min-width: 761px) {
    .category-products-row .product-card {
        flex-basis: 236px;
        width: 236px;
        min-width: 236px;
    }

    .category-products-row .product-media {
        height: 190px;
    }

    .category-products-row .product-content {
        min-height: 150px;
        padding: 10px 11px 12px;
    }

    .category-products-row .product-content strong {
        font-size: 15.5px;
        min-height: 34px;
    }

    .category-products-row .product-content small {
        font-size: 10.5px;
        min-height: 28px;
    }

    .category-products-row .product-bottom b {
        font-size: 14px;
    }
}

            
@media (max-width: 760px) {
    .category-products-row .product-card {
        flex-basis: 168px;
        width: 168px;
        min-width: 168px;
    }

    .category-products-row .product-media {
        height: 150px;
    }

    .category-products-row .product-content {
        min-height: 134px;
        padding: 8px 9px 10px;
    }

    .category-products-row .product-content strong {
        font-size: 12.4px;
        line-height: 1.14;
        min-height: 29px;
    }

    .category-products-row .product-content small {
        font-size: 9px;
        line-height: 1.22;
        min-height: 23px;
    }

    .category-products-row .product-bottom b {
        font-size: 12.2px;
    }
}

                       
@media (max-width: 380px) {
    .category-products-row .product-card {
        flex-basis: 158px;
        width: 158px;
        min-width: 158px;
    }

    .category-products-row .product-media {
        height: 140px;
    }

    .category-products-row .product-content strong {
        font-size: 12px;
    }

    .category-products-row .product-content small {
        font-size: 8.8px;
    }

    .category-products-row .product-bottom b {
        font-size: 12px;
    }
}

                                                                             
                                       
                                                                                

  
                                                     
                                                      
                                                         
  

html,
body {
    background: #050505 !important;
}

body.cardapio-page.delivery-page {
    position: relative !important;
    isolation: isolate;
    background-color: #050505 !important;
    background-image:
        radial-gradient(circle at 18% 0%, rgba(242, 202, 80, .075), transparent 26%),
        radial-gradient(circle at 85% 18%, rgba(255, 255, 255, .035), transparent 24%),
        linear-gradient(180deg, #050505 0%, #0b0b0b 44%, #060606 100%) !important;
    background-size: auto !important;
    background-attachment: fixed !important;
}

                                     
body.cardapio-page.delivery-page::before {
    content: "" !important;
    position: fixed !important;
    inset: 0 !important;
    z-index: -3 !important;
    pointer-events: none !important;
    display: block !important;
    background:
        radial-gradient(circle at 50% 12%, rgba(242, 202, 80, .055), transparent 28%),
        radial-gradient(circle at 12% 70%, rgba(242, 202, 80, .035), transparent 26%),
        radial-gradient(circle at 92% 80%, rgba(255, 255, 255, .030), transparent 28%),
        #050505 !important;
}

                                                      
body.cardapio-page.delivery-page::after {
    content: "寿司  •  魚  •  箸  •  海苔  •  醤油  •  まぐろ  •  鮭  •  寿司  •  魚  •  箸" !important;
    position: fixed !important;
    left: -20vw !important;
    top: 120px !important;
    z-index: -2 !important;
    pointer-events: none !important;
    display: block !important;
    width: 180vw !important;
    height: 40px !important;
    color: rgba(242, 202, 80, .075) !important;
    font-family: "Manrope", system-ui, sans-serif !important;
    font-size: 11px !important;
    font-weight: 900 !important;
    letter-spacing: 18px !important;
    white-space: nowrap !important;
    text-transform: uppercase !important;
    transform: rotate(-9deg) translateX(0);
    animation: saikoJapaneseFlow 28s linear infinite !important;
}

                                                         
.delivery-page .cardapio-wrap::before {
    content: "SAIKŌ  寿司  •  SUSHI  •  OMAKASE  •  DELIVERY  •  いただきます" !important;
    position: fixed !important;
    left: -30vw !important;
    bottom: 150px !important;
    z-index: -2 !important;
    pointer-events: none !important;
    width: 190vw !important;
    color: rgba(255, 255, 255, .040) !important;
    font-size: 10px !important;
    font-weight: 900 !important;
    letter-spacing: 16px !important;
    white-space: nowrap !important;
    transform: rotate(7deg) translateX(0);
    animation: saikoJapaneseFlowReverse 34s linear infinite !important;
}

                                                    
.delivery-page .cardapio-wrap::after {
    content: "" !important;
    position: fixed !important;
    inset: 0 !important;
    z-index: -2 !important;
    pointer-events: none !important;
    background-image:
        radial-gradient(circle, rgba(242, 202, 80, .12) 0 1px, transparent 1.8px),
        radial-gradient(circle, rgba(255, 255, 255, .07) 0 1px, transparent 1.6px);
    background-size: 120px 120px, 190px 190px;
    background-position: 0 0, 60px 80px;
    opacity: .28 !important;
    animation: saikoSoftParticles 24s linear infinite !important;
}

@keyframes saikoJapaneseFlow {
    0% {
        transform: rotate(-9deg) translateX(-8vw);
    }
    100% {
        transform: rotate(-9deg) translateX(34vw);
    }
}

@keyframes saikoJapaneseFlowReverse {
    0% {
        transform: rotate(7deg) translateX(28vw);
    }
    100% {
        transform: rotate(7deg) translateX(-28vw);
    }
}

@keyframes saikoSoftParticles {
    0% {
        background-position: 0 0, 60px 80px;
    }
    100% {
        background-position: 120px 120px, -80px 260px;
    }
}

                                          
.delivery-page .sushi-slider {
    background:
        linear-gradient(180deg, rgba(0,0,0,.06), rgba(0,0,0,.36)),
        #060606 !important;
}

.delivery-page .slider-overlay {
    background:
        linear-gradient(to top, #050505 0%, rgba(5, 5, 5, .72) 52%, rgba(5,5,5,.16) 100%) !important;
}

                                                      
.delivery-search-form,
.delivery-page .product-card,
.delivery-cart,
.delivery-closed-box,
.delivery-page .catbar {
    background: rgba(18, 17, 15, .80) !important;
    border-color: rgba(242, 202, 80, .13) !important;
    box-shadow: 0 18px 44px rgba(0,0,0,.26);
}

                                                  
.delivery-bottom-nav {
    background: rgba(18, 17, 15, .94) !important;
    border-top-color: rgba(242, 202, 80, .16) !important;
}

                                                       
@media (prefers-reduced-motion: reduce) {
    body.cardapio-page.delivery-page::after,
    .delivery-page .cardapio-wrap::before,
    .delivery-page .cardapio-wrap::after {
        animation: none !important;
    }
}

                                                                             
                            
                                                                                

  
                                              
                                                                 
  

.delivery-brand strong {
    display: inline-block !important;
    font-family: "Playfair Display", Georgia, serif !important;
    font-size: 21px !important;
    line-height: 1 !important;
    font-weight: 700 !important;
    letter-spacing: .075em !important;
    text-transform: uppercase !important;
    color: transparent !important;
    background: linear-gradient(180deg, #fff8dc 0%, #f2ca50 48%, #b8902f 100%) !important;
    -webkit-background-clip: text !important;
    background-clip: text !important;
    text-shadow:
        0 1px 0 rgba(255, 255, 255, .14),
        0 10px 22px rgba(242, 202, 80, .18),
        0 2px 10px rgba(0, 0, 0, .45) !important;
}

                                            
.delivery-brand {
    position: relative !important;
}

.delivery-brand::after {
    content: "" !important;
    position: absolute !important;
    left: 2px !important;
    right: 2px !important;
    bottom: -8px !important;
    height: 1px !important;
    background: linear-gradient(90deg, transparent, rgba(242, 202, 80, .55), transparent) !important;
    opacity: .65 !important;
}

                                              
@media (max-width: 420px) {
    .delivery-brand strong {
        font-size: 19px !important;
        letter-spacing: .055em !important;
    }
}

@media (max-width: 360px) {
    .delivery-brand strong {
        font-size: 17px !important;
        letter-spacing: .045em !important;
    }
}

                                                                             
                          
                                                                                

  
                               
                                               
  

@media (min-width: 900px) {
    html {
        scroll-padding-top: 120px;
    }

    body.cardapio-page.delivery-page {
        padding-top: 78px !important;
        padding-bottom: 36px !important;
    }

                                     
    .delivery-topbar {
        height: 78px !important;
        padding-left: max(32px, calc((100vw - 1220px) / 2)) !important;
        padding-right: max(32px, calc((100vw - 1220px) / 2)) !important;
    }

    .delivery-brand strong {
        font-size: 25px !important;
        letter-spacing: .09em !important;
    }

    .delivery-icon-btn {
        width: 42px !important;
        height: 42px !important;
    }

                                          
    .delivery-page .sushi-slider {
        height: 430px !important;
        min-height: 430px !important;
        padding-left: max(32px, calc((100vw - 1220px) / 2)) !important;
        padding-right: max(32px, calc((100vw - 1220px) / 2)) !important;
        padding-bottom: 52px !important;
    }

    .delivery-page .slider-content {
        max-width: 1220px !important;
        margin: 0 auto !important;
    }

    .delivery-page .slider-content h1 {
        max-width: 620px !important;
        font-size: 58px !important;
        line-height: 1.02 !important;
    }

    .delivery-page .slider-content p {
        max-width: 520px !important;
        font-size: 16px !important;
        line-height: 1.6 !important;
    }

    .delivery-closed-box {
        max-width: 480px !important;
    }

                                   
    .delivery-page .cardapio-wrap {
        width: min(100% - 64px, 1220px) !important;
        max-width: 1220px !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
        padding-bottom: 56px !important;
    }

                                     
    .delivery-page .menu-heading {
        width: min(100%, 720px) !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }

    .delivery-search-form {
        height: 58px !important;
    }

                                          
    .delivery-page .catbar {
        width: 100% !important;
        margin: 28px 0 34px !important;
        padding: 0 !important;
        gap: 10px !important;
        justify-content: flex-start !important;
        overflow-x: auto !important;
    }

    .delivery-page .catbar .chip {
        min-height: 38px !important;
        padding: 0 20px !important;
        font-size: 10px !important;
    }

                                       
    .delivery-category-section {
        margin-bottom: 42px !important;
    }

    .delivery-category-head {
        margin-bottom: 16px !important;
        padding: 0 !important;
        align-items: flex-end !important;
    }

    .delivery-category-head h2 {
        font-size: 31px !important;
        line-height: 1.1 !important;
    }

    .delivery-category-head p {
        display: block !important;
        font-size: 13px !important;
        margin-top: 6px !important;
    }

    .delivery-category-head span {
        font-size: 11px !important;
    }

                                                               
    .category-products-row {
        width: 100% !important;
        margin: 0 !important;
        padding: 0 0 16px !important;
        gap: 20px !important;
        overflow-x: auto !important;
        overflow-y: hidden !important;
        scroll-snap-type: x proximity !important;
    }

    .category-products-row .product-card {
        flex: 0 0 238px !important;
        width: 238px !important;
        min-width: 238px !important;
        max-width: 238px !important;
        border-radius: 16px !important;
    }

    .category-products-row .product-media {
        height: auto !important;
        aspect-ratio: 1 / .78 !important;
    }

    .category-products-row .product-content {
        min-height: 158px !important;
        padding: 12px 13px 14px !important;
    }

    .category-products-row .category-pill {
        font-size: 8px !important;
    }

    .category-products-row .product-content strong {
        font-size: 17px !important;
        line-height: 1.14 !important;
        min-height: 39px !important;
    }

    .category-products-row .product-content small {
        font-size: 11px !important;
        line-height: 1.35 !important;
        min-height: 32px !important;
    }

    .category-products-row .product-bottom b {
        font-size: 16px !important;
    }

    .category-products-row .product-bottom em {
        min-height: 34px !important;
        font-size: 8.5px !important;
    }

                                      
    .delivery-cart {
        right: max(32px, calc((100vw - 1220px) / 2)) !important;
        bottom: 32px !important;
        width: 430px !important;
        max-height: calc(100vh - 118px) !important;
    }

                                                          
    .delivery-bottom-nav {
        display: none !important;
    }
}

                         
@media (min-width: 1280px) {
    .category-products-row .product-card {
        flex-basis: 254px !important;
        width: 254px !important;
        min-width: 254px !important;
        max-width: 254px !important;
    }

    .category-products-row {
        gap: 22px !important;
    }
}

                       
@media (min-width: 761px) and (max-width: 899px) {
    .delivery-page .cardapio-wrap {
        max-width: 760px !important;
    }

    .category-products-row .product-card {
        flex: 0 0 210px !important;
        width: 210px !important;
        min-width: 210px !important;
        max-width: 210px !important;
    }

    .category-products-row .product-media {
        height: auto !important;
        aspect-ratio: 1 / .82 !important;
    }
}

                                                                             
                                  
                                                                                

  
                       
                                                                     
                                                                       
                                           
  

.category-products-shell {
    position: relative;
}

.products-arrow {
    position: absolute;
    top: 50%;
    z-index: 18;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(242, 202, 80, .22);
    border-radius: 999px;
    display: none;
    place-items: center;
    background: rgba(18, 17, 15, .88);
    color: var(--primary, #ffe9b0);
    box-shadow: 0 14px 34px rgba(0,0,0,.38);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    cursor: pointer;
    transform: translateY(-50%);
    transition: transform .18s ease, background .18s ease, border-color .18s ease, opacity .18s ease;
}

.products-arrow:hover {
    background: rgba(242, 202, 80, .16);
    border-color: rgba(242, 202, 80, .42);
    transform: translateY(-50%) scale(1.06);
}

.products-arrow .material-symbols-outlined {
    font-size: 31px;
    line-height: 1;
}

.products-arrow-left {
    left: -18px;
}

.products-arrow-right {
    right: -18px;
}

                                                                
.category-products-shell::after {
    content: "";
    position: absolute;
    top: 0;
    right: -2px;
    bottom: 12px;
    z-index: 12;
    width: 58px;
    pointer-events: none;
    background: linear-gradient(90deg, transparent, rgba(5, 5, 5, .72));
    border-radius: 0 18px 18px 0;
}

@media (min-width: 900px) {
    .products-arrow {
        display: grid;
    }

    .category-products-row {
                                                                     
        padding-left: 8px !important;
        padding-right: 8px !important;
    }
}

                                        
@media (min-width: 761px) and (max-width: 899px) {
    .products-arrow {
        display: grid;
        width: 38px;
        height: 38px;
    }

    .products-arrow-left {
        left: -10px;
    }

    .products-arrow-right {
        right: -10px;
    }

    .products-arrow .material-symbols-outlined {
        font-size: 28px;
    }
}

                                                               
@media (max-width: 760px) {
    .products-arrow {
        display: none !important;
    }

    .category-products-shell::after {
        width: 42px;
        bottom: 10px;
        opacity: .55;
    }
}

                                                                             
                              
                                                                                

  
                      
                                                                                      
                                                                
  

.category-products-row,
.product-card,
.product-click,
.product-media,
.product-content {
    overscroll-behavior-y: auto !important;
}

.category-products-row {
    touch-action: pan-y pan-x !important;
}

                                                                                   
@media (min-width: 761px) {
    .category-products-row {
        cursor: grab;
    }

    .category-products-row.arrastando {
        cursor: grabbing;
    }
}

                                                                             
                                   
                                                                                

  
                                                                
                                               
  

@media (max-width: 760px) {
    .category-products-shell::after {
        display: none !important;
        content: none !important;
        opacity: 0 !important;
        background: none !important;
        width: 0 !important;
    }

    .category-products-row {
        margin-right: -12px !important;
        padding-right: 12px !important;
    }

    body.cardapio-page.delivery-page,
    html,
    body {
        overflow-x: hidden !important;
    }
}

                                                                             
                                
                                                                                

  
                                                               
                                                               
  

.delivery-user-btn {
    min-width: 86px;
    height: 34px;
    border: 1px solid rgba(242, 202, 80, .18);
    border-radius: 999px;
    padding: 0 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    background: rgba(242, 202, 80, .08);
    color: var(--primary, #ffe9b0);
    cursor: pointer;
    text-decoration: none;
    transition: transform .16s ease, background .16s ease, border-color .16s ease;
}

.delivery-user-btn:active {
    transform: scale(.96);
}

.delivery-user-btn:hover {
    background: rgba(242, 202, 80, .13);
    border-color: rgba(242, 202, 80, .30);
}

.delivery-user-btn .material-symbols-outlined {
    font-size: 19px;
}

.delivery-user-btn strong {
    max-width: 58px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 10px;
    line-height: 1;
    font-weight: 950;
    text-transform: uppercase;
    letter-spacing: .04em;
}

.customer-modal {
    position: fixed;
    inset: 0;
    z-index: 120;
    display: grid;
    place-items: center;
    padding: 18px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .18s ease, visibility .18s ease;
}

.customer-modal.show {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.customer-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .70);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.customer-box {
    position: relative;
    z-index: 2;
    width: min(100%, 420px);
    padding: 24px;
    border-radius: 22px;
    background:
        radial-gradient(circle at 20% 0%, rgba(242, 202, 80, .10), transparent 28%),
        rgba(18, 17, 15, .96);
    border: 1px solid rgba(242, 202, 80, .18);
    box-shadow: 0 26px 90px rgba(0,0,0,.62);
    color: var(--body-text, #f7f1e6);
}

.customer-close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 34px;
    height: 34px;
    border: 1px solid rgba(242, 202, 80, .16);
    border-radius: 999px;
    background: rgba(255,255,255,.035);
    color: var(--primary, #ffe9b0);
    font-size: 22px;
    cursor: pointer;
}

.customer-kicker {
    display: block;
    margin-bottom: 8px;
    color: var(--secondary, #e9c349);
    font-size: 10px;
    line-height: 1;
    font-weight: 950;
    text-transform: uppercase;
    letter-spacing: .14em;
}

.customer-box h2 {
    margin: 0 0 8px;
    color: var(--cream-text, #fff6df);
    font-family: "Playfair Display", Georgia, serif;
    font-size: 30px;
    line-height: 1.1;
}

.customer-box p {
    margin: 0 0 18px;
    color: var(--muted-text, #cfc2a8);
    font-size: 13px;
    line-height: 1.5;
    font-weight: 700;
}

.customer-save {
    width: 100%;
    min-height: 46px;
    margin-top: 12px;
    border: 0;
    border-radius: 12px;
    color: var(--on-primary, #3d2f00);
    font-size: 12px;
    font-weight: 950;
    text-transform: uppercase;
    letter-spacing: .06em;
    cursor: pointer;
}

.customer-logout {
    width: 100%;
    min-height: 38px;
    margin-top: 10px;
    border: 1px solid rgba(242, 202, 80, .14);
    border-radius: 12px;
    background: transparent;
    color: var(--muted-text, #cfc2a8);
    font-size: 10px;
    font-weight: 950;
    text-transform: uppercase;
    letter-spacing: .06em;
    cursor: pointer;
}

@media (max-width: 420px) {
    .delivery-top-actions {
        gap: 8px;
    }

    .delivery-user-btn {
        min-width: 70px;
        padding: 0 8px;
    }

    .delivery-user-btn strong {
        max-width: 42px;
        font-size: 9px;
    }

    .customer-box {
        padding: 22px 18px;
        border-radius: 20px;
    }

    .customer-box h2 {
        font-size: 26px;
    }
}

@media (max-width: 360px) {
    .delivery-user-btn {
        min-width: 38px;
        width: 38px;
        padding: 0;
    }

    .delivery-user-btn strong {
        display: none;
    }
}

/* ========================================================================== */
/* RESPONSIVIDADE FINAL DELIVERY - 18/08/2026                                  */
/* ========================================================================== */

:root {
    --delivery-safe-top: env(safe-area-inset-top, 0px);
    --delivery-safe-right: env(safe-area-inset-right, 0px);
    --delivery-safe-bottom: env(safe-area-inset-bottom, 0px);
    --delivery-safe-left: env(safe-area-inset-left, 0px);
}

body.cardapio-page.delivery-page {
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

.delivery-page img,
.delivery-page video,
.delivery-page svg {
    max-width: 100%;
}

.delivery-page button,
.delivery-page input,
.delivery-page select,
.delivery-page textarea {
    max-width: 100%;
    font-family: inherit;
}

.delivery-cart,
.customer-box,
.product-modal .modal-box {
    overscroll-behavior: contain;
}

/* Tablets: retrato e paisagem */
@media (min-width: 761px) and (max-width: 1024px) {
    body.cardapio-page.delivery-page {
        padding-top: 70px !important;
        padding-bottom: 92px !important;
    }

    .delivery-topbar {
        height: 70px !important;
        padding-left: max(20px, var(--delivery-safe-left)) !important;
        padding-right: max(20px, var(--delivery-safe-right)) !important;
    }

    .delivery-page .sushi-slider {
        height: clamp(340px, 44vw, 430px) !important;
        min-height: 340px !important;
        padding-left: 24px !important;
        padding-right: 24px !important;
        padding-bottom: 36px !important;
    }

    .delivery-page .slider-content h1 {
        font-size: clamp(42px, 6vw, 54px) !important;
    }

    .delivery-page .cardapio-wrap {
        width: min(calc(100% - 32px), 900px) !important;
        max-width: 900px !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    .delivery-page .catbar {
        width: 100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    .delivery-cart {
        right: max(16px, var(--delivery-safe-right)) !important;
        bottom: calc(92px + var(--delivery-safe-bottom)) !important;
        width: min(430px, calc(100vw - 32px)) !important;
        max-height: calc(100dvh - 100px - var(--delivery-safe-top) - var(--delivery-safe-bottom)) !important;
    }
}

/* Celulares em geral */
@media (max-width: 760px) {
    :root {
        --page-margin: clamp(12px, 4vw, 20px);
    }

    body.cardapio-page.delivery-page {
        min-height: 100dvh !important;
        padding-top: calc(64px + var(--delivery-safe-top)) !important;
        padding-bottom: calc(90px + var(--delivery-safe-bottom)) !important;
    }

    .delivery-topbar {
        top: 0 !important;
        height: calc(64px + var(--delivery-safe-top)) !important;
        padding-top: var(--delivery-safe-top) !important;
        padding-left: max(12px, var(--delivery-safe-left)) !important;
        padding-right: max(12px, var(--delivery-safe-right)) !important;
        gap: 8px !important;
    }

    .delivery-brand {
        min-width: 0 !important;
        flex: 1 1 auto !important;
    }

    .delivery-brand strong {
        display: block !important;
        max-width: 100% !important;
        overflow: hidden !important;
        white-space: nowrap !important;
        text-overflow: ellipsis !important;
    }

    .delivery-top-actions {
        flex: 0 0 auto !important;
        gap: 6px !important;
    }

    .delivery-icon-btn {
        width: 34px !important;
        height: 34px !important;
        flex: 0 0 34px !important;
    }

    .delivery-page .sushi-slider {
        height: clamp(290px, 76vw, 390px) !important;
        min-height: 290px !important;
        padding-left: var(--page-margin) !important;
        padding-right: var(--page-margin) !important;
        padding-bottom: 30px !important;
    }

    .delivery-page .slider-content {
        max-width: 100% !important;
    }

    .delivery-page .slider-content h1 {
        max-width: min(94vw, 520px) !important;
        font-size: clamp(34px, 11vw, 48px) !important;
        line-height: 1.02 !important;
    }

    .delivery-page .slider-content p {
        max-width: min(90vw, 440px) !important;
        font-size: clamp(12px, 3.7vw, 14px) !important;
        line-height: 1.45 !important;
    }

    .delivery-page .cardapio-wrap {
        width: 100% !important;
        max-width: 100% !important;
        padding-left: var(--page-margin) !important;
        padding-right: var(--page-margin) !important;
        padding-bottom: 28px !important;
    }

    .delivery-page .menu-heading {
        margin-top: -18px !important;
    }

    .delivery-search-form {
        height: 52px !important;
        padding-left: 14px !important;
        padding-right: 14px !important;
    }

    .delivery-search-form .input,
    .delivery-field input,
    .delivery-field select,
    .delivery-field textarea,
    #forma_pagamento {
        font-size: 16px !important; /* evita zoom automático no iPhone */
    }

    .delivery-page .catbar {
        width: calc(100% + (var(--page-margin) * 2)) !important;
        margin-left: calc(var(--page-margin) * -1) !important;
        margin-right: calc(var(--page-margin) * -1) !important;
        padding-left: var(--page-margin) !important;
        padding-right: var(--page-margin) !important;
        scroll-padding-left: var(--page-margin) !important;
    }

    .delivery-category-head {
        align-items: center !important;
    }

    .delivery-category-head h2 {
        font-size: clamp(19px, 5.6vw, 23px) !important;
    }

    .category-products-row {
        width: calc(100% + (var(--page-margin) * 2)) !important;
        margin-left: calc(var(--page-margin) * -1) !important;
        margin-right: calc(var(--page-margin) * -1) !important;
        padding-left: var(--page-margin) !important;
        padding-right: var(--page-margin) !important;
        scroll-padding-left: var(--page-margin) !important;
    }

    .category-products-row .product-card {
        flex-basis: clamp(150px, 44vw, 184px) !important;
        width: clamp(150px, 44vw, 184px) !important;
        min-width: clamp(150px, 44vw, 184px) !important;
        max-width: clamp(150px, 44vw, 184px) !important;
    }

    .category-products-row .product-media {
        height: auto !important;
        aspect-ratio: 1 / .88 !important;
    }

    .category-products-row .product-content {
        min-height: 132px !important;
    }

    /* Carrinho: cabe inteiro em celular e respeita notch/barra inferior */
    .delivery-cart {
        left: max(6px, var(--delivery-safe-left)) !important;
        right: max(6px, var(--delivery-safe-right)) !important;
        bottom: calc(86px + var(--delivery-safe-bottom)) !important;
        width: auto !important;
        max-width: none !important;
        max-height: calc(100dvh - 156px - var(--delivery-safe-top) - var(--delivery-safe-bottom)) !important;
        border-radius: 16px !important;
        overflow-x: hidden !important;
        overflow-y: auto !important;
        -webkit-overflow-scrolling: touch;
    }

    .delivery-cart-head {
        position: sticky !important;
        top: 0 !important;
        z-index: 3 !important;
        padding: 12px !important;
        background: rgba(18, 17, 15, .98) !important;
        backdrop-filter: blur(14px);
        -webkit-backdrop-filter: blur(14px);
    }

    .delivery-cart-head h2 {
        font-size: 21px !important;
    }

    .delivery-cart-body {
        padding: 12px !important;
    }

    .delivery-cart-item-main {
        align-items: flex-start !important;
    }

    .delivery-cart-item-main strong,
    .delivery-cart-item-main small {
        overflow-wrap: anywhere !important;
    }

    .delivery-grid-2 {
        grid-template-columns: minmax(0, 1fr) minmax(82px, 28%) !important;
    }

    .delivery-mode {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }

    .delivery-mode button,
    .delivery-send {
        min-height: 46px !important;
        touch-action: manipulation;
    }

    .delivery-total-row {
        gap: 12px !important;
    }

    .delivery-total-row strong {
        white-space: nowrap !important;
    }

    .delivery-bottom-nav {
        height: calc(78px + var(--delivery-safe-bottom)) !important;
        padding-left: max(8px, var(--delivery-safe-left)) !important;
        padding-right: max(8px, var(--delivery-safe-right)) !important;
        padding-bottom: max(8px, var(--delivery-safe-bottom)) !important;
        gap: 2px !important;
    }

    .bottom-nav-item {
        flex: 1 1 25% !important;
        min-width: 0 !important;
        max-width: 110px !important;
        padding-left: 4px !important;
        padding-right: 4px !important;
    }

    .bottom-nav-item span:last-child {
        max-width: 100% !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
        white-space: nowrap !important;
    }

    .bottom-nav-item b {
        right: max(6px, 18%) !important;
    }

    .customer-modal {
        padding: max(10px, var(--delivery-safe-top)) max(10px, var(--delivery-safe-right)) max(10px, var(--delivery-safe-bottom)) max(10px, var(--delivery-safe-left)) !important;
    }

    .customer-box,
    .product-modal .modal-box {
        width: min(100%, 480px) !important;
        max-height: calc(100dvh - 24px - var(--delivery-safe-top) - var(--delivery-safe-bottom)) !important;
        overflow-y: auto !important;
        -webkit-overflow-scrolling: touch;
    }
}

/* Celulares pequenos: 320-380 px */
@media (max-width: 380px) {
    .delivery-topbar {
        padding-left: max(8px, var(--delivery-safe-left)) !important;
        padding-right: max(8px, var(--delivery-safe-right)) !important;
    }

    .delivery-brand strong {
        font-size: 16px !important;
        letter-spacing: .035em !important;
    }

    .delivery-top-actions {
        gap: 3px !important;
    }

    .delivery-user-btn {
        width: 34px !important;
        min-width: 34px !important;
        padding: 0 !important;
    }

    .delivery-user-btn strong {
        display: none !important;
    }

    .delivery-page .sushi-slider {
        height: clamp(270px, 88vw, 330px) !important;
        min-height: 270px !important;
    }

    .delivery-page .slider-chip {
        max-width: 94vw !important;
        white-space: normal !important;
        line-height: 1.25 !important;
        padding-top: 6px !important;
        padding-bottom: 6px !important;
    }

    .delivery-page .slider-content h1 {
        font-size: clamp(31px, 10.5vw, 39px) !important;
    }

    .category-products-row .product-card {
        flex-basis: clamp(138px, 45vw, 158px) !important;
        width: clamp(138px, 45vw, 158px) !important;
        min-width: clamp(138px, 45vw, 158px) !important;
        max-width: clamp(138px, 45vw, 158px) !important;
    }

    .delivery-grid-2 {
        grid-template-columns: minmax(0, 1fr) 78px !important;
        gap: 7px !important;
    }

    .delivery-cart {
        left: 4px !important;
        right: 4px !important;
        bottom: calc(80px + var(--delivery-safe-bottom)) !important;
        max-height: calc(100dvh - 146px - var(--delivery-safe-top) - var(--delivery-safe-bottom)) !important;
    }

    .delivery-cart-body {
        padding: 10px !important;
    }

    .delivery-cart-actions {
        gap: 6px !important;
    }

    .delivery-cart-actions .remove {
        padding-left: 7px !important;
        padding-right: 7px !important;
    }
}

/* Telefones muito estreitos */
@media (max-width: 330px) {
    .delivery-brand strong {
        font-size: 15px !important;
    }

    .delivery-icon-btn {
        width: 31px !important;
        height: 31px !important;
        flex-basis: 31px !important;
    }

    .delivery-icon-btn .material-symbols-outlined {
        font-size: 23px !important;
    }

    .delivery-grid-2 {
        grid-template-columns: 1fr !important;
    }

    .delivery-mode {
        gap: 6px !important;
    }

    .bottom-nav-item span:last-child {
        font-size: 8px !important;
    }
}

/* Celular/tablet deitado: evita hero e carrinho gigantes em pouca altura */
@media (orientation: landscape) and (max-height: 560px) {
    body.cardapio-page.delivery-page {
        padding-top: calc(58px + var(--delivery-safe-top)) !important;
        padding-bottom: 18px !important;
    }

    .delivery-topbar {
        height: calc(58px + var(--delivery-safe-top)) !important;
    }

    .delivery-page .sushi-slider {
        height: 250px !important;
        min-height: 250px !important;
        padding-bottom: 22px !important;
    }

    .delivery-page .slider-chip {
        margin-bottom: 8px !important;
    }

    .delivery-page .slider-content h1 {
        font-size: clamp(32px, 7vw, 46px) !important;
    }

    .delivery-page .slider-content p {
        display: none !important;
    }

    .delivery-cart {
        top: calc(62px + var(--delivery-safe-top)) !important;
        bottom: max(8px, var(--delivery-safe-bottom)) !important;
        max-height: none !important;
        height: auto !important;
    }

    .delivery-bottom-nav {
        display: none !important;
    }
}

/* Monitores grandes */
@media (min-width: 1600px) {
    .delivery-page .cardapio-wrap,
    .delivery-page .slider-content {
        max-width: 1320px !important;
    }

    .delivery-topbar {
        padding-left: max(40px, calc((100vw - 1320px) / 2)) !important;
        padding-right: max(40px, calc((100vw - 1320px) / 2)) !important;
    }

    .delivery-page .sushi-slider {
        padding-left: max(40px, calc((100vw - 1320px) / 2)) !important;
        padding-right: max(40px, calc((100vw - 1320px) / 2)) !important;
    }
}
