@import url('https://fonts.googleapis.com/css2?family=Figtree:ital,wght@0,300..900;1,300..900&display=swap');

*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Figtree', sans-serif;
}

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

body{
    background: #ffffff;
    color: #111827;
}

/* ===============================
   GLOBAL
=============================== */
img{
    max-width: 100%;
    height: auto;
    display: block;
}

a{
    text-decoration: none;
    color: inherit;
}

button,
input,
textarea,
select{
    font: inherit;
}

.hidden{
    display: none !important;
}

/* ===============================
   WELCOME PAGE
=============================== */
.home-page{
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px 16px;
}

.welcome-container{
    width: 100%;
    max-width: 480px;
    min-height: calc(100vh - 48px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 24px 16px;
}

.logo{
    width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: 14px;
}

.logo img{
    width: min(88vw, 348px);
    height: auto;
}

.tag-line-image{
    width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: 36px;
}

.tag-line-image img{
    width: min(72vw, 232px);
    height: auto;
}

.order-btn{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 148px;
    min-height: 52px;
    padding: 14px 24px;
    background-color: #F7B413;
    color: #000000;
    font-size: 18px;
    font-weight: 700;
    border: none;
    border-radius: 100px;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.18);
    cursor: pointer;
    text-align: center;
    transition: transform 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease;
}

.order-btn:hover{
    filter: brightness(0.98);
    box-shadow: 0px 8px 18px rgba(0, 0, 0, 0.18);
}

.order-btn:active{
    transform: translateY(1px);
}

/* ===============================
   MENU PAGE STYLES
=============================== */
.navbar{
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 12px;
    padding: 16px;
}

.navbar-left{
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.navbar-logo{
    width: 138px;
    height: auto;
}

.navbar-table{
    font-size: 12px;
    margin-top: 4px;
    color: #4b5563;
}

.btn-cart{
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.cart-btn{
    width: 62px;
    min-height: 40px;
    background-color: #F7B413;
    border: none;
    border-radius: 8px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.18);
    cursor: pointer;
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* Hamburger/menu button */
.menu-btn{
    background: transparent;
    border: none;
    padding: 8px 0 0 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.menu-btn svg{
    display: block;
    width: 24px;
    height: 24px;
}

@media (min-width: 800px) {
    .menu-btn{
        display: none;
    }
}

/* ===============================
   CATEGORY SECTION
=============================== */
.category-overlay{
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.45);
    z-index: 998;
}

.category-container{
    width: min(82vw, 250px);
    height: 100vh;
    display: none;
    flex-direction: column;
    background-color: #E5B825;
    gap: 18px;
    align-items: center;
    padding: 70px 12px 24px;
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    z-index: 999 !important;
    overflow-y: auto !important;
    border-radius: 0 16px 16px 0;
}

.category-container.displayed{
    display: flex;
}

.category-card{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 200px;
    min-height: 61px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.18);
    padding: 6px 10px;
}

.category-content img{
    width: 125px;
    height: auto;
}

.category-close{
    position: absolute;
    top: 18px;
    left: 14px;
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    border-radius: 6px;
    color: #000;
    cursor: pointer;
    z-index: 1000;
}

/* ===============================
   SHARED CUSTOMER CONTAINERS
=============================== */
.all-day-breakfast-container,
.main-courses-container,
.pasta-container,
.unlimited-premium-container,
.chicken-wings-container,
.chicken-chops-container,
.frappuccino-container,
.coffee-based-container,
.milk-based-container,
.overload-container,
.solo-mini-container,
.snacks-container{
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    margin: 20px 16px 32px;
}

.chicken-category h2,
.drinks-category h2,
.pizza-category h2{
    font-size: 18px;
    font-weight: 700;
    margin: 24px 16px 14px;
}

/* ===============================
   MENU ITEM STYLES
=============================== */
.menu-item{
    display: grid;
    grid-template-columns: 110px 1fr;
    gap: 14px;
    align-items: center;
    width: 100%;
    background-color: #EFEFEF;
    padding: 12px;
    border-radius: 12px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
}

.menu-item-image{
    width: 110px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    border-radius: 10px;
    overflow: hidden;
    flex-shrink: 0;
}

.menu-item-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.menu-item-details{
    display: flex;
    flex-direction: column;
    gap: 6px;
    min-width: 0;
}

.menu-item-name{
    font-size: 16px;
    font-weight: 700;
    width: 100%;
    line-height: 1.25;
}

.menu-item-description{
    font-size: 12px;
    color: #000000;
    line-height: 1.4;
    word-break: break-word;
}

.menu-item-button{
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    margin-top: 6px;
    flex-wrap: wrap;
}

.menu-item-price{
    color: #F7B413;
    font-weight: 700;
    white-space: nowrap;
}

.add-to-cart-btn{
    font-size: 12px;
    min-width: 92px;
    min-height: 34px;
    background-color: #F7B413;
    border: none;
    border-radius: 999px;
    padding: 6px 12px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.18);
    transition: all 0.3s ease;
    cursor: pointer;
    white-space: nowrap;
}

.add-to-cart-btn.added{
    background-color: #eda705;
    color: #000000;
    cursor: not-allowed;
}

.add-to-cart-btn:disabled{
    opacity: 1;
    cursor: not-allowed;
    background: #f3f4f6;
    color: #6b7280;
    border: 1px solid #e5e7eb;
    box-shadow: none;
}

/* ===============================
   CART
=============================== */
.cart-overlay{
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    z-index: 999;
}

.cart-container{
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: min(85vh, 760px);
    background: #111;
    color: #fff;
    z-index: 1000;
    border-radius: 16px 16px 0 0;
    display: flex;
    flex-direction: column;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cart-container.active{
    transform: translateY(0);
}

.cart-header{
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    padding: 14px 16px;
    border-bottom: 1px solid #2a2a2a;
}

.cart-header h2{
    font-size: 18px;
}

.cart-close{
    background: none;
    border: none;
    color: #f7b413;
    font-size: 22px;
    cursor: pointer;
}

.cart-items{
    flex: 1;
    overflow-y: auto;
    padding: 12px 16px;
}

.cart-item{
    display: flex;
    gap: 10px;
    padding: 12px 0;
    border-bottom: 1px solid #2a2a2a;
}

.cart-item-image img{
    width: 64px;
    height: 64px;
    border-radius: 8px;
    object-fit: cover;
}

.cart-item-details{
    flex: 1;
    margin-left: 10px;
    min-width: 0;
}

.item-name{
    font-size: 14px;
    line-height: 1.35;
}

.item-price{
    font-size: 13px;
    color: #f7b413;
    margin: 4px 0 6px;
}

.quantity-controls{
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.qty-btn{
    width: 26px;
    height: 26px;
    border-radius: 6px;
    border: none;
    background: #222;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
}

.item-qty{
    font-size: 13px;
}

.remove-item{
    background: none;
    border: none;
    color: #ff4d4d;
    font-size: 16px;
    cursor: pointer;
}

.cart-footer{
    padding: 14px 16px;
    border-top: 1px solid #2a2a2a;
}

.cart-summary{
    display: flex;
    justify-content: space-between;
    gap: 12px;
    font-size: 15px;
    margin-bottom: 10px;
}

.cart-total{
    color: #f7b413;
    font-weight: 600;
}

.checkout-btn{
    width: 100%;
    padding: 12px;
    border-radius: 10px;
    border: none;
    background: #f7b413;
    color: #111;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
}

/* ===============================
   ORDER SUMMARY
=============================== */
.order-summary-overlay{
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 9999;
}

.order-summary{
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    width: calc(100% - 24px);
    max-width: 400px;
    padding: 20px;
    z-index: 10000;
    border-radius: 12px;
    max-height: 85vh;
    overflow-y: auto;
}

.summary-item{
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.confirm-payment-btn{
    width: 100%;
    padding: 12px;
    border-radius: 8px;
    border: none;
    background: #f7b413;
    color: #111;
    font-weight: 600;
    cursor: pointer;
}

/* ===============================
   PAYMENT SUCCESSFUL
=============================== */
.success-card{
    background: #ffffff;
    max-width: 420px;
    width: calc(100% - 24px);
    padding: 2rem 1.25rem;
    border-radius: 14px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.check-icon{
    width: 90px;
    height: 90px;
    background: #22c55e;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    margin: 0 auto 1.5rem;
}

.success-card h1{
    color: #16a34a;
    margin-bottom: 0.5rem;
    font-size: clamp(24px, 4vw, 32px);
}

.success-card p{
    color: #555;
    margin-bottom: 2rem;
    line-height: 1.5;
}

.home-btn{
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: #16a34a;
    color: #fff;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.3s ease;
}

.home-btn:hover{
    background: #15803d;
}

/* ===============================
   BACK ICON
=============================== */
.back-icon{
    position: fixed;
    top: 20px;
    left: 20px;
    background: transparent;
    border: none;
    color: #f7b413;
    font-size: 20px;
    font-weight: 600;
    cursor: pointer;
    z-index: 1000;
    display: flex;
    align-items: center;
    gap: 6px;
}

.back-icon:hover{
    opacity: 0.8;
}

/* ===============================
   FEEDBACK
=============================== */
body.feedback-body{
    margin: 0;
    background: #f6f6f6;
}

.feedback-header{
    margin-top: 50px;
    text-align: center;
    padding: 20px 10px;
}

.feedback-header h2{
    color: #f7b413;
    margin-bottom: 2px;
}

.feedback-header small{
    color: #666;
}

.feedback-card{
    background: #fff;
    margin: 0 auto 30px;
    width: calc(100% - 32px);
    max-width: 540px;
    padding: 20px;
    border-radius: 14px;
    border: 1.5px solid #f7b413;
}

.feedback-card h3{
    text-align: center;
    margin-bottom: 4px;
}

.subtitle{
    text-align: center;
    font-size: 13px;
    color: #666;
    margin-bottom: 20px;
}

.star-rating{
    display: flex;
    justify-content: center;
    gap: 8px;
    margin: 15px 0;
    flex-wrap: wrap;
}

.star{
    font-size: 32px;
    cursor: pointer;
    color: #ddd;
    transition: color 0.2s, transform 0.2s;
}

.star.active{
    color: #f7b413;
}

.star:hover{
    transform: scale(1.1);
}

label{
    font-size: 13px;
    font-weight: 600;
}

label span{
    color: red;
}

input,
textarea{
    width: 100%;
    padding: 12px;
    margin: 6px 0 16px;
    border-radius: 10px;
    border: 1.5px solid #f7b413;
    outline: none;
    font-size: 14px;
}

textarea{
    resize: none;
    min-height: 90px;
}

.submit-btn{
    width: 100%;
    background: #f7b413;
    color: #000;
    border: none;
    padding: 14px;
    border-radius: 14px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

/* ===============================
   MODAL
=============================== */
.modal-overlay{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 999;
    padding: 16px;
}

.modal-box{
    background: #fff;
    width: 100%;
    max-width: 360px;
    padding: 30px 20px;
    border-radius: 16px;
    text-align: center;
    animation: scaleIn 0.3s ease;
}

.modal-icon{
    font-size: 40px;
    color: #f7b413;
    margin-bottom: 10px;
}

.modal-box h3{
    margin-bottom: 10px;
    color: #333;
}

.modal-box p{
    font-size: 14px;
    color: #666;
    line-height: 1.5;
}

.modal-btn{
    margin-top: 20px;
    width: 100%;
    padding: 12px;
    background: #f7b413;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    color: #fff;
    cursor: pointer;
}

.modal-btn:hover{
    background: #e5a900;
}

@keyframes scaleIn{
    from{ transform: scale(0.8); opacity: 0; }
    to{ transform: scale(1); opacity: 1; }
}

/* ===============================
   CART BADGE
=============================== */
.cart-badge{
    position: absolute;
    top: -6px;
    right: -6px;
    min-width: 18px;
    height: 18px;
    padding: 0 5px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
    background: #ef4444;
    color: #fff;
    border: 2px solid #fff;
}

.cart-badge.hidden{
    display: none !important;
}

/* ===============================
   STOCK / UNAVAILABLE
=============================== */
.stock-badge{
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 6px;
    padding: 6px 10px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    color: #991b1b;
    background: #fee2e2;
    border: 1px solid #fecaca;
    width: fit-content;
}

.stock-badge::before{
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: #ef4444;
}

.stock-badge-ok{
    background: #e8f7ec;
    color: #15803d;
}

.stock-badge-low{
    background: #fff7d6;
    color: #b45309;
}

.menu-item.is-unavailable{
    opacity: 0.92;
}

.menu-item.is-unavailable .menu-item-image{
    filter: grayscale(40%);
    opacity: 0.95;
}

/* ===============================
   QR SPLASH LOADER
=============================== */
.qr-splash{
    position: fixed;
    inset: 0;
    background: #ffffff;
    display: grid;
    place-items: center;
    z-index: 99999;
    opacity: 1;
    pointer-events: all;
    transition: opacity .35s ease;
}

.qr-splash.is-hidden{
    opacity: 0;
    pointer-events: none;
}

.qr-splash-card{
    width: min(92vw, 420px);
    border-radius: 18px;
    padding: 28px 22px;
    text-align: center;
}

.qr-splash-logo{
    width: 170px;
    height: auto;
    margin: 0 auto 14px auto;
    display: block;
}

.qr-splash-title{
    font-weight: 900;
    font-size: 18px;
    margin: 6px 0 10px;
    color: #111827;
}

.qr-splash-sub{
    font-size: 13px;
    color: #6b7280;
    margin-bottom: 18px;
}

.qr-splash-dots{
    display: flex;
    justify-content: center;
    gap: 8px;
}

.qr-splash-dots span{
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: #F7B413;
    opacity: .35;
    animation: qrDot 1s infinite ease-in-out;
}

.qr-splash-dots span:nth-child(2){
    animation-delay: .15s;
}

.qr-splash-dots span:nth-child(3){
    animation-delay: .30s;
}

@keyframes qrDot{
    0%,100%{ transform: translateY(0); opacity: .35; }
    50%{ transform: translateY(-6px); opacity: 1; }
}

/* ===============================
   TABLE OPTIONS PAGE
=============================== */
.to-wrap{
    min-height: 100vh;
    padding: 18px 14px 36px;
    background:
        radial-gradient(900px 450px at 20% 0%, rgba(247,180,19,.22), transparent 55%),
        radial-gradient(900px 450px at 90% 30%, rgba(17,24,39,.10), transparent 60%),
        #f3f4f6;
}

.to-card{
    width: min(94vw, 430px);
    margin: 0 auto;
    background: rgba(255,255,255,.92);
    backdrop-filter: blur(10px);
    border-radius: 22px;
    border: 1px solid rgba(17,24,39,.06);
    box-shadow: 0 18px 60px rgba(0,0,0,.10);
    overflow: hidden;
}

.to-header{
    padding: 18px 16px 12px;
    border-bottom: 1px solid rgba(17,24,39,.06);
}

.to-title{
    font-size: 18px;
    font-weight: 900;
    color: #111827;
    margin: 0;
    letter-spacing: -0.2px;
}

.to-sub{
    margin: 6px 0 10px;
    font-size: 12px;
    color: #6b7280;
    line-height: 1.35;
}

.to-chips{
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 10px;
}

.to-chip{
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    padding: 8px 10px;
    border-radius: 999px;
    background: rgba(249,250,251,.9);
    border: 1px solid rgba(17,24,39,.06);
    color: #111827;
}

.to-dot{
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: #16a34a;
    box-shadow: 0 0 0 4px rgba(22,163,74,.10);
}

.to-dot.busy{
    background: #ef4444;
    box-shadow: 0 0 0 4px rgba(239,68,68,.10);
}

.to-body{
    padding: 14px 16px 16px;
    display: grid;
    gap: 12px;
}

.to-section{
    border-radius: 18px;
    padding: 14px;
    background: rgba(255,255,255,.95);
    border: 1px solid rgba(17,24,39,.06);
    box-shadow: 0 10px 26px rgba(0,0,0,.06);
}

.to-section h3{
    margin: 0;
    font-size: 14px;
    font-weight: 900;
    color: #111827;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.to-badge{
    font-size: 11px;
    padding: 5px 10px;
    border-radius: 999px;
    background: rgba(255,247,237,.95);
    border: 1px solid rgba(253,186,116,.65);
    color: #9a3412;
    font-weight: 900;
}

.to-help{
    margin: 8px 0 12px;
    font-size: 12px;
    color: #6b7280;
    line-height: 1.5;
}

.to-btn{
    border: 0;
    width: 100%;
    border-radius: 14px;
    padding: 12px 14px;
    font-weight: 900;
    font-size: 14px;
    cursor: pointer;
    transition: transform .08s ease, box-shadow .2s ease, filter .2s ease;
}

.to-btn:active{
    transform: translateY(1px);
}

.to-btn.primary{
    background: #F7B413;
    color: #111827;
    box-shadow: 0 12px 26px rgba(247,180,19,.28);
}

.to-btn.primary:hover{
    filter: brightness(.98);
}

.to-btn.dark{
    background: linear-gradient(180deg, #111827, #0b1220);
    color: #fff;
    box-shadow: 0 12px 26px rgba(17,24,39,.22);
}

.to-list{
    display: grid;
    gap: 10px;
    margin-top: 10px;
}

.to-check{
    display: grid;
    grid-template-columns: 24px 1fr auto;
    align-items: center;
    gap: 10px;
    border-radius: 14px;
    padding: 12px 12px;
    background: rgba(249,250,251,.95);
    border: 1px solid rgba(17,24,39,.06);
}

.to-check input{
    width: 18px;
    height: 18px;
    accent-color: #F7B413;
    margin: 0;
}

.to-check label{
    font-size: 13px;
    color: #111827;
    font-weight: 900;
    margin: 0;
}

.to-muted{
    font-size: 11px;
    color: #6b7280;
    font-weight: 800;
}

/* =========================
   CATEGORY SCROLLER
========================= */
.fp-cats-wrap{
    position: relative;
    width: 100%;
    max-width: 100%;
    margin: 10px 0 18px;
    padding: 0 12px;
}

.fp-cats{
    display: flex;
    flex-wrap: nowrap;
    gap: 12px;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 6px 44px 10px;
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    max-width: 100%;
    scrollbar-width: none;
}

.fp-cats::-webkit-scrollbar{
    display: none;
}

.fp-cat{
    flex: 0 0 auto;
    scroll-snap-align: start;
    text-align: center;
    transform: scale(1);
    transition: transform .18s ease;
}

.fp-cat.is-active{
    transform: scale(1.08);
}

.fp-cat-card{
    width: 76px;
    height: 52px;
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 8px 20px rgba(0,0,0,0.10);
    display: grid;
    place-items: center;
    overflow: hidden;
}

.fp-cat-card img{
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 6px;
}

.fp-cat-label{
    margin-top: 6px;
    font-size: 12px;
    font-weight: 700;
    color: #F7B413;
    line-height: 1.1;
    white-space: nowrap;
}

.fp-cat.is-active .fp-cat-card{
    border: 2px solid #F7B413;
}

.fp-scroll-btn{
    position: absolute;
    top: 46%;
    transform: translateY(-50%);
    width: 34px;
    height: 34px;
    border-radius: 999px;
    border: 0;
    background: #ffffff;
    color: #000000;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 900;
    line-height: 1;
    box-shadow: 0 4px 10px rgba(0,0,0,.15);
    z-index: 6;
    cursor: pointer;
    transition: transform .12s ease, box-shadow .12s ease;
}

.fp-scroll-btn:active{
    transform: translateY(-50%) scale(0.96);
    box-shadow: 0 3px 8px rgba(0,0,0,.15);
}

.fp-left{
    left: 6px;
}

.fp-right{
    right: 6px;
}

/* ===============================
   RESPONSIVE ADJUSTMENTS
=============================== */
@media (max-width: 430px){
    .fp-cats{
        padding: 6px 42px 10px;
    }

    .fp-scroll-btn{
        width: 32px;
        height: 32px;
        font-size: 20px;
    }
}

@media (max-width: 380px){
    .navbar{
        padding: 14px 12px;
    }

    .all-day-breakfast-container,
    .main-courses-container,
    .pasta-container,
    .unlimited-premium-container,
    .chicken-wings-container,
    .chicken-chops-container,
    .frappuccino-container,
    .coffee-based-container,
    .milk-based-container,
    .overload-container,
    .solo-mini-container,
    .snacks-container{
        margin-left: 12px;
        margin-right: 12px;
    }

    .menu-item{
        grid-template-columns: 96px 1fr;
        padding: 10px;
        gap: 10px;
    }

    .menu-item-image{
        width: 96px;
        height: 84px;
    }

    .menu-item-name{
        font-size: 15px;
    }

    .menu-item-description{
        font-size: 11px;
    }

    .add-to-cart-btn{
        min-width: 84px;
        font-size: 11px;
    }

    .success-card{
        padding: 1.5rem 1rem;
    }
}

@media (min-width: 600px){
    .welcome-container{
        max-width: 560px;
    }

    .logo img{
        width: min(60vw, 360px);
    }

    .tag-line-image img{
        width: min(45vw, 240px);
    }

    .feedback-card{
        padding: 24px;
    }

    .order-summary{
        padding: 24px;
    }
}

@media (min-width: 768px){
    .navbar{
        padding: 20px 24px 0;
    }

    .all-day-breakfast-container,
    .main-courses-container,
    .pasta-container,
    .unlimited-premium-container,
    .chicken-wings-container,
    .chicken-chops-container,
    .frappuccino-container,
    .coffee-based-container,
    .milk-based-container,
    .overload-container,
    .solo-mini-container,
    .snacks-container{
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 18px;
        margin-left: 24px;
        margin-right: 24px;
    }

    .menu-item{
        min-height: 150px;
    }

    .success-card{
        padding: 2.25rem;
    }

    .fp-cats-wrap{
        padding: 0 20px;
    }

    .fp-cats{
        gap: 18px;
        padding: 8px 52px 14px;
    }

    .fp-cat-card{
        width: 110px;
        height: 76px;
        border-radius: 16px;
    }

    .fp-cat-card img{
        padding: 8px;
    }

    .fp-cat-label{
        margin-top: 8px;
        font-size: 14px;
        font-weight: 800;
    }

    .fp-scroll-btn{
        width: 38px;
        height: 38px;
        font-size: 24px;
    }
}

@media (min-width: 1024px){
    .all-day-breakfast-container,
    .main-courses-container,
    .pasta-container,
    .unlimited-premium-container,
    .chicken-wings-container,
    .chicken-chops-container,
    .frappuccino-container,
    .coffee-based-container,
    .milk-based-container,
    .overload-container,
    .solo-mini-container,
    .snacks-container{
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 20px;
        margin-left: 32px;
        margin-right: 32px;
    }

    .welcome-container{
        max-width: 640px;
    }

    .logo img{
        width: 380px;
    }

    .tag-line-image img{
        width: 250px;
    }

    .fp-cats-wrap{
        padding: 0 24px;
        max-width: 1200px;
        margin: 16px auto 24px;
    }

    .fp-cats{
        justify-content: center;
        flex-wrap: wrap;
        overflow: visible;
        padding: 0;
        gap: 22px;
        scroll-snap-type: none;
    }

    .fp-cat{
        flex: 0 0 auto;
    }

    .fp-cat-card{
        width: 128px;
        height: 88px;
        border-radius: 18px;
    }

    .fp-cat-card img{
        padding: 10px;
    }

    .fp-cat-label{
        margin-top: 10px;
        font-size: 15px;
        font-weight: 800;
    }

    .fp-scroll-btn{
        display: none !important;
    }
}