.menu-back-heading {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 0.875rem;
    position: fixed;
    top: 0;
    /* margin-bottom: 100px; */
    /* background-color: white !important; */
    width: 100% !important;
    z-index: 1000;
    padding: 10px 0px 10px 10px;
}

.menu-back-heading.restaurant-header {
    background-color: #b96b42 !important;
}

.wishlist-div{
    margin-right: 20px;
    background-color: white;
    padding: 0 3px;
    border-radius: 50%;
}
body {
  /* background-color: #f4f7fc !important; */
  font-family: 'Roboto', 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  
  margin: 0 !important;
  padding: 0 !important;
  overflow-y: hidden !important;
}

/* Hide scrollbar for desktop */
@media screen and (min-width: 769px) {
  /* Hide scrollbar for Chrome, Safari and Opera */
  *::-webkit-scrollbar {
    display: none;
  }

  /* Hide scrollbar for IE, Edge and Firefox */
  * {
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
  }
}

/* iOS specific fixes */
@supports (-webkit-touch-callout: none) {
  /* iOS specific styles */
  body {
    -webkit-text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased;
    -webkit-tap-highlight-color: transparent;
  }

  /* Fix for iOS Safari viewport height issues */
  .ios-safe-area {
    padding-top: env(safe-area-inset-top);
    padding-bottom: env(safe-area-inset-bottom);
    padding-left: env(safe-area-inset-left);
    padding-right: env(safe-area-inset-right);
  }

  /* Fix for iOS scrolling momentum */
  * {
    -webkit-overflow-scrolling: touch;
  }

  /* Handle dynamic viewport height changes when keyboard opens */
  .mobile-keyboard-handler {
    min-height: 100dvh;
    min-height: 100vh; /* fallback for browsers that don't support dvh */
  }

  /* Ensure fixed elements stay in place when keyboard opens */
  .fixed-header {
    position: fixed !important;
    z-index: 1000 !important;
  }

  .fixed-bottom {
    position: fixed !important;
    bottom: 0 !important;
    z-index: 1000 !important;
  }
}

   /* ANDROID / MOBILE SPECIFIC */
   @media screen and (max-width: 768px) {
    /* Ensure text and font scaling doesn't break layout */
    body {
      -webkit-text-size-adjust: 100%;
      text-size-adjust: 100%;
      -webkit-font-smoothing: antialiased;
    }
  
    /* Smooth scrolling for Android */
    * {
      -webkit-overflow-scrolling: touch; 
    }
  
    .mobile-keyboard-handler {
      min-height: 100vh; /* fallback for older Android browsers */
      height: 100vh;
    }
  
    .fixed-header {
      position: fixed !important;
      top: 0 !important;
      left: 0 !important;
      right: 0 !important;
      z-index: 1000 !important;
    }
  
    /* Fixed bottom elements (search bars, buttons) */
    .fixed-bottom {
      position: fixed !important;
      bottom: max(0px, env(keyboard-inset-height, 0px)) !important; /* adjusts above keyboard */
      left: 0;
      right: 0;
      z-index: 1000 !important;
      transition: bottom 0.3s ease-in-out;
    }
  
    /* Optional: padding for “safe areas” on modern devices */
    .android-safe-area {
      padding-top: env(safe-area-inset-top, 0px);
      padding-bottom: env(safe-area-inset-bottom, 0px);
      padding-left: env(safe-area-inset-left, 0px);
      padding-right: env(safe-area-inset-right, 0px);
    }
  }
  
.netwrok-status-offline {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 1rem;
}

.additional-methods {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  background-color: #fff;
  border-bottom: 1px solid #f0f0f0;
  margin: 0 !important;
}
.additional-method-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  margin-right: 12px;
}

.card-title-1 {
  font-size: 14px;
  font-weight: 500;
  margin: 0;
  color: #333;
}

.card-title-2 {
  font-size: 12px;
  font-weight: 400;
  margin: 0;
  margin-top: 2px;
  color: #666;
}

.additional-method-text-view {
  display: flex;
  flex: 1;
  flex-direction: column;
}

.additional-method-icon svg {
  fill: #666;
  font-size: 1.25rem;
  height: 24px;
  width: 24px;
}

.additional-method-image-icon {
  height: 24px;
  width: 24px;
  object-fit: contain;
}
.MuiSnackbar-root{
    z-index: 100000 !important;
    margin-top: 60px !important;
}
.add-card {
    flex: 1;
    display: flex;
    align-items: center;
    margin:0.5rem;
}
.add-card-btn {
    display: flex;
    flex: 1;
    flex-direction: row;
    align-items: center;
    cursor: pointer;
}

.payment-type {
    display: flex;
    flex: 1;
    flex-direction: column;
    margin: 3.5rem  0 1rem 0;
}

.saved-card {
    margin: 1rem;
    padding: .5rem;
    border-bottom: 1px solid #e5e5e5;
}

.cvv-pay-btn {
    display: flex;
    flex: 1;
    align-items: center;
    justify-content: flex-end;
}

.add-card-container {
    margin: 1rem;
}

.card-form-inputs {
    display: flex;
    flex-direction: column;
    width: 90vw;
    align-self: center;
    margin: 0.2rem 0;
}
.btn{
    margin:.5rem 1rem !important;
    /* padding: .2rem .5rem; */
    color:'#fff' !important;
    font-size: 14 !important;
    font-weight: 700 !important;
    background-color: #0f8241 !important;
}
.btn:hover{
    background-color: #0f8241 !important;
}
.upi-container{
    flex:1;
    display: flex;
    flex-direction: column;
    margin: 1rem 0;
}
.add-upi-container{
    display: flex;
    flex:1;
    flex-direction: column;
    padding:1rem;
}
.upi-app-card{
    display: flex;
    flex: 1;
    flex-direction: column;
    /* align-items: center; */
    /* justify-content: space-between; */
    margin:0.2rem 0;
}
.checkBoxRow{
    display: flex;
    flex:1;
    align-items: center;
    margin-bottom: 1rem;
}
.saved-vpa-card{
    display: flex;
    flex:1;
    align-items: center;
    justify-content: space-between;
    padding:0.5rem;
    margin:0.5rem;
}

.bankCard{
    display: flex;
    flex: 1;
    padding: 0.3rem;
    align-items: center;
    justify-content: space-between;
    margin: 0.5rem;
}
.container{
    flex:1;
    display: flex;
    padding:1rem;
    flex-direction: column;
}
.styled-btn:hover {
  background-color: none !important;
}

.product-card {
  /* margin-top: 2rem; */
  box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
  /* height: 16rem; */
  /* width: 12rem; */
  /* width: 200px; */
  background-color: #ffff;
  border-radius: 1rem;
  position: relative;
  border: 1px solid #b5d2ca;
}

.product-details {
  display: flex;
  flex-direction: column;
  width: 200px;

  border-radius: 14px;
}
.product-image-box {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 150px;
  height: 120px;
  padding-top: 0.5rem;
}

.product-image {
  /* height: 6rem; */
  /* width: 7rem; */
  height: 100%;
  width: 100%;
  object-fit: cover;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.prod-img {
  height: 100%;
  /* width: 100%; */
  /* margin-top: 25px; */
  width: 80%;
  object-fit: cover;
  border-top-left-radius: 1rem;
  border-top-right-radius: 1rem;
}

.product-discount {
  position: absolute;
  /* top: 1px;
  left: 5px; */
  height: 1.6rem;
  width: 4rem;
  /* background-color: #0f8241; */
  background-color: var(--discount-bg);
  color: #ffff !important;
  border-top-left-radius: 0.8rem;
  border-bottom-right-radius: 0.8rem;
}

.discount-details {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.discount-text {
  color: #ffff !important;
  font-size: 0.6rem !important;
  font-weight: 600 !important;
}

.product-wishlist {
  position: absolute;
  /* top: 2px;
  right: 15px; */
  top: 5px;
  right: 5px;
  height: 2rem;
  width: 2rem;
  border-radius: 50%;
  /* background-color: #f9f5f2; */
  background-color: black;
  /* visibility: hidden; */
}

.whishlist-details {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.wishlist-icon,
.wishlist-icon-added {
  /* color: #fe0000; */
  font-size: 1.2rem;
}

/* .product-name {
  padding: 0.6rem 0.6rem 0 0.6rem;
} */

.product-name-text {
  /* font-size: 0.8rem !important; */
  font-size: 12px !important;
  color: darkgrey !important;
  min-height: 20px !important;
  margin-top: 10px !important;
}

/* .product-description {
  padding: 0 0.6rem 0 0.6rem;
} */
.product-description-text {
  min-height: 40px !important;
  max-height: 40px !important;
  overflow: hidden !important;
  /* font-size: 0.8rem !important; */
  font-size: 12px !important;
  color: black;
}

/* .product-quantity {
  padding: 0.3rem 0 0 0.6rem;
} */

.product-quantity-text {
  /* font-size: 0.8rem !important; */
  font-size: 12px !important;
  color: black;
}

.product-price-details {
  /* padding: 0.5rem 0 0.6rem 0.6rem; */
  padding: 0.2rem 0rem 0.4rem 0rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}

.price-description {
  display: flex;
  flex-direction: column;
  /* gap: 0.3rem; */
}

.price-description-not-applicable {
  /* font-size: 0.8rem !important; */
  font-size: 12px !important;
  color: darkgrey !important;
  text-decoration: line-through !important;
}

.price-description-applicable {
  /* font-size: 0.9rem !important; */
  font-size: 13px !important;
  font-weight: bold !important;
  color: black !important;
}

.product-add-btn {
  /* padding: 0 0 0 0.6rem; */
  font-weight: bold;
  /* background-color: #e7f3ec !important; */
}

.add-btn {
  background-color: #e7f3ec !important;
  color: #0f8241 !important;
  position: relative !important;
  right: 0.1rem !important;
  top: 0.2rem !important;
  width: 6rem !important;
  border-radius: 0.5rem !important;
  padding: 2.5px 8px !important;
  /* border: 1px solid rgb(49 134 22) !important; */
}

.product-qty-counter {
  /* background-color: rgb(173, 26, 25); */
  width: 6rem !important;
  display: flex;
  justify-content: space-around;
  align-items: center;
  border-radius: 10px !important;
  position: relative;
  right: 0.5rem !important;
  top: 0.2rem !important;
  gap: 10px;
  color: #000000;
  padding: 2px 4px;
  vertical-align: middle;
  border: 1px solid #e6e6e6;
}

.decrement-qty,
.increment-qty {
  color: #b96b42;
}

.product-qty {
  color: #000000 !important;
  font-size: 10px !important;
  font-weight: 500;
}

.alice-carousel__prev-btn,
.alice-carousel__next-btn {
  display: none !important;
}
.alice-carousel__prev-btn-item,
.alice-carousel__next-btn-item {
  display: none;
}

.alice-carousel__dots {
  margin: 1rem 0 0 0 !important;
}

/* .carousel { */
/* margin-top: 8rem; */
/* margin-top: 6rem; */
/* margin-top: -132px; */
/* } */
.horizontal-product-card-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  padding: 0 0.6rem 0 0.6rem;
}

.variant-product-card {
  margin-top: 2rem;
  box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
  width: 100%;
  background-color: #ffff;
  border-radius: 1rem;
  position: relative;
  border: 1px solid #b5d2ca;
  /* height: 118px; */
}
.variant-product-card-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}
.variant-product-details {
  display: -webkit-flex;
  display: -ms-flexbox;
  flex-direction: row;
  width: 100%;
  padding: 5px;
}
.variant-product-image {
  object-fit: contain;
  display: flex;
  justify-content: center;
  align-items: center;
}
.variant-product-price-details {
  padding: 0.2rem 0rem 0.4rem 0rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}
.var-prod-img {
  border-top-left-radius: 1rem;
  border-top-right-radius: 1rem;
}
/* .product-qty-counter {
    background-color: #e7f3ec !important;
    width: 6rem !important;
    display: flex
;
    justify-content: space-around;
    align-items: center;
    border-radius: 1rem;
    position: relative;
    right: 0.5rem !important;
    top: -0.8rem !important;
} */
.variant-product-card.disabled {
  background-color: #f0f0f0;
}

.chip_display_box {
  display: flex;
  overflow-x: scroll;
  margin-bottom: 10px;
}
.chip_display_box::-webkit-scrollbar {
  display: none;
}
.product-list-container {
  /* height: calc(100vh - 48px); */
  overflow: scroll;
}
.product-list-container::-webkit-scrollbar {
  display: none;
}

/* display: grid;
padding: 1em;
display: grid;
grid-template-columns: repeat(2, 1fr);
align-items: center;
gap: 2.2em;
grid-template-columns: repeat(4); */

.custom-square-radio-container {
    display: flex;
  }
  
  .custom-square-radio {
    width: 20px;
    height: 20px;
    border: 2px solid #9d9d9d;
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    cursor: pointer;
    margin-right: 8px;
    position: relative;
    border-radius: 2px;
  }
  
  .custom-square-radio.checked {
    background-color: #fff;
  }
  
  .square-radio-content {
    position: absolute;
    top: -13px;
    right: -6px;
    font-size: 26px;
    color: #9d9d9d;
  }
  
  .custom-square-radio.checked .square-radio-content {
    display: block;
  }
  
  .loader-screen-position{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
  }

  .loader-gif{
    height:8rem
  }

  /* QR dine-in: custom green spinner */
  .qr-loader-spinner {
    width: 52px;
    height: 52px;
    border: 5px solid #e8f5e9;
    border-top-color: #2e7d32;
    border-radius: 50%;
    animation: qr-spin 0.8s linear infinite;
  }

  @keyframes qr-spin {
    to { transform: rotate(360deg); }
  }
.horizontal-product-card-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
}

.home {
  /* overflow-y: scroll; */
  height: 100%;
  background-color: #f5f5f5;
  /* background-color: #f4f7fc; */
  /* background-color: #e9fae9; */
  /* background-color: #eef4ee; */
  /* margin-bottom: 3.5rem; */
  /* margin-bottom: 0.5rem; */
  position: relative;
  z-index: 99999;
  /* background: linear-gradient(rgb(0, 0, 0) 5%, rgba(217, 217, 217, 1) 146%); */
}
.home::-webkit-scrollbar {
  display: none;
}

.header-top {
  display: flex;
  justify-items: center;
  align-items: center;
  /* justify-content: flex-end; */
  /* justify-content: space-between; */
  /* padding: 1rem; */
  padding: 0.5rem;
  margin-bottom: 10px;
  background-color: #2b3443;
  height: 64px;
  box-sizing: border-box;
}
.header-top-grocery {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem;
  background: #b96b42;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  border-radius: 0 !important;
}
.header-top-left {
  display: flex;
  align-items: center;
  margin-left: 20px;
}
.home-search {
  /* position: fixed; */
  top: 55px;
  padding: 0.5rem;
  z-index: 1000;
  /* width: 100%; */

  /* padding-top: 0.5rem; */
}

/* Parent Container - Responsive Grid */
.products-by-category {
  display: flex;
  gap: 12px;
  overflow-x: scroll;
  align-items: stretch;
}

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

.home-header {
  position: relative;
  width: 100%;
  z-index: 998;
  margin-top: 0;
  background-color: transparent;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
}
.home-header-background {
  position: relative;
}
.custom-slide {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.un-serviceable {
  padding: 0.5rem;
}

/* .end-footer {
  padding-bottom: 6rem !important;
  margin-top: 140px;
} */

/* left: 0; */
/* home-cart-view */
/* background-color: #f3f8ff; */
.home-cart-view {
  position: fixed;
  /* position: absolute; */
  /* top: 10px; */
  bottom: 50px;
  width: 100%;
  height: 13rem;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

/* .home-cart-view {
  position: absolute;
  bottom: 0;
  top: 1px;
  right: 0;

  width: 100%;
  height: 8rem;
  box-shadow: 0 -2px 4px rgba(0, 0, 0, 0.1);
} */

.home-cart-details {
  background: #b96b42;
  height: 4rem;
  width: 40% !important;
  border-radius: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.1rem;
  margin-left: 0.2rem;
  flex-wrap: wrap;
  box-shadow: 0 4px 12px rgba(185, 107, 66, 0.3);
}

.home-cart-amount-details {
  display: flex;
  gap: 0.5rem;
  margin-left: 1rem;
  position: relative;
  width: 50%;
}

.cart-icon {
  color: white !important;
}
.cart-line {
  height: 1.5rem;
  width: 0.2rem;
  background: white;
}

.home-cart-redirect {
  margin-right: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  flex: 1;
}

.home-total-cart-items {
  position: absolute;
  bottom: 1.2rem;
  left: 0.5rem;
  height: 1.2rem;
  width: 1.2rem;
  border-radius: 50%;
  background: red;
  display: flex;
  align-items: center;
  justify-content: center;
}

.header-top-right {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.store-icon {
  color: #b96b42 !important;
}

.store-modal {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 55%;
  width: 90%;
  /* background-color: white; */
  border-radius: 1rem;
  outline: none !important;
  padding: 1rem;
  padding: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  overflow: scroll;
}

.store-list-item {
  height: 5rem;
  width: 5rem;
  padding: 1rem;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  border-radius: 1rem;
  background-color: white;
  display: flex;
  justify-content: center;
  align-items: center;
}
.store-active {
  background: #b96b42 !important;
  color: #ffffff !important;
}

.cart-total-amount-saved {
  background-color: #9a5835;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: 1.2rem;
  border-radius: 1rem;
  width: 5rem;
}

.carousel-banner {
  /* margin-top: -235px !important; */
  margin-bottom: 10px;
  pointer-events: none; /* Prevents blocking interactions below */
  z-index: 2;
  position: relative;
}

.carousel-banner * {
  pointer-events: auto;
}

/* .carousel-banner {

  margin-top: -235px !important;
  margin-bottom: 55px;
} */
.home-content {
  background-color: #f5f5f5;
}
/* Tablets: 600px to 768px */
/* @media (max-width: 768px) and (min-width: 600px) {
  .carousel-banner {
    margin-bottom: 0px;
  }
} */
@media (max-width: 840px) and (min-width: 1280px) {
  .home-cart-details {
    background: #b96b42;
    height: 4rem;
    width: 34% !important;
    border-radius: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.1rem;
    margin-left: 0.2rem;
    flex-wrap: wrap;
  }
}

/* @media (max-width: 768px) and (min-width: 600px) {
} */
@media (max-width: 852px) and (min-width: 1280px) {
  .carousel-banner {
    margin-top: -162px;
  }
}

@media (max-width: 599px) and (min-width: 479px) {
  .cart-total-amount-saved {
    margin-left: 0px;
    width: 0rem;
  }
}
/* Mobile, medium and tablet devices: up to 768px */
@media (max-width: 768px) {
  .home-header {
    margin-top: 64px;
  }
}

/* Mobile devices: 320px to 480px */
@media (max-width: 480px) and (min-width: 320px) {
  .carousel-banner {
    margin-top: 0px !important;
    margin-bottom: 0px;
  }
  .home {
    margin-bottom: 0rem;
  }
  .home-cart-details {
    background: #b96b42;
    height: 4rem;
    width: 74% !important;
    border-radius: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.1rem;
    margin-left: 0.2rem;
    flex-wrap: wrap;
  }
  .cart-total-amount-saved {
    margin-left: 0.1rem;
  }
  .home-cart-view {
    width: 80%;
  }
}

@media (max-width: 540px) and (min-width: 720px) {
  .carousel-banner {
    margin-top: 55px;
  }
  .home-cart-view {
    width: 50%;
  }
}
@media (max-width: 375px) and (min-width: 667px) {
  .carousel-banner {
    margin-top: -55px;
  }
  .home-cart-view {
    width: 30%;
  }
}

@media (max-width: 344px) and (min-width: 479px) {
  .home-cart-details {
    width: 82% !important;
    flex-wrap: wrap;
  }
  .home-cart-view {
    width: 30%;
  }
}

/* Desktop: align Tags and Category with Banner padding */
@media (min-width: 769px) {
  .tags-section {
    padding: 0 15%;
  }

  .category-section {
    padding: 0 15%;
  }
}

/* for responsiveness */
@media (max-width: 600px) {
  .header-top {
    justify-content: space-between;
  }

  .cart-btn-items-img {
    height: 1.5rem !important;
    width: 1.5rem !important;
  }

  .cart-btn-items-btn {
    height: 1.5rem !important;
    width: 1.5rem !important;
  }
}


.new-home-ui__root {
  height: 100vh;          
  display: flex;
  flex-direction: column;
  width: 100vw;
  overflow: hidden;

  background-color: var(--Surface-White, #ffffff);
}

.new-home-ui__scroll-container {
  flex: 1 1 auto;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  min-height: 0;         
}

.new-home-ui__loader-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 40vh;
}

.new-home-ui__content-wrapper {
  width: 100%;
  padding-bottom: 1.5rem;
}

.new-home-ui__carousel-anchor {
  height: 0;
  width: 100%;
}

.new-home-ui__shimmer-wrapper {
  padding: 0;
  overflow: hidden;
  width: 100%;
}

.new-home-ui__shimmer-category-row {
  display: flex;
  gap: 0.75rem;
  padding: 1rem;
  overflow-x: hidden;
}

.new-home-ui__shimmer-section {
  padding: 0.5rem 12px;
  margin-top: 8px;
}

.new-home-ui__shimmer-cards-row {
  display: flex;
  gap: 12px;
  overflow-x: hidden;
}

.new-home-ui__shimmer-card {
  min-width: 160px;
  flex: 1 1 0;
  border-radius: 12px;
  overflow: hidden;
  background-color: #fff;
}

.new-home-ui__shimmer-card-body {
  padding: 8px;
}

.new-home-ui__shimmer-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 6px;
}

.new-home-ui__main-content {
  margin-bottom: 2rem;
  width: 100%;
}

.new-home-ui__category-section {
  width: 100%;
  padding: 12px 16px;
  box-sizing: border-box;
  background-color: #F5F3F0;
}

.new-home-ui__category-title {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text-Primary-1, #171717);
}

.new-home-ui__filter-section {
  width: 100%;
  padding: 8px 0;
  box-sizing: border-box;
}

.new-home-ui__not-serviceable {
  width: 100%;
  min-height: 60vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.new-home-ui__tags-container {
  display: flex;
  flex-direction: column;
  gap: 12px;

  padding: 16px 16px 12px;
}

.new-home-ui__tag-heading {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-Primary-1, #171717);
}

/* ─── Responsive: Tablet (601px – 1024px) */
@media (min-width: 601px) and (max-width: 1024px) {
  .new-home-ui__shimmer-card {
    min-width: 180px;
  }

  .new-home-ui__shimmer-section {
    padding: 0.5rem 20px;
  }
}

/* ─── Responsive: Desktop (1025px+)*/
@media (min-width: 1025px) {
  .new-home-ui__scroll-container {
    max-width: 1280px;
    margin: 0 auto;
    width: 100%;
  }

  .new-home-ui__shimmer-card {
    min-width: 200px;
  }

  .new-home-ui__shimmer-section {
    padding: 0.5rem 32px;
  }

  .new-home-ui__category-title {
    font-size: 1.125rem;
  }
}

/* ─── Responsive: Small Mobile (max 390px) */
@media (max-width: 390px) {
  .new-home-ui__shimmer-card {
    min-width: 140px;
  }

  .new-home-ui__shimmer-category-row {
    gap: 0.5rem;
    padding: 0.75rem;
  }
}
.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 16px;
  background-color: #2b3443;
  height: 80px;
  /* width: 100% !important; */
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
}

.header-wrapper {
  display: flex;
  justify-items: flex-start;
  align-items: center;
  gap: 0.25rem;
  margin-left: 6px;
  height: 64px;
}

.header-wrapper img {
  width: auto !important;
  height: 64px !important;
  aspect-ratio: auto;
  object-fit: contain;
}

.restro-title {
  font-size: 16px;
  font-weight: 600;
  color: white;
  /* color: "black"; */
  /* font-family: Arial, Helvetica, sans-serif; */
}

.heading-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex: 1;
}

.header-navbar-nav-icon {
  color: #ffffff !important;
}

/* for responsiveness */
@media (max-width: 600px) {
  .header-wrapper {
    margin-left: -0.25rem;
  }

  .restro-title {
    margin: 0;
  }

  .header-wrapper img {
    width: 100px !important;
    height: 64px !important;
    aspect-ratio: auto;
    object-fit: contain;
  }

  .heading-right {
    flex: none;
  }

  .header-navbar-nav-icon {
    min-width: auto !important;
    padding: 0 0.5rem !important;
  }
}
.repeat-order-drawer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  /* font-family: sans-serif; */
  gap: 5px;
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 10px;
  margin-bottom: 12px;
}
.addon-title-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.addon-title {
  /* font-family: monospace; */
  font-weight: 500;
  font-size: 17px;
}
.box-container {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 12px;
  flex: 1;
  min-width: 220px;
}
.box-container-quantity {
  display: flex;
  justify-content: center;
  align-items: center;
  /* background: black; */
  border-radius: 4px;
  padding: 5px;
  gap: 15px;
  border: 1px solid #e6e6e6;
}
.add-btn-addon {
  display: flex;
  justify-content: center;
  align-items: center;
  color: red;
  font-size: 14px;
  font-weight: 700;
  display: block;
  margin: 0 auto;
  margin-top: 16px;
}
.restro-product-image-addon {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 6px;
}
@media (max-width: 600px) {
  /* .box-container {
    flex-direction: column;
    align-items: flex-start;
  } */

  .box-container-quantity {
    margin-top: 8px;
  }
}

.customize-heading {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid #d3d3d3b3;

  box-shadow: 0 2px 6px rgb(187 178 157 / 40%);
  border-radius: 4px;
}
.customize-title-image-wrapper {
  padding-left: 12px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 12px;
}
.customize-heading-title {
  /* font-family: sans-serif; */
  font-weight: 600;
  font-size: 16px;
}
.additional-note-title {
  /* font-family: sans-serif; */
  font-weight: 600;
  font-size: 12px;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
}
/* .customize-product-qty-counter {
  background-color: black !important;
  width: 30%;
  display: flex;
  justify-content: space-around;
  align-items: center;
  border-radius: 10px;
  position: relative;
  right: 0.5rem !important;
  top: 0.2rem !important;
  gap: 10px;
  color: white;
  padding: 6px;
} */
.customize-product-qty-counter {
  /* background-color: rgb(173, 26, 25); */
  width: 6rem !important;
  display: flex;
  justify-content: space-around;
  align-items: center;
  border-radius: 10px !important;
  position: relative;
  right: 0.5rem !important;
  top: 0.2rem !important;
  gap: 10px;
  color: #b96b42;
  padding: 2px 4px;
  vertical-align: middle;
  border: 1px solid #b96b42;
}
.added-qty {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
}
.product-quantity {
  color: #b96b42 !important;
  font-size: 0.9rem !important;
}
.addon-title-data {
  /* font-family: sans-serif; */
  font-weight: 400;
  font-size: 12px;
  line-height: 100%;
  letter-spacing: 0%;
  /* text-align: center; */
  color: #111;
}
.checkbox-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex: 1;
}
.checkbox-inner-data {
  gap: 12px;
  display: flex;
  justify-items: center;
  align-items: center;
}
.addon-button-container {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
  padding: 7px;
  border-radius: 9px;
  margin-top: 13px;
}
.button-add-on {
  color: white !important;
  background: #b96b42 !important;
  font-weight: 700 !important;
  width: 60%;
}

.restro-product-name {
  /* font-family: sans-serif; */
  font-weight: 700;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0;
  text-align: left;
}
.restro-product-description {
  /* font-family: sans-serif; */
  font-weight: 400;
  font-size: 1rem;
  /* line-height: 130%; */
  /* letter-spacing: 0; */
}
.restro-product-image {
  border-radius: 8px;
  object-fit: contain;
}
.restro-product-header {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: flex-start;
}
.restro-product-additional-info {
  /* font-family: sans-serif; */
  font-weight: 700;
  font-size: 1rem;
  /* line-height: 100%;
  letter-spacing: 0%; */
  text-align: center;
  margin-bottom: 0;
}
.restro-product-additional-info-box {
  display: flex;
  align-items: flex-start;
  justify-content: left;
  gap: 5px;
  padding: 0.2rem;
  border-radius: 0.5rem;
}
.restro-product-additional-info-box p {
  margin: 0;
}
.restro-product-additional-customization {
  padding: 0.2rem;
  border-radius: 0.5rem;
}
.restro-product-description-info {
  /* font-family: sans-serif; */
  font-weight: 600;
  font-size: 14px;
  line-height: 130%;
  letter-spacing: 0px;
  color: #333333;
}
.customization-title {
  /* font-family: sans-serif; */
  font-weight: 700;
  font-size: 12;
  /* line-height: 100%;
  letter-spacing: 0%; */
  text-align: left;
  margin-bottom: 0.25rem;
}
.restro-product-customization-size-item {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin: 16px 16px 12px 15px;
  margin: 12px 0;
  gap: 12px;
}
.restro-customize-font {
  /* font-family: sans-serif; */
  font-weight: 600;
  font-size: 12px;
  /* line-height: 100%;
  letter-spacing: 0%;
  text-align: center; */
}
.restro-product-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem;
  border-top: 1px solid #e0e0e0;
}
.custom-title {
  color: #91acc2;
  /* font-family: sans-serif; */
  font-weight: 500;
  cursor: pointer;
}
.add-cooking-title {
  /* font-family: sans-serif; */
  font-weight: 500;
  font-size: 14px;
  /* line-height: 100%;
  letter-spacing: 0%; */
  text-align: left;
}
/* .drawer-page {
  margin: 10px !important;
} */
.detail-page-tooping {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex: 1;
}
.details-radio-items {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.drawer-btn-wrapper-par {
  /* bottom: 1rem !important; */
  /* to show above the bottom notch and inside safe area */
  bottom: calc(16px + env(safe-area-inset-bottom)) !important;
  left: 1rem;
  right: 1rem;
  width: auto !important;
  background-color: #ffffff;
  gap: 0.5rem;
  padding: 0.5rem;
  z-index: 10001;
}

.drawer-qty-btn-par {
  left: 0;
  top: 0 !important;
  flex: 1;
  padding: 4px;
}

.drawer-add-btn-1 {
  flex: 1.5;
}

.desc-drawer-required-text {
  font-weight: normal;
  color: lightgray;
  font-size: 0.8em;
}

/* Tablets: 600px to 768px */
@media (max-width: 860px) and (min-width: 800px),
  (max-width: 768px) and (min-width: 600px),
  (max-width: 599px) and (min-width: 540px),
  (max-width: 480px) and (min-width: 320px),
  (max-width: 360px) and (min-width: 321px) {
  .restro-product-image {
    border-radius: 8px;
    object-fit: cover;
  }
}

@media (max-width: 1024px) {
  .restro-product-image {
    object-fit: cover !important;
    height: 180px !important;
  }
}

.MuiModal-root.MuiDrawer-root {
  z-index: 1500 !important;
}
.custom-heading-position {
  /* position: sticky !important; */
  display: flex;
  width: auto;
  box-sizing: border-box;
  position: fixed !important;
  top: 3.9rem;
  /* margin-bottom: 2rem !important; */
  
  background-color: #b96b42 !important;
}

.menulist-no-product {
  /* margin-top: 2rem; */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-size: small;
  font-weight: 400;
  color: #978585;
}

.add-button-plus-icon-1 {
  position: absolute;
  top: -6px;
  right: 3px;
  font-weight: 400;
  font-size: 1.25rem;
}

.customisable-button-text-1 {
  font-size: 0.8rem;
  margin-top: 1.15rem;
}

.customisable-button-not-img {
  position: absolute;
  top: 3.25rem;
  margin-top: 0rem !important;
}

.item-cart-inc-dsc-btn {
  display: flex;
  align-items: center;
  justify-content: center;
}

.item-card-img-btn-parent {
  width: 140px;
  min-height: 180px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.item-cart-btn-2 {
  width: 98px !important;
  font-weight: 600;
  border-radius: 6px !important;
  font-size: 1rem;
  padding: 2px !important;
  background-color: #f5e6de;
  border: 1px solid #b96b42;
  left: 50%;
  transform: translateX(-50%);
  right: 0 !important;
  top: 120px !important;
  position: absolute;
  box-sizing: border-box;
  height: 34px;
}

.item-cart-btn-2-not-img {
  top: 1rem !important;
}

.item-cart-btn-prod-qty {
  color: #b96b42 !important;
  font-size: 1rem !important;
}

.item-card-icon-btn-par {
  height: 32px;
  width: 32px;
  border: 1px solid lightgrey !important;
  border-radius: 50% !important;
}

.item-list-no-more-par {
  margin: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Mobile-specific fixes for iOS */
@media screen and (max-width: 768px) {
  .custom-heading-position {
    /* top: 0 !important; */
    background-color: #b96b42 !important;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  }

  /* Fix for iOS filter chips horizontal scrolling */
  .MuiBox-root[style*="overflowX"] {
    -webkit-overflow-scrolling: touch;
  }
}
.filter-chips-container-scroll {
  overflow-x: auto;
  height: 100vh;
}
.share-btn {
  font-size: 12px;
  margin-top: 4px;
  color: #333;
  /* font-family: sans-serif; */
}
.copy-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 12px;
  border: 1px solid rgba(62, 174, 196, 0.187);
  padding: 0.5rem;
  /* font-family: sans-serif; */
  border-radius: 0.5rem;
}

.clear-div {
  position: absolute;
  top: 14px;
  right: 10px;
  color: darkgray;
  cursor: pointer;
  z-index: 10;
}

.menulist-name-text {
  color: #000000 !important;
  font-size: 17px !important;
  font-weight: 500 !important;
  /* font-family: sans-serif !important; */
  padding: 12px;
}
.add-icon {
  background-color: white;
  border-radius: 50%;
}
.common {
  display: flex;
  align-items: center;
}
.menu-items-wrapper {
  justify-content: center;
  gap: 4px;
}
.menu-items-container {
  justify-content: space-between;
}
.check {
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
}
.open-product-listing {
  cursor: pointer;
}
.menulist-dialog-container {
  position: absolute;
  bottom: 130px;
  right: 10px;
  margin: 0;
  width: 450px;
  border-radius: 8px;
  background-color: #ffffff;
  color: #000000;
}

@media (max-width: 344px) and (min-width: 479px) {
  .menulist-name-text {
    color: #000000 !important;
    font-size: 13px !important;
    font-weight: 400 !important;
    /* font-family: sans-serif !important; */
    padding: 7px;
  }
  .menulist-dialog-container {
    position: absolute;
    bottom: 130px;
    right: 10px;
    margin: 0;
    width: 250px;
    border-radius: 8px;
    background-color: #ffffff;
    color: #000000;
  }
}

.fav-listing-container {
  padding: 16px;
  /* max-width: 500px; */
  margin: auto;
  /* font-family: sans-serif; */
  /* margin-top: 29px; */
  padding-top: 0;
  padding-bottom: 6rem;
}

.fav-header {
  display: flex;
  justify-content: center;

  margin-top: 16px;
  margin-bottom: 12px;
}

.filters {
  display: flex;
  gap: 8px;
}

.filter-btn {
  padding: 8px 16px;
  border: 1px solid rgb(173, 26, 25);
  background: white;
  color: rgb(173, 26, 25);
  border-radius: 8px;
  cursor: pointer;
}

.filter-btn.active {
  background: rgb(173, 26, 25);
  color: white;
}

.fav-items {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.fav-card {
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid #ddd;
  padding: 0.5rem;
  border-radius: 8px;
}

.fav-card-left {
  display: flex;
  align-items: center;
  flex: 1;
  gap: 8px;
}

.food-type-indicator {
  height: 3rem;
  width: 3rem;
  border-radius: 0.5rem;
  overflow: hidden;
}

.food-type-indicator img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.food-type-indicator .veg-dot,
.food-type-indicator .nonveg-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: inline-block;
}

.veg-dot {
  background-color: green;
}

.nonveg-dot {
  background-color: red;
}

.item-info {
  display: flex;
  flex-direction: column;
}

.item-name {
  font-weight: bold;
}

.item-price {
  color: #666;
  font-size: 14px;
}

.quantity-control {
  display: flex;
  align-items: center;
  border: 1px solid rgb(173, 26, 25);
  border-radius: 4px;
  /* overflow: hidden; */
}

.quantity-control button {
  background: rgb(173, 26, 25);
  color: white;
  border: none;
  padding: 4px 8px;
  cursor: pointer;
}

.quantity-control input {
  width: 32px;
  text-align: center;
  border: none;
}

.restro-add-btn {
  background: rgb(173, 26, 25);
  color: white;
  border: none;
  padding: 6px 12px;
  border-radius: 0.5rem;
  cursor: pointer;
}

.delete-btn {
  background: none;
  border: none;
  color: rgb(173, 26, 25);
  font-size: 18px;
  cursor: pointer;
}

.delete-btn svg {
  fill: rgb(173, 26, 25);
  height: 28px;
  font-size: 2rem !important;
}

.loader {
  text-align: center;
  padding: 20px;
}

.empty-state {
  text-align: center;
  color: #777;
  padding: 20px;
}

.dashed_line_p {
  position: relative;
}

.dashed_line_p::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px; /* thickness */
  background: repeating-linear-gradient(
    to right,
    var(--gray-3, #dadde3) 0,
    /* start of dash */ var(--gray-3, #dadde3) 5px,
    /* end of dash length */ transparent 5px,
    /* start of gap */ transparent 6.5px /* end of gap */
  );
}

/* --- TABLET & DESKTOP LAYOUT (768px and up) --- */
@media (min-width: 768px) {
  .fav-items {
    display: grid;
    /* Create responsive columns that are at least 340px wide */
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 2rem 1.5rem; /* Space between rows and columns */
    align-items: start;
  }

  /* Target the empty state to make it span full width if no items are found */
  .empty-state {
    grid-column: 1 / -1;
    width: 100%;
  }

  /* Hide the dashed lines on desktop for a cleaner card layout */
  .dashed_line_p::after {
    display: none;
  }
}

.F2Yj9UtlwjNc2rAwlC7g {
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.GZl01u3jFdOhviTUhc3U {
  display: flex;
  align-items: center;
  justify-content: center;

  background-color: var(--Surface-White, #ffffff);
  border-radius: 6px;
  border: 1px solid #AF5E00;
  overflow: hidden;

  width: 6.5rem;
  height: 2.2rem;
  padding: 0 0.25rem;
}

/* ---------- Shared Icon Button ---------- */
.uLEJQQAYA9Chfx5PRyTN {
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0.15rem;

  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
}

/* Adjust icon size + color */
.S9jRfLYe8tJyMvEVKKFR {
  width: 18px;
  height: 18px;
  color: #AF5E00;

  stroke-width: 2.75; /* increase thickness */
}

._QFasoFiVt8K_eHDqft5 {
  width: 18px;
  height: 18px;
  color: var(--text-Secondary-2, #333333);

  stroke-width: 2.75; /* increase thickness */
}

/* Quantity text */
.n4A4q7t2iJ620GK812BO {
  flex: 1;
  text-align: center;
  font-size: 1rem;
  font-weight: 700;
  color: #AF5E00;
}

/* ---------- ADD State Button ---------- */
.jDi57WPyMOGNVa_ckmgD {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;

  background: transparent;
  border: none;
  color: #AF5E00;
  font-size: 1rem;
  font-family: inherit;
  font-weight: 700;
  cursor: pointer;
}

.t6xwjO16SjSpQrQzkWYp {
  margin-top: 0px;
}

/* product card styles */
.j2VliZhXuyYNO4ezAk5F {
  background-color: transparent;
  padding: 0;
  box-sizing: border-box;
  width: 100%;

  padding-top: 1rem;
  padding-bottom: 1rem;
}

.R1SKcx6U5KjB85wP2XVd {
  display: flex;
  justify-content: space-between;
  flex-direction: row-reverse;
  gap: 1rem;
  align-items: stretch;
}

.RGU0Zo372rN8zI2jJ9E5 {
  width: 100%;
}

.BiR05vI7bppe2UN1ZO7h {
  margin-top: 10px;
}

.bFJqtAeFmrS72w3Bnnp8 {
  position: relative;
}

.R0mdLOZyblh_WvC5oz6u {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.zprPRV26NgB7ye7hgRNl {
  display: flex;
  align-items: flex-start;
  gap: 8px;

  min-width: 0;
}

.R7WvE8y0_A0e7W0YERcQ {
  height: 1.25rem;
  width: 1.25rem;

  flex-shrink: 0;
}

.R7WvE8y0_A0e7W0YERcQ img {
  object-fit: cover;
  overflow: hidden;
  height: 1.25rem;
  width: 1.25rem;
}

.kXrkOlRKXoP1KRwDiyuJ {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-Primary-1, #171717);
  margin-top: -2px;
}

.gNFTdVSpKlTdKVe2S7rD {
  flex: 1;
  min-width: 0;
  padding-right: 8rem; /*button space + gap*/
}

.ky9td4adgfp6wEnz9QPQ {
  margin-top: 0.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.ht0Y3e_5pKBw1nEGlFpV {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-Primary-1, #171717);
}

.fA1GRwUATEJl6ckNLNxw {
  font-size: 0.875rem;
  font-weight: 400;
  color: #737373;
}

.bcMhsIES841whfChiY2V {
  position: relative;
  /* min-height: 11rem; */
  flex-shrink: 0;
}

.uv63B0HChfZuAXZLG9cU {
  min-height: 8.5rem; /* Enforces the minimum card height */
  height: 100%; /* Stretches to match the text column if the text is taller */
  width: 8.5rem;
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid var(--grey-100, #eaecef);
  position: relative; /* Anchor for the absolute image */
}

.FTFyJ4AvJDM3Jov42ZRi {
  position: absolute; /* Takes image out of flow so its natural height doesn't break the layout */
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.E8l0dK3ENwbY_BBcVUnf {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.WVW9PVqaDlpxmCZGyuQ8 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem;
}

.iZGrGtABGZtjKtU59MoW {
  display: flex;
  gap: 0.5rem;
}

.ZSUK2TBKMQ6d7LntNazV {
  font-size: 0.875rem;
  font-weight: 600;
  color: #737373;
  margin-top: 2px;
}

.VXma9qrroCrw_BrUGUmX {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  position: absolute;
  top: 0;
  right: 1rem;
}

/* multi-line clamp class */

.OVnFt7hOpwWSzp_R13_i {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.i7G8Cu1H965EbKkXrp_U {
  background: none;
  border: none;
  color: gray;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0;
  margin-top: 4px;
  cursor: pointer;
}

.rLEmsdiKvh9yAFdeyI4O {
  display: flex;
  align-items: center;
  gap: 4px;

  max-width: max-content;
  background-color: #fdedd6;
  border-radius: 0.75rem;
  padding: 4px 6px;
  margin-bottom: 0.5rem;
  margin-top: -10px;
}

.Ngn0Sh4f9Y2P4AC5rAAA {
  font-size: 0.75rem;
  font-weight: 600;
  color: #c77d0b;
}

.iv5MjwGjXDN8AGnAITry svg {
  width: 12px;
  height: 12px;
  color: #fe9a00;
}

.EgfmvM5TfYquuUFZHC06 {
  border-radius: 0.5rem;
  border: 1px solid var(--blue-400, #0860E6);
  font-size: 1rem;
  font-weight: 700;

  transition: all 0.15s ease-in-out;
  white-space: nowrap;

  padding: 0.5rem;
}

.EgfmvM5TfYquuUFZHC06:hover:not(:disabled) {
  opacity: 0.9;
}

.HE0tF1y6ZOQsrBuqWlIT {
  /* Flex container for icon and text */
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.hkrlO4PdWMHSW9gsJ7vV {
  /* Ensures text doesn't shrink or wrap unncessarily */
  flex-shrink: 0;
}

.d9lpnqV7nag5d4BzlfOq {
  /* Ensures icon is centered and uses currentColor for dynamic coloring */
  display: flex;
  align-items: center;

  width: 18px;
  height: 18px;

  stroke-width: 2.75;
}
.UFXr88_8tuAl7vLSmiNV {
  background-color: var(--Surface-White, #FFFFFF);
  padding: 0.75rem;
  border-radius: 0.75rem;
  border: 1px solid var(--grey-100, #EAECEF);
}

.vm3FYenzS2qqikeM4rzU {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 0.5rem;
}

.OGdehDgOOCtt9UhHUuAq {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-Primary-1, #252B37);
}

.b6uOh7fNEVJJBBqBCqar {
  position: relative;
  padding-top: 0.5rem;
  padding-bottom: 0.75rem;
}

.IurhxRbgamuznMDJBwTF {
  width: 100%;
  min-height: 90px;
  padding: 0.5rem;
  border: 1px solid var(--grey-100, #EAECEF);
  border-radius: 0.5rem;
  font-size: 0.875rem;
  resize: none;
  outline: none;
  transition: border-color 0.2s;
  background-color: #F5F3F0;
}

.IurhxRbgamuznMDJBwTF:focus {
  border-color: #C77D0B;
}

.T9etAEEqxc4E9UrRgH8y {
  position: absolute;
  bottom: 30px;
  right: 10px;
  font-size: 0.8rem;
  color: var(--text-Secondary-1, #8A93A7);
}

.cWXMY3svaawWfy0FHgi9 {
  display: flex;
  overflow-x: scroll;
  gap: 0.5rem;

  -ms-overflow-style: none;
  /* IE + Edge */
  scrollbar-width: none;
  /* Firefox */
}

.cWXMY3svaawWfy0FHgi9::-webkit-scrollbar {
  display: none;
  /* Chrome, Safari, Edge (WebKit) */
}

.jlatXISpSb_eEvIqrO_e {
  background-color: transparent;
  color: var(--text-Primary-1, #252B37);
  font-size: 0.875rem;
  padding: 6px 12px;
  border-radius: 20px;
  border: 1px solid var(--grey-100, #EAECEF);
  cursor: pointer;
  transition: all 0.15s ease;
  white-space: nowrap;
  line-height: 1;
}

.jlatXISpSb_eEvIqrO_e:hover {
  background-color: #FDEDD6;
  border-color: #C77D0B;
}
/* custom header styles */
.CjNm24QRaKbZT5V5cEZz {
  display: flex;
  align-items: center;
  gap: 8px;

  padding: 0.75rem;
  border-bottom: 1px solid var(--gray-3, #dadde3);
  background-color: var(--Surface-White, #ffffff);
}

.cZh51GAlatjRWjmINrn2 {
  height: 3rem;
  width: 3rem;
  overflow: hidden;
  border-radius: 0.5rem;
  border: 1px solid var(--grey-100, #eaecef);
}

.cZh51GAlatjRWjmINrn2 img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.X5I2TvIwgmyqg3bvdWiw {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-Primary-1, #252b37);
  text-transform: capitalize;
}

/* content styles */
.Z9uqFzMv2NAh7M5yCrLg {
  height: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.X3d4qvTzPi83GNa5u8Ig {
  padding: 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;

  background-color: var(--Surface-White, #ffffff);

  flex: 1;
  overflow-y: auto;
  padding-bottom: 6rem; /* space so last content isn't hidden behind fixed button */

  -ms-overflow-style: none;
  /* IE + Edge */
  scrollbar-width: none;
  /* Firefox */
}

.X3d4qvTzPi83GNa5u8Ig::-webkit-scrollbar {
  display: none;
  /* Chrome, Safari, Edge (WebKit) */
}

/* details img & description styles */
.whRQ9vSuxvwnnJsrLqk2 {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.75rem;

  background-color: var(--Surface-White, #ffffff);
  border-radius: 0.75rem;
  border: 1px solid var(--grey-100, #eaecef);
  padding: 0.5rem;
}

.WzKuhFYGQZWzr7ACXCgo {
  height: 14rem;
  width: 100%;
  border-radius: 0.5rem;
  overflow: hidden;
  border: 1px solid var(--grey-100, #eaecef);
}

.WzKuhFYGQZWzr7ACXCgo img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.qPkqXu9zyUfhHEBnkbj6 {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.HMw18vT2Lf9WrvThu3ZK {
  height: 1.25rem;
  width: 1.25rem;
}

.HMw18vT2Lf9WrvThu3ZK img {
  object-fit: cover;
  overflow: hidden;
  height: 1.25rem;
  width: 1.25rem;
}

.k1s9wOfdBi_cJxv2B1VA {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-Primary-1, #252b37);
  margin-top: -2px;
}

.w4rHpLIHQZuwQH9Iw7Lo {
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--text-Secondary-1, #8a93a7);
  margin-top: -6px;
}

.hANle300Cmy0xmzvMDVw {
  display: flex;
  gap: 0.5rem;
  margin-top: -8px;
}

/* variants styles */
.Fk7NSeR1GL__0sz3xTxi {
  background-color: var(--Surface-White, #ffffff);
  padding: 0.75rem;
  border-radius: 0.75rem;
  border: 1px solid var(--grey-100, #eaecef);
}

.aGtFI5NMB9RLSPjH0jm8 {
  padding-bottom: 0.5rem;
}

.U2WgzltIUh3ZDifPoKL9 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-Primary-1, #252b37);
}

.w6Mjy4LdMAuJyo3mab5b {
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--grey-600, #798097);
  margin-top: 2px;
}

.mTHDKPYP2FCkuHyVqdsO {
  height: 1px;
  background-color: var(--grey-100, #eaecef);
  margin: 0 -0.75rem; /* extend full width so -padding */
}

.o_glLzRCDzqnwBkX1r4l {
  padding-top: 0.5rem;
}

.aQ5Vw9AYADjAYXKCJr9M {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0;
}

.yRXgOwLaeufaKHd0Nbd4 {
  font-size: 1rem;
  font-weight: 500;
  color: var(--black-1, #343434);
}

.w7DZcISi_M9lyrXsOxwE {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--blue-400, #af5e00);
  cursor: pointer;
}

.o18uniqZtRpirDnK0zlg {
  width: 1rem;
  height: 1rem;
  fill: var(--blue-400, #af5e00);
}

/* bottom button styles */
.y8OQvOjsbbzHuiwCttB4 {
  position: sticky;
  bottom: 0;
  left: 0;
  right: 0;

  display: flex;
  justify-content: space-between;
  align-items: stretch;
  gap: 0.75rem;

  background-color: var(--Surface-White, #ffffff);
  padding: 0.75rem 1.25rem 1rem;
  border-top: 1px solid var(--grey-200, #e9eaeb);
  box-shadow: 0 -8px 2px 0 rgba(180, 202, 253, 0),
    0 -5px 2px 0 rgba(180, 202, 253, 0.01),
    0 -3px 2px 0 rgba(180, 202, 253, 0.05),
    0 -1px 1px 0 rgba(180, 202, 253, 0.09), 0 0 1px 0 rgba(180, 202, 253, 0.1);
}

.sUJROOwrauldN0Hu5lTU {
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0.15rem;

  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
}

.eqSolFgcYJYwep8rtpeg {
  width: 18px;
  height: 18px;
  color: #af5e00;

  stroke-width: 2.75; /* increase thickness */
}

/* Quantity text */
.NnGtRR4iY1vC0HeNR5V5 {
  flex: 1;
  text-align: center;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-Primary-1, #171717);
}

.LStyNYfQldzejSQwMUdJ {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;

  background-color: var(--Surface-White, #ffffff);
  border: 1px solid var(--Gray-200, #e9eaeb);
  border-radius: 0.5rem;

  color: var(--blue-400, #af5e00);
  font-size: 1rem;
  font-family: inherit;
  font-weight: 700;
  padding: 0.5rem;

  width: 7rem;
}

.OtyeWjSXK1u10c6NkFMk {
  display: flex;
  align-items: center;
  gap: 4px;

  max-width: max-content;
  background-color: #fdedd6;
  border-radius: 0.75rem;
  padding: 4px 6px;
  margin-top: -6px;
}

.wxGgc0GnZA4ncOEMJgQ9 {
  font-size: 0.75rem;
  font-weight: 600;
  color: #c77d0b;
}

.ehReRApj7dGV8k54tYL_ svg {
  width: 12px;
  height: 12px;
  color: #fe9a00;
}

/* Add-on Quantity Control Styles */
.H2tcsiizq6yYY611mKnQ {
  display: flex;
  align-items: center;
  gap: 6px;
  height: 42px;
}

.dvThYOfy5IkeAZ_mm0aS {
  font-size: 16px;
  font-weight: 700;
  color: var(--black-1, #343434);
}

.ddtL31i2gqbmnPnsRrRA {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;

  background-color: var(--Surface-White, #ffffff);
  border: 1px solid var(--Gray-200, #e9eaeb);
  border-radius: 0.5rem;

  color: var(--blue-400, #af5e00);
  padding: 0.25rem 0.35rem;
  /* width: 5.5rem; */
}

.rg90gpTxdhbM38hb07Dy {
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0.15rem;

  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
}

.bvW7EW_oVYDdxs8RPu3r {
  width: 14px;
  height: 14px;
  color: #af5e00;
  stroke-width: 2.75;
}

.jqiGq3s5IHzPsGav2xy5 {
  flex: 1;
  text-align: center;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--text-Primary-1, #171717);
}

.jGfkVGNoYI8s_4zI6j3U {
  display: flex;
  align-items: center;
  justify-content: center;

  background-color: var(--pink-1, #fffbeb);
  border-radius: 6px;
  border: 1px solid var(--pink-1, #fffbeb);
  overflow: hidden;

  width: 6.5rem;
  height: 2.2rem;
  padding: 0 0.25rem;
}

.V83JHNKiM4zJwHuTxGJ9 {
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0.15rem;

  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
}

/* Adjust icon size + color */
.wa5PU1hsXcjhZVJvbEgm {
  width: 18px;
  height: 18px;
  color: var(--blue-400, #af5e00);

  stroke-width: 2.25; /* increase thickness */
}

.tHnyBLcm3l41RdOrA6hs {
  width: 18px;
  height: 18px;
  color: var(--text-Secondary-2, #333333);

  stroke-width: 2.25; /* increase thickness */
}

/* Quantity text */
.hhM8w_KsIeMuP1h4XBTV {
  flex: 1;
  text-align: center;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-Secondary-2, #333333);
}

.FQMIwEkLKQd0uGEHmZpN {
  display: flex;
  gap: 12px;
  background-color: transparent;
  width: 100%;
  align-items: flex-start;
  padding: 8px 0;
}

/* Left side: Image */
.ij86cddbTtl0zgJjypQA {
  width: 76px;
  height: 76px;
  flex-shrink: 0;
  border-radius: 12px;
  overflow: hidden;
  background-color: #f5f5f5;
}

.KyB6QYguUOdq1HHFF85W {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Right side: Details & Controls */
.iLw5qSOqXtAlCfpX1DwU {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  gap: 4px;
}

/* Title Row */
.KfBOAvXNecVGE8k9ofOe {
  display: flex;
  align-items: flex-start;
  gap: 6px;
}

.gmUWXbjuQxzPKHY3wXCM {
  height: 16px;
  width: 16px;
  object-fit: contain;
  /* margin-top: 1px; */
  flex-shrink: 0;
}

.lJPbDRBTv4Oku81EOgcb {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-Primary-1, #171717);
  margin: 0;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Variant Row */
.VDmtskDoFssQ1DLE269Z {
  font-size: 14px;
  color: var(--grey-n-2, #737373);
  margin: 0;
  font-weight: 400;
}

/* Note / Comments Row */
.AIfD5rz_FNsjZXVkW5lF {
  margin: 0;
  font-size: 14px;
}

.LuExTMTwpRajEE3ftT6N {
  color: var(--blue-400, #af5e00);
  font-style: italic;
  font-weight: 600;
}

.SZrfJfPsZMq965sevN9G {
  color: var(--grey-n-2, #737373);
  font-style: italic;
  font-weight: 400;
}

/* Addons */
._1_qzg9lkjKO_uoYtKxqi {
  font-size: 13px;
  font-weight: 400;
  color: #717680;
  margin: 0;
}

/* Edit Button */
.yfbAhcwfZ011MbxR6h7q {
  color: var(--blue-400, #af5e00);
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  width: fit-content;
  margin-top: 2px;
}

.YOwV3xD8fUwAOfRA6l3M {
  display: flex;
  align-items: center;
  gap: 2px;
}

.jgxak5SVOC_1mK6o7tgT {
  height: 14px;
  width: 14px;
  stroke-width: 2.5;
}

.vrFuWS_eOwKiYYkzEhsJ {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
}

/* Price & Controls Row */
.u70toVumxvbi2GRQrBlr {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 6px; /* Pushes the controls slightly down */
}

.IG9mx7tpSIw2LNujivSV {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-Primary-1, #171717);
  margin: 0;
}

.EhyIKL_mSGK__LUipQIo {
  height: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  position: relative; /* Acts as anchor for the fixed bottom button */
}

.bIesR0ST_eXAK7zkxY3Y {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;

  padding: 1rem;
  overflow-y: auto;
  flex: 1; /* Takes up remaining space */
  padding-bottom: 5rem; /* Ensures the last item is not hidden behind the fixed button */
}

.nXn0IlfW3K6d2lrhEzsV {
  display: flex;
  align-items: center;
  gap: 8px;

  padding: 0.75rem 1rem;
  border-bottom: 1px solid var(--gray-3, #dadde3);
  background-color: var(--Surface-White, #ffffff);
}

.mfVdgfzFxROItpbUSNsA {
  display: flex;
  flex-direction: column;
  gap: 4px;
  width: 100%;
}

.s7sNTcqN5QkBED1xhAGt {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-Primary-1, #252b37);
  text-transform: capitalize;
  margin: 0;
}

.GQT0mVeNXur_oLamDmJc {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--blue-1, #af5e00); /* Theme color */
  margin: 0;
  cursor: pointer;
}

/* Fixed Bottom Button Styles */
.LKEhdYf4TTUSfkEG8CDx {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--Surface-White, #ffffff);
  padding: 1rem;
  border-top: 1px solid var(--grey-200, #e9eaeb);
  box-shadow: 0 -4px 6px rgba(0, 0, 0, 0.05);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10;
}

.WeFfnWVwbJ9fpMPBl1MR {
  background: transparent;
  border: none;
  color: var(--blue-1, #af5e00); /* Theme color */
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  padding: 0.5rem;
  width: 100%;
  text-align: center;
}

.WeFfnWVwbJ9fpMPBl1MR:hover {
  opacity: 0.8;
}

/* dashed lines below the cards */
.TuFudcI3Zg8aBWgWTzmR {
  position: relative;
}

.TuFudcI3Zg8aBWgWTzmR::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px; /* thickness */
  background: repeating-linear-gradient(
    to right,
    var(--gray-3, #dadde3) 0,
    /* start of dash */ var(--gray-3, #dadde3) 5px,
    /* end of dash length */ transparent 5px,
    /* start of gap */ transparent 6.5px /* end of gap */
  );
}

.huCFSH4Up3Thae652F7J {
  display: flex;
  flex-direction: column;
  position: sticky;
  top: 0;
  z-index: 10;
  width: 100%;
}

.ZVWDwaAOSkR6amimKEro {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.5rem;
  padding: 1rem;
  padding-bottom: 0.75rem;
  /* background-color handled by inline style */
}

.qRT6MSUWTyausJgdV3Tq {
  width: 42px;
  height: 42px;
  cursor: pointer;
  margin-left: -0.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.qRT6MSUWTyausJgdV3Tq svg {
  width: 1.5rem;
  height: 1.5rem;
  fill: currentColor; /* Inherits the color passed via the prop */
  stroke-width: 2.75;
  margin-left: -0.25rem;
}

.tciqgu7fsDh2nMrSdVlY {
  font-size: 1rem;
  font-weight: 600;
  margin: 0;
  /* color handled by inline style */
}
.about-us-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 3%;
    margin-bottom: 3%;
    box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 1px 3px 1px !important;
}
.activity-screen {
  height: 100%;
  height: 100vh;
  background-color: #f4f7fc;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.map-image {
  height: 12rem;
  width: 12rem;
}

.map-gif {
  height: 100%;
}

.Z_zlzgdN9chzqLGO1UVG {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  background-color: var(--blue-1, #af5e00);
  color: var(--Surface-White, #ffffff);
  border: none;
  border-radius: 12px;
  padding: 10px 16px;
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.1s ease;
}

.Z_zlzgdN9chzqLGO1UVG:hover:not(:disabled) {
  background-color: #a35d38;
}

.Z_zlzgdN9chzqLGO1UVG:active:not(:disabled) {
  transform: scale(0.98);
}

.Z_zlzgdN9chzqLGO1UVG:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.t0Gmc94FywDa7L9IoyLU {
  width: 22px;
  height: 22px;
  stroke-width: 2;
}

.gm4FEr5i8KIHumBPAb5A {
  font-size: 16px;
  font-weight: 600;
  margin: 0;
}

.QbV56gwSYb6QWg5VgSU0 {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 22px;
}

/* Main Card Wrapper */
.DqX8cAzFijZAS8ushOeu {
  display: flex;
  gap: 12px;
  padding: 12px;
  background-color: var(--Surface-White, #ffffff);
  border: 1px solid var(--grey-n-6, #e5e5e5);
  border-radius: 12px;
  position: relative;
  transition: all 0.2s ease;
  overflow: hidden;
}

.DqX8cAzFijZAS8ushOeu:hover {
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
}

/* Retained the checked visual state logic from your old code */
.gSghYlNJdZx7SmOSuBLQ {
  border: 2px solid #4caf50;
}

/* Loader Overlay */
.jMb4jouruBcFbw21t_Eq {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(255, 255, 255, 0.7);
  z-index: 10;
}

/* Left Section: Location Icon */
.em8pHWw_thnPqcYZiOl3 {
  flex-shrink: 0;
}

.cx6KPK8QdSRITYMkjGva {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: #fffbeb;
  display: flex;
  align-items: center;
  justify-content: center;
}

.i8SidL93CLjOzg3fYlBL {
  width: 22px;
  height: 22px;
  color: var(--blue-1, #af5e00);
  stroke-width: 2;
}

/* Right Section: Content */
.Ir6l2Pwb2iPa4J2XSjhO {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.fD8b9Clm9m5XifgRfp3r {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 6px;
}

.RWx4yc4jAH9q1jip8H6D {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-Primary-1, #171717);
  margin: 0;
}

.K5d9UmylGHRWwI7ga1Lw {
  background-color: #f0fdf4;
  color: #00a63e;
  font-size: 11px;
  font-weight: 500;
  padding: 4px 10px;
  border-radius: 6px;
}

.OYYRBlXG7K1s54jWKJnS {
  font-size: 13px;
  color: var(--text-Secondary-1, #8a93a7);
  margin: 0;
  line-height: 1.4;
}

/* Action Buttons */
.AhfHSoviMHZtYGKSrZmQ {
  display: flex;
  justify-content: flex-end;
  gap: 16px;
  margin-top: 10px;
}

.Qp0ls3XbTAl7dNE0np9M {
  background: none;
  border: none;
  padding: 4px;
  margin: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.2s ease;
}

.Qp0ls3XbTAl7dNE0np9M:hover:not(:disabled) {
  opacity: 0.7;
}

.Qp0ls3XbTAl7dNE0np9M:disabled {
  cursor: not-allowed;
}

.I1zsb9WwkqPVvVOetJxN {
  width: 20px;
  height: 20px;
  color: var(--blue-1, #af5e00);
  stroke-width: 2;
}

.address-book-card {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 1rem;
  border-radius: 0.8rem !important;
  cursor: pointer;
}

.address-book-list-head{
display: flex;
justify-content: space-between;
background-color: whitesmoke;
}

.edit-icon-address{
  color: rgb(12, 121, 36) !important;
  margin-left: 8px;
  cursor: pointer;
}

.delete-icon-address{
  color:#dc5454 !important;
  margin-left: 8px;
  cursor: pointer;
}
.VMCChQQk9OVXWiMm2hCX {
  position: sticky;
  top: 70px; /* Sits right below the StickyHeader */
  z-index: 10;
  background-color: var(--Surface-White, #ffffff);
  padding: 1rem;
  box-shadow: 0 4px 6px -6px rgba(0, 0, 0, 0.1);
}

/* Main Content Area */
.vrtDfn9LI45eVZsA3uHf {
  padding: 0 1rem 4rem 1rem;
  display: flex;
  flex-direction: column;
}

.rGoHMk7ydP3bgBnrNP7x {
  display: flex;
  flex-direction: column;
  margin-top: 1rem;
}

/* Header Row for Saved Addresses */
.amepj61t3x71PTfoQToa {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.rTobiGEeQb5KIyPrOanr {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-Primary-1, #171717);
  margin: 0;
}

/* Container for the actual list items */
.AqhbPklsg1hNTD4F7foS {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.ip8rpoxTDtded4ltiV9j {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-Primary-1, #171717);
  margin: 8px 16px;
}

._2JgYWyuKKexNp9_VNzN_ {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.LXMriiHsL7jP6qFdh5vX {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-top: 8px;
}

._byOtPVEh8C26hJl8n1C {
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-600, #535861);
  margin: 0;
  padding-left: 4px;
}

.oDVlL17ZNDULvf1Kj1Ld {
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-600, #535861);
  margin-left: -4px;
  padding-left: 0;
}

/* Container holding the actual input field (for border and background) */
.Z_s2sIw2I3sjHTGrNYc3 {
  position: relative;
  display: flex;
  /* align-items: center; */
  border: 1px solid var(--grey-n-6, #e5e5e5);
  border-radius: 12px;
  background-color: var(--Surface-White, #ffffff);
  padding: 12px 14px;
  transition: border-color 0.2s ease;
}

/* Change border color on focus */
.Z_s2sIw2I3sjHTGrNYc3:focus-within {
  border-color: #a0aab4;
}

/* The actual input element */
.MQ3fuj69iUkv47qOFq6Z {
  border: none;
  outline: none;
  font-size: 15px;
  color: var(--text-Primary-1, #171717);
  background-color: transparent;
  width: 100%;
  padding: 0;
}

/* Placeholder styling matching the image */
.MQ3fuj69iUkv47qOFq6Z::placeholder {
  color: #8c949d;
  font-weight: 400;
}

/* Disabled Input Styling */
.ZXjrdc2rMc1cUa1BVG93 {
  color: #8c949d;
  cursor: not-allowed;
}

/* Icon positioning */
._CxXs6mjwo4ACVy8xpwt {
  display: flex;
  justify-content: center;
  margin-right: 8px;
  pointer-events: none;
}

.RKc5b5mGQQFQ9PXTfoY4 {
  width: 20px;
  height: 20px;
  color: #8c949d;
}

.pI4vLGQRxNBbKbpyLb2Q {
  padding: 8px 0;
}

.DKYfkX8zWeql06FN3yyL svg {
  width: auto;
  height: 18px;
  color: var(--Surface-White, #ffffff);
  stroke-width: 2.5;
}

.cfEZggV4o8DcB1sLMmUM {
  color: var(--red-200, #e90000);
}

.DKYfkX8zWeql06FN3yyL .s2t2GXUWgrIZThLw1ct2.aeAIiNNJj3a64m3sgdji {
  box-shadow: none !important;
}

/* Textarea specific styling */
.lMoznj2_6_DzMjl1Zeka {
  resize: none;
  line-height: 1.4;
  padding-top: 2px;
}

/* Adjust icon to sit near the top for multiline textareas instead of the middle */
.GUxeapvxAEA6sT19VVcp {
  top: 14px !important;
  transform: none !important;
}

.gm-svpc,
.gmnoprint,
.gm-style-mtc-bbw,
.gm-control-active,
.gm-fullscreen-control {
  display: none !important;
}

h1,
p {
  /* font-family: Lato; */
}

#map {
  width: 100%;
  height: 100%;
}

.map-search-input-container {
  position: relative !important;
  display: flex !important;
  align-items: center !important;
  margin: 0.75rem 0.5rem 0 0.5rem !important;
  height: 36px;
}

.map-search-icon {
  position: absolute !important;
  left: 0.75rem !important;
  color: var(--blue-1, #AF5E00) !important;
  /* top: 4.1rem !important; */
  z-index: 10000;
}

.map-search-input {
  padding-left: 42px !important;
  box-sizing: border-box !important;
  border: 1px solid #ccc !important;
  border-radius: 5px !important;
  height: 35px !important;
  width: 100% !important;
  left: 0px !important;
}
.location-details-card {
  position: absolute;
  z-index: 2;
  background: #fff;
  padding: 15px;
  border-radius: 0.5rem;
  margin: 0 0.5rem 0.5rem 0.5rem;
  bottom: 0;
  left: 0;
  width: 97% !important;
  box-sizing: border-box;
}

.location-details-btn {
  margin-top: 15px !important;
}

.location-finding-loader-container {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
}

.location-details-card__p1 {
  font-size: 16px;
  color: var(--text-Primary-1, #171717);
}

.location-details-card__p2 {
  font-size: 12px;
  color: var(-text-Secondary-1, #8a93a7);
}

.location-details-card__hr {
  margin: 4px 0;
}

@media (max-width: 1024px) {
  .location-details-card {
    width: calc(100% - 1rem) !important;
  }
}

@media (max-width: 600px) {
  .location-details-card {
    width: calc(100% - 1rem) !important;
  }
}
.bottom-navigation {
  box-shadow: 0px 3px 3px -2px rgba(0, 0, 0, 0.2),
    0px 3px 4px 0px rgba(0, 0, 0, 0.14), 0px 1px 8px 0px rgba(0, 0, 0, 0.12);
}
.animated-placeholder {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: #999;
  font-size: 16px;
  pointer-events: none;
  /* font-family: inherit; */
  overflow: hidden;
  height: 24px;
}

.placeholder-animate {
  position: absolute;
  white-space: nowrap;
}

.skeleton-suggestion-item {
  display: flex;
  gap: 2rem;
  align-items: center;
  margin-top: 1rem;
  margin-left: 1rem;
}

.skeleton-suggestion-description {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  width: 100%;
}

.suggestion-search-item {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-top: 1rem;
  margin-left: 1rem;
}

.suggestion-item-img {
  height: 2.5rem;
  width: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.suggestion-search-item-img {
  height: 100%;
  object-fit: cover;
}

.suggestion-item-description {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.search-item-bottom-text {
  display: flex;
  gap: 0.5rem;
}

.suggestion-text-value {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-top: 1rem;
  /* margin-left: 1rem; */
}

.search-icon {
  height: 2.5rem;
  width: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.search-val {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.search-seperator {
  width: 100%;
  height: 0.1rem;
  margin: 0.8rem 0;
  background-color: lightgrey;
}

.no-search-results {
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  justify-content: center;
}
.popular-search {
  margin-top: -16px;
}

/* Handle keyboard opening on mobile devices * */
@media screen and (max-width: 768px) {
  .search-main-container {
    /* Use dynamic viewport height to account for keyboard */

     min-height: 100dvh !important; 

  }
  /* Ensure headers stay visible when keyboard opens */
  .header-top {
    /* position: fixed !important; */
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    z-index: 999 !important;
    /* background: linear-gradient(rgb(0, 0, 0) 5%, rgba(217, 217, 217, 1) 146%) !important; */
  }
  .header-top {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background: #2b3443;
    display: flex;
    align-items: center;
    padding: 0.5rem;
  }
  /* Fixed bottom search bar that adjusts for keyboard */
  .bottom-search-bar {
    /* Position above keyboard when open, fallback to bottom when closed */
    bottom: max(0px, env(keyboard-inset-height, 0px)) !important;
    transition: bottom 0.3s ease-in-out;
  }

  /* Adjust main content to account for fixed headers and bottom bar */
  .main-content-area {
    /* height: calc(100dvh - 160px - env(keyboard-inset-height, 0px)) !important; */
    /* overflow-y: auto !important; */
    padding-bottom: calc(80px + env(keyboard-inset-height, 0px)) !important;
  }
}

/* Additional iOS-specific fixes */
@supports (-webkit-touch-callout: none) {
  .search-main-container {
    min-height: -webkit-fill-available;
  }
}
.not-serviceable {
  box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
  background-color: white;
  border-radius: 1rem;
  width: 100%;
  min-height: 60vh;
  /* margin-top: 7rem; */
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}

.unreachable-image {
  height: 14rem;
  width: 14rem;
}

.not-serviceable-img {
  height: 100%;
}

.cart {
  padding: 1rem;
  margin-bottom: 4rem;
  background-color: #f5f5f5;
  height: 100%;
}

.cart-nonLoggedIn {
  padding: 0.5rem;
  margin-bottom: 7rem;
  background-color: #f5f5f5;
  height: 100%;
}

.empty-cart {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  height: 100vh;
  gap: 1rem;
  background: white;
}

.empty-cart-img {
  height: 14rem;
  width: 14rem;
}

.cart-img {
  height: 100%;
}

.end-footer-cart {
  margin-top: 2rem;
}

.review-cart-heading-par div {
  font-size: 1rem !important;
}

.cart-slots-items-section-1 {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  margin-top: 0.25rem;
}

.cart-slots-items-section-2 {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
  margin-top: 5px;
}

.cart-slots-selected-text {
  color: #b96b42;
  font-size: 13px;
  font-weight: 500;
  margin: 0;
}

.cart-slots-button-new {
  color: #555;
  cursor: pointer;
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 4px;
  padding-left: 2rem;
}

.cart-slots-button-new svg {
  width: 18px;
  height: 14px;
}

@keyframes glowPulse {
  0% {
    box-shadow: 0 0 0px rgba(255, 87, 34, 0);
  }
  50% {
    box-shadow: 0 0 8px rgba(255, 87, 34, 0.6);
  }
  100% {
    box-shadow: 0 0 0px rgba(255, 87, 34, 0);
  }
}

.cart-slots-button-new.highlight {
  animation: glowPulse 2s ease-in-out infinite;
  border-radius: 6px;
  padding: 2px 0px 2px 6px;
  color: #ff5722;
  font-weight: 600;
}

.cart-amount-saved {
  /* box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px; */
  height: 3rem;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-top: 3.5rem;
  /* position: fixed; */
  /* z-index: 99999; */
  /* border-radius: 1rem; */
  border-radius: 8px;
  background-color: #ffffff;
  margin-bottom: 1rem;
}

.amount-saving {
  margin-left: 1rem;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.3rem;
  width: 100%;
}



.amount-saved-img {
  height: 100%;
}

.cart-coupons {
  position: relative;
  margin-top: 5px;
  /* box-shadow: rgba(0, 0, 0, 0.15) 1px 1.95px 1.95px 1.95px; */
  height: 3rem;
  width: 100%;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 2rem;
  background-color: white;
 
}

.cart-coupons-left {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.cart-coupons-icon {
  height: 1.5rem;
  width: 1.5rem;
}

.coupon-icon {
  height: 100%;
}

.cart-coupon-description {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  width: 100%;
  margin: 15px 0px 5px 4px;
}

.cart-coupons-details {
  display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 1rem;
}

.cart-item-card {
  display: flex;
  gap: 1rem;
  /* box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px; */
  /* height: 5rem; */
  height: auto;
  border-radius: 1rem;
  padding: 0.6rem;
  position: relative;
  background-color: white;
  
  /* background-color: #fff; */
}

.cart-item-image {
  height: 3rem;
  width: 3rem;

  overflow: hidden;
  border-radius: 6px;
}

.cart-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 1px solid #e1e1e1;
}

.cart-item-details {
  display: flex;
  flex-direction: column;
}

.cart-item-qty-counter {
  position: absolute;
  right: 0;
  bottom: 10px;
}

.remove-product {
  position: absolute;
  top: 0.3rem;
  right: 0.5rem;
  cursor: pointer;
  border-radius: 30%;
}

.cart-items {
  /* margin-top: 2rem; */
  background-color: #ffffff;
  border-radius: 0.5rem;
}

.cart-items-header {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  border-bottom: 1px solid #c8bcbc33;
  padding: 6px;
  /* position: absolute;
  width: 100%;
  top: 3.5rem; */
}

.cart-items-list {
  /* margin-top: 1rem; */
  display: flex;
  flex-direction: column;
  gap: 1rem;
  border-radius: 8px;
  max-height: 282px;
  overflow-y: scroll;
}

.cart-delete-icon {
  color: #b96b42 !important;
  font-size: 1rem !important;
}

.cart-items-not-available-parent {
  display: flex;
  flex-direction: column;
  border: 1px solid lightgray;
  border-radius: 0.5rem;
}

.cart-not-available-p {
  font-size: 0.75rem;
  margin: 0;
  color: rgb(173, 26, 25);
}

.not-available-btn-text-parent {
  display: flex;
  justify-content: space-between;
  gap: 0.5rem;
  align-items: flex-start;
  padding: 0.5rem;
}
.cart-loyalty {
  position: relative;
  margin-top: 7px;
  /* box-shadow: rgba(0, 0, 0, 0.15) 1px 1.95px 1.95px 2.6px; */
  height: 3rem;
  width: 100%;
  border-radius: 8px;
  display: flex;
  margin-bottom: 4px;
  align-items: center;
  gap: 2rem;
  background-color: white;
}

.cart-loyalty-left {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.redeem-icon {
  color: #596fb7 !important;
}

.cart-loyalty-description {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  width: 100%;
  margin: 15px 0px 5px 4px;
}

.cart-loyalty-details {
  display: flex;

  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 0rem 1rem;
}

.loyalty-applied {
  display: flex;
  gap: 0.2rem;
}

.delivery-slot-root-div {
  padding: 10px;
  /* background-color: #ffffff; */
  margin: -7px 0px;
  /* border-radius: 1rem; */
}
.select-time-slot-div {
  border: 1px solid gainsboro;
  border-radius: 10px;
  padding: 5px;
  margin-top: 5px;
}
.dropdown-icon {
  width: auto !important;
  height: 16px !important;
  color: grey !important;
  transform: rotate(90deg) !important;
  margin-top: 3px !important;
}

.review-order {
  margin-top: 12px;
  background-color: #ffffff;
  padding: 14px;
  border-radius: 8px;
}

.review-order-details {
  margin-top: 1rem;
  /* box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px; */
  /* height: 9rem; */
  width: 94%;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  background-color: #fff;
  padding: 12px;
  /* margin: 10px; */
  /* margin-bottom: 12px; */
}

.order-details-top,
.order-details-bottom {
  display: flex;
  gap: 0.5rem;
  padding: 0.5rem;
}

.review-order-clock-icon {
  color: #0b0b0b !important;
  font-size: 12px;
}

.review-order-rupee-icon {
  height: 1.4rem;
  width: 1.6rem;
  border-radius: 50%;
  background: #0b0b0b !important;
  color: white !important;
  display: flex;
  justify-content: center;
  align-items: center;
}

.rupee-icon {
  color: #ffff !important;
  font-size: 12px !important;
}

.review-horizontal-line {
  width: 95%;
  margin-top: 0.5rem;
}

.select-address-div {
  padding: 10px;
  background-color: #ffffff;
  margin: 16px 0px;
  border-radius: 8px;
}
.select-address-div-alt {
  padding: 10px;
  background-color: #ffffff;
  margin: 16px 0px;
  border-radius: 8px;
  margin-top: 3rem;
}
.cart-delivery-address-wrapper {
  background-color: #ffffff;
  padding: 6px;
  border-radius: 4px;
}

/* ─── Bottom Navigation ─── */
.qr-bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #fff;
  display: flex;
  justify-content: space-around;
  align-items: center;
  height: 64px;
  border-top: 1px solid #e5e7eb;
  z-index: 1000;
  padding-bottom: env(safe-area-inset-bottom);
}

.qr-bottom-nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
  width: 100%;
  height: 100%;
  gap: 4px;
  transition: transform 0.15s ease;
}

.qr-bottom-nav-item:active {
  transform: scale(0.9);
}

.qr-bottom-nav-badge {
  position: absolute;
  top: -4px;
  right: -8px;
  background: #2e7d32;
  color: #fff;
  font-size: 9px;
  font-weight: 700;
  min-width: 16px;
  height: 16px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 3px;
}

/* ═══════════════════════════════════════
   QR Cart
═══════════════════════════════════════ */

.qr-cart-container {
  height: 100vh;
  background-color: #f5f5f5;
  padding-bottom: 0;
  overflow-y: auto;
}

/* Header */
.qr-cart-header {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #ffffff;
  padding: 14px 16px;
  position: sticky;
  top: 0;
  z-index: 10;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
}

.qr-cart-header-title {
  font-size: 16px;
  font-weight: 600;
  color: #1a1a1a;
}

/* User info card */
.qr-cart-user-card {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #ffffff;
  margin: 10px 12px 0;
  padding: 14px 14px;
  border-radius: 10px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
}

.qr-cart-user-name {
  font-size: 14px;
  font-weight: 600;
  color: #1a1a1a;
  margin: 0 0 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.qr-cart-user-phone {
  font-size: 12px;
  color: #6b7280;
  margin: 0;
}

.qr-cart-user-verified {
  font-size: 11px;
  font-weight: 600;
  color: #2e7d32;
  background: #e8f5e9;
  padding: 3px 8px;
  border-radius: 20px;
  white-space: nowrap;
  flex-shrink: 0;
}

/* Cart items wrapper — wraps the reused B2C CartItems */
.qr-cart-items-wrapper {
  background: #ffffff;
  margin: 10px 12px 0;
  border-radius: 10px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
  overflow: hidden;
}

/* Remove inner scroll on items list — let the page scroll instead */
.qr-cart-items-wrapper .cart-items-list {
  max-height: none !important;
  overflow-y: visible !important;
}

/* Override brownish (#b96b42) colors within QR cart — B2C untouched */

/* Delete icons → green */
.qr-cart-items-wrapper .cart-delete-icon {
  color: #2e7d32 !important;
}
.qr-cart-items-wrapper .remove-product .MuiSvgIcon-root {
  color: #2e7d32 !important;
}

/* +/- qty buttons → green */
.qr-cart-items-wrapper .decrement-qty,
.qr-cart-items-wrapper .increment-qty {
  color: #2e7d32 !important;
}

/* Product names & labels — Heading component uses sakuraRestroColor (#b96b42)
   when retailType=RESTAURANT. Override to black within QR cart. */
.qr-cart-items-wrapper .MuiTypography-root {
  color: #1a1a1a !important;
}

/* Shared section card */
.qr-cart-section {
  background: #ffffff;
  margin: 10px 12px 0;
  padding: 14px;
  border-radius: 10px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
}

.qr-cart-section-title {
  font-size: 11px;
  font-weight: 700;
  color: #9ca3af;
  letter-spacing: 0.6px;
  margin: 0 0 10px;
  text-transform: uppercase;
}

/* Cooking requests textarea */
.qr-cart-cooking-textarea {
  width: 100%;
  box-sizing: border-box;
  background: #f9fafb;
  border: 1.5px solid #e5e7eb;
  border-radius: 8px;
  padding: 10px 12px;
  font-size: 13px;
  color: #374151;
  resize: none;
  outline: none;
  font-family: inherit;
  transition: border-color 0.2s;
}

.qr-cart-cooking-textarea:focus {
  border-color: #2e7d32;
}

.qr-cart-cooking-textarea::placeholder {
  color: #9ca3af;
}

/* Bill rows */
.qr-cart-bill-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: #374151;
  margin-bottom: 8px;
}

.qr-cart-bill-divider {
  height: 1px;
  background: #e5e7eb;
  margin: 10px 0;
}

.qr-cart-bill-total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 15px;
  font-weight: 700;
  color: #1a1a1a;
}

/* Payment section — fixed at bottom above the nav */
.qr-cart-payment-section {
  position: fixed;
  bottom: 64px;
  left: 0;
  right: 0;
  background: #ffffff;
  padding: 12px 16px 12px;
  box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.1);
  z-index: 9;
}

.qr-cart-payment-label {
  font-size: 11px;
  font-weight: 700;
  color: #9ca3af;
  letter-spacing: 0.6px;
  margin: 0 0 10px;
  text-transform: uppercase;
  text-align: center;
}

.qr-cart-pay-btns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

/* Shared base for both payment buttons */
.qr-cart-pay-counter-btn,
.qr-cart-pay-online-btn {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 12px 8px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  transition: transform 0.1s ease, background 0.15s;
}

.qr-pay-btn-icon {
  margin-bottom: 2px;
}

/* Pay at Counter — outlined */
.qr-cart-pay-counter-btn {
  border: 1.5px solid #e5e7eb;
  background: #ffffff;
  color: #374151;
}

.qr-cart-pay-counter-btn .qr-pay-btn-icon {
  color: #2e7d32;
}

.qr-cart-pay-counter-btn:active:not(:disabled) {
  background: #f9fafb;
}

.qr-cart-pay-counter-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* Pay Online — filled green with shadow */
.qr-cart-pay-online-btn {
  border: none;
  background: #2e7d32;
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(46, 125, 50, 0.35);
}

.qr-cart-pay-online-btn:active:not(:disabled) {
  transform: scale(0.96);
}

.qr-cart-pay-online-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* Empty state */
.qr-cart-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 80px 24px;
  text-align: center;
}

.qr-cart-empty-text {
  font-size: 16px;
  font-weight: 600;
  color: #374151;
  margin: 0 0 6px;
}

.qr-cart-empty-sub {
  font-size: 13px;
  color: #9ca3af;
  margin: 0 0 24px;
}

.qr-cart-browse-btn {
  background: #2e7d32;
  color: #ffffff;
  border: none;
  border-radius: 24px;
  padding: 12px 32px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
}

/* ═══════════════════════════════════════
   QR Login Modal (bottom sheet)
   — shared by QRCart, QROrders, QRProfile
═══════════════════════════════════════ */

.qr-login-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 100;
}

.qr-login-sheet {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #ffffff;
  border-radius: 20px 20px 0 0;
  padding: 24px 20px 36px;
  z-index: 101;
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.12);
  animation: qr-slide-up 0.25s ease-out;
}

@keyframes qr-slide-up {
  from { transform: translateY(100%); }
  to   { transform: translateY(0); }
}

.qr-login-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  color: #9ca3af;
  cursor: pointer;
  padding: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.qr-login-title {
  font-size: 18px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 6px;
}

.qr-login-subtitle {
  font-size: 13px;
  color: #6b7280;
  margin: 0 0 24px;
}

.qr-login-field-label {
  font-size: 11px;
  font-weight: 700;
  color: #9ca3af;
  letter-spacing: 0.6px;
  margin-bottom: 8px;
}

.qr-login-phone-row {
  display: flex;
  align-items: center;
  border: 1.5px solid #e5e7eb;
  border-radius: 10px;
  overflow: hidden;
  background: #f9fafb;
  transition: border-color 0.2s;
}

.qr-login-phone-row:focus-within {
  border-color: #2e7d32;
  background: #fff;
}

.qr-login-prefix {
  display: flex;
  align-items: center;
  padding: 12px 12px;
  font-size: 14px;
  font-weight: 600;
  color: #374151;
  border-right: 1.5px solid #e5e7eb;
  white-space: nowrap;
  background: #f3f4f6;
}

.qr-login-phone-input {
  flex: 1;
  border: none;
  outline: none;
  background: transparent;
  font-size: 15px;
  color: #1a1a1a;
  padding: 12px 14px;
  font-family: inherit;
}

.qr-login-phone-input::placeholder {
  color: #9ca3af;
  font-size: 13px;
}

.qr-login-error {
  font-size: 12px;
  color: #e53935;
  margin: 6px 0 0;
}

.qr-login-cta {
  display: block;
  width: 100%;
  margin-top: 24px;
  margin-bottom: 16px;
  height: 50px;
  background: #2e7d32;
  color: #ffffff;
  border: none;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.15s;
}

.qr-login-cta:hover:not(:disabled) {
  background: #256427;
}

.qr-login-cta:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.qr-login-terms {
  font-size: 11px;
  color: #9ca3af;
  text-align: center;
  margin: 12px 0 0;
}

/* ═══════════════════════════════════════
   QR View Cart Floating Bar
   — shared by QRHome and QRSearch
═══════════════════════════════════════ */

/* Outer wrapper — positions the card above bottom nav with side padding */
.qr-view-cart-outer {
  position: fixed;
  bottom: calc(64px + env(safe-area-inset-bottom, 0px));
  left: 0;
  right: 0;
  z-index: 40;
  padding: 0 16px 8px;
  max-width: 430px;
  margin: 0 auto;
  pointer-events: none;
  animation: qr-slide-up 0.22s ease-out;
}

/* The visible rounded green card */
.qr-view-cart-card {
  background: #2e7d32;
  color: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.22);
  padding: 12px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  pointer-events: auto;
  transition: transform 0.1s ease;
  -webkit-tap-highlight-color: transparent;
}

.qr-view-cart-card:active {
  transform: scale(0.97);
}

.qr-view-cart-left {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.qr-view-cart-count {
  font-size: 11px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

.qr-view-cart-price {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
}

.qr-view-cart-right {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  white-space: nowrap;
}

.footer-container {
  /* padding: 12px; */
  /* background-color: #f5f5f5; */
  min-height: 10vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  /* padding: 16px; */
  /* padding-bottom: 52px; */
}

.footer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  /* width: 100vw; */
  width: 100%;
  box-sizing: border-box;
}

.footer-text {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  font-size: 20px;
  font-weight: 600;
  /* font-family: "Nunito Sans", sans-serif; */
  color: #b9b9b9;
  /* max-width: 60%; */
  padding-bottom: 30px;
  padding-left: 93px;
  flex: 1;
}
.quotes {
  display: flex;
  gap: 5px;
  align-items: center;
  font-size: xxx-large;
}
.footer-text-row {
  align-items: center;
  justify-content: flex-start;
}

.footer-word.highlight {
  color: #28a745; /* green highlight */
}

.footer-image {
  width: 80px;
  height: 65px;
  object-fit: cover;
}

.footer-heart-row {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 25px;
  font-weight: 700;
  color: white;
  /* font-family: "Nunito Sans", sans-serif; */
}

.footer-heart {
  color: red;
}
.footer-fssai {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
}
.footer-img-wrapper {
  width: 20%;
}

@media (min-width: 897px) and (min-width: 900px) {
  .footer-text {
    padding-left: 20px !important;
  }
}

@media (max-width: 852px) and (min-width: 1280px) {
  .footer-image {
    width: 90px;
    height: 70px;
    object-fit: cover;
  }
}
@media (min-width: 540px) and (max-width: 600px) {
  .footer-text {
    padding-left: 12px;
  }
  .quotes {
    font-size: xx-large;
  }
}
@media (min-width: 601px) and (max-width: 630px) {
  .footer-text {
    padding-left: 36px !important;
  }
}
@media (max-width: 568px) and (min-width: 850px) {
  .quotes {
    gap: 5px;
    font-size: xx-large;
  }
}
@media (max-width: 811px) and (min-width: 631px) {
  .footer-text {
    padding-left: 36px !important;
  }
}
@media (max-width: 540px) and (min-width: 720px) {
  .footer-image {
    width: 75px;
    height: 55px;
    object-fit: cover;
  }
}

@media (max-width: 538px) and (min-width: 393px) {
  .quotes {
    gap: 5px;
    font-size: large;
  }
  .footer-text {
    padding-top: 38px;
    padding: 20px;
  }
  .footer-image {
    width: 55px !important;
    height: 35px !important;
    object-fit: cover;
  }
}
@media (min-width: 360px) and (max-width: 400px) {
  .footer-text {
    padding-left: 13px;
    /* padding-top: 30px; */
  }
  .quotes {
    font-size: x-large;
  }
}
@media (min-width: 375px) and (max-width: 392px) {
  .quotes {
    gap: 5px;
    font-size: large !important;
  }
  .quotes {
    gap: 5px;
    font-size: medium;
  }
  .footer-text {
    padding-left: 27px !important;
    /* padding-top: 42px !important; */
  }
  .footer-heart-row {
    font-size: 16px;
  }
}
@media (max-width: 375px) and (min-width: 539px) {
  .quotes {
    gap: 5px;
    font-size: medium;
  }
  .footer-image {
    width: 75px;
    height: 55px;
    object-fit: cover;
  }
  .footer-heart-row {
    font-size: 15px;
  }
  .footer-text {
    padding-left: 23px;
  }
}
@media (min-width: 414px) and (max-width: 420px) {
  .footer-text {
    padding-left: 16px;
  }
}

@media (max-width: 344px) and (min-width: 374px) {
  .quotes {
    gap: 5px;
    font-size: medium;
  }
  .footer-image {
    width: 75px;
    height: 55px;
    object-fit: cover;
  }
  .footer-text {
    padding-left: 23px !important;
  }
}


/* for responsiveness */
@media (max-width: 1024px) {
  .footer-container {
    padding-bottom: calc(max(1rem, env(safe-area-inset-bottom))*3.5);
  }
}

@media (max-width: 600px) {
  .footer-container {
    padding-bottom: calc(max(1rem, env(safe-area-inset-bottom))*1.75);
  }
}
.floating-wrapper {
  display: inline-block;
}

.floating-border {
  /* border: 2px solid #ccc; */
  border-radius: 8px;
  /* overflow: hidden; */
  width: fit-content;
}

.cart-wallet {
  margin-top: 1rem;
  box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
  height: 3rem;
  width: 100%;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  gap: 2rem;
  background-color: #fff;
}

.cart-wallet-checked {
  margin-top: 1rem;
  box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
  height: 6rem;
  width: 100%;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  gap: 2rem;
  background-color: #fff;
}

.cart-wallet-details {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 0.5rem;
}

.cart-wallet-checked-details {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 0.5rem;
}

.cart-wallet-left {
  display: flex;
  align-items: center;
}

.cart-wallet-left-loading {
  display: flex !important;
  align-items: center !important;
  gap: 0.5rem !important;
}

.cart-wallet-breakup {
  display: flex;
  flex-direction: column;
}

.wallet-amount-applicable,
.wallet-amount-remaining {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cart-no-delivery-address {
  background-color: #fff;
  border-radius: 1rem;
  box-shadow: rgba(0, 0, 0, 0.15)1.95px 1.95px 1.95px 2.6px;
  height: 4rem;
  width: 91%;
  position: fixed;
  bottom: 0;
  margin-bottom: 0;
  display: flex;
  justify-content: center;
  flex-direction: column;
  z-index: 999;
}

.cart-checkout-order {
  background-color: #fff;
  border-radius: 1rem;
  box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
  height: 4rem;
  width: 92%;
  position: fixed;
  bottom: 0;
  margin-bottom: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 999;
}

.cart-payment-method {
  margin: 1rem;
  display: flex;
  flex-direction: column;
}

.payment-method-type {
  display: flex;
}

.payment-dropdown-icon,
.payments-icon {
  color: rgb(12, 121, 36) !important;
}

.payments-icon {
  margin-right: 0.3rem !important;
}

.cart-place-order {
  /* background-color: rgb(12, 121, 36); */
  height: 2.5rem;
  width: 100%;
  border-radius: 1rem;
  margin: 0.7rem;
  display: flex;
  gap: 0.6rem;
  justify-content: center;
  align-items: center;
  padding: 0.2rem;
}

.checkout-cart-line {
  height: 1rem;
  width: 0.1rem;
  background: white;
}

.cash-on-delivery {
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  background-color: white;
  height: 2rem;
  width: 100%;
  border-radius: 2rem;
  padding: 0.5rem;
  display: flex;
  align-items: center;
}

.cart-online-payment {
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  background-color: white;
  height: 10rem;
  width: 100%;
  border-radius: 1rem;
  display: flex;
  flex-direction: column;
}

.online-payment-details {
  padding: 0.5rem;
  display: flex;
  align-items: center;
}

.online-payment-img {
  height: 4rem;
  width: 100%;
}

.payment-img {
  height: 100%;
  width: 96%;
  object-fit: cover;
}

.non-logged-in {
  background-color: #fff;
  border-radius: 1rem;
  box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
  height: 7rem;
  width: 96%;
  position: fixed;
  bottom: 0;
  margin-bottom: 4rem;
  display: flex;
  justify-content: center;
  flex-direction: column;
  margin-bottom: 0;
  z-index: 999;
}

.non-logged-in-details {
  margin-left: 1rem !important;
}

.parent-container-cart {
  background-color: #ffffff;
  padding: 6px;
  border-radius: 8px;
  margin-top: -5px;
}

.deliverySlotNewHeader {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  border-bottom: 1px solid #eee;
}

.deliverySlotNewTitle {
  font-size: 16px;
  font-weight: 600;
}

.deliverySlotNewContent {
  padding: 12px 16px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.deliverySlotNewSection {
  margin-bottom: 20px;
}

.deliverySlotNewSectionTitle {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 8px;
  color: #333;
}

.deliverySlotNewTime {
  font-size: 14px;
  color: #222;
}

.deliverySlotNewSlot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px;
  border: 1px solid #e5e5e5;
  border-radius: 10px;
  margin-bottom: 10px;
  background: #fff;
  cursor: pointer;
}

.deliverySlotNewDisabled {
  opacity: 0.8;
  cursor: not-allowed;
}

.deliverySlotNewSelected {
  border-color: #b96b42;
  background: #fff7f2;
}

.deliverySlotNewBookBtn {
  background: #b96b42;
  color: #fff;
  border: none;
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 12px;
}

.deliverySlotNewFull {
  color: #d32f2f;
  font-size: 12px;
  font-weight: 600;
}

.deliverySlotNewSelectedText {
  color: #2e7d32;
  font-size: 12px;
  font-weight: 600;
  padding: 0 12px;
}

/* Hide scrollbar but keep scroll working */
.deliverySlotNewDrawerContent {
  overflow-y: auto;
  -webkit-overflow-scrolling: touch; /* iOS smooth scroll */
  scrollbar-width: none; /* Firefox */
}

/* Chrome, Safari, Edge */
.deliverySlotNewDrawerContent::-webkit-scrollbar {
  display: none;
}

.deliverySlotNewLoader {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  min-height: 50vh;
}

.deliverySlotNewError {
  color: #d32f2f;
  text-align: center;
  padding: 20px;
}

.deliverySlotNewAction {
  min-width: 72px;       
  text-align: right;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.deliverySlotNewBookBtn,
.deliverySlotNewSelectedText,
.deliverySlotNewFull {
  height: 24px;
  line-height: 24px;
  display: inline-flex;
  align-items: center;
}
.order-processing {
  padding: 0.5rem;
  background-color: #f4f7fc;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}

.order-processing-loader {
  height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.processing-loader {
  height: 100%;
}

.KgYDHyCPnYjXho_cgNOQ {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 50;
  background-color: var(--backdrop-bg-color-1, #0b0b0b29);
  backdrop-filter: blur(4px);
}

.PPhxpgKQkx6qWGSbx0ub {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 300ms;
}

/* Define the spinning motion for the dots container */
@keyframes i10BjRqJPNIv3VUoCtOC {
  to {
    transform: rotate(360deg);
  }
}

/* Define the fade/scale animation for individual dots */
@keyframes x3EUsoiVmpyFUP9Ex8Cb {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.3;
    transform: scale(0.5);
  }
}

/* Base spinner container style */
.jLn7w_ZdhcpOFAw6bOBH {
  position: relative;
}

/* Wrapper for positioning each dot around the circle */
.mBQuYnQCxZ5zJZMhb8m_ {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

/* Individual dot style */
.D8rqSYPJh3yowURMSSgM {
  border-radius: 50%;
}

.order-success {
  padding: 0.5rem;
  background-color: var(--Surface-White, #ffffff);
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  /* gap: 1rem; */
}

.order-success-btn-par {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 2rem;
}

.order-success-btn {
  width: 120px;
  border-radius: 12px;
  border: 1px solid var(--blue-1, #AF5E00);
  background-color: var(--blue-1, #AF5E00);
  color: var(--Surface-White, #ffffff);
  font-size: 1rem;
  font-weight: 500;
  padding: 8px 16px;
}

.category-div {
  border-radius: 1rem;
  /* object-fit: contain; */
  height: 100px;
  width: 170px;
  height: 100px;
  background-color: #c6eac6;
  padding: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.category-text-image-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.brand-div {
  width: 100px;
  height: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 1rem;
  /* background-color: #ffffff; */
}

.category-items-root-div {
  /* margin-top: 6rem; */
  /* margin-bottom: 3.5rem; */
  height: 100vh;
  overflow: scroll;
  background-color: #f4f7fc;
  position: relative;
  z-index: 100;
}
.category-items-root-div::-webkit-scrollbar {
  display: none;
}

.category-items-header {
  height: 6rem;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  background-color: #f4f7fc;
  z-index: 1000;
}
.category-items-list {
  /* padding: 0.5rem; */
  padding: 100px 0.5rem 30px;
  position: relative;
  /* z-index: -100; */
}

/* .brand-div-image {
  padding: 0.5rem;
} */
@media (max-width: 480px) and (min-width: 320px) {
  .category-div {
    width: 60px;
    height: 100%;
    border-radius: 4px;
  }
}
@media (max-width: 599px) and (min-width: 540px) {
  .category-div {
    width: 60px;
    height: 100%;
    border-radius: 4px;
  }
}

.categories-root-div {
  background-color: #f4f7fc;
}
.categories-root-div::-webkit-scrollbar {
  display: none;
}
.categories-listing {
  padding: 1em;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
  gap: 2.2em;
}

@media (max-width: 1024px) and (min-width: 801px) {
  .categories-listing {
    grid-template-columns: repeat(4, 1fr);
    gap: 2em;
  }
}
/* Tablets: 600px to 768px */
@media (max-width: 860px) and (min-width: 800px) {
  .categories-listing {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 768px) and (min-width: 600px) {
  .categories-listing {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 599px) and (min-width: 540px) {
  .categories-listing {
    grid-template-columns: repeat(4, 1fr);
    gap: 3px;
  }
}
@media (max-width: 360px) and (min-width: 321px) {
  .categories-listing {
    grid-template-columns: repeat(4, 1fr);
    gap: 3px;
  }
}
@media (max-width: 480px) and (min-width: 320px) {
  .categories-listing {
    grid-template-columns: repeat(2, 1fr);
    padding: 4px;
    gap: 6px;
  }
}
/* Mobile devices: 320px to 480px */
@media (max-width: 480px) and (min-width: 320px) {
  .categories-listing {
    grid-template-columns: repeat(4, 1fr);
    padding: 4px;
    gap: 6px;
  }
}

.PqODRftXVkZUujypTDBw {
  display: flex;
  align-items: center;
  justify-self: center;
  justify-content: center;
}

.RWCo_Jn3vViSwVjC2TW2 {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.UEA2KiarBQRpwgPm3Jje {
  width: auto;
  object-fit: cover;
}

.kh__3zcMY_BGRiV8zHHi {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-Primary-1, #252b37);
  margin-top: 1rem;
  text-align: center;
}

.I5tDJoeBrT35bcCUvTRc {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: var(--Surface-White, #ffffff);
  border: 1px solid var(--grey-n-4, #f5f5f5);
  border-radius: 12px;
  padding: 12px;
  width: 100%;
  box-sizing: border-box;
  transition: all 0.2s ease;
}

.oMFXT9XgEADI91ijk6U6 {
  border-color: var(--blue-1, #af5e00); /* Highlight border if applied */
  background-color: #fff9f5;
}

.uOEhnPtNgOZCvzQ4amb8 {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
}

.tE1hyVyytcYR7PL6w62j {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  overflow: hidden;
  background-color: var(--grey-n-4, #f5f5f5);
  flex-shrink: 0;
}

.oQWfXneapf9EAFhNOHjq {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tDv_cwrYfS3Ot_kaZhdL {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.josApaewv1QXbUUv5WYW {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-Primary-1, #171717);
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.HrhXXFpI9_ZCcydA3l6P {
  font-size: 12px;
  font-weight: 400;
  color: var(--text-Secondary-1, #8a93a7);
  margin: 0;
  line-height: 1.3;
  /* Truncates text if it gets too long */
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.S07LoXwGGeqmTBZtxmdR {
  flex-shrink: 0;
}

.keCohuah8z8U47IkCGmg {
  background-color: transparent;
  color: var(--blue-1, #af5e00);
  border: 1px solid var(--blue-1, #af5e00);
  border-radius: 6px;
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  min-width: 70px; /* Prevents button size jumping when text changes */
  display: flex;
  justify-content: center;
  align-items: center;
}

.keCohuah8z8U47IkCGmg:hover:not(:disabled) {
  background-color: #fdf0e6;
}

.X5tX_50Jfgq0ompguNyr {
  background-color: var(--blue-1, #af5e00);
  color: var(--Surface-White, #ffffff);
  cursor: default;
}

.hII5MRt3GpYUtcAJRtqr {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 14px;
}

.gxhzHqbmsToZov_zsiw9 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 12px 16px;
  border-bottom: 1px solid var(--grey-n-4, #f5f5f5);
}

.iXLf8JXvDfv3MPKk891S {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-Primary-1, #171717);
  margin: 0;
}

.qxb39O8plA1l7zpI0Ezv {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 16px;
  box-sizing: border-box;
}

.xAzTyunvfXIKRIXDldEE {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  flex-grow: 1;
}

.NEaMM1cCYel4YW4G86xD {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.vm5FOTruHDfnUyRbOTF9 {
  font-size: 14px;
  font-weight: 500;
  color: var(--grey-n-2, #737373);
  margin: 0;
}

.KO5A0twULWtxrQUOSNgD {
  display: flex;
  flex-direction: column;
  gap: 16px;
  overflow-y: auto;
  padding-bottom: 2rem;
}

.guestLogin {
  display: flex;
  flex-direction: column;
  /* gap:1rem; */
  height: 90vh;
  padding: 0.5rem;
  background-color: #f4f7fc;
  margin-top: 3rem;
}

.wrapper-input-box {
  padding: 6px;
  border-radius: 0.5rem !important;
  display: flex;
  align-items: center;
  color: lightgray;
  background: #fff;
  transition: all 0.3s ease;
  box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px,
    rgba(60, 64, 67, 0.15) 0px 1px 3px 1px !important;
  margin-top: 0px !important;
  position: relative;
  border: none !important;
}
.wrapper-input-box input {
  border: none;
  outline: none;
  flex: 1;
}
.wrapper-input-box:hover {
  border: none !important;
}

.search-icon {
  /* color: lightgray; */
  color: rgb(173, 26, 25);
  font-size: 1.2rem;
  margin: 0 0.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
}
.search-wrapper {
  position: relative;
  width: 300px;
}

.search-input {
  border: none;
  background-color: transparent;
  width: 100%;
  font-size: 0.9rem;
}

.search-input::placeholder {
  color: #999;
}

.search-input:focus {
  outline: none;
}

.order-item-img-box {
  display: flex;
  justify-content: flex-start;
  gap: 20px;
  /* margin-right: 20px; */
}

.order-item-img-box2 {
  width: 30%;
  /* height: 60px; */
  height: 5rem;
  /* box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 1px 3px 1px !important; */
}

.order-item-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.order-balance-count {
  /* width: 70px; */
  /* padding: 14px 0; */
  width: 30%;
  /* padding: 14px 3px; */
  border: 2px solid rgb(12, 121, 36);
  /* text-align: center; */
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #faf9fe !important;
  border-radius: 0.5rem;
}

.order-card-total {
  display: flex;
  /* justify-content: space-between; */
}

.order-card-stat {
  display: flex;
  justify-content: space-between;
}

.order-card-button {
  color: white;
  background-color: rgb(12, 121, 36) !important;
  font-size: 8px !important;
  width: 120px !important;
}

.order-sub-card {
  /* background-color: whitesmoke; */
  background-color: white;
  border-top-right-radius: 0.5rem;
  border-top-left-radius: 0.5rem;
  padding: 5px 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.order-cub-card-box {
  padding: 15px 10px;
  background-color: white;
}

.order-card-main {
  /* box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 1px 3px 1px !important; */
  border-radius: 1rem !important;
  margin-bottom: 1rem;
}

/* .order-list-count{
    margin-top: 5px !important;
} */

.order-status-badge {
  padding: 3px 5px !important;
  font-size: 10px !important;
  color: white !important;
  border-radius: 0.25rem !important;
}

.defaultOrderColor {
  background-color: #607d8b;
}
.deliveredOrder {
  background-color: #4caf50;
}
.cancelledOrder {
  background-color: #f44336;
}

/* Root */
.veD696h34LadCJSNie5g {
  height: 100vh;
  background-color: var(--bg-page);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}


/* ── White top bar (back + title) ── */
.Jq4u8XlNlm6cVEA7mf1m {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background-color: var(--Surface-White);
  border-bottom: 1px solid var(--border-subtle);
}

.eQVfnXsOdEqihw1NqEcI {
  background: none;
  border: none;
  cursor: pointer;
  padding: 2px;
  display: flex;
  align-items: center;
  color: var(--text-primary);
}

.L4YWju_4NFQSa2lAxQDT {
  width: 20px;
  height: 20px;
  stroke: var(--text-primary);
}

._pjW2TdJ6i0QEpHzIXHN {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
}

/* ── Orange gradient section ── */
.JTb6t3OopfMk2q2ilvNt {
  background: var(--brand-gradient);
  padding: 16px 16px 20px;
  min-height: 144px;
  color: var(--Surface-White);
  display: flex;
  align-items: center;
  box-sizing: border-box;
}

.D6zXZkhojB2iJqcMSuo6 {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
}

.m9Aot51Hd_wLb7Rzklbk {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.S7ZrF2ag1Ub2tB1F5c0J {
  font-size: 20px;
  font-weight: 700;
  color: var(--Surface-White);
  line-height: 1.2;
}

.oSZRA6sUq6k8zWaS7iVP {
  display: flex;
  align-items: center;
  gap: 6px;
}

.TAKwDyxpXLNLwUhw8D4I {
  width: 14px;
  height: 14px;
  stroke: rgba(255, 255, 255, 0.9);
  flex-shrink: 0;
}

.VodKJeTUkjtyk5INTSAP {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.95);
}

/* ── Tab Bar ── */
.U_U2gGgjYkIy84Aaweyl {
  display: flex;
  overflow-x: auto;
  background-color: var(--bg-page);
  border-bottom: 1px solid var(--border-tab);
  scroll-behavior: smooth;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.U_U2gGgjYkIy84Aaweyl::-webkit-scrollbar {
  display: none;
}

.R3wfvLvmUAbnJsxeep86 {
  flex-shrink: 0;
  padding: 12px 16px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  transition: color 0.15s, border-color 0.15s;
}

.lL6mPkkAEcjnlS5fYTbw {
  color: var(--brand-orange);
  border-bottom: 2px solid var(--brand-orange);
  font-weight: 600;
}

/* ── Tab Content ── */
.IioNG7EAQ9zJP4wmNECW {
  flex: 1;
  overflow-y: auto;
  padding: 16px;
  height: 0; /* forces flex child to scroll instead of expanding */
  -webkit-overflow-scrolling: touch;
  background-color: var(--Surface-White);
}

/* ── Overview Tab ── */
.Bwzout58llzeoPg8jaUC {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.in44QjfDczkxXRhTSi5g {
  background: var(--Surface-White);
  border-radius: 12px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  margin-bottom: 16px;
}

.Zie3hWGR36UJ7qcqY7lE {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary);
  padding: 14px 16px 10px;
  border-bottom: 1px solid var(--border-subtle);
}

.ush7alXo1kTlLEF23T0w {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  border-bottom: 1px solid var(--border-light);
}

.ush7alXo1kTlLEF23T0w:last-child {
  border-bottom: none;
}

.YT3G5ujR6XSzvBTYhZ5l {
  flex: 1;
}

.eeWybr53tFPQjCm4Ck00 {
  font-size: 11px;
  color: var(--text-tertiary);
  margin-bottom: 2px;
}

.F2q2jLzoszI6rp5V6zQB {
  font-size: 14px;
  color: var(--text-primary);
  font-weight: 500;
}

.OPuH2MdFtlRtXFpaUu6m {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  color: var(--verified-text);
  background-color: var(--verified-bg);
  border-radius: 20px;
  padding: 2px 10px;
  margin-left: 8px;
}

.xQdgKRA6r0qdQXAxuIpA {
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  color: var(--blue-1);
  display: flex;
  align-items: center;
}

.Bq2Tnu6IVYoyFKWh5Pxx {
  width: 16px;
  height: 16px;
  color: var(--blue-1);
}

/* Inline edit */
.rDc9rDm9G5yc7RDpszEq {
  padding: 12px 16px;
  border-bottom: 1px solid var(--border-light);
}

.D42FpYd06mHV5FF6pmjg {
  font-size: 11px;
  color: var(--text-tertiary);
  margin-bottom: 4px;
}

.Z8UjRhFB4jicC_n1AjxY {
  width: 100%;
  border: 1px solid var(--blue-1);
  border-radius: 8px;
  padding: 8px 10px;
  font-size: 14px;
  color: var(--text-primary);
  outline: none;
  box-sizing: border-box;
  margin-bottom: 8px;
}

.hveAaKJ8zBMQ2ooYsW9_ {
  display: flex;
  gap: 8px;
}

.MDmfEjsqNqYaWRBI9_Hz {
  flex: 1;
  background-color: var(--blue-1);
  color: var(--Surface-White);
  border: none;
  border-radius: 8px;
  padding: 8px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
}

.wba9jL2Bf3MgZTsUHnUf {
  flex: 1;
  background-color: var(--btn-cancel-bg);
  color: var(--text-secondary);
  border: none;
  border-radius: 8px;
  padding: 8px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
}

/* Logout */
.Gqfe8ACAMrFRlEceLxbw {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  background-color: var(--danger-bg);
  border: 1px solid var(--danger-border);
  border-radius: 12px;
  padding: 14px 16px;
  font-size: 14px;
  font-weight: 600;
  color: var(--danger-text);
  cursor: pointer;
  margin-top: 8px;
}

.T8kuFKUOwvHu6lg_2NKz {
  width: 18px;
  height: 18px;
}

/* ── FAQ Tab ── */
.kcPzpS927hfY9KRYbeDg {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.LlbNV3bHYMetTO0aas8v {
  background: var(--Surface-White);
  border-radius: 10px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.07);
  overflow: hidden;
}

.fAgzTtdwL7MvdHX9ThPQ {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  cursor: pointer;
  gap: 10px;
}

.NWEamq1o37Ua0CHKGXns {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-primary);
  flex: 1;
  line-height: 1.4;
}

.IbUbkPzLHcX5g8w0HGEQ {
  width: 18px;
  height: 18px;
  stroke: var(--blue-1);
  flex-shrink: 0;
}

.K03Ks3Sllpp_L9UcVu0T {
  font-size: 13px;
  color: var(--text-secondary);
  padding: 0 16px 14px;
  line-height: 1.6;
  border-top: 1px solid var(--border-subtle);
  padding-top: 10px;
}

/* ── Terms / Privacy Tab ── */
.Gxm_9AwDgEuy1kOph4nw {
  background: var(--Surface-White);
  border-radius: 12px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
  padding: 16px;
}

.wQCDXD_hYGzSrb5knOQ8 {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.pJ1XyUaAam6DKNjFytGn {
  font-size: 12px;
  color: var(--text-tertiary);
  margin-bottom: 12px;
}

.XloFMk9NwiB1Witn1xf7 {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-primary);
  margin-top: 14px;
  margin-bottom: 4px;
}

.nGOzGg6TF5N2XAkgCNvQ {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 4px;
}

/* ── Placeholder (Saved Addresses) ── */
.LYq0B5E20ikyZmhhMcJi {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 16px;
  gap: 8px;
}

.JSk_MiW9CzqhaGWdwOgR {
  font-size: 40px;
}

.FONBjGxT2DfpslcMS5hQ {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
}

.Nx4nXmBThwSSeU9Fdv0P {
  font-size: 13px;
  color: var(--text-tertiary);
}

/* ── Order History Tab ── */
.bbq9TdkoA4pi2IcKZ4D_,
.XnE_i7jMxWFc_2NMWhaI {
  text-align: center;
  color: var(--text-tertiary);
  font-size: 14px;
  padding: 40px 16px;
}

.mhQJvONhkhq9tyOTzj16 {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.TaA_0GP7zlbeMJTmrPE_ {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.PhwBTqxP64SRf1xYETrQ {
  background: var(--bg-page);
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.zGWuQl4_yePA9A3iI4fV {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.hfgDY8fATL9nKC2kSj26 {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
}

.ShBD3e_PbXJczoVfCMJv {
  font-size: 11px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 20px;
}

.DaI1KvL8BKSWNl_x3O7E {
  background-color: var(--status-delivered-bg);
  color: var(--status-delivered-text);
}

.LKgIZbJvsri9qqMBgvYv {
  background-color: var(--status-cancelled-bg);
  color: var(--status-cancelled-text);
}

.GWrPinZdmu3iayUJH_h_ {
  background-color: var(--status-pending-bg);
  color: var(--status-pending-text);
}

.loB1d4jol6kjVF95iC5r {
  font-size: 12px;
  color: var(--text-tertiary);
}

.aGh0T0on7BNV8qnakxYH {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
  margin-top: 2px;
}

/* ── Logout Modal ── */
.bKUpZI55KnbbnJP7l640 {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #fff3e0;
  margin: 0 auto 12px;
}

.F0vI8Z6pwMV9ZzLvpZR4 {
  width: 28px;
  height: 28px;
  color: #E17100;
}

.AjiBGpLldlCj432Kg3Lu {
  font-size: 17px;
  font-weight: 700;
  color: #252B37;
  margin-bottom: 6px;
}

.xXFyAS7n6wPz5qKuNVoF {
  font-size: 13px;
  color: var(--text-secondary);
  margin-bottom: 20px;
}

.hVW3_gTN9K9XKEJ9v4cj {
  display: flex;
  gap: 10px;
}

._tN67qwDrJXvR2QrQ4VJ {
  flex: 1;
  padding: 10px 0;
  border-radius: 10px;
  border: 1.5px solid #e0e0e0;
  background: #fff;
  color: #252B37;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
}

.QMIaXs2l8FAFQx4cUNH5 {
  flex: 1;
  padding: 10px 0;
  border-radius: 10px;
  border: none;
  background: linear-gradient(90deg, #E17100, #BB4D00);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
}

.edit-profile-root-div {
  height: 100vh;
  /* overflow: hidden; */
}

.edit-profile-input {
  width: 98%;
  height: 30px;
  border: 1.5px solid rgba(116, 115, 115, 0.2);
  border-radius: 0.5rem !important;
}

.disabled-detail-box {
  opacity: 0.5;
}

.edit-profile-button {
  width: 96% !important;
  height: 30px;
  margin: 2% !important;
  font-size: 8px !important;
}

.edit-profile-main {
  /* padding: 2% !important; */
  padding: 8px 16px !important;
  line-height: 20px;
}

/* QR dine-in: override brownish restaurant header with green */
.qr-edit-profile-page .menu-back-heading.restaurant-header {
  background-color: #2e7d32 !important;
}

.plus-icon {
    color: lightgray;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
}
/* Override styles for dots - positioned inside banner */
.alice-carousel {
  position: relative;
}

.alice-carousel__dots {
  position: absolute;
  bottom: 15px;
  left: 0;
  right: 0;
  margin: 0 auto;
  list-style: none;
  padding: 0;
  display: flex;
  justify-content: center;
  z-index: 10;
}

.alice-carousel__dots-item {
  width: 8px !important;
  height: 8px !important;
  margin: 0 4px !important;
  background-color: rgba(255, 255, 255, 0.5) !important;
  border-radius: 50% !important;
  cursor: pointer;
  transition: all 0.3s ease;
}

.alice-carousel__dots-item.__active {
  background-color: #fff !important;
  transform: scale(1.1);
}

.alice-carousel__dots-item:not(.__custom) {
  width: 8px !important;
  height: 8px !important;
  cursor: pointer;
  border-radius: 50% !important;
  background-color: rgba(255, 255, 255, 0.5) !important;
}

.alice-carousel__dots-item:not(.__custom).__active {
  background-color: #fff !important;
}

.alice-carousel__dots-item:not(.__custom):not(:last-child) {
  margin-right: 6px !important;
}

/* wrapper  */
.alice-carousel__wrapper {
  /* border-radius: 1rem; */
  overflow: hidden;
}

/* Desktop: add horizontal padding for banner */
@media (min-width: 769px) {
  .carousel-libr {
    padding: 2% 15%;
  }

  .alice-carousel__wrapper {
    border-radius: 12px;
  }
}

.alice-carousel__wrapper img {
  /* max-height: 500px !important; */
  min-height: 300px !important;
  width: 100%;
  object-fit: cover;
  /* margin-top: 201px; */
  /* object-fit: contain; */
}

/* Desktop: limit banner height */
@media (min-width: 769px) {
  .alice-carousel__wrapper img {
    max-height: 400px !important;
    min-height: 300px !important;
    object-fit: cover;
  }
}

.alice-carousel__stage-item {
  margin-top: 0px !important;
}
.home_banner_img {
  min-height: 377px !important;
}
/* Tablets: 600px to 768px */
@media (max-width: 768px) and (min-width: 600px) {
  .alice-carousel__wrapper img {
    min-height: 220px !important;
  }
}

@media (max-width: 540px) and (min-width: 720px) {
  .alice-carousel__wrapper img {
    min-height: 220px !important;
    /* margin-top: 210px !important; */
  }
}

@media (max-width: 599px) and (min-width: 400px) {
  .alice-carousel__wrapper img {
    min-height: 186px !important;
    margin-top: 0px !important;
  }
}

/* Mobile devices: 320px to 480px */
@media (max-width: 399px) and (min-width: 320px) {
  .alice-carousel__wrapper img {
    min-height: 160px !important;
    margin-top: 0px !important;
  }
}

/* .titleBox{
    
} */
.no-products-found {
  height: 7rem;
  width: 7rem;
}

.no-products-found-img {
  height: 100%;
}
/* Card Styling */
.tag-card-1-card {
  display: flex;
  flex-direction: column;
  flex: 0 0 calc(50% - 6px);
  height: 100%;
  overflow: hidden;
  position: relative;
  transition: transform 0.2s ease;

  background: var(--Surface-White, #ffffff);
  border-radius: 8px;
  border: 1px solid #e5e5e5;
  padding: 0.75rem 0.75rem 0.25rem;
}

/* Image Section */
.tag-card-1-image-box {
  position: relative;
  width: 100%;
  height: 120px;
  border-radius: 8px;
  overflow: hidden;
}

.tag-card-1-fav-par {
  position: absolute;
  bottom: 4px;
  right: 4px;
  background-color: #fe9a00e5;
  color: var(--Surface-White, #ffffff);
  height: 28px;
  width: 28px;
  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;
}

.tag-card-1-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}

/* Best Seller Badge (Top Overlay) */
.best-seller-badge {
  position: absolute;
  top: 0;
  left: 0;
  background: linear-gradient(90deg, #b96b42 0%, #d4a373 100%);
  color: var(--Surface-White, #ffffff);
  padding: 4px 12px;
  font-size: 10px;
  font-weight: 700;
  border-bottom-right-radius: 12px;
  display: flex;
  align-items: center;
  gap: 4px;
  z-index: 1;
}

/* Content Section */
.tag-card-1-content {
  padding: 12px 0 0;
  display: flex;
  flex-direction: column;
  flex-grow: 1; /* pushes footer-1 to bottom */
}

.deliverySlotContainer {
  display: flex;
  align-items: center;
  gap: 6px;
  background-color: #fdedd6;
  border-radius: 6px;
  padding: 4px 8px;
  margin-bottom: 8px;
  align-self: flex-start;
}

.slotText {
  font-size: 11px;
  font-weight: 600;
  color: #c77d0b;
  margin: 0;
}

.slotIcon svg {
  width: 12px;
  height: 12px;
  color: #fe9a00;
}

.foodTypeNameContainer {
  display: flex;
  align-items: flex-start;
  gap: 6px;
  margin-bottom: 4px;
}

.productName {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-Primary-1, #171717);
  margin: 0;
  line-height: 1.2em;
  height: 1.2em; /* fixed height for single line */
  display: -webkit-box;
  -webkit-line-clamp: 1; /* clamp to single line */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis; /* show dots if name is too long */
}

.tag-card-1-price {
  font-size: 16px;
  font-weight: 800;
  color: var(--text-Primary-1, #171717);
  margin: 8px 0;
}

/* Footer / Button Area */
.tag-card-1-footer-1 {
  margin-top: auto; /* aligns to bottom of the content flex container */
  display: flex;
  flex-direction: column;
  align-items: center;
}

.tag-card-1-add-btn {
  width: 100% !important;
  border: 1.5px solid var(--blue-1, #af5e00) !important;
  background-color: var(--Surface-White, #ffffff) !important;
  color: var(--blue-1, #af5e00) !important;
  border-radius: 8px !important;
  font-weight: 700 !important;
  text-transform: none !important;
  height: 40px;
}

.customizablePlaceholder {
  height: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-top: 4px;
}

.customizable-text {
  font-size: 10px;
  color: #737373;
  margin: 0;
  padding: 0;
}

.tag-card-1-qty-counter {
  width: 100%;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 12px;
  border: 1px solid var(--blue-1, #af5e00);
  border-radius: 10px;
}

@media (min-width: 600px) {
  .tag-card-1-card {
    flex: 0 0 200px;
    width: 200px;
  }
}

.alice-carousel .animated {
  animation-fill-mode: both;
}

.alice-carousel .animated-out {
  z-index: 1;
}

.alice-carousel .fadeOut {
  animation-name: fadeOut;
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    visibility: hidden;
  }
}
.alice-carousel {
  position: relative;
  width: 100%;
  margin: auto;
  direction: ltr;
}

.alice-carousel__wrapper {
  position: relative;
  overflow-x: hidden;
  overflow-y: hidden;
  box-sizing: border-box;
  width: 100%;
  height: auto;
}

.alice-carousel__stage {
  position: relative;
  box-sizing: border-box;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  white-space: nowrap;
  transform-style: flat;
  -webkit-transform-style: flat;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}
.alice-carousel__stage-item {
  position: relative;
  display: inline-block;
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  width: 100%;
  height: 100%;
  vertical-align: top;
  white-space: normal;
  line-height: 0;
}
.alice-carousel__stage-item * {
  line-height: initial;
}
.alice-carousel__stage-item.__hidden {
  opacity: 0;
  overflow: hidden;
}

.alice-carousel__prev-btn,
.alice-carousel__next-btn {
  display: inline-block;
  box-sizing: border-box;
  width: 50%;
  padding: 10px 5px;
}
.alice-carousel__prev-btn [data-area]::after,
.alice-carousel__next-btn [data-area]::after {
  position: relative;
  content: attr(data-area);
  text-transform: capitalize;
}

.alice-carousel__prev-btn {
  text-align: right;
}

.alice-carousel__next-btn {
  text-align: left;
}

.alice-carousel__prev-btn-item,
.alice-carousel__next-btn-item {
  display: inline-block;
  cursor: pointer;
  padding: 5px;
  margin: 0;
  color: #465798;
}
.alice-carousel__prev-btn-item:hover,
.alice-carousel__next-btn-item:hover {
  color: darkred;
}
.alice-carousel__prev-btn-item.__inactive,
.alice-carousel__next-btn-item.__inactive {
  opacity: 0.4;
  pointer-events: none;
}

.alice-carousel__play-btn {
  position: absolute;
  top: 30px;
  left: 20px;
  display: inline-block;
}
.alice-carousel__play-btn:hover {
  cursor: pointer;
}
.alice-carousel__play-btn-wrapper {
  position: relative;
  width: 32px;
  height: 32px;
  padding: 10px;
  border-radius: 50%;
  background-color: #fff;
}

.alice-carousel__play-btn-item {
  position: absolute;
  width: 32px;
  height: 32px;
  cursor: pointer;
  border: 0;
  outline: none;
  background: transparent;
}
.alice-carousel__play-btn-item::before, .alice-carousel__play-btn-item::after {
  position: absolute;
  pointer-events: none;
  display: block;
  width: 0;
  height: 0;
  content: "";
  transition: all 0.4s linear;
  border-width: 8px 0 8px 15px;
  border-style: solid;
  border-color: transparent;
  border-left-color: #465798;
}
.alice-carousel__play-btn-item::before {
  left: 5px;
  height: 14px;
}
.alice-carousel__play-btn-item::after {
  top: 7px;
  left: 18px;
}
.alice-carousel__play-btn-item.__pause::before, .alice-carousel__play-btn-item.__pause::after {
  height: 30px;
  border-width: 0 0 0 10px;
}
.alice-carousel__play-btn-item.__pause::after {
  top: 0;
  left: 18px;
}

.alice-carousel__dots {
  margin: 30px 3px 5px;
  padding: 0;
  list-style: none;
  text-align: center;
}
.alice-carousel__dots > li {
  display: inline-block;
}
.alice-carousel__dots-item:not(.__custom) {
  width: 8px;
  height: 8px;
  cursor: pointer;
  border-radius: 50%;
  background-color: #e0e4fb;
}
.alice-carousel__dots-item:not(.__custom):not(:last-child) {
  margin-right: 20px;
}
.alice-carousel__dots-item:not(.__custom):hover, .alice-carousel__dots-item:not(.__custom).__active {
  background-color: #6e7ebc;
}

.alice-carousel__slide-info {
  position: absolute;
  top: 20px;
  right: 20px;
  display: inline-block;
  padding: 5px 10px;
  color: #465798;
  border-radius: 5px;
  background-color: rgba(224, 228, 251, 0.6);
}
.alice-carousel__slide-info-item {
  vertical-align: middle;
  line-height: 0;
}
.brands-card {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  align-items: center;
  gap: 1.2em;
  margin-top: 2rem;
}

@media (max-width: 768px) and (min-width: 600px) {
  .brands-card {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 599px) and (min-width: 479px) {
  .brands-card {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 480px) and (min-width: 320px) {
  .brands-card {
    grid-template-columns: repeat(3, 1fr);
  }
}

.horizontal-scroll-container {
  display: flex;
  overflow-x: auto;
  padding: 0.5rem 0.5rem;
  gap: 0.75rem;
  scroll-behavior: smooth;
  background-color: transparent;
  -webkit-overflow-scrolling: touch; /* iOS smooth scrolling */
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE/Edge */
}

.horizontal-scroll-container::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Opera */
}

.category-badge {
  white-space: nowrap;
  padding: 0.5rem 1.25rem;
  background-color: white;
  color: #b96b42;
  font-weight: 500;
  border-radius: 9999px;
  font-size: 0.95rem;
  flex-shrink: 0;
  text-align: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 100px;
  max-width: 100%;
  transition: all 0.3s;
  cursor: pointer;
  /* font-family: sans-serif; */
  height: 23px;
  border: 2px solid #b96b42;
}

.category-badge:hover {
  background-color: #f5f5f5;
  border-color: #a05a36;
  color: #a05a36;
}

.category-badge.active {
  background-color: #b96b42;
  color: white;
  border: 2px solid #b96b42;
}

.category-badge.active:hover {
  background-color: #a05a36;
  border-color: #a05a36;
  color: white;
}
.view-all-badge {
  background-color: #333;
}
.modal-content {
  background-color: white;
  color: black;
  padding: 20px;
  width: 80%;
  max-width: 400px;
  margin: 50px auto;
  border-radius: 12px;
  outline: none;
  border: 1px solid #b96b42;
}

.modal-category-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
  justify-content: center;
}
.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.tabs {
  display: flex;
  justify-content: flex-start;
  gap: 8px;
  margin: 16px;
  flex-wrap: wrap;
  width: 420px;
}

.tab {
  flex: 1 1 12%;
  background-color: #b96b42;
  color: #ffffff;
  border: none;
  border-radius: 12px;
  padding: 8px 4px;
  text-align: center;
  /* font-family: Arial, sans-serif; */
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.tab .tab-title {
  font-size: 10px;
  font-weight: 500;
}

.tab .tab-sub {
  font-size: 12px;
  opacity: 0.9;
}

.tab.selected {
  background-color: #ffffff;
  color: #000000;
  border: 1px solid #e0e0e0;
}

.tab.selected .tab-sub {
  opacity: 0.7;
}

/* @media (min-width: 400px) and (max-width: 900px) {
  .tab {
    width: 40%;
    height: 30%;
    display: flex;
  }
} */


/* for responsiveness */
@media (max-width: 1024px) {
  .tabs {
    margin: 1rem 0.5rem;
    box-sizing: border-box;
  }

  .tab .tab-title {
    font-size: 1rem;
  }

  .tab .tab-sub {
    font-size: 1.25rem;
  }
}

@media (max-width: 600px) {
  .tabs {
    width: auto;
  }

  .tab .tab-title {
    font-size: 0.75rem;
  }

  .tab .tab-sub {
    font-size: 1rem;
  }
}
.VCOcjE5wv6otwVTDYbRP {
  width: 100%;
  background-color: var(--header-bg, #0C0807);
  padding: 12px 16px;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-sizing: border-box;
}

.xdgnUNS_ssgko1Go_IkZ {
  /* max-width: 1280px; */
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* LEFT SECTION */
.Q_ozdPq8JtXJWIS9gKz4 {
  display: flex;
  align-items: center;
  flex: 1; /* Takes space but grows based on content */
}

.Oknez4zbAWUoJDDyOrgg {
  height: 48px; /* Fixed height to keep header consistent */
  width: auto; /* Maintains aspect ratio regardless of logo shape */
  max-width: 180px;
  object-fit: contain;
  border-radius: 4px;
}

/* MIDDLE SECTION (Scalability) */
.lyPyB6A2OzkmsbPqtzw5 {
  display: none; /* Hidden on mobile */
  flex: 2;
  padding: 0 20px;
}

/* RIGHT SECTION */
.S_X3atsoQAqDK9u6vaWn {
  display: flex;
  align-items: center;
  gap: 16px;
  justify-content: flex-end;
}

._jrCmr4njJYMe6QCZbzX {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--Surface-White, #ffffff);
  transition: opacity 0.2s;
}

._jrCmr4njJYMe6QCZbzX:hover {
  opacity: 0.8;
}

.roqzXi3zBTY2T0M5Aatu {
  height: 28px;
  width: 28px;
}

.xJl4LiwtNrAtNWglQPA3 {
  display: none;
}

/* RESPONSIVE BREAKPOINT (Laptops/Desktops) */
@media (min-width: 1024px) {
  .VCOcjE5wv6otwVTDYbRP {
    padding: 12px 40px;
  }

  .lyPyB6A2OzkmsbPqtzw5 {
    display: flex; /* Content shows up for big screens */
    justify-content: center;
  }

  .Oknez4zbAWUoJDDyOrgg {
    height: 48px;
  }

  .xJl4LiwtNrAtNWglQPA3 {
    display: flex;
    margin-left: 10px;
  }
}

/* ... Keep all your previous header, container, and logo CSS here ... */

.ID5wkpz88q4NDXZ8H1sx {
  width: 100%;
  background-color: var(--header-bg, #0c0807);
  padding: 12px 16px;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* Flex container for the entire row */
.Qx4_rhvp9bYYGWzlk5yi {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 8px 0 0 0;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
}

/* LEFT SIDE: Address */
.IMWR_450FFiftma6JQXw {
  display: flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
  flex: 1;
  min-width: 0; /* CRITICAL: Allows flex child to truncate instead of overflowing */
}

.LkmQut5c_zYpdwKvAOa_ {
  height: 20px;
  width: 20px;
  color: var(--Surface-White, #ffffff);
  flex-shrink: 0;
  stroke-width: 1.5;
}

.YQtsnz8eMjLnQIfCdFKe {
  display: flex;
  align-items: center;
  gap: 6px;
  overflow: hidden;
  white-space: nowrap;
  flex: 1;
  min-width: 0;
}

/* Ensure children elements respect truncation */
.YQtsnz8eMjLnQIfCdFKe > * {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.u7WeAOXJ5xAmVB_24TC6 {
  height: 16px;
  width: 16px;
  color: var(--Surface-White, #ffffff);
  flex-shrink: 0;
  stroke-width: 2;
}

/* RIGHT SIDE: Animated Delivery Button */
.tM9NDqpI4lDJBAsdPGFk {
  position: relative;
  padding: 1.5px; /* Controls the thickness of the animated border */
  border-radius: 20px;
  overflow: hidden;
  flex-shrink: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* The spinning conic gradient background */
.tM9NDqpI4lDJBAsdPGFk::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 250%;
  height: 250%;
  background: conic-gradient(
    from 0deg,
    transparent 0%,
    transparent 70%,
    #55330C 100%
  );
  transform: translate(-50%, -50%);
  background-color: #55330C;
  /* animation: spinBorder 2.5s linear infinite; */
  z-index: 0;
}

/* Inner dark layer to hollow out the wrapper */
.eCpaXLcRfNJ7i7hHv80s {
  position: relative;
  z-index: 1;
  background-color: var(
    --header-bg,
    #0c0807
  ); /* Matches header to look hollow */
  border-radius: 18.5px; /* Slightly smaller than outer radius */
  padding: 6px 14px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.VmzHXW_JoSpM9r0MweVh {
  font-size: 14px;
  font-weight: 600;
  color: var(--Surface-White, #ffffff);
  letter-spacing: 0.2px;
}

.KLpuFBiHim6koGe8GTGa {
  height: 14px;
  width: 14px;
  color: var(--Surface-White, #ffffff);
  stroke-width: 2.5;
}

/* Keyframe for the border rotation */
@keyframes SozpZmYDoAIPsbkcseC_ {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

/* Adjust Responsive Breakpoints */
@media (min-width: 1024px) {
  .ID5wkpz88q4NDXZ8H1sx {
    padding: 16px 40px;
  }
}

.yHewDyH5eVAuWVGV3hvC {
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 100%;
  box-sizing: border-box;
  overflow-x: hidden;
}

/* Header */
.Lnehnwo4R0IRXDDrY9H6 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem;
  border-bottom: 1px solid var(--grey-100, #eaecef);
}

.GotKhDR_kZzUXkKltHrd {
  font-size: 18px;
  font-weight: 700;
  color: #353434;
}

/* Scrollable content */
.brlquwZbOHAJFSnKIJrJ {
  flex: 1;
  overflow-y: auto;
  padding: 1rem;
  overflow-x: hidden;
  padding: 1rem;
  box-sizing: border-box;
}

/* Grid */
.U4hyqE7GmHCW1Ts48jLY {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.5rem 0.5rem; /* row gap / column gap */
  width: 100%;
}

/* Category Item */
.SVzPeac_dvVUQQL_dcmW {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
}

/* Image Wrapper */
.LAf2Wxwvc2VGJxHZsrZQ {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
}

.RZMtTmU48_xfFrOjfPo5 {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Category Name */
.MfpymK8UEk1_WQgA7_6Q {
  font-size: 12px;
  font-weight: 500;
  color: #353434;
  text-align: center;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  width: 100%;
  padding: 0 4px;
  box-sizing: border-box; /* Prevents padding from blowing out the 100% width */
  word-break: break-word; /* Forces long words to wrap instead of stretching the column */
}

.WN2jn5g_IyX0OKp6vqrg {
  width: 100%;
}

/* Horizontal scroll container */
.Y8etIVUKFMaDuoEBj0Is {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  padding: 0 4px 8px 4px;
  scrollbar-width: none; /* Firefox */
}

.Y8etIVUKFMaDuoEBj0Is::-webkit-scrollbar {
  display: none; /* Chrome, Safari */
}

/* Category Button */
.C143PLrSOta3y_9mfzuV {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  flex-shrink: 0;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
}

/* Image wrapper */
.kbuvP7oKJwI_0hJALjTY {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
  border: none;
}

.LQevxVzFc8XajKgcbQSc {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Label */
.zEgKu5Az069bqIBuH3dL {
  font-size: 12px;
  font-weight: 500;
  color: #353434;
  max-width: 72px;
  text-align: center;

  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* See All */
.m7VxMFhxaZQl1op6LI40 {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: transparent;
  border: 1px solid var(--blue-1, #AF5E00);
  display: flex;
  align-items: center;
  justify-content: center;
}

.K2H8iODCIxL3epnrBSib {
  font-size: 11px;
  font-weight: 700;
  color: var(--blue-1, #AF5E00);
  max-width: 72px;
  text-align: center;
  line-height: 1.2;
}

.N8LVXgJL87IdF2MIG9Ox {
  width: 24px;
  height: 24px;
  color: var(--blue-1, #AF5E00);
}

.VRDyIIx6QoFnvmRwiPlb {
  display: flex;
  gap: 8px;
  align-items: center;
  overflow-x: auto;
  padding: 4px 16px 8px;
  background-color: var(--Surface-White, #ffffff);
  /* Hiding scrollbar for cleaner look */
  scrollbar-width: none; /* Firefox */
}

.VRDyIIx6QoFnvmRwiPlb::-webkit-scrollbar {
  display: none; /* Chrome/Safari */
}

/* Main Filter Button */
.H92ZF0lGLzWcpfxu8OD6 {
  display: flex;
  height: 32px;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  gap: 6px;
  border-radius: 8px;
  border: 1px solid #252b37;
  background-color: #252b37;
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 600;
  color: var(--Surface-White, #ffffff);
  cursor: pointer;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.DiDrRVLVG1KLp0iIBvt4 {
  height: 16px;
  width: 16px;
}

.iu32SI6tHkNF0aTPcknH {
  margin-left: 4px;
  display: inline-block;
  height: 8px;
  width: 8px;
  border-radius: 50%;
  background-color: #4ade80;
}

/* Food Type Toggle Buttons */
.ekp5AicISjLLwPbBVXOH {
  display: flex;
  height: 32px;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  border-radius: 10px;
  border: 1px solid #EAECEF;
  background-color: var(--Surface-White, #ffffff);
  cursor: pointer;
  transition: all 0.2s ease;
}

.ekp5AicISjLLwPbBVXOH.iiQ4iIZkASbqMuygYrwc {
  border-color: #c77d0b;
  background-color: #fdedd6;
}

.pN9RyKcbAO6tW_LofnOM {
  width: 16px;
  height: 16px;
}

.NOilxbDC5GM7v2A_VxyV {
  width: 16px;
  height: 16px;
  color: #c77d0b;
}

.NZ6sRyQwjGSbLJuUcRgn {
  display: flex;
  height: 100%;
  flex-direction: column;
}

.qjHdxti1qpGHtf2CDGm3 {
  position: relative;
  background-color: #ffffff;
  padding: 12px 16px 0;
  border-bottom: 1px solid #e6e6e6;
}

.gBrJ0Pna9MeB6YKH4ijU {
  display: flex;
  justify-content: center;
  margin-bottom: 12px;
}

.tA1z7MwMwrhtC6llQ1Fw {
  height: 4px;
  width: 40px;
  border-radius: 9999px;
  background-color: #e6e6e6;
}

.wNuboybnNbRm9IZK3bpZ {
  display: flex;
  justify-content: flex-start;
  padding: 0 8px 8px;
}

.TmPa7tvdxPdMu7RAoq2c {
  font-size: 16px;
  font-weight: 700;
  color: #333333;
}

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

.BPYvUILyw97ixceM7YjH {
  display: flex;
  flex-direction: column;
  position: relative;
}

.W6N0WdrjiKrjHhYe9fML {
  border-bottom: 1px solid #eaecef;
  padding-bottom: 8px;
  margin-bottom: 8px;
}

.gIuUQKaoMOl1wejry5OM {
  pointer-events: none;
}

.ObvJWif_nKxSNl9lxtnj {
  position: absolute;
  inset: 0;
  background-color: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(2px);
  z-index: 10;
}

.vPlLTDdA3dF50lJ7j3bq {
  display: flex;
  height: 40px;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}

.lVIfzKlDAHCqtVIPH3y_ {
  cursor: not-allowed;
}

.gPK8ksH7FHfFD0Pmgm_U {
  font-size: 16px;
  font-weight: 500;
  color: #181d27;
}

.Ac4uTblNiL0gzbwMNZai {
  height: 20px;
  width: 20px;
  color: #798097;
  transition: transform 0.2s ease;
}

.Lr8FCru12qzTwLRxd3_s {
  transform: rotate(180deg);
}

.x7eXNcXLRxkhwwPzDrbD {
  margin-top: 4px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.AMa5gtnBYKZt6XcrZ4PU {
  display: flex;
  align-items: center;
  gap: 2px;
  padding: 8px 0;
}

.ueBRu9ZfqD88jsETwKjW {
  display: flex;
  align-items: center;
  gap: 6px;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  flex: 1;
  text-align: left;
}

.vGQwwYtXuzfY3y8O2unj {
  font-size: 16px;
  font-weight: 500;
  color: #535862;
}

.M1PnkmXHlCLPC_VVd5RO {
  height: 16px;
  width: 16px;
  object-fit: contain;
}

.vaMslVsxp0ykmCFqME6W {
  flex-shrink: 0;
  border-top: 1px solid #e9eaeb;
  background-color: #ffffff;
  padding: 16px;
}

.BxoQGichHMPu1arNxhxt {
  display: flex;
  align-items: center;
  gap: 12px;
}

.KLcp8uqjz1IqK8vNGGhS,
.MOVjdGvMxsyzLExY9koC {
  display: flex;
  flex: 1;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 8px;
  padding: 8px 12px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
}

.KLcp8uqjz1IqK8vNGGhS {
  border: 1px solid #e90000;
  color: #e90000;
  background: white;
}

.MOVjdGvMxsyzLExY9koC {
  background-color: #af5e00;
  color: #ffffff;
  border: none;
}

.r8kkzm0W8YRNuKp1H7FN {
  opacity: 0.3;
  cursor: not-allowed;
}

.i_hMWoerVCViVKFsIEux {
  height: 20px;
  width: 20px;
}

.QCnvWALKUQ7C4rUidxUI {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  background-color: var(--Surface-White, #ffffff);

  display: flex;
  align-items: center;
  gap: 0.5rem;

  padding: 0.5rem 1rem calc(16px + env(safe-area-inset-bottom));
  z-index: 1000;
  border-top: 1px solid #E5E5E5;
}

.epQKSexiRH9oMBt8bXlX {
  display: flex;
  align-items: center;
  width: 100%;
  overflow: hidden;

  border-width: 1px;
  border-style: solid;
  transition: all 0.2s ease-in-out;
  /* Smooth transition for focus effect */
}

.Q9KBLJQKdyh8cSlspjKv {
  margin-right: 10px;
  display: flex;
  align-items: center;
  flex-shrink: 0;
  height: 1.5rem;
  width: 1.5rem;
}

.Q9KBLJQKdyh8cSlspjKv svg {
  height: 100%;
  width: 100%;
}

.saksodBhHq9zUVKXhyd3 {
  flex-grow: 1;
  border: none;
  outline: none;
  /* Color and font-size handled dynamically via props */
  background-color: transparent;
  padding: 0;
  min-width: 0;
  flex: 1;
}

/* Critical CSS to apply dynamic placeholder color using a CSS variable */
.saksodBhHq9zUVKXhyd3::placeholder {
  color: var(--custom-placeholder-color, #8a93a7);
  opacity: 1;
}

.dF8qNTVt7mITKcqAV9mg {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: fit-content;
  cursor: pointer;
}

.MaoEs7Ptu2bWnR6bC18z {
  position: relative;
  display: inline-block;
}

.izQUqiSCaMDhe09Y9mlM {
  width: 2.5rem;
  height: 2.5rem;
  display: block;
  object-fit: cover;
}

.LafXwb9rsbSShpDrhw5V {
  position: absolute;
  top: -4px;
  right: -12px;

  background-color: #eee9e9;
  color: #1f1c1a;
  width: 30px;
  height: 30px;
  border-radius: 50%;

  display: flex;
  justify-content: center;
  align-items: center;

  font-size: 10px;
  font-weight: 500;
}

.JQquKCGIOy149qDXg7Kw {
  margin-top: 2px;
  font-size: 12px;
  font-weight: 600;
  color: #171717;
}

.C13wOULD9Ow1M81LscCt {
  background-color: var(--footer-bg, #171717);
  color: var(--footer-text, #a1a1a1);
  padding: 60px 0 150px;
  width: 100%;
}

.xg5knwBNc238Bg74gYbr {
  margin: 0 auto;
  padding: 0 16px;
}

.svT0ZCBme4qoL6INNo2L {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-bottom: 60px;
}

/* Desktop View: Side by Side */
@media (min-width: 1024px) {
  .svT0ZCBme4qoL6INNo2L {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }
}

.swZc_HzQWeFpj6ePWezc {
  flex: 0 0 100%;
}

@media (min-width: 1024px) {
  .swZc_HzQWeFpj6ePWezc {
    flex: 0 0 45%;
  }
}

.UT5nBHN3vcLCLSTUICAL {
  margin-bottom: 20px;
}

.RaznXiHBGb3vycwEgakA {
  height: 60px;
  width: auto;
  object-fit: contain;
}

.KG1FPquFxI4vAReXA8ML {
  font-size: 14px;
  line-height: 1.6;
  max-width: 450px;
  font-weight: 300;
}

.pZvisgV3EWP051oHc83d {
  flex: 0 0 100%;
}

@media (min-width: 1024px) {
  .pZvisgV3EWP051oHc83d {
    flex: 0 0 30%;
  }
}

.f0Jq6xrNYcv_pM0aoA8w {
  color: var(--Surface-White, #ffffff);
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 24px;
}

.BJZaim7BrALQ3Gv5IRQy {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.BJZaim7BrALQ3Gv5IRQy li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
}

.BJZaim7BrALQ3Gv5IRQy a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}

.BJZaim7BrALQ3Gv5IRQy a:hover {
  color: var(--Surface-White, #ffffff);
}

.J2TWO6ElZL5xJGyKQEdu {
  flex-shrink: 0;
  margin-top: 2px;
}

.BJZaim7BrALQ3Gv5IRQy svg {
  height: 20px;
  width: 20px;
  color: var(--footer-text, #a1a1a1);
  margin-top: -1px;
}

/* Bottom Bar */
.x9mEDVppWG7nt1nP50KD {
  border-top: 1px solid #262626;
  padding-top: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

@media (min-width: 768px) {
  .x9mEDVppWG7nt1nP50KD {
    flex-direction: row;
    justify-content: space-between;
  }
}

.QaKCpi5c6_JDgwN7ABXp {
  display: flex;
  gap: 24px;
  align-items: center;
}

.QaKCpi5c6_JDgwN7ABXp svg {
  height: 20px;
  width: 20px;
  color: var(--footer-text, #a1a1a1);
}

.QaKCpi5c6_JDgwN7ABXp a {
  color: var(--Surface-White, #ffffff);
  opacity: 0.7;
  transition: opacity 0.2s;
}

.QaKCpi5c6_JDgwN7ABXp a:hover {
  opacity: 1;
}

.EJhWIGlRXZSb_h8kyQwi {
  font-size: 13px;
  font-weight: 300;
}

.BQAgsB9COoaUH4KdLZ4n {
  display: flex;
  flex-direction: column;
  padding: 16px 16px calc(24px + env(safe-area-inset-bottom));
  background-color: var(--Surface-White, #ffffff);
  /* border-top-left-radius: 16px;
  border-top-right-radius: 16px; */
}

.MELe2Q5cGfS3H_6gokMg {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-Primary-1, #171717);
  margin: 0 0 16px 0;
}

/* Row containing the Delivery & Takeaway buttons */
.oQdn5cZyPedp94iGiSqz {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 20px;
}

.GlLCdHNbqoxBPWTVmJm0 {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 0;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  background-color: transparent;
}

/* Active State */
.aEzplgoqV9RIiLiVpaM_ {
  border: 1px solid #f9c588;
  background-color: #fdf4e9;
  color: var(--orange-n-1, #d98523);
}

/* Inactive State */
.MjiY1o96pC7xFx5VOSQp {
  border: 1px solid var(--gray-200, #e9eaec);
  background-color: var(--Surface-White, #ffffff);
  color: var(--gray-500, #717680);
}

.Dqs9YzJmZKLgqeVv_cbz {
  width: 20px;
  height: 20px;
  stroke-width: 2;
}

.ZLnvJqWysxduvRKMTt52 {
  width: 100%;
}

.JxBVdkSWR24DPoGBX8Hw {
  display: flex;
  flex-direction: column;
  gap: 12px;

  padding-top: 1rem;
}

.S0B_DF_nbIyvDn3eIycy {
  padding: 0;
  padding-bottom: 2rem;
  display: flex;
  flex-direction: column;
  flex: 1; /* Takes up remaining space below the header */

  /* The scrolling magic */
  overflow-y: auto;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
}

.SNwzgXTqtT1G3q10jdoN {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 50vh;
}

.FEX7ffsb106DMQxlL8qR {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-bottom: calc(70px + env(safe-area-inset-bottom));
}

/* Card Styling mimicking the image */
.Ex4WDUzO1cimbUPT4wgw {
  background-color: var(--grey-n-7, #f2f2f2);
  border-radius: 12px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  cursor: pointer;
  border: 1px solid transparent;
  transition: all 0.2s ease;
}

.tU_Tf_LivVwjOHBhks9D {
  border-color: #b96b42;
  background-color: #fdf4e9;
}

.Ex4WDUzO1cimbUPT4wgw:active {
  transform: scale(0.98);
}

/* Row 1: Name and City */
.rvG5rwG08pZU5FmoJ1bx {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.zg6VUjFIohM1UoHDMgjN {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-Primary-1, #171717);
  margin: 0;
  line-height: 1.3;
}

/* Row 2: Address */
.KpFHXHTl_tdvWjbtlK2C {
  font-size: 13px;
  color: var(--text-Secondary-1, #8a93a7);
  margin: 0;
  line-height: 1.4;
  /* display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical; */
  overflow: hidden;
}

/* Row 3: Distance, Time, Directions */
.COikCJMijdRD6FzdFB7J {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 4px;
}

.aFWqn5jkMxYVYNAQOrrx {
  display: flex;
  align-items: center;
  gap: 12px;
}

.UIlk7XfmTIdXVwgLZOtA {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-Primary-1, #171717);
}

/* Small vertical line between distance and time */
.mmFELEwNeiHc3_fpJqYa {
  width: 1px;
  height: 12px;
  background-color: #d1d5db;
}

.cAobsF4Ox9rH3qwuZj47 {
  font-size: 13px;
  color: var(--text-Secondary-1, #8a93a7);
}

/* Directions Icon Button */
.HWuk2WXB1pl866LH_JJv {
  background: none;
  border: none;
  padding: 8px;
  margin: -8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-1, #af5e00);
  cursor: pointer;
  transition: opacity 0.2s ease;
}

.HWuk2WXB1pl866LH_JJv:hover {
  opacity: 0.7;
}

/* Fixed Bottom Button Container */
.x0_92vSKsy_votlj7qrw {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  background-color: var(--Surface-White, #ffffff);
  padding: 16px;
  padding-bottom: calc(16px + env(safe-area-inset-bottom));
  box-sizing: border-box;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.05);
  z-index: 100;
}

.WPyPQ8GFeL6jyokkofSv {
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 100%;
  background-color: var(--Surface-White, #ffffff);

  min-height: 0;
}

.qr-circular-categories-container {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  padding: 4px 16px;
  scrollbar-width: none;
}

.qr-circular-categories-container::-webkit-scrollbar {
  display: none;
}

.qr-circular-category-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 70px;
  cursor: pointer;
  transition: transform 0.15s ease;
}

.qr-circular-category-icon {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  overflow: hidden;
  background-color: #f0f0f0;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2.5px solid transparent;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.qr-category-icon-selected {
  border-color: #2e7d32;
  box-shadow: 0 0 0 2px rgba(46, 125, 50, 0.2);
}

.qr-category-selected {
  transform: scale(1.05);
}

/* ─── Skeleton shimmer ─── */
.skeleton-shimmer {
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
}

@keyframes shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

@media (max-width: 480px) {
  .qr-circular-category-icon {
    width: 55px;
    height: 55px;
  }
}

/* ─── QR Product Card (text left, image right) ─── */
.qr-product-card {
  display: flex;
  align-items: flex-start;
  padding: 14px 0;
  gap: 12px;
  border-bottom: 1px dashed #e0e0e0;
}

.qr-product-card:last-child {
  border-bottom: none;
}

.qr-product-card-info {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.qr-product-card-name {
  font-size: 16px;
  font-weight: 600;
  color: #1f1f1f;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.qr-product-card-price {
  font-size: 16px;
  font-weight: 700;
  color: #333;
  margin: 2px 0 0;
}

.qr-product-card-desc {
  font-size: 13px;
  color: #888;
  margin: 2px 0 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.4;
}

.qr-product-card-image-wrapper {
  width: 110px;
  flex-shrink: 0;
  position: relative;
}

.qr-product-card-img {
  width: 110px;
  height: 100px;
  object-fit: cover;
  border-radius: 8px;
  cursor: pointer;
}

/* ─── Detail Drawer Customization (Scoped) ─── */
.qr-detail-drawer .MuiDrawer-paper {
  background-color: #f0fbfd !important;
}

.qr-detail-drawer .drawer-add-btn-1 {
  background-color: #2e7d32 !important;
  border-radius: 8px !important;
  font-weight: 700 !important;
  text-transform: none !important;
  font-size: 16px !important;
  box-shadow: none !important;
  width: 100%;
}

.qr-detail-drawer .addon-button-container {
  padding: 12px 16px !important;
  background-color: #fff !important;
  border-top: 1px solid #e0e0e0;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 12px;
  position: sticky !important;
  bottom: -16px !important;
  left: 0 !important;
  width: calc(100% + 32px) !important;
  margin: 0 -16px -16px -16px !important;
  box-sizing: border-box !important;
  z-index: 10001;
}

.qr-detail-drawer .customize-product-qty-counter {
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 4px 12px;
  background: #fff;
  height: 40px;
  display: flex;
  align-items: center;
}

.qr-detail-drawer .added-qty {
  display: flex;
  align-items: center;
  gap: 12px;
}

.qr-detail-drawer .product-quantity {
  font-weight: 600;
  font-size: 16px;
  color: #2e7d32;
}

.qr-detail-drawer .added-qty .MuiSvgIcon-root {
  color: #2e7d32 !important;
}

.qr-detail-drawer .added-qty .MuiCircularProgress-root {
  color: #2e7d32 !important;
}

.qr-detail-drawer .MuiTypography-root {
  color: #1a1a1a !important;
}

.qr-detail-drawer .restro-product-image {
  border-radius: 12px;
  margin-bottom: 12px;
  height: 220px !important;
  object-fit: cover;
}

.qr-detail-drawer .restro-product-name {
  font-size: 18px;
  font-weight: 600;
  color: #333;
}

.qr-detail-drawer .restro-product-description {
  color: #666;
  font-size: 13px;
  line-height: 1.4;
  margin-top: 4px;
}

.qr-detail-drawer .customization-title {
  font-size: 16px;
  font-weight: 600;
  color: #333;
  margin: 16px 0 8px;
}

.qr-detail-drawer .restro-product-customization-size {
  background-color: #fff !important;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  padding: 16px !important;
  margin-bottom: 16px;
}

.qr-detail-drawer .MuiRadio-root,
.qr-detail-drawer .MuiCheckbox-root {
  color: #2e7d32 !important;
}
.qr-detail-drawer .Mui-checked {
  color: #2e7d32 !important;
}

.qr-detail-drawer .details-radio-items p:last-child {
  font-weight: 600;
  color: #333;
}

.qr-detail-drawer .add-cooking-title {
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 8px;
}

.qr-detail-drawer .MuiTextField-root {
  background-color: #f5f8fa !important;
  border-radius: 8px;
}
.qr-detail-drawer .MuiOutlinedInput-notchedOutline {
  border: none !important;
}

.qr-product-card-placeholder {
  background-color: #f0f0f0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  font-weight: 600;
  color: #bbb;
}

.qr-product-card-btn-wrapper {
  display: flex;
  justify-content: center;
  margin-top: -16px;
  position: relative;
  z-index: 1;
}

.qr-product-add-btn {
  min-width: 70px !important;
  height: 28px;
  background: #fff !important;
  color: #2e7d32 !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  border-radius: 6px !important;
  border: 1px solid #2e7d32 !important;
  text-transform: uppercase !important;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1) !important;
}

.qr-product-qty-counter {
  min-width: 70px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 6px;
  background: #fff;
  border: 1px solid #2e7d32;
  border-radius: 6px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.qr-product-qty-icon {
  font-size: 16px !important;
  color: #2e7d32;
  cursor: pointer;
}

.qr-product-qty-text {
  font-size: 13px;
  font-weight: 700;
  min-width: 14px;
  text-align: center;
  color: #2e7d32;
}

@media (max-width: 480px) {
  .qr-product-card-img {
    width: 100px;
    height: 90px;
  }
  .qr-product-card-image-wrapper {
    width: 100px;
  }
}

.qr-category-title-sticky {
  position: sticky;
  top: 0;
  z-index: 10;
  background-color: #fff;
  padding: 12px 0;
  border-bottom: 1px solid #eee;
}

.qr-category-title {
  font-size: 18px;
  font-weight: 600;
  color: #333;
  margin: 0;
}

.qr-home-container {
  background-color: #f5f5f5;
  padding-bottom: 130px; /* space for bottom nav (64px) + view cart bar (52px) + buffer */
  overflow-y: auto;
  height: 100vh;
}

/* ─── Banner ─── */
.qr-home-banner-wrapper {
  padding: 12px 16px 0;
  background-color: #fff;
}

.qr-banner-slider {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.qr-banner-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
  transition: opacity 0.5s ease;
}

.qr-banner-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent 60%);
  pointer-events: none;
}

.qr-banner-info {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 16px;
  color: #fff;
}

.qr-banner-restaurant-name {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 4px;
  line-height: 1.2;
  color: #fff;
}

.qr-banner-location {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  color: #e0e0e0;
}

.qr-banner-dots {
  position: absolute;
  bottom: 8px;
  right: 12px;
  display: flex;
  gap: 6px;
}

.qr-banner-dot {
  width: 6px;
  height: 6px;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
}

.qr-banner-dot-active {
  background: #fff;
  width: 16px;
}

.qr-banner-fallback {
  background: #2e7d32;
  border-radius: 16px;
  height: 180px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 16px;
}

/* ─── Search Bar ─── */
.qr-home-search-container {
  padding: 12px 16px;
  background-color: #fff;
}

.qr-home-search-bar {
  display: flex;
  align-items: center;
  background-color: #f5f5f5;
  border-radius: 12px;
  padding: 10px 12px;
  cursor: pointer;
  gap: 8px;
}

.qr-search-placeholder {
  font-size: 14px;
  color: #9ca3af;
}

.qr-home-outlet-name {
  margin: 8px 0 0;
  font-size: 13px;
  color: #555;
}
.qr-home-outlet-name span {
  font-weight: 600;
  color: #1a1a1a;
}

/* ─── Categories Section ─── */
.qr-categories-section {
  background-color: #fff;
  padding: 16px 0 12px;
  margin-bottom: 4px;
}

.qr-categories-heading {
  font-size: 16px;
  font-weight: 700;
  color: #333;
  margin: 0 0 12px 16px;
}

/* ─── Product List Section ─── */
.qr-home-products-section {
  background-color: #fff;
}

/* ═══════════════════════════════════════════════════
   ACTIVE ORDER BANNER (QR Home top banner)
   ═══════════════════════════════════════════════════ */
.qr-active-order-banner {
  position: sticky;
  top: 0;
  z-index: 40;
  overflow: hidden; /* clip the sliding inner content */
  background: #2e7d32;
  color: #fff;
  padding: 12px 16px;
  cursor: pointer;
  user-select: none;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.22);
  transition: background-color 0.15s ease;
}
.qr-active-order-banner:active {
  background: #1b5e20;
}

/* Left: icon + token block */
.qr-active-order-left {
  display: flex;
  align-items: center;
  gap: 10px;
}
.qr-active-order-icon {
  opacity: 0.9;
}
.qr-active-order-token-block {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.qr-active-order-token-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.75;
}
.qr-active-order-token-number {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-top: 2px;
  display: inline-block;
  overflow: hidden;
}

/* Inner flex row — slides as a whole unit on swipe */
.qr-active-order-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

/* Card slide animations */
@keyframes cardSlideInLeft {
  from { transform: translateX(100%); opacity: 0; }
  to   { transform: translateX(0);    opacity: 1; }
}
@keyframes cardSlideOutLeft {
  from { transform: translateX(0);    opacity: 1; }
  to   { transform: translateX(-100%); opacity: 0; }
}
@keyframes cardSlideInRight {
  from { transform: translateX(-100%); opacity: 0; }
  to   { transform: translateX(0);     opacity: 1; }
}
@keyframes cardSlideOutRight {
  from { transform: translateX(0);    opacity: 1; }
  to   { transform: translateX(100%); opacity: 0; }
}

.qr-card-slide-in-left   { animation: cardSlideInLeft   0.28s cubic-bezier(0.25, 0.46, 0.45, 0.94) both; }
.qr-card-slide-out-left  { animation: cardSlideOutLeft  0.28s cubic-bezier(0.25, 0.46, 0.45, 0.94) both; }
.qr-card-slide-in-right  { animation: cardSlideInRight  0.28s cubic-bezier(0.25, 0.46, 0.45, 0.94) both; }
.qr-card-slide-out-right { animation: cardSlideOutRight 0.28s cubic-bezier(0.25, 0.46, 0.45, 0.94) both; }

/* Right: status text + chevron */
.qr-active-order-right {
  display: flex;
  align-items: center;
  gap: 6px;
}
.qr-active-order-right-text {
  display: flex;
  flex-direction: column;
  text-align: right;
}
.qr-active-order-status {
  font-size: 13px;
  font-weight: 600;
}
.qr-active-order-tap {
  font-size: 10px;
  opacity: 0.72;
  margin-top: 1px;
}
.qr-active-order-chevron {
  opacity: 0.72;
  flex-shrink: 0;
}

/* Swipe dots — shown when multiple active orders */
.qr-active-order-dots {
  display: flex;
  justify-content: center;
  gap: 6px;
  padding: 6px 0 2px;
}
.qr-active-order-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(46, 125, 50, 0.3);
  cursor: pointer;
  transition: all 0.2s;
}
.qr-active-order-dot.active {
  background: #2e7d32;
  width: 18px;
  border-radius: 3px;
}

/* ─── QR Search Page ─── */
.qr-search-page {
  background-color: #fff;
  height: 100vh;
  display: flex;
  flex-direction: column;
}

.qr-search-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 12px;
  background: #fff;
  border-bottom: 1px solid #f0f0f0;
  position: sticky;
  top: 0;
  z-index: 10;
}

.qr-search-back-btn {
  background: none;
  border: none;
  padding: 4px;
  cursor: pointer;
  color: #333;
  display: flex;
  align-items: center;
}

.qr-search-input-wrapper {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 8px;
  background: #f5f5f5;
  border-radius: 10px;
  padding: 8px 12px;
}

.qr-search-input {
  flex: 1;
  border: none;
  outline: none;
  background: transparent;
  font-size: 14px;
  color: #333;
}

.qr-search-input::placeholder {
  color: #9ca3af;
}

.qr-search-clear-btn {
  background: none;
  border: none;
  padding: 2px;
  cursor: pointer;
  color: #999;
  display: flex;
  align-items: center;
}

.qr-search-results {
  flex: 1;
  overflow-y: auto;
  padding-bottom: 20px;
}

.qr-search-result-count {
  font-size: 12px;
  color: #999;
  margin: 12px 0 4px;
}

.qr-search-loader {
  display: flex;
  justify-content: center;
  padding: 40px 0;
}

.qr-search-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
  text-align: center;
}

.qr-search-empty-title {
  font-size: 15px;
  font-weight: 600;
  color: #333;
  margin: 0 0 4px;
}

.qr-search-empty-subtitle {
  font-size: 13px;
  color: #999;
  margin: 0;
}

/* ═══════════════════════════════════════════════════
   QR ORDER SUCCESS — Token Page
   ═══════════════════════════════════════════════════ */
.qr-token-page {
  height: 100vh;        /* constrain to viewport — enables scroll on small screens */
  overflow-y: auto;
  background-color: #f5f5f5;
  display: flex;
  flex-direction: column;
  padding-bottom: 40px;
}

/* Green header */
.qr-token-header {
  width: 100%;
  position: relative;
  overflow: hidden;
  flex-shrink: 0; /* prevent flex compression when page height is constrained */
  background: linear-gradient(160deg, #2e7d32 0%, #1b5e20 100%);
  padding: 48px 24px 72px;
  text-align: center;
  color: #fff;
}
.qr-token-back-btn {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(255, 255, 255, 0.15);
  border: none;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  cursor: pointer;
  z-index: 1;
}
.qr-token-back-btn:active {
  background: rgba(255, 255, 255, 0.28);
}
.qr-token-order-id {
  position: absolute;
  top: 14px;
  right: 14px;
  margin: 0;
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.92);
  z-index: 1;
  letter-spacing: 0.2px;
}
.qr-token-deco-1 {
  position: absolute;
  top: -40px;
  right: -40px;
  width: 160px;
  height: 160px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
}
.qr-token-deco-2 {
  position: absolute;
  bottom: -20px;
  left: -20px;
  width: 120px;
  height: 120px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 50%;
}
.qr-token-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: 0.85;
  margin: 0 0 6px;
}
.qr-token-number {
  font-size: 72px;
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 1;
  margin: 0 0 10px;
}
.qr-token-customer {
  font-size: 13px;
  opacity: 0.85;
  margin: 0;
}

/* White card overlaps green header */
.qr-token-status-wrap {
  padding: 0 16px;
  margin-top: -48px;
  position: relative;
  z-index: 10;
}
.qr-token-card {
  background: #fff;
  border-radius: 16px;
  padding: 20px 16px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.10);
}

/* Status badge */
.qr-token-badge-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}
.qr-token-status-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: 999px;
  border: 1.5px solid transparent;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}
.qr-token-status-chip.placed {
  background: #e8f5e9;
  color: #2e7d32;
  border-color: #a5d6a7;
}
.qr-token-status-chip.preparing {
  background: #fffbeb;
  color: #92400e;
  border-color: #fcd34d;
}
.qr-token-status-chip.ready {
  background: #dcfce7;
  color: #166534;
  border-color: #86efac;
}

/* Progress timeline */
.qr-token-timeline {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 0 24px 20px;
  width: 100%;
  box-sizing: border-box;
}
.qr-token-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.qr-token-step-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.qr-token-step-icon.active {
  background: #dcfce7;
}
.qr-token-step-icon.inactive {
  background: #f3f4f6;
}
.qr-token-step-line {
  flex: 1;
  height: 2px;
  min-width: 32px;
  margin-bottom: 24px;
}
.qr-token-step-line.active {
  background-color: #16a34a;
}
.qr-token-step-line.inactive {
  background-color: #e5e7eb;
}
.qr-token-step-label {
  font-size: 10px;
  font-weight: 600;
  text-align: center;
  white-space: nowrap;
}
.qr-token-step-label.active {
  color: #16a34a;
}
.qr-token-step-label.inactive {
  color: #9ca3af;
}

/* Items section */
.qr-token-section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
  font-weight: 700;
  color: #9ca3af;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.qr-token-items-list {
  background: #f9fafb;
  border-radius: 10px;
  padding: 10px 12px;
  margin-bottom: 14px;
  max-height: 140px; /* shows ~3 items; rest scrollable */
  overflow-y: auto;
}
.qr-token-item-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
  padding: 6px 0;
}
.qr-token-item-row + .qr-token-item-row {
  border-top: 1px solid #f0f0f0;
}
.qr-token-item-qty {
  font-size: 13px;
  font-weight: 700;
  color: #2e7d32;
  min-width: 24px;
}
.qr-token-item-name-wrap {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.qr-token-item-name {
  font-size: 13px;
  color: #1a1a1a;
}
.qr-token-item-addon {
  font-size: 11px;
  color: #666;
}
.qr-token-item-price {
  font-size: 13px;
  font-weight: 600;
  color: #1a1a1a;
}

/* Payment row */
.qr-token-payment-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #f0f0f0;
  padding-top: 14px;
}
.qr-token-payment-left {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #555;
}
.qr-token-payment-amount {
  font-size: 15px;
  font-weight: 700;
  color: #1a1a1a;
}

/* CTA Buttons */
.qr-token-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 20px 16px 0;
}
.qr-token-home-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 1;
  width: 100%;
  padding: 12px;
  background-color: #fff;
  color: #555;
  border: 1.5px solid #e0e0e0;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
}
.qr-token-home-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.qr-token-cancel-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 1;
  padding: 12px;
  background-color: #fff;
  color: #c62828;
  border: 1.5px solid #ef9a9a;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
}
.qr-token-cancel-btn:active {
  background-color: #ffebee;
}
.qr-token-cancel-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* Helper text */
.qr-token-helper {
  text-align: center;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.75);
  padding: 10px 8px 10px;
  margin: 0;
}

.qr-token-invoice-btn {
  width: 100%;
  padding: 13px;
  border: 1.5px solid #2e7d32;
  border-radius: 8px;
  background-color: #fff;
  color: #2e7d32;
  font-size: 15px;
  font-weight: 600;
  margin-top: 10px;
  cursor: pointer;
}

/* ===== QR PROFILE ===== */
.qr-profile-container {
  min-height: 100vh;
  background: #f9fafb;
  padding-bottom: 120px;
}

.qr-profile-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid #f0f0f0;
}

.qr-profile-back-btn {
  background: none;
  border: none;
  padding: 0;
  display: flex;
  align-items: center;
  cursor: pointer;
  color: #1f2937;
}

.qr-profile-header-title {
  font-size: 17px;
  font-weight: 700;
  color: #1f2937;
}

.qr-profile-guest-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #fff;
  margin: 16px;
  border-radius: 12px;
  padding: 40px 24px;
  gap: 12px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
}

.qr-profile-guest-text {
  margin: 0;
  font-size: 14px;
  color: #6b7280;
  text-align: center;
}

.qr-profile-login-btn {
  margin-top: 8px;
  background: #2e7d32;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 10px 32px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
}

.qr-profile-user-row {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #fff;
  margin: 16px 16px 0;
  border-radius: 12px;
  padding: 16px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
  cursor: pointer;
}

.qr-profile-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #2e7d32;
  color: #fff;
  font-size: 22px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.qr-profile-user-info {
  display: flex;
  flex-direction: column;
  gap: 3px;
  flex: 1;
  min-width: 0;
}

.qr-profile-user-name {
  font-size: 16px;
  font-weight: 700;
  color: #1f2937;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.qr-profile-user-phone {
  font-size: 13px;
  color: #6b7280;
}

.qr-profile-logged-badge {
  font-size: 11px;
  font-weight: 600;
  color: #2e7d32;
  background: #e8f5e9;
  border-radius: 20px;
  padding: 2px 8px;
  display: inline-block;
  width: fit-content;
  margin-top: 2px;
}

.qr-profile-section-label {
  font-size: 11px;
  font-weight: 600;
  color: #9ca3af;
  letter-spacing: 0.8px;
  margin: 20px 16px 6px;
  text-transform: uppercase;
}

.qr-profile-menu-card {
  background: #fff;
  margin: 0 16px;
  border-radius: 12px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
  overflow: hidden;
}

.qr-profile-menu-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 16px;
  height: 52px;
  cursor: pointer;
}

.qr-profile-menu-item:active {
  background: #f9fafb;
}

.qr-profile-menu-label {
  font-size: 14px;
  color: #1f2937;
  flex: 1;
}

.qr-profile-logout-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: calc(100% - 32px);
  margin: 24px 16px 0;
  padding: 13px;
  background: #fff;
  border: 1.5px solid #dc2626;
  border-radius: 10px;
  color: #dc2626;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
}

.qr-profile-logout-btn:active {
  background: #fef2f2;
}

/* ===== QR ORDERS ===== */
.qr-orders-container {
  height: 100vh;
  overflow-y: auto;
  background: #f9fafb;
  padding-bottom: 100px;
}

.qr-orders-header {
  background: #fff;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
}

.qr-orders-back-btn {
  background: transparent;
  border: none;
  padding: 0;
  display: flex;
  align-items: center;
  cursor: pointer;
}

.qr-orders-title {
  flex: 1;
  text-align: left;
  font-size: 16px;
  font-weight: 600;
  color: #1a1a1a;
}

.qr-orders-count-badge {
  background: #e8f5e9;
  color: #2e7d32;
  font-size: 12px;
  font-weight: 700;
  border-radius: 999px;
  padding: 2px 10px;
}

.qr-orders-guest-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #fff;
  margin: 16px;
  border-radius: 12px;
  padding: 40px 24px;
  gap: 12px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
}

.qr-orders-guest-text {
  margin: 0;
  font-size: 14px;
  color: #6b7280;
  text-align: center;
}

.qr-orders-login-btn {
  margin-top: 8px;
  background: #2e7d32;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 10px 32px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
}

.qr-orders-loading {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 60vh;
}

@keyframes qr-spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.qr-orders-spinner {
  animation: qr-spin 1s linear infinite;
}

.qr-orders-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 60vh;
  gap: 10px;
  padding: 24px;
  text-align: center;
}

.qr-orders-empty-icon {
  width: 80px;
  height: 80px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 1px 4px rgba(0,0,0,0.08);
  margin-bottom: 8px;
}

.qr-orders-empty-title {
  font-size: 17px;
  font-weight: 700;
  color: #1f2937;
  margin: 0;
}

.qr-orders-empty-sub {
  font-size: 13px;
  color: #6b7280;
  margin: 4px 0 0;
  max-width: 200px;
  line-height: 1.5;
}

.qr-orders-browse-btn {
  margin-top: 12px;
  background: #2e7d32;
  color: #fff;
  border: none;
  border-radius: 999px;
  padding: 10px 28px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(46,125,50,0.25);
}

.qr-orders-list {
  padding: 16px;
}

.qr-orders-card {
  background: #fff;
  border-radius: 16px;
  padding: 16px;
  margin-bottom: 12px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
  border: 1px solid #f3f4f6;
  cursor: pointer;
  transition: transform 0.15s ease;
}

.qr-orders-card:active {
  transform: scale(0.99);
}

.qr-orders-card-top {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
}

.qr-orders-status-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.qr-orders-status-icon.placed {
  background: #e8f5e9;
  color: #2e7d32;
}

.qr-orders-status-icon.preparing {
  background: #fffbeb;
  color: #92400e;
}

.qr-orders-status-icon.ready {
  background: #dcfce7;
  color: #166534;
}

.qr-orders-status-icon.cancelled {
  background: #fef2f2;
  color: #dc2626;
}

.qr-orders-token-label {
  font-size: 14px;
  font-weight: 700;
  color: #111827;
}

.qr-orders-status-chip {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  padding: 2px 7px;
  border-radius: 4px;
  border: 1px solid;
}

.qr-orders-status-chip.placed {
  background: #e8f5e9;
  color: #2e7d32;
  border-color: #a5d6a7;
}

.qr-orders-status-chip.preparing {
  background: #fffbeb;
  color: #92400e;
  border-color: #fcd34d;
}

.qr-orders-status-chip.ready {
  background: #dcfce7;
  color: #166534;
  border-color: #86efac;
}

.qr-orders-status-chip.cancelled {
  background: #fef2f2;
  color: #dc2626;
  border-color: #fca5a5;
}

.qr-orders-date {
  display: block;
  font-size: 11px;
  color: #9ca3af;
  margin-top: 3px;
}

.qr-orders-info-box {
  background: rgba(46,125,50,0.04);
  border: 1px solid rgba(46,125,50,0.1);
  border-radius: 10px;
  padding: 10px 12px;
  margin-bottom: 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.qr-orders-item-row {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
}

.qr-orders-item-qty {
  color: #2e7d32;
  font-weight: 600;
  min-width: 24px;
  flex-shrink: 0;
}

.qr-orders-item-name {
  flex: 1;
  color: #374151;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.qr-orders-item-price {
  color: #111827;
  font-weight: 500;
  flex-shrink: 0;
}

.qr-orders-sub-tag {
  font-size: 10px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 999px;
}

.qr-orders-sub-tag.dine-in {
  background: #eff6ff;
  color: #1d4ed8;
}

.qr-orders-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 4px;
}

.qr-orders-pay-label {
  font-size: 11px;
  font-weight: 600;
  color: #9ca3af;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.qr-orders-total {
  font-size: 17px;
  font-weight: 700;
  color: #2e7d32;
}

.y71XMqh1MSHVlGHGo1ug {
  display: flex;
  flex-direction: column;
  height: 100vh;
  width: 100%;
  background-color: var(--Surface-White, #ffffff);
  position: relative;
  overflow: hidden;
  overflow-y: auto;
}

/* Close Button mapping to handleGuestLogin */
.wyPAsNbjXEbbAlDaLscd {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(255, 255, 255, 0.15);
  border: none;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--Surface-White, #ffffff);
  cursor: pointer;
  z-index: 10;
  transition: background-color 0.2s ease;
}

.wyPAsNbjXEbbAlDaLscd:hover {
  background: rgba(255, 255, 255, 0.3);
}

/* Top half with dark orange gradient */
.rtEUmUx4RQ6kW8uF3ig5 {
  background: var(
    --orange-gradient-1,
    linear-gradient(90deg, #e17100 0%, #bb4d00 100%)
  );
  flex: 0.45;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--Surface-White, #ffffff);
  padding: 20px;
}

.vqeITLFE4o4jHLCuyr7r {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.S_Uc028bkjKicNozPCi2 {
  font-size: 24px;
  font-weight: 600;
  margin: 0 0 10px 0;
  letter-spacing: 0.5px;
}

.mVx1avP2aa4V3dMmBP5Y {
  font-size: 14px;
  margin: 0;
  opacity: 0.9;
}

/* Bottom half holding the input and actions */
.iUoMILn1paUPJUcv2gbM {
  flex: 0.55;
  background-color: var(--Surface-White, #ffffff);
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
}

.ieKoTLo6oxy8L6bTpCY4 {
  margin-bottom: 24px;
}

.A6oFuYAZyY9yfv6zFSVL {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: #4a525d;
  margin-bottom: 10px;
}

.gyA77yNygCCuP0VztJgb {
  display: flex;
  gap: 10px;
}

/* Static +91 Box */
.kTT4UduLUHcClBv6eKZp {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f4f5f7;
  border: 1px solid #e0e4e8;
  border-radius: 8px;
  padding: 0 16px;
  font-size: 15px;
  font-weight: 500;
  color: var(--text-Primary-1, #171717);
}

/* Main Phone Number Input */
.QG0UVh1dBBqFk6brZD4x {
  flex: 1;
  border: 1px solid var(--grey-n-6, #e5e5e5);
  border-radius: 8px;
  padding: 14px 16px;
  font-size: 15px;
  color: var(--text-Primary-1, #171717);
  outline: none;
  background-color: var(--Surface-White, #ffffff);
  transition: border-color 0.2s;
  box-sizing: border-box;
}

.QG0UVh1dBBqFk6brZD4x::placeholder {
  color: #8c949d;
  font-weight: 400;
}

.QG0UVh1dBBqFk6brZD4x:focus {
  border-color: var(--blue-1, #af5e00);
}

/* Submit Button */
.K8oJxQSqAjhDw_GKKpmD {
  background-color: var(--blue-1, #af5e00);
  color: var(--Surface-White, #ffffff);
  border: none;
  border-radius: 8px;
  padding: 16px;
  font-size: 16px;
  font-weight: 600;
  width: 100%;
  cursor: pointer;
  margin-bottom: 20px;
  transition: opacity 0.2s ease;
}

.K8oJxQSqAjhDw_GKKpmD:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.K8oJxQSqAjhDw_GKKpmD:not(:disabled):hover {
  opacity: 0.9;
}

/* Bottom small Terms text */
.QLTr20bPOc1XcSHidA22 {
  font-size: 12px;
  color: var(--gray-600, #535861);
  text-align: left;
  line-height: 1.6;
  margin: 0;
}

.QLTr20bPOc1XcSHidA22 span {
  text-decoration: underline;
  cursor: pointer;
}

.QE87l4G8gh8SVHCeLOuL {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.75rem 1rem;
  border-bottom: 1px solid var(--grey-n-4, #f5f5f5);
}

.inPoQhAuevxtBUykhp5w {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-Primary-1, #171717);
  margin: 0;
}

.TqbZcQhZBDIGckcujWkY {
  cursor: pointer;
  height: 1.5rem;
  width: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.TqbZcQhZBDIGckcujWkY svg {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--text-Primary-1, #171717);
  stroke-width: 1.75;
}

.c3OJFBk1Noixujatl_ml {
  padding: 1rem 1rem 6rem;
  overflow-y: auto;
  height: 100%;
  box-sizing: border-box;
}

.CvrFF5m1vTH8TPKQEIpu {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  min-height: 200px;
}

.JK0SdPMzI1E4d5xl7INf {
  font-size: 1rem;
  color: var(--text-Secondary-1, #8a93a7);
  text-align: center;
  margin-top: 2rem;
}

.jp5c5zBRxpOk0_NjhpAl {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 1.5rem;
}

.i1sHKqEZTW6L4lPHpJ8D {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text-Primary-1, #171717);
  margin: 8px 0;
}

.sBRceaQGandxecQWWjhB {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.yPQpxpJJXJek6BiNYzUe {
  font-size: 14px;
  color: var(--text-Secondary-1, #8a93a7);
  margin: 0;
}

.N8Lhdjyl15B64aExPeAw {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-Primary-1, #171717);
  margin: 0;
}

.HTnGs6SPI7eUsg17dqDJ {
  font-size: 13px;
  font-weight: 500;
  color: #d9534f;
  background-color: #fdf0f0;
  padding: 10px;
  border-radius: 6px;
  margin-top: 8px;
}

/* dashed lines below the cards */
.CRrxeuWNncFtjMQZcrZz {
  position: relative;
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}

.CRrxeuWNncFtjMQZcrZz::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: repeating-linear-gradient(
    to right,
    var(--gray-3, #dadde3) 0,
    var(--gray-3, #dadde3) 5px,
    transparent 5px,
    transparent 6.5px
  );
}

.tfV1x5CP2OSTYIo8DFRU {
  width: 100%;
  display: flex;
  padding: 1rem 1rem 2rem;
  box-sizing: border-box;

  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);

  background-color: var(--Surface-White, #ffffff);
  border-top: 1px solid var(--grey-n-4, #f5f5f5);
}

.jGfMDqlQdko_9IwZXWQb {
  border: none;
  outline: none;
  background-color: transparent;
  padding: 0;
  width: 7rem;
  font-size: 1rem;
  border: 1px solid var(--grey-n-4, #f5f5f5);
  border-radius: 0.5rem;
  padding: 0.5rem 0.75rem;
}

.coming-soon-image {
    width: 80%;
    margin: 20% 0% 20% 10%;
}
.order-details-root-div {
  background-color: #ffffff;
 height: 100vh;
 overflow-y: scroll;
 margin-bottom: 150px;
  /* padding: 0.5rem; */
  padding-top: 0.5rem;
}
.order-details-track-root-div {
  background-color: #f4f7fc;
 /* height: 100vh;  */
 /* overflow-y: scroll;  */
 margin-bottom: -10px;
  /* padding: 0.5rem; */
  padding-top: 0.5rem;
}

.order-details-card,
.order-details-shipping-address,
.order-details-billing-address,
.order-details-restaurant-address {
  padding: 8px;
  border-radius: 1rem;
  background-color: #F5F3F0;
}
/* Make ordered item cards grey to match page style */
.order-details-root-div .cart-item-card {
  background-color: #F5F3F0 !important;
  border-radius: 0.8rem;
}
.invoice-btn {
  width: 92%;
  border: 1px solid #ad1a19;
  border-radius: 4px;
  padding: 9px;
  margin: 10px;
  background-color: #fff;
  color: #ad1a19;
}

.orderTrack-container {
  margin-top: 3rem;
  background-color: #ffffff;
  padding-top: 1rem;
  overflow-y: auto;
  height: 100vh;
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
}

/* ---------- STEPPER ---------- */
.orderTrack-stepper {
  padding: 1rem;
  margin: 0 auto;
  width: 90%;
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.MuiStepper-root {
  justify-content: center;
  align-items: flex-start;
}

.MuiStepLabel-label {
  font-size: 0.9rem !important;
  color: #333 !important;
  font-weight: 500;
}

.MuiStepIcon-root.Mui-active {
  color:rgb(25, 118, 210) !important;
}

.MuiStepIcon-root.Mui-completed {
  color:rgb(25, 118, 210) !important;
}

/* ---------- CANCEL ORDER ---------- */
.cancel-order-section {
  /* padding: 1rem; */
  margin-bottom: 5rem;
  padding-bottom: 1rem;
  text-align: center;
}

.cancel-order-text {
  text-decoration: underline !important;
  text-underline-offset: 3px !important;
  cursor: pointer;
  font-size: 1rem;
  color: #666;
}

/* ---------- MOBILE (<=600px) ---------- */
@media (max-width: 600px) {
  .orderTrack-container {
    margin-top: 2rem;
    padding-top: 0.5rem;
   
  }

  .orderTrack-stepper {
    margin-top: 2rem;
    width: 95%;
    padding: 0.75rem;
    box-shadow: none;
    background: transparent;
  }

  /* Make stepper vertical */
  .MuiStepper-root.MuiStepper-horizontal {
    /* flex-direction: column !important;
    align-items: flex-start !important; */
  }

  .MuiStepLabel-label {
    font-size: 0.85rem !important;
  }

  .MuiStepLabel-iconContainer {
    margin-right: 8px;
  }

  .cancel-order-section {
    margin-bottom: 5rem;
  }

  .cancel-order-text {
    font-size: 0.9rem;
  }
}

/* ---------- VERY SMALL DEVICES (<=400px) ---------- */
@media (max-width: 400px) {
  .orderTrack-container {
    margin-top: 1.5rem;
    padding-top: 0.3rem;
  }

  .MuiStepLabel-label {
    font-size: 0.75rem !important;
  }

  .cancel-order-text {
    font-size: 0.8rem;
  }
}

.vvgBksYzgCTe_NuIgNaf {
  display: flex;
  flex-direction: column;
  height: 100vh;
  width: 100%;
  background-color: var(--Surface-White, #ffffff);
  position: relative;
  overflow: hidden;
  overflow-y: auto;
}

/* Top half with dark orange gradient */
.d7n4_HkOXY38bVyJpjBR {
  flex: 0.45;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--Surface-White, #ffffff);
  padding: 20px;
}

.pp7L3S3mKb9qTOJkgGyy {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.mMdmptnyIe8kEBYdWE8J {
  font-size: 24px;
  font-weight: 600;
  margin: 0 0 10px 0;
  letter-spacing: 0.5px;
}

.ZKrWi2J5lyhCGNEXIwSQ {
  font-size: 14px;
  margin: 0;
  opacity: 0.9;
}

/* Bottom half holding the input and actions */
.YbWLD77PrNFe0p0El_8A {
  flex: 0.55;
  background-color: var(--Surface-White, #ffffff);
  padding: 24px 24px;
  display: flex;
  flex-direction: column;
}

.WoxICnamig0OPxw3wiIL {
  display: flex;
  align-items: center;
  gap: 8px;
  background: none;
  border: none;
  color: var(--text-Primary-1, #4a525d);
  font-size: 14px;
  font-weight: 500;
  padding: 0;
  margin-bottom: 24px;
  cursor: pointer;
  align-self: flex-start;
}

.gpJLfEdojfL9ZmS8w5kV {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: #4a525d;
  margin-bottom: 16px;
}

.dAvDWaXHtJfZUvNA7SYA {
  display: flex;
  justify-content: center;
  margin-bottom: 24px;
}

.prziX0J8v8lhjsTMSsvo {
  text-align: center;
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.Jwjl1a0Om87PYTeS_WJC {
  margin: 0;
  font-size: 13px;
  color: var(--text-Secondary-1, #8a93a7);
}

.I3lFaGjK7Z2h6njLFoR0 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  white-space: nowrap;
}

.X2ulZHVB14F6U5yKYEAN {
  margin: 0;
  font-size: 13px;
  color: var(--text-Secondary-1, #8a93a7);
  font-weight: 500;
}

.C_qmVDWvQpnhaVFa2Sv9 {
  background: none;
  border: none;
  color: var(--blue-1, #af5e00);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  padding: 0;
}

/* Verify Button */
.pgPuPGbT3mUNWWHKC8y5 {
  color: var(--Surface-White, #ffffff);
  border: none;
  border-radius: 8px;
  padding: 16px;
  font-size: 16px;
  font-weight: 600;
  width: 100%;
  cursor: pointer;
  margin-bottom: 20px;
  transition: opacity 0.2s ease;
}

.pgPuPGbT3mUNWWHKC8y5:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.pgPuPGbT3mUNWWHKC8y5:not(:disabled):hover {
  opacity: 0.9;
}

/* Bottom small Terms text */
.a3c_Vhcm_xT0XFkiLG99 {
  font-size: 12px;
  color: var(--gray-600, #535861);
  text-align: left;
  line-height: 1.6;
  margin: 0;
}

.a3c_Vhcm_xT0XFkiLG99 span {
  text-decoration: underline;
  cursor: pointer;
}

.sakura-logo {
    width: 6rem !important;
    margin: auto !important;
    height: 6rem;
}

.sakura-logo-box {
    width: 100%;
    display: flex;
}

.aboutus-nav-links {
    display: flex;
    justify-content: center;
    text-decoration: underline;
    color: rgb(7, 60, 13) !important;
    cursor: pointer;
    transition: color 0.3s ease;
}

.aboutus-nav-links:hover {
    color: rgb(210, 25, 31) !important;
}

/* Privacy Policy Content Styling */
.privacy-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1rem;
}

.privacy-section {
    margin-bottom: 1.5rem;
}

.privacy-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: rgb(210, 25, 31);
    margin-bottom: 1rem;
    text-align: center;
}

.privacy-subtitle {
    font-size: 0.875rem;
    color: #666;
    margin-bottom: 0.5rem;
    font-weight: 400;
}

.privacy-intro {
    font-size: 0.875rem;
    color: #555;
    line-height: 1.6;
    text-align: justify;
    margin-bottom: 1.5rem;
}

.privacy-heading {
    font-size: 1.125rem;
    font-weight: 600;
    color: rgb(210, 25, 31);
    margin: 2rem 0 1rem 0;
}

.privacy-subheading {
    font-size: 1rem;
    font-weight: 500;
    color: #333;
    margin: 1.5rem 0 0.5rem 2rem;
}

.privacy-sub-subheading {
    font-size: 1rem;
    font-weight: 500;
    color: #333;
    margin: 1rem 0 0.5rem 4rem;
}

.privacy-body {
    font-size: 0.875rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 1rem;
}

/* Responsive design */
@media (max-width: 768px) {
    .privacy-content {
        margin-bottom: 4rem;
        padding: 0 0.5rem;
    }

    .privacy-title {
        font-size: 1.25rem;
    }

    .privacy-heading {
        font-size: 1rem;
        margin-left: 0;
    }

    .privacy-subheading {
        margin-left: 1rem;
    }

    .privacy-sub-subheading {
        margin-left: 2rem;
    }
}
/* .img_container {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  box-sizing: border-box;
} */

/* ── QR Dine-In Register page overrides ── */

/* Page background: very light green instead of default white */
.qr-register-page {
  background-color: #f1f8e9 !important;
  min-height: 100vh;
}

/* Header: override orange restaurant-header to green */
.qr-register-page .menu-back-heading.restaurant-header {
  background-color: #2e7d32 !important;
}

/* Submit button: override orange MUI contained button to green */
.qr-register-page .MuiButton-contained {
  background-color: #2e7d32 !important;
}
.qr-register-page .MuiButton-contained:hover {
  background-color: #256427 !important;
}
.qr-register-page .MuiButton-contained:disabled {
  background-color: #a5d6a7 !important;
}

/* Input focus: override orange border/label to green */
.qr-register-page .MuiOutlinedInput-root.Mui-focused .MuiOutlinedInput-notchedOutline {
  border-color: #2e7d32 !important;
}
.qr-register-page .MuiInputLabel-root.Mui-focused {
  color: #2e7d32 !important;
}

.CnYk8iQ6pzIH7phz7dGw {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.07);
  border: 1px solid #f0f0f0;
  margin: 24px 16px 16px;
  padding: 16px;
}

.fb00VEn4KFGvi11lYC7l {
  font-size: 14px;
  font-weight: 600;
  color: #252B37;
  margin-bottom: 12px;
}

.XggwrPqTMv9Z2Z4ZWkR2 {
  border-bottom: 1px solid #f0f0f0;
}

.XggwrPqTMv9Z2Z4ZWkR2:last-child {
  border-bottom: none;
}

.r3Egrrg0Ke5i6bLQzPeR {
  position: absolute;
  right: 12px;
  bottom: 10px;
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  color: var(--verified-text);
  background-color: var(--verified-bg);
  border-radius: 20px;
  padding: 2px 10px;
}

/* QR dine-in: override brownish restaurant header with green */
.qr-support-page .menu-back-heading.restaurant-header {
    background-color: #2e7d32 !important;
}

.support-list-box {
    color: rgb(12, 121, 36) !important;
    margin-left: 15px !important;
}
/* QR dine-in: override brownish restaurant header with green */
.qr-terms-page .menu-back-heading.restaurant-header {
    background-color: #2e7d32 !important;
}

.sakura-logo {
    width: 6rem !important;
    margin: auto !important;
    height: 6rem;
}

.sakura-logo-box{
    width: 100%;
    display: flex;
    background-color: black;
    
}

.aboutus-nav-links {
    display: flex;
    justify-content: center;
    text-decoration: underline;
    color: rgb(7, 60, 13) !important;
    cursor: pointer;
    transition: color 0.3s ease;
}

.aboutus-nav-links:hover {
    color: rgb(210, 25, 31) !important;
}

/* Terms of Use Content Styling */
.terms-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1rem;
}

.terms-section {
    margin-bottom: 1.5rem;
}

.terms-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: rgb(210, 25, 31);
    margin-bottom: 1rem;
    text-align: center;
}

.terms-subtitle {
    font-size: 0.875rem;
    color: #666;
    margin-bottom: 0.5rem;
    font-weight: 400;
}

.terms-intro {
    font-size: 0.875rem;
    color: #555;
    line-height: 1.6;
    text-align: justify;
    margin-bottom: 1.5rem;
}

.terms-heading {
    font-size: 1.125rem;
    font-weight: 600;
    color: rgb(210, 25, 31);
    margin: 2rem 0 1rem 0;
}

.terms-subheading {
    font-size: 1rem;
    font-weight: 500;
    color: #333;
    margin: 1.5rem 0 0.5rem 2rem;
}

.terms-sub-subheading {
    font-size: 1rem;
    font-weight: 500;
    color: #333;
    margin: 1rem 0 0.5rem 4rem;
}

.terms-body {
    font-size: 0.875rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 1rem;
}

/* Responsive design */
@media (max-width: 768px) {
    .terms-content {
        margin-bottom: 4rem;
        padding: 0 0.5rem;
    }

    .terms-title {
        font-size: 1.25rem;
    }

    .terms-heading {
        font-size: 1rem;
        margin-left: 0;
    }

    .terms-subheading {
        margin-left: 1rem;
    }

    .terms-sub-subheading {
        margin-left: 2rem;
    }
}
.transaction-card {
  display: flex;
  align-items: center;
  padding: 10px;
  border-radius: 1rem;
  gap: 10px;
  margin: 10px 0px;
  background-color: #ffffff;
}
.rupeeIcon { 
  font-size: 12px !important;
}
.refundIcon {
  background: #e7f3ec !important;
  color: #0f8241 !important;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 3px;
}
.debitIcon {
  background: #fef2f2 !important;
  color: #f20411 !important;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 3px;
}
.refundedColor {
  color: #0f8241 !important;
}
.debitedColor {
  color: #f20411 !important;
}

.wallet-root-div {
  overflow-y: scroll;
  height: 100vh;
  min-height: calc(100vh - 3.5rem);
  margin-top: 6rem;
  margin-bottom: 3.5rem;
  /* background-color: #f4f7fc; */
}

.wallet-root-loader {
  background-color: #f4f7fc;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.wallet-loader-box {
  height: 5rem;
  width: 5rem;
  text-align: center;
}

.wallet-loader {
  height: 100%;
}

.wallet-header {
  /* padding: 10px; */

  /* border-bottom-left-radius: 1rem;
  border-bottom-right-radius: 1rem; */
  height: 6rem;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  background-color: #f4f7fc;
  z-index: 1000 !important;
}
.wallet-content {
  overflow-y: scroll;
  height: 100vh;
  padding: 0.5rem;
}
.wallet-balance-div {
  border-radius: 1rem;
  padding: 10px;
  margin: 10px 0px;
  background-color: #ffffff;
}
.terms-and-conditions {
  color: darkgray !important;
  text-align: justify;
  line-height: 15px !important;
  font-weight: 100 !important;
  font-size: 9px !important;
}

.ua_3mu8p92o8v0ptMLCQ {
  /* Keep 100vh as a fallback for older browsers */
  height: 100vh;
  /* Use dvh so the container shrinks when the keyboard opens */
  height: 100dvh;
  overflow-y: auto;
  scroll-behavior: smooth;

  /* Prevents the elastic bounce effect that can shift the fixed layout */
  overscroll-behavior: none;

  /* 
    Lock the container to the exact visible viewport
    for the keypad to open without causing layout shifts. 
  */
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

/* searchbar header */
.BWeiVBIRIzZ7vodY2uqJ {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.5rem;
  padding: 1rem;

  /* header bar is sticky */
  /* position: sticky;
  top: 0;
  z-index: 10; */
  /* border: 1px solid #E5E5E5; */

  background-color: var(--Surface-White, #ffffff);
}

.SVy5j5N31yiQdmY5PoyG {
  display: flex;
  flex-direction: column;
  position: sticky;
  top: 0;
  z-index: 10;
  background-color: var(--Surface-White, #ffffff);
}

.CTKoL_ULG9UFHwRKyqGt {
  width: 42px;
  height: 42px;
  cursor: pointer;
  margin-left: -0.25rem;
  /* border-radius: 50%;
  border: 1px solid var(--gray-3, #dadde3); */
  display: flex;
  align-items: center;
  justify-content: center;
}

.CTKoL_ULG9UFHwRKyqGt svg {
  width: 1.5rem;
  height: 1.5rem;
  fill: var(--Surface-G5, #333);
  stroke-width: 2.75;
  margin-left: -0.25rem;
}

.XK104dXMUSvy_m3BYTcu {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-Primary-1, #171717);
}

/* listing results styles */
.nGPPuOhxoqFOHKGvpNY4 {
  display: flex;
  flex-direction: column;
  margin-top: 0.5rem;
  padding: 1rem;
}

.vl6rlIbiGh0XHzYdGbW7 {
  margin-bottom: 1rem;
}

/* dashed lines below the cards */
.fLfmBRsdnYCSfTLanUas {
  position: relative;
}

.fLfmBRsdnYCSfTLanUas::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px; /* thickness */
  background: repeating-linear-gradient(
    to right,
    var(--gray-3, #dadde3) 0,
    /* start of dash */ var(--gray-3, #dadde3) 5px,
    /* end of dash length */ transparent 5px,
    /* start of gap */ transparent 6.5px /* end of gap */
  );
}

.K12Wd6jnDhVH5zo2F8hH {
  display: flex;
  align-items: center;
  justify-self: center;
  justify-content: center;

  padding-bottom: 4rem; /* bottom navabr*/
}

.ZaFz12nVmMAU7anVFhIV {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.OEL1kTIlEs4XbGKOJw82 {
  height: 250px;
  width: auto;
  object-fit: cover;
}

.FdjJZDwS5LfFz7s47wlT {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 80vh;
}

.YTPQXJW4y3bkFR_4to17 {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-Primary-1, #252b37);
  margin-top: 1rem;
  text-align: center;
}

.y_s15um4KrENTqP31cIE,
.Dd7EZEVZWfJT4WTDtQ66 {
  font-size: 1rem;
  color: var(--text-Primary-1, #252b37);
  margin-top: 1rem;
  margin-bottom: 1rem;
  width: 100%;
  text-align: center;
}

/* --- TABLET & DESKTOP LAYOUT (768px and up) --- */
@media (min-width: 768px) {
  /* Turn the list container into a grid */
  .nGPPuOhxoqFOHKGvpNY4 {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 2rem 1.5rem;
    align-items: start;
  }

  /* Remove the bottom margin from the cards since we are using grid gap */
  .vl6rlIbiGh0XHzYdGbW7 {
    margin-bottom: 0;
  }

  /* Force the loading spinner and "End of list" messages to span the full width of the grid */
  .nGPPuOhxoqFOHKGvpNY4 > .K12Wd6jnDhVH5zo2F8hH {
    grid-column: 1 / -1;
    width: 100%;
    margin-top: 1rem;
    padding-bottom: 2rem; /* Keep some padding above the bottom nav */
  }

  /* Hide dashed lines on desktop for a cleaner floating card look */
  .fLfmBRsdnYCSfTLanUas::after {
    display: none;
  }
}

:root {
  font-synthesis: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;

  /* css variables */
  --Surface-White: #ffffff;
  --text-Primary-1: #171717;
  --text-Secondary-1: #8a93a7;
  --text-Secondary-2: #333333;

  --header-bg: #0C0807;
  --footer-bg: #171717;
  --footer-text: #A1A1A1;
  --grey-n-1: #F5F3F0;
  --text-grey-1: #525252;
  --pink-1: #FFFBEB;
  --grey-n-2: #737373;
  --grey-n-3: #EFECEC;
  --grey-n-4: #F5F5F5;
  --grey-n-5: #6B6565;
  --grey-n-6: #E5E5E5;
  --grey-n-7: #F2F2F2;
  --orange-n-1: #b96b42;

  --blue-1: #AF5E00;
  --blue-400: #AF5E00;
  --blue-3: #085dc5;
  --blue-50: #edfaff;
  --blue-100: #d6f2ff;
  --blue-200: #b5eaff;
  --blue-b3: #bfeaff;
  --blue-b4: #f4fbff;
  --blue-800: #263a83;

  --black-1: #343434;
  --gray-1: #d5d7db;
  --grey-100: #eaecef;
  --grey-600: #798097;
  --grey-200: #e9eaeb;
  --grey-300: #bdc4ce;
  --grey-800: #252b36;
  --gray-900: #181d27;
  --gray-500: #717680;
  --grey-50: #fafafa;
  --gray-50: #f6f7f8;
  --gray-3: #dadde3;
  --gray-600: #535861;
  --gray-700: #414651;
  --gray-200: #e9eaec;
  --grey-950: #31323a;
  --grey-900: #4c4f5c;
  --Surface-G5: #333;
  --Surface-G4: #6b6b6b;
  --Surface-G1: #e6e6e6;
  --red-200: #e90000;

  --green-400: #0b742c;
  --green-200: #87c55d;
  --green-600: #22973f;

  --backdrop-bg-color-1: #0b0b0b29;
  --color-warning-bg: #f59e0b;

  --green-400: #0b742c;
  --green-500: #34c759;

  --backdrop-bg-color-1: #0b0b0b29;
  --color-primary: #3b82f6;
  --color-danger: #ef4444;
  --Yellow-100: #fffec1;
  --Red-600: #ed2015;
  --eclipse-shadow: 8, 93, 197;

  --orange-gradient-1: linear-gradient(90deg, #E17100 0%, #BB4D00 100%);

  /* Brand */
  --brand-orange: #E17100;
  --brand-orange-dark: #BB4D00;
  --brand-gradient: linear-gradient(90deg, #E17100, #BB4D00);
  --brand-accent: #b96b42;

  /* Page background */
  --bg-page: #F5F3F0;

  /* Borders */
  --border-subtle: #f0f0f0;
  --border-light: #f5f5f5;
  --border-tab: #E8E4DF;

  /* Text scale */
  --text-primary: #252B37;
  --text-secondary: #6B7280;
  --text-muted: #4B5563;
  --text-tertiary: #9CA3AF;

  /* Verified badge */
  --verified-text: #2e7d32;
  --verified-bg: #e8f5e9;

  /* Danger */
  --danger-text: #dc2626;
  --danger-bg: #fff5f5;
  --danger-border: #fecaca;

  /* Cancel button */
  --btn-cancel-bg: #f5f5f5;

  /* Order status */
  --status-delivered-bg: #dcfce7;
  --status-delivered-text: #166534;
  --status-cancelled-bg: #fee2e2;
  --status-cancelled-text: #991b1b;
  --status-pending-bg: #fff7ed;
  --status-pending-text: #c2410c;
}

/* 1. Remove tap highlight (Android, Chrome, Safari iOS) */
* {
  -webkit-tap-highlight-color: transparent !important;
}

/* 2. Remove browser focus ring but keep element color untouched */
*:focus {
  outline: none !important;
  box-shadow: none !important;
}

/* 3. Safari / iOS remove gray overlay */
* {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

/* 4. Remove Android WebView click flash without altering element color */
*:active {
  outline: none !important;
  box-shadow: none !important;
}

/* 5. Firefox remove dotted focus ring */
button::-moz-focus-inner,
*:focus::-moz-focus-inner {
  border: 0;
}

body,
html,
div {
  -ms-overflow-style: none;
  /* IE + Edge */
  scrollbar-width: none;
  /* Firefox */
}

body::-webkit-scrollbar,
html::-webkit-scrollbar,
div::-webkit-scrollbar {
  display: none;
  /* Chrome, Safari, Edge (WebKit) */
}

* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;

  user-select: none; /* prevents user from selecting the text content */

  -webkit-overflow-scrolling: touch; /* ios */
}

.pageBodyScrollContainer {
  /* Keep 100vh as a fallback for older browsers */
  height: 100vh;
  /* Use dvh so the container shrinks when the keyboard opens */
  height: 100dvh;
  overflow-y: auto;
  scroll-behavior: smooth;

  -webkit-overflow-scrolling: touch;

  /* Prevents the elastic bounce effect that can shift the fixed layout */
  overscroll-behavior: none;

  background-color: var(--Surface-White, #ffffff);
}
.ASg76acer6Dm224xi1OQ {
  height: 100vh;
  overflow-y: auto;
  scroll-behavior: smooth;
}

/* searchbar header */
.QRFk_phGkxg7ek2yWz3N {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
}

.AhxoJa97AUugiODZKPUo {
  display: flex;
  flex-direction: column;
  position: sticky;
  top: 0;
  z-index: 10;

  background-color: #f5f3f0;
  padding-bottom: 0.5rem;
}

.b0EVbthe2mOLbgnN8kT6 {
  position: sticky;
  top: 0;
  z-index: 10;
  background-color: var(--Surface-White, #ffffff);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
}

.L24vj7sOY0LoCuQfQF8g {
  /* width: 42px; */
  height: 42px;
  cursor: pointer;
  margin-left: -0.25rem;
  /* border-radius: 50%;
  border: 1px solid var(--gray-3, #dadde3); */
  display: flex;
  align-items: center;
  justify-content: center;
}

.L24vj7sOY0LoCuQfQF8g svg {
  width: 1.5rem;
  height: 1.5rem;
  fill: var(--Surface-G5, #333);
  stroke-width: 2.75;
  margin-left: -0.25rem;
}

.L7Z7cD1foqs4_HPfiGKW {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-Primary-1, #171717);
}

.gvI7rC0aR1Cdvanc_OaK {
  height: 2.5rem;
  color: var(--Surface-White, #ffffff);
  background-color: var(--grey-950, #31323a);
  border-radius: 0.5rem;
  border: 1px solid var(--grey-950, #31323a);
  font-size: 1rem;
  font-weight: 500;
  padding: 0.5rem;
  margin-right: -0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.GhtjA49ZsZvSKHQ3SPIM {
  padding-top: 4px;
}

/* listing results styles */
.YTCn_UOcr_ryxfWI93NA {
  display: flex;
  flex-direction: column;
  margin-top: 0.5rem;
  padding: 1rem;
  padding-bottom: 125px;
  gap: 1rem;
}

.JatrGOPsdGid8hW15CQU {
  margin-bottom: 1rem;
}

/* dashed lines below the cards */
.V_Qfycwe4Q_RChAxPtfu {
  position: relative;
}

.V_Qfycwe4Q_RChAxPtfu::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px; /* thickness */
  background: repeating-linear-gradient(
    to right,
    var(--gray-3, #dadde3) 0,
    /* start of dash */ var(--gray-3, #dadde3) 5px,
    /* end of dash length */ transparent 5px,
    /* start of gap */ transparent 6.5px /* end of gap */
  );
}

.d64JQoWWxRkTFVUyhAhc {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 80vh;
}

.XUHxY73qBM7LxI6WO27V,
._aUXXBDyspfQUjCpht0y {
  font-size: 1rem;
  color: var(--text-Primary-1, #252b37);
  margin-top: 1rem;
  margin-bottom: 1rem;
  width: 100%;
  text-align: center;
}

/* ADJUSTED FOR STICKY CATEGORY TITLE */
.OsgXj0YygCYByT9X2fCn {
  position: sticky;
  top: 210px; /* Aligns right below the main search + filter header */
  z-index: 40;
  background: var(--Surface-White, #ffffff);
  padding: 0.75rem 1rem;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-Primary-1, #252b37);
  border-bottom: 1px solid var(--gray-3, #dadde3);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.KugbQg6lgiPud70NrGIS {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.HXIQ1Cb8VxVEkOhHlI5N {
  padding: 0 1rem;
}

/* Loader while fetching next page */
._9my5Ct7OVrbwjdCkMmsQ {
  padding: 16px 0;
  display: flex;
  justify-content: center;
}

/* Empty State */
.nYErMQLLR9_6_wmdIrV_ {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 80px 24px;
  text-align: center;
}

.U6ori9ZIu2n7v3qsJ6rb {
  color: var(--text-Primary-1, #252b37);
  font-size: 18px;
  font-weight: 600;
}

.LsWPjk2U7HZIjEIjsizK {
  color: var(--text-Secondary-1, #8a93a7);
  margin-top: 4px;
  max-width: 200px;
  font-size: 14px;
}

.kJzKV2UUuOfnvBVe_yNM {
  margin-top: 24px;
  background: transparent;
  border: none;
  color: var(--blue-400, #af5e00);
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 4px;
  cursor: pointer;
  padding: 0;
}

/* --- TABLET & DESKTOP LAYOUT (768px and up) --- */
@media (min-width: 768px) {
  /* 1. Target the specific anonymous <div> inside productsListContainer 
        that holds the mapped products (ignoring the initialLoader div) */
  .YTCn_UOcr_ryxfWI93NA > div:not(.KugbQg6lgiPud70NrGIS) {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 2rem 1.5rem;
    align-items: start;
  }

  /* 2. Remove the bottom margin from the mapped product wrapper divs */
  .YTCn_UOcr_ryxfWI93NA
    > div:not(.KugbQg6lgiPud70NrGIS)
    > div:not(._9my5Ct7OVrbwjdCkMmsQ):not(.nYErMQLLR9_6_wmdIrV_) {
    margin-bottom: 0;
  }

  /* 3. Force the pagination loaders and messages to span the entire full width of the grid 
        so they don't get stuck inside a single 340px column */
  ._9my5Ct7OVrbwjdCkMmsQ,
  .XUHxY73qBM7LxI6WO27V,
  .nYErMQLLR9_6_wmdIrV_ {
    grid-column: 1 / -1;
    width: 100%;
    margin-top: 2rem;
  }

  /* 4. Hide dashed lines on desktop for a cleaner floating card look */
  .V_Qfycwe4Q_RChAxPtfu::after {
    display: none;
  }
}

.RSVNMlZqfLn4qHtq68VF {
  background-color: var(--Surface-White, #ffffff);
  padding: 8px 0;
  display: flex;
  flex-direction: column;
  width: 100%;
  box-sizing: border-box;
  border-bottom: 1px solid #efecec;
  border-top: 1px solid #efecec;
}

.Lyj7dJqy6hzk1BRbwaSs {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 0;
}

.hAGIw8DM57omHNgo3UBp {
  font-size: 14px;
  color: var(--text-grey-1, #525252);
  margin: 0;
  font-weight: 500;
}

.weNUVB6GST9YHczoEbh3 {
  font-size: 14px;
  color: var(--text-Primary-1, #171717);
  margin: 0;
  font-weight: 500;
}

/* Styles specifically for the expanded sub-rows */
.gOI1F4TP7WlQ99tLxZAF {
  padding: 6px 0;
  font-size: 13px;
}

.gOI1F4TP7WlQ99tLxZAF .weNUVB6GST9YHczoEbh3 {
  font-size: 13px;
}

.hoNfWzMf3Gj22YERWa45 {
  color: var(--text-grey-1, #525252);
  font-size: 13px;
  padding-left: 12px;
}

/* Modifiers */
.GYMN4rmxK8utCTFNXb50 {
  color: #ad1a19 !important;
}

.ijUS8bkITYDXabb6m4Xe {
  font-weight: 700;
  font-size: 15px;
}

/* Collapsible Header Row */
.jPQ0jNBXqT4GH0jO1xO0 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  cursor: pointer;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}

.i46ffGxKAHMo2jt1rcQw {
  width: 16px;
  height: 16px;
  color: var(--text-Primary-1, #171717);
  stroke-width: 2.5;
  transition: transform 0.2s ease;
}

/* Animation Container */
.s9tM97noDH6Ro12jfA5g {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

/* Dividers */
.r3iE5_qsAWao7H9ehFR6 {
  border-bottom: 1px solid #efecec;
  margin: 8px 0;
  width: 100%;
}

.pYmraW6tf5Q3O810uw7n {
  background-color: var(--grey-n-1, #f5f3f0);
  border-radius: 16px;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
  box-sizing: border-box;
  transition: background-color 0.2s ease;
}

.pYmraW6tf5Q3O810uw7n:hover {
  background-color: #ebeae6;
}

.cz5E2qGh_MRbAV4eTLKB {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-Primary-1, #171717);
  margin: 0;
}

.fjRjDC4UY09eDaKR6tz_ {
  font-size: 14px;
  font-weight: 400;
  color: var(--text-grey-1, #525252);
  margin: 0;
}

.i90VUneqxI6KLAAdGzLp {
  background-color: var(--grey-n-1, #f5f3f0);
  border-radius: 16px;
  padding: 1rem;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  width: 100%;
  box-sizing: border-box;
  transition: background-color 0.2s ease;
}

.i90VUneqxI6KLAAdGzLp:hover {
  background-color: #ebeae6;
}

.lQYjzI8P2m4Uzzdskw_w {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.wT3A2o1l66eDT84MSsX9 {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-Primary-1, #171717);
  margin: 0;
}

.o5qBR_vsYLMcSOH4qv2s {
  width: 20px;
  height: 20px;
  color: var(--text-Primary-1, #171717);
  stroke-width: 2.5;
}

.Ux6K25R1y31NrwwNVbMw {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.Uy45kOZEZjLe62NOuc2j {
  display: flex;
  align-items: center;
  gap: 6px;
}

.FNrIHPqaTNB_pW9gHcwm {
  width: 18px;
  height: 18px;
  color: #4a4a4a;
}

.Vd5YpDECSKhk_lN2yXFt {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-Primary-1, #171717);
  margin: 0;
}

.Rri_lCsRpzsHRaMSqqSO {
  font-size: 14px;
  font-weight: 400;
  color: var(--text-grey-1, #525252);
  margin: 0;
  line-height: 1.5;
  padding-left: 2px;
}

.BlNHJR_VUy2AD0j9h9ut {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin-bottom: 12px;
}

.EnoLYNrcGTZA_0wzcffA {
  font-size: 14px;
  font-weight: 500;
  color: var(--grey-n-5, #6b6565);
  margin: 0 0 8px 4px;
}

/* The clickable card area */
.vH_iiRDH8PpNIDnYp5z6 {
  background-color: var(--Surface-White, #ffffff);
  border-radius: 12px;
  padding: 12px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  transition: background-color 0.2s ease;
}

.vH_iiRDH8PpNIDnYp5z6:hover {
  background-color: #fcfcfc;
}

.jUy4j5diHBO1Lkz9FBZ7 {
  display: flex;
  align-items: center;
  gap: 12px;
}

.C2UQADXJto5gg1mhl4dr {
  width: 32px;
  height: 32px;
  background-color: #f9c588;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.tXfv8oQXHMdD2BXV91gm {
  width: 20px;
  height: 20px;
  color: var(--blue-1, #af5e00);
  transform: rotate(-45deg);
}

.mQ2TLRz3otO92kc78fvZ {
  display: flex;
  flex-direction: column;
}

.Obcajq1vGrDJ_twnbwT4 {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-Primary-1, #171717);
  margin: 0;
}

.GNpq7XnwTQBWXiA5CPh1 {
  display: flex;
  align-items: center;
  justify-content: center;
}

.vFqys5dBcRmqCPatcDjl {
  width: 18px;
  height: 18px;
  color: var(--text-Primary-1, #171717);
  stroke-width: 2.5;
}

.xqRQBV0oydz9jvxG4Llt {
  width: 22px;
  height: 22px;
  color: #d9534f;
  cursor: pointer;
  transition: opacity 0.2s ease;
}

.xqRQBV0oydz9jvxG4Llt:hover {
  opacity: 0.7;
}

.zaTuHr4nTBSMa5rVmE9z {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
}

.V0btY3tUOvZA9QrO2k8_ {
  display: flex;
  gap: 12px;
  background-color: transparent;
  width: 100%;
  align-items: flex-start;
  padding: 8px 0;
}

/* Left side: Image */
.X25pcn9_UZtQD2qk7g5G {
  width: 76px;
  height: 76px;
  flex-shrink: 0;
  border-radius: 12px;
  overflow: hidden;
  background-color: #f5f5f5;
}

.fQjLPKma7i97mTmuBba7 {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Right side: Details & Controls */
.mN1Oes9kqT4wchn_CE9i {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  gap: 4px;
}

/* Title Row */
.BVtbfzZygPb9UchSru5z {
  display: flex;
  align-items: flex-start;
  gap: 6px;
}

.v4nidJWQPWMY0I741KQQ {
  height: 16px;
  width: 16px;
  object-fit: contain;
  /* margin-top: 1px; */
  flex-shrink: 0;
}

.hHupQ6TfAc0c8qtSPhi7 {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-Primary-1, #171717);
  margin: 0;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Variant Row */
.q1sI02_GMi0KdOmgAbW9 {
  font-size: 14px;
  color: var(--grey-n-2, #737373);
  margin: 0;
  font-weight: 400;
}

/* Note / Comments Row */
.uijr0nGAxJsrygBhHX6b {
  margin: 0;
  font-size: 14px;
}

.MwEdXY1Hnmo40Up7hpgp {
  color: var(--blue-400, #af5e00);
  font-style: italic;
  font-weight: 600;
}

.O_nTpqNdtSWwawpy2grX {
  color: var(--grey-n-2, #737373);
  font-style: italic;
  font-weight: 400;
}

/* Addons */
.PrhJxUlaDekaeST_vEb1 {
  font-size: 13px;
  font-weight: 400;
  color: #717680;
  margin: 0;
}

/* Edit Button */
.IKK1aItI_kk86RbJDroy {
  color: var(--blue-400, #af5e00);
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  width: fit-content;
  margin-top: 2px;
}

.srARN3ySpLMoXv7og21r {
  display: flex;
  align-items: center;
  gap: 2px;
}

.SzfHvLCrV9wp5Nk6QBXZ {
  height: 14px;
  width: 14px;
  stroke-width: 2.5;
}

.zaxel6ab9oexiOQqsnP0 {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
}

/* Price & Controls Row */
.TStR0FLcaWf0Ld0RWuu8 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 6px; /* Pushes the controls slightly down */
}

.ZUBe478Rf_2RCiKXNhfY {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-Primary-1, #171717);
  margin: 0;
}

.v7IQicIHEJDTJs8rrPdE {
  display: flex;
  flex-direction: column;
  background-color: var(--Surface-White, #ffffff);
  border-radius: 12px;
  width: 100%;
  box-sizing: border-box;
}

/* Header */
.E2sJnCqpGsI5m6bueO3K {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 16px;
}

.etRMLpP34l0Q9UdV3wFQ {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-Primary-1, #171717);
  margin: 0;
  margin-top: 4px;
}

/* Right side actions wrapper */
.hi3JvrZNcWMmT1LtWLxM {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
  margin-top: 2px;
}

/* Switch to Slotted Button */
.hGAMJFLsc0cMG5J4mVGs {
  display: flex;
  align-items: center;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px 8px;
  padding-right: 0;
}

/* Animated Wave Effect on Text */
.XLwt4XnmZ75_h2p2Kl_C {
  font-size: 14px;
  font-weight: 700;
  /* Uses the brownish-orange theme color and a lighter orange for the shine/wave */
  background: linear-gradient(90deg, #b96b42 0%, #f5a623 50%, #b96b42 100%);
  background-size: 200% auto;
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  animation: RtGAtOu5HuHZmTMeN0fy 2s linear infinite;
}

.TFhkLGn9LFKHOCkfsOyH {
  width: 14px;
  height: 14px;
  color: #b96b42;
  stroke-width: 2.5;
}

/* Keyframes for the wave animation */
@keyframes RtGAtOu5HuHZmTMeN0fy {
  to {
    background-position: 200% center;
  }
}

._W1qRmf7cbPwXSDX7wXB {
  display: flex;
  align-items: center;
  gap: 4px;
  background: none;
  border: none;
  color: #d9534f;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  padding: 4px 8px;
  border-radius: 6px;
  transition: background-color 0.2s;
}

._W1qRmf7cbPwXSDX7wXB:hover:not(:disabled) {
  background-color: #fdf0f0;
}

._W1qRmf7cbPwXSDX7wXB:disabled {
  cursor: not-allowed;
  opacity: 0.7;
}

.xt9kDW6u2rx4RpbpXRj1 {
  width: 16px;
  height: 16px;
  stroke-width: 2;
}

/* Delivery Sections */
.fAhxvPQC22dPJvzqPlag {
  display: flex;
  flex-direction: column;
  margin-bottom: 16px;
}

.fAhxvPQC22dPJvzqPlag:last-child {
  margin-bottom: 0;
}

._AZ0i2OAXqj6WW4vwu9q {
  font-size: 13px;
  font-weight: 500;
  color: var(--grey-n-2, #737373);
  margin-bottom: 12px;
}

.geutyUIlze_dxIRcamJO {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Subtle Divider between groups */
.WK6Y_LbvjQe8ID2t4gR6 {
  border-bottom: 1px solid var(--grey-n-3, #efecec);
  margin-bottom: 16px;
  width: 100%;
}

/* Not Available Section */
.TzoTzZ7PVk1sJmh5oFi4 {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--grey-n-3, #efecec);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.wVvBOD5p4S7aWf2LjyZ2 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #fdf0f0;
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid #fadcdc;
}

.JgewP1h_bzVk8vPkU0Ow {
  font-size: 13px;
  font-weight: 500;
  color: #c92a2a;
  margin: 0;
}

.xufWDxKBSmREvCM4J33f {
  background: none;
  border: none;
  color: #c92a2a;
  cursor: pointer;
  padding: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  transition: background-color 0.2s;
}

.xufWDxKBSmREvCM4J33f:hover:not(:disabled) {
  background-color: #f8d7d7;
}

.xufWDxKBSmREvCM4J33f:disabled {
  cursor: not-allowed;
}

/* Loader Wrapper to keep icon size consistent */
.zQF6YM8Aefb4BMXYm80T {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
}

.FyXDCx31fUBa7wkddy5C {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin-bottom: 12px;
}

.XOFvhl1W1d77R7p7rtqk {
  font-size: 14px;
  font-weight: 500;
  color: var(--grey-n-5, #6b6565);
  margin: 0 0 8px 4px;
}

/* The clickable card area */
.Z9lMjwjSmJtcSsywbqNL {
  background-color: var(--Surface-White, #ffffff);
  border-radius: 12px;
  padding: 12px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  transition: background-color 0.2s ease;
}

.Z9lMjwjSmJtcSsywbqNL:hover {
  background-color: #fcfcfc;
}

.dQTygBigiWOTpidyevmr {
  display: flex;
  align-items: center;
  gap: 12px;
}

.HxhK8ONmN6YcsyOK9sfZ {
  width: 32px;
  height: 32px;
  background-color: #f9c588;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.qB8u82hOX54dAo0UmvK5 {
  width: 20px;
  height: 20px;
  color: var(--blue-1, #af5e00);
}

.ziHa9OCnpl5hQmkpzMGW {
  display: flex;
  flex-direction: column;
}

.fB_Uf6HdBrbUtCLyz7uw {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-Primary-1, #171717);
  margin: 0;
}

.BYT7NRbmd8YnWXs_xVDi {
  display: flex;
  align-items: center;
  justify-content: center;
}

.fd8uvL48XwZMS9t7SL8d {
  width: 18px;
  height: 18px;
  color: var(--text-Primary-1, #171717);
  stroke-width: 2.5;
}

.KxNcwkblCaQNRpVT2sTg {
  width: 22px;
  height: 22px;
  color: #d9534f;
  cursor: pointer;
  transition: opacity 0.2s ease;
}

.KxNcwkblCaQNRpVT2sTg:hover {
  opacity: 0.7;
}

._sx5HXGzm5zGudAJxzLO {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
}

/* Container fixed to the bottom of the screen */
.cYiyLtq_fZ_PTfE41Oka {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  background-color: var(--Surface-White, #ffffff);
  padding: 12px 16px 16px;
  /* Adds padding at the bottom for iPhones with a home indicator */
  padding-bottom: calc(16px + env(safe-area-inset-bottom));
  box-sizing: border-box;
  z-index: 999;

  border-top: 1.5px solid var(--grey-n-4, #f5f5f5);
}

/* White box wrapper for the checkout info */
.sEIx2SWNmySdzKpJe98I {
  background-color: var(--Surface-White, #ffffff);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Row for "To Pay" and the Price */
.FPsclwZzQcUZxq25HBjw {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.RAgAKM4q4rWf14VUo_Nh {
  font-size: 16px;
  font-weight: 500;
  color: var(--text-Primary-1, #171717);
  margin: 0;
}

.C1RHMNSOSeo2IVrfbLeh {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-Primary-1, #171717);
  margin: 0;
}

/* Main Call to Action Button */
.ZYoafbXZgrGD2OXCq4CK {
  width: 100%;
  height: 48px;
  background-color: var(--blue-1, #af5e00);
  color: var(--Surface-White, #ffffff);
  border: none;
  border-radius: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: background-color 0.2s ease, opacity 0.2s ease;
}

.ZYoafbXZgrGD2OXCq4CK:active {
  background-color: var(--blue-1, #af5e00);
}

.ZYoafbXZgrGD2OXCq4CK:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.lBGQF6eKTdVCLQ3SA6UB {
  font-size: 16px;
  font-weight: 600;
}

.jBmWDAnG6zicrBIXTERH {
  width: 16px;
  height: 16px;
  stroke-width: 2.5;
}

.l4n_XY7X5Zrw1MaU4lCV {
  display: flex;
  align-items: center;
  justify-content: center;
}

.r5B9sCeITWd6CA8ffeyc {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background-color: var(--grey-n-4, #f5f5f5);
  padding: 12px 16px;
  width: 100%;
  box-sizing: border-box;
  cursor: pointer;
  transition: background-color 0.2s ease;

  border-top: 1px solid #e5e5e5;

  position: sticky;
  top: 0;
}

.r5B9sCeITWd6CA8ffeyc:hover {
  background-color: #f0efe9;
}

.KSB0NxQY4oLZPAWSO9FB {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-Primary-1, #171717);
  margin: 0;
  text-align: center;
}

.CDklR4dal3MnNpQ_3d8g {
  width: 16px;
  height: 16px;
  color: var(--text-Primary-1, #171717);
  stroke-width: 2.5;
  margin-top: 2px;
}

.deliverySlotNewHeader {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  border-bottom: 1px solid #eee;
}

.deliverySlotNewTitle {
  font-size: 16px;
  font-weight: 600;
}

.deliverySlotNewContent {
  padding: 12px 16px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.deliverySlotNewSection {
  margin-bottom: 20px;
}

.deliverySlotNewSectionTitle {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 8px;
  color: #333;
}

.deliverySlotNewTime {
  font-size: 14px;
  color: #222;
}

.deliverySlotNewSlot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px;
  border: 1px solid #e5e5e5;
  border-radius: 10px;
  margin-bottom: 10px;
  background: #fff;
  cursor: pointer;
}

.deliverySlotNewDisabled {
  opacity: 0.8;
  cursor: not-allowed;
}

.deliverySlotNewSelected {
  border-color: #b96b42;
  background: #fff7f2;
}

.deliverySlotNewBookBtn {
  background: #b96b42;
  color: #fff;
  border: none;
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 12px;
}

.deliverySlotNewFull {
  color: #d32f2f;
  font-size: 12px;
  font-weight: 600;
}

.deliverySlotNewSelectedText {
  color: #2e7d32;
  font-size: 12px;
  font-weight: 600;
  padding: 0 12px;
}

/* Hide scrollbar but keep scroll working */
.deliverySlotNewDrawerContent {
  overflow-y: auto;
  -webkit-overflow-scrolling: touch; /* iOS smooth scroll */
  scrollbar-width: none; /* Firefox */
}

/* Chrome, Safari, Edge */
.deliverySlotNewDrawerContent::-webkit-scrollbar {
  display: none;
}

.deliverySlotNewLoader {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  min-height: 50vh;
}

.deliverySlotNewError {
  color: #d32f2f;
  text-align: center;
  padding: 20px;
}

.deliverySlotNewAction {
  min-width: 72px;       
  text-align: right;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.deliverySlotNewBookBtn,
.deliverySlotNewSelectedText,
.deliverySlotNewFull {
  height: 24px;
  line-height: 24px;
  display: inline-flex;
  align-items: center;
}
.YbvTexmMFoPywcWNzXW_ {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2rem 1rem;
  width: 100%;
  box-sizing: border-box;
  min-height: 60vh;
}

.pcF5LbsQtQLtZJGQ37HC {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background-color: var(--Surface-White, #ffffff);
  border: 1px solid var(--grey-n-4, #f5f5f5);
  border-radius: 12px;
  padding: 2.5rem 1.5rem;
  width: 100%;
  max-width: 340px; /* Keeps the card perfectly sized on larger screens */
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02); /* Very soft shadow */
}

.ai4E_LfjxVZItWwdeDr3 {
  width: 160px;
  height: auto;
  margin-bottom: 1.5rem;
}

.QnaoWzjOsHa3xwDKxzzw {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-Primary-1, #171717);
  margin: 0 0 0.5rem 0;
  line-height: 1.4;
}

.CSkKMhwutXxajYqPcpLk {
  font-size: 13px;
  font-weight: 400;
  color: var(--text-Secondary-1, #8a93a7);
  margin: 0 0 1.5rem 0;
}

/* Action button matching your app's theme */
.TbjzUhZW3NrphTCBBwjD {
  background-color: var(--blue-1, #af5e00);
  color: var(--Surface-White, #ffffff);
  border: none;
  border-radius: 8px;
  padding: 10px 24px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  width: 100%;
  transition: background-color 0.2s ease, transform 0.1s ease;
}

.TbjzUhZW3NrphTCBBwjD:hover {
  background-color: #a35d38;
}

.TbjzUhZW3NrphTCBBwjD:active {
  transform: scale(0.98);
}

.eAHj7QfBztYZ0HTs_gCj {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  background-color: var(--Surface-White, #ffffff);
  padding: 12px 16px 16px;
  /* Adds padding at the bottom for iPhones with a home indicator */
  padding-bottom: calc(16px + env(safe-area-inset-bottom));
  box-sizing: border-box;
  z-index: 999;

  border-top: 1.5px solid var(--grey-n-4, #f5f5f5);
}

/* White box wrapper for the info */
.zdldLy1LP85hLRKLt6iH {
  background-color: var(--Surface-White, #ffffff);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Text Content */
.HVSelpfxr7Dl6skDvsoY {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.bjsTXmW8aerGDD5OMeVL {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-Primary-1, #171717);
  margin: 0;
}

.jUy99LXIVLJHsq33_Gi2 {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-Secondary-1, #8a93a7);
  margin: 0;
}

/* Main Call to Action Button */
.HakB5WbvW6zY5tUV9fbx {
  width: 100%;
  height: 48px;
  background-color: var(--blue-1, #af5e00);
  color: var(--Surface-White, #ffffff);
  border: none;
  border-radius: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.1s ease;
}

.HakB5WbvW6zY5tUV9fbx:hover {
  background-color: var(--blue-1, #af5e00);
}

.HakB5WbvW6zY5tUV9fbx:active {
  transform: scale(0.98);
}

.wFoJ6S05S2WQ5NnFy2cg {
  /* Keep 100vh as a fallback for older browsers */
  height: 100vh;
  /* Use dvh so the container shrinks when the keyboard opens */
  height: 100dvh;
  overflow-y: auto;
  scroll-behavior: smooth;

  -webkit-overflow-scrolling: touch;

  /* Prevents the elastic bounce effect that can shift the fixed layout */
  overscroll-behavior: none;

  background-color: var(--Surface-White, #ffffff);
}

/* searchbar header */
.wPucLz_yq5av3U2j1qtT {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.5rem;
  padding: 1rem;
  padding-bottom: 0.75rem;

  /* header bar is sticky */
  /* position: sticky;
  top: 0;
  z-index: 10; */
  /* border: 1px solid #E5E5E5; */

  background-color: var(--Surface-White, #ffffff);
}

.qTBvFdil1ublnWLxkXaB {
  display: flex;
  flex-direction: column;
  position: sticky;
  top: 0;
  z-index: 10;
  background-color: var(--Surface-White, #ffffff);
}

.ztjMEIlfNgQN0zvgvYZj {
  width: 42px;
  height: 42px;
  cursor: pointer;
  margin-left: -0.25rem;
  /* border-radius: 50%;
  border: 1px solid var(--gray-3, #dadde3); */
  display: flex;
  align-items: center;
  justify-content: center;
}

.ztjMEIlfNgQN0zvgvYZj svg {
  width: 1.5rem;
  height: 1.5rem;
  fill: var(--Surface-G5, #333);
  stroke-width: 2.75;
  margin-left: -0.25rem;
}

.fWh33f4u4SypVUUwzDvP {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-Primary-1, #171717);
}

/* Main Cart Content Wrapper */
.VYITZR5NpmxgI6lk5GiA {
  padding: 0px 0px 10rem 0px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* Container holds everything in a flex column  */
.H6kuUiR2pWQp2pXPq2XR {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 1rem 1rem 0;
}

/* MOBILE: "Unwrap" the columns on mobile so we can interleave the items */
._Vw9B8TrFBDzsgdPdBqm,
.z_lZZEc4oSJu9OAY5ftG {
  display: contents;
}

/* Force items back into their original vertical mobile order */
.jLTwJM22SdcEhPIjLF_1 {
  order: 1;
}
.UmAviS67WyBRS3Wl5X_u {
  order: 2;
}
.kBbvHOvgbRgOK_zvAikZ {
  order: 3;
}
.reaUdM1QEnO1DeMfWeog {
  order: 4;
}
.rf_dJAx9dGPvRqUoJ7yv {
  order: 5;
}

/* Wrapper for Cart Items */
.UmAviS67WyBRS3Wl5X_u {
  background-color: var(--Surface-White, #ffffff);
  border-radius: 8px;
}

/* Wrapper for Coupons and Loyalty */
.reaUdM1QEnO1DeMfWeog {
  padding: 12px;
  background-color: var(--grey-n-4, #f5f5f5);
  border-radius: 16px;
}

/* --- TABLET & DESKTOP LAYOUT (768px and up) --- */
@media (min-width: 768px) {
  .H6kuUiR2pWQp2pXPq2XR {
    display: grid;
    /* Split into 2 columns. Left is slightly wider (1) than right (1.25) */
    grid-template-columns: 1fr 1.25fr;
    gap: 2rem;
    align-items: start;
  }

  /* Turn off display: contents to make them actual physical columns again */
  ._Vw9B8TrFBDzsgdPdBqm,
  .z_lZZEc4oSJu9OAY5ftG {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }

  /* Reset the flex order since they are isolated in their columns now */
  .jLTwJM22SdcEhPIjLF_1,
  .UmAviS67WyBRS3Wl5X_u,
  .kBbvHOvgbRgOK_zvAikZ,
  .reaUdM1QEnO1DeMfWeog,
  .rf_dJAx9dGPvRqUoJ7yv {
    order: 0;
  }

  /* Add border & styling strictly to the Right Column */
  .z_lZZEc4oSJu9OAY5ftG {
    border: 1px solid var(--gray-3, #dadde3);
    border-radius: 12px;
    padding: 1.5rem;
    background-color: var(--Surface-White, #ffffff);
    /* Prevents the right box from stretching vertically if the left side is very long */
    height: fit-content;
  }

  /* Make items wrapper transparent on desktop so it blends into the bordered right column */
  .UmAviS67WyBRS3Wl5X_u {
    background-color: transparent;
  }
}

.B8F8o9dW6Y2Iw81eZa7l {
  display: flex;
  flex-direction: column;
  height: 100vh;
  width: 100%;
  background-color: var(--Surface-White, #ffffff);
  position: relative;
  overflow: hidden;
  overflow-y: auto;
}

/* Close Button mapping to handleGuestLogin */
.j4qzQs6KveCbwUEKfkUJ {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(255, 255, 255, 0.15);
  border: none;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--Surface-White, #ffffff);
  cursor: pointer;
  z-index: 10;
  transition: background-color 0.2s ease;
}

.j4qzQs6KveCbwUEKfkUJ:hover {
  background: rgba(255, 255, 255, 0.3);
}

/* Top half with QR dine-in green gradient */
.JQujhYgaJoFHfhKex2m4 {
  background: linear-gradient(90deg, #2e7d32 0%, #1b5e20 100%);
  flex: 0.45;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--Surface-White, #ffffff);
  padding: 20px;
}

.I7yDzE4NMfJkD1rp6xoG {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.izXrp3r0xMsy9NuvhNVt {
  font-size: 24px;
  font-weight: 600;
  margin: 0 0 10px 0;
  letter-spacing: 0.5px;
}

.empQXLDNhFk7ErW_D7l_ {
  font-size: 14px;
  margin: 0;
  opacity: 0.9;
}

/* Bottom half holding the input and actions */
.r_rAbDOqwtatqTs3ZyuY {
  flex: 0.55;
  background-color: var(--Surface-White, #ffffff);
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
}

.BiCtF6UVyIHLs99YKS1V {
  margin-bottom: 24px;
}

.HJjvKDF2LWi_ZpjtJxsZ {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: #4a525d;
  margin-bottom: 10px;
}

._6ClgI3ek7wjGAM4Oa68 {
  display: flex;
  gap: 10px;
}

/* Static +91 Box */
.qy6PLsHEg4z9YEhAmcNP {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f4f5f7;
  border: 1px solid #e0e4e8;
  border-radius: 8px;
  padding: 0 16px;
  font-size: 15px;
  font-weight: 500;
  color: var(--text-Primary-1, #171717);
}

/* Main Phone Number Input */
.cwDUqr1QNExgYBlfwD4H {
  flex: 1;
  border: 1px solid var(--grey-n-6, #e5e5e5);
  border-radius: 8px;
  padding: 14px 16px;
  font-size: 15px;
  color: var(--text-Primary-1, #171717);
  outline: none;
  background-color: var(--Surface-White, #ffffff);
  transition: border-color 0.2s;
  box-sizing: border-box;
}

.cwDUqr1QNExgYBlfwD4H::placeholder {
  color: #8c949d;
  font-weight: 400;
}

.cwDUqr1QNExgYBlfwD4H:focus {
  border-color: #2e7d32;
}

/* Submit Button */
.sM9dvGQh6eaCPPFePceQ {
  background-color: #2e7d32;
  color: var(--Surface-White, #ffffff);
  border: none;
  border-radius: 8px;
  padding: 16px;
  font-size: 16px;
  font-weight: 600;
  width: 100%;
  cursor: pointer;
  margin-bottom: 20px;
  transition: opacity 0.2s ease;
}

.sM9dvGQh6eaCPPFePceQ:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.sM9dvGQh6eaCPPFePceQ:not(:disabled):hover {
  opacity: 0.9;
}

/* Bottom small Terms text */
.XXVuVuT5suEoeickDVBo {
  font-size: 12px;
  color: var(--gray-600, #535861);
  text-align: left;
  line-height: 1.6;
  margin: 0;
}

.XXVuVuT5suEoeickDVBo span {
  text-decoration: underline;
  cursor: pointer;
}

