@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&display=swap");
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
*,

*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  list-style-type: none;
  text-decoration: none;
  font-family: 'Poppins', sans-serif;
}

body {
  background-color: #fffed4;
  scroll-snap-type: y mandatory;
  opacity: 1;
  transition: opacity 0.4s ease;
}

body.fade-out {
  opacity: 0;
}

.slide img,
.ordernow h1,
#slider {
  will-change: transform;
}

#loader {
  position: fixed;
  width: 100%;
  height: 100vh;
  background: #fffed4;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

#loader {
  transition: opacity 0.5s ease;
}

.spinner {
  width: 50px;
  height: 50px;
  border: 5px solid #eee;
  border-top: 5px solid #ff4800;
  border-radius: 50%;
  position: relative;
  margin-top: -20%;
  animation: spin 1s linear infinite;
  display: inline-block;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

section, #slider {
  scroll-snap-align: start;
}


/* Header section */

header{
    width: 100%; 
    max-width: 100%;
    padding-left: 100px;
    height: 60px;
    display: flex;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 50;
    background-color: #fffed4;
}

header {
  transition: all 0.3s ease;
}

header.scrolled {
  background: rgba(255, 254, 212, 0.7);
  backdrop-filter: blur(10px);
  height: 50px;
}

header nav{
    display: flex;
    justify-content: space-between;
    max-width: 100vw;
    width: 100%;
    padding-right: 5%;
    top: 0;
    left: 0;
}


button {
  transition: all 0.3s ease;
}

button:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

button:active {
  transform: scale(0.95);
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

/* Logo */
.nav-logo h2 {
  color: #004221;
  font-size: 2rem;
}

/* Center menu */


/* Right side */
.nav-actions a button{
  position: relative;
  left: -100%;
}

.order-btn {
  padding: 8px 10px;
  font-size: 10px;
  background: var(--primary);
  border: none;
  color: #fff;
  cursor: pointer;
  border-radius: 30px;
  background-color: #ff4800;
}

.icon-cart{
    position: relative;
    cursor: pointer;
    transition: all 0.5s;
}

.icon-cart:hover{
    transform: scale(1.1);
}

.icon-cart:active{
    opacity: 20%;
}

.icon-cart svg{
    width: 20px;
}

.icon-cart span{
    position: absolute;
    background-color: red;
    width: 20px;
    height: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    color: #fff;
    top: 40%;
    right: -10px;
}

/* Header section */


html {
  font-size: 62.5%;
  font-family: "Montserrat", sans-serif;
  scroll-behavior: smooth;
}

@media (min-width: 1440px) {
  html {
    zoom: 1.5;
  }
}

@media (min-width: 2560px) {
  html {
    zoom: 1.7;
  }
}

@media (min-width: 3860px) {
  html {
    zoom: 2.5;
  }
}

::-webkit-scrollbar {
  width: 1.3rem;
}

::-webkit-scrollbar-thumb {
  border-radius: 1rem;
  background: #797979;
  transition: all 0.5s ease-in-out;
}

::-webkit-scrollbar-thumb:hover {
  background: #222224;
}

::-webkit-scrollbar-track {
  background: #f9f9f9;
}



#slider {
  position: relative;
  width: 100%;
  height: 50vh;
  overflow: hidden;
  z-index: 0;
  border-radius: 0 0 30px 30px;
}

/* Each slide */
.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  transform: scale(1.05); /* slight zoom */
  transition: opacity 1s ease, transform 1s ease;
}

/* Active slide */
.slide.active {
  opacity: 1;
  transform: scale(1); /* zoom back to normal */
  z-index: 1;
}

/* image */
.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Dark overlay (makes text readable) */
.slide::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(0,0,0,0.4);
}


.ordernow{
    position: relative;
    margin-top: -30%;

}

.ordernow h1{
    position: relative;
    font-family: 'Poppins';
    font-size: 150px;
    color: #ffffff;
    text-align: center;
    margin-top: -25%;
}





.section2{
    width: 100%;
    min-height: 100vh;
    overflow-x: hidden;
    margin-top: -8%;
    padding-top: 5%;
    
}
.section2 .container{
  position: relative;
    width: 1300px;
    margin: auto;
    max-width: 100vw;
    text-align: center;
    padding-top: 10px;
    transition: transform .5s;
}

.section2 .container::-webkit-scrollbar{
    display: none;
}


/* SEARCH BAR */
.search-box {
  text-align: center;
  margin: 20px 0;
  margin: 5rem;
}

.search-box input {
  width: 60%;
  padding: 12px;
  border-radius: 30px;
  border: 1px solid #ccc;
  outline: none;
  font-size: 1.2rem;
}

/* FILTER BUTTONS */
.filter-buttons {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 10%;
  margin-bottom: 40px;
}

.filter-buttons button {
  padding: 8px 15px;
  border: none;
  border-radius: 20px;
  cursor: pointer;
  background: #ff4800;
  color: white;
  transition: 0.3s;
}

.filter-buttons button.active {
  background: #004221;
  color: #e0bf00;
}

/* FOOD ANIMATION */
.item {
  opacity: 1;
  transform: none;
  transition: none;
}


.section2 .listProduct .item img{
    width: 80%;
    margin-bottom: 2rem;
    transition: none;
}

.section2 .listProduct img:hover{
  cursor: pointer;
  transform: none;
}

.section-title {
  font-size: 2.5rem;
  text-align: left;
  margin: 40px 0 10px;
  margin-bottom: 3rem;
  padding-left: 10%;
  color: #004221;
}

hr {
  background-color: #fff;
  padding: 0;
  margin: 80px;
}

hr.hr-1 {
  border: 0;
  height: 1px;
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0));
}

.section2 .listProduct{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    row-gap: 30px;
    width: 80%;
    margin: auto;
    align-items: center;
    padding: 0% 5%;
    margin-bottom: 15rem;
}
.section2 .listProduct .item{
    background-color: transparent;
    padding: 20px;
    border-radius: 5px;
    margin-bottom: 3rem;
    width: 90%;
    height: 300px;
    margin: auto;
    box-shadow: rgba(0, 0, 0, 0.4) 0px 2px 4px, rgba(0, 0, 0, 0.3) 0px 7px 13px -3px, rgba(0, 0, 0, 0.2) 0px -3px 0px inset;
}

.section2 .listProduct .item img {
    transition: transform 0.3s ease;
}

.section2 .listProduct .item img:hover{
  transform: scale(1.05);
}


.section2 .listProduct .item h2{
    font-weight: bolder;
    font-size: 15px;
    text-align: left;
}

.section2 .listProduct .item p{
  text-align: left;
  font-size: 8px;
  padding-right: 10%;
}

.section2 .listProduct .item .price-cart{
  display: flex;
  padding: 5px;
  height: 50px;
  align-items: baseline;
  justify-content: space-between;
}



.section2 .listProduct .item .price-cart .price{
  position: relative;
    letter-spacing: 2px;
    font-size: 25px;
    top: 5%;
    height: 0%;
    padding: 0 0;
}
.section2 .listProduct .item .price-cart  button{
    background-color: #ff4800;
    color: #eee;
    border: none;
    padding: 5px 9px;
    margin-top: 10px;
    border-radius: 5px;
    cursor: pointer;
    transition: none;
}

.section2 .listProduct .item button:hover{
    background-color: #004221;
    color: #e0bf00;
}

.section2 .listProduct .item button:active{
    background-color: #003018;
}

/* cart */
.cartTab{
    width: 400px;
    background-color: #323533;
    color: #eee;
    position: fixed;
    top: 0;
    right: -600px;
    bottom: 0;
    display: grid;
    grid-template-rows: 70px 1fr 70px;
    transition: .5s;
    position: fixed;
    width: 40%;
    z-index: 600;
}

.cartTab.active {
    right: 0; /* slide in when active */
}


.cartTab h1{
    padding: 20px;
    margin: 0;
    font-weight: 300;
}

.cartHeader {
  position: relative;
}

.closeCartIcon {
  position: absolute;
  right: 15px;
  top: 10px;
  font-size: 28px;
  cursor: pointer;
  color: #fff;
  transition: 0.3s;
}

.closeCartIcon:hover {
  color: #ff4800;
  transform: scale(1.2);
}

.cartTab .total{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
    padding: 4% 12%;
    font-size: large;
    letter-spacing: 1px;
    background-color: #000000;
}

.cartTab .total .total-title{
height: 70px;
}

.cartTab .total .total-price{
    text-align: right;
    height: 70px;
}

.cartTab .btn{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

.cartTab button{
    height: 70px;
    border: none;
    font-family: Poppins;
    font-size: large;
    color: white;
    cursor: pointer;
    transition: all 0.5s;
}

.cartTab .checkOut{
    background-color: #004221;
}

.cartTab .checkOut:hover{
    background-color: #02723a;
}

.cartTab .checkOut:active{
    background-color: #012915;
}

.cartTab .close{
    background-color: #db3e00;
}

.cartTab .close:hover{
    background-color: #f76a32;
}

.cartTab .close:active{
    background-color: #922900;
}

.listCart{
  margin-top: 1.5rem;
}

.listCart .item img{
    width: 100%;
}
.listCart .item{
    display: grid;
    grid-template-columns: 70px 150px 50px 1fr;
    gap: 10px;
    text-align: center;
    align-items: center;
    padding-left: 10%;
}
.listCart .quantity span{
    display: inline-block;
    width: 25px;
    height: 25px;
    background-color: #eee;
    border-radius: 50%;
    font-size: 15px;
    color: #555;
    cursor: pointer;
}
.listCart .quantity span:nth-child(2){
    background-color: transparent;
    color: #eee;
    cursor: auto;
}
.listCart .item:nth-child(even){
    background-color: #eee1;
}
.listCart{
    overflow: auto;
}
.listCart::-webkit-scrollbar{
    width: 0;
}

.clearCart {
  background-color: #8b0000;
}

.clearCart:hover {
  background-color: #b22222;
}

.clearCart:active {
  background-color: #5c0000;
}

.trashZone {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 30px;
  opacity: 0;
  transition: all 0.3s ease;
}

/* active glow when clearing */
.cartTab.clearing .trashZone {
  opacity: 1;
  transform: translateX(-50%) scale(1.2);
}

/* iOS-style sweep animation */
.listCart .item.sweep-out {
  animation: sweepToTrash 0.6s ease forwards;
}

@keyframes sweepToTrash {
  0% {
    transform: translateX(0) rotate(0deg) scale(1);
    opacity: 1;
  }

  50% {
    transform: translateX(-40px) rotate(-8deg) scale(0.95);
    opacity: 0.6;
  }

  100% {
    transform: translateY(120px) scale(0.3);
    opacity: 0;
  }
}




.receiptTab {
  position: fixed;
  top: 10px;
  right: 15px;
  width: 330px;
  background: white;
  color: #000000;
  border: 1px solid #ddd;
  padding: 20px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
  z-index: 9999;
  overflow-y: hidden;
  max-height: 75vh;
  display: none;
}

.receiptTab.active {
    display: block;
}

.receiptTab h1 {
  margin-bottom: 15px;
}

.listReceipt{
  max-height: 20vh;
  overflow-y: scroll;
}

.listReceipt .item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
}

.receiptTotal {
  margin-top: 20px;
  font-size: 18px;
}

.receiptTab .btn2{
    position: relative;
    display: flex;
    text-align: center;
    justify-content: space-between;
}

.receiptTab .btn2 button {
    margin-top: 20px;
    padding: 10px 25px;
    cursor: pointer;
    background: #8a8a8a;
    color: white;
    border-radius: 5px;
    border: none;
}

.receiptTab .btn2 button:hover {
  background-color: #b4b4b4;
}

.receiptTab .btn2 button:active {
  background-color: #575757;
}

.account{
  margin-top: 2rem;
  line-height: 20px;
}


.printReceipt {
  background: #4CAF50;
  border: none;
  padding: 12px 15px;
  width: 100%;
  margin-top: 10px;
  cursor: pointer;
  font-weight: 700;
  border-radius: 5px;
  color: white;
  transition: background-color 0.3s ease;
}

.printReceipt:hover {
  background-color: #45a049;
}

.sendOrderPopup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2000;
}

.sendOrderPopup .popup-content {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  text-align: center;
  max-width: 500px;
  width: 90%;
  height: 30%;
  padding-top: 3%;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.sendOrderPopup h3 {
  margin-bottom: 10px;
}

.sendOrderPopup p {
  margin-bottom: 20px;
}

.sendOrderPopup .popup-buttons button {
  margin: 5px;
  padding: 10px 15px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
}

.sendWhatsapp {
  background: #25D366;
  color: white;
}

.sendEmail {
  background: #0072C6;
  color: white;
}

.cancelSend {
  background: #ccc;
}

.more-menu{
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 4rem;
}












/* Tablets */
@media (max-width: 1024px) {
  .section2 .listProduct {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }

  .section2 .listProduct .item{
    width: 100%;
  }
}

/* Large phones / small tablets */
@media (max-width: 768px) {
  .section2 .listProduct {
    grid-template-columns: repeat(2, 1fr);
  }

  .search-box input {
    width: 80%;
  }
}

/* Mobile phones */
@media (max-width: 480px) {
  .section2 .listProduct {
    grid-template-columns: repeat(1, 1fr);
  }

  .search-box input {
    width: 95%;
  }

  .section2 .listProduct .item {
    height: auto;
  }
}


/* ===== PARTNERS ===== */
/* ===== PARTNERS ===== */
.partners-section {
  background: #e7dfb5;
  text-align: center;
  padding-top: 3%;
  border-radius: 20px 20px 0 0;
  bottom: 0;
}

.partners-section2 {
  background: #e7dfb5;
  text-align: center;
  padding-top: 3%;
  border-radius: 20px 20px 0 0;
  bottom: 0;
}

.partners-section h2 {
  font-size: 28px;
  margin-bottom: 10px;
}

.partner-btn {
  padding: 8px 18px;
  border-radius: 20px;
  border: none;
  background: #cce5c1;
  cursor: pointer;
  margin-bottom: 30px;
}

.partners-slider {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  padding: 10px;
  justify-content: center;
  margin-bottom: 5rem;
}

.partners-slider img{
  min-width: 150px;
  height: 100px;
  background: #0c5a3c;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 15px;
  font-weight: bold;
}


/* ===== FOOTER ===== */
.main-footer {
  position: relative;
  padding: 20px 20px;
  border-radius: 30px 30px 0 0;
  background-color: rgb(34, 34, 34);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  color: #fff;
  overflow: hidden;
  bottom: 0;
  height: 38vh;
  z-index: 0;
}

/* Map line pattern overlay */
.footer-overlay {
  position: absolute;
  inset: 0;
  background-image: url(image/footerimage.jpg);
  background-position: center;
  background-size: cover;
  opacity: 20%;
  pointer-events: none;
}

/* Layout */
.footer-container {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  gap: 30px;
  align-items: center;
}

/* Center */

.footer-left{
  text-align: left;
  padding-left: 10%;
  padding-top: 50%;
}

.footer-left h3{
  font-size: 15px;
  font-weight: normal;
  margin-bottom: 1rem;
  color: #fffed4;
}

.footer-left p{
  font-size: 10px;
  color: #fffed4;
  line-height: 20px;
}

.footer-left .socials{
  display: flex;
  width: 30%;
  justify-content: space-between;
  margin-top: 2rem;
}

.footer-left .socials img{
  width: 18px;
}

.footer-left .socials a img:hover{
  background-color: none;
  color: none;
  outline: none;
  box-shadow: none;
}

.footer-right{
  text-align: right;
  padding-right: 10%;
  padding-top: 30%;
}

.footer-right h3{
  font-size: 15px;
  font-weight: normal;
  margin-bottom: 1rem;
  color: #fffed4;
}

.footer-right p{
  font-size: 10px;
  color: #fffed4;
  line-height: 20px;
}

.footer-center {
  text-align: center;
  color: #fffed4;
}

.footer-center h1{
  font-size: 40px;
  font-weight: normal;
}

.footer-center p{
  font-size: 15px;
  font-weight: lighter;
}

.footer-center .logo {
  
}

.footer-center .logo img{
  width: 200px;
}

.footer-buttons {
  margin-top: 20px;
}

.btn-green {
  background: #00c853;
  border: none;
  padding: 10px 18px;
  margin: 5px;
  border-radius: 25px;
  color: #fff;
  cursor: pointer;
}

.btn-outline {
  background: transparent;
  border: 1px solid #00c853;
  padding: 10px 18px;
  margin: 5px;
  border-radius: 25px;
  color: #00c853;
  cursor: pointer;
}

/* Bottom */
.footer-bottom {
  position: relative;
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 10px;
  font-size: 10px;
  color: #aaa;
  z-index: 2;
}




/* ================= MODAL BASE ================= */
.productModal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.65);

  display: flex;
  justify-content: center;
  align-items: center;

  opacity: 0;
  visibility: hidden;

  transition: all 0.35s ease;
  z-index: 9999;
}

.productModal.active {
  opacity: 1;
  visibility: visible;
}

.productModal.closing {
  opacity: 0;
  visibility: hidden;
}

/* ================= MODAL BOX ================= */
.modalContent {
  background-color: #fffed4;
  padding: 20px;
  border-radius: 18px;
  width: 340px;
  text-align: center;

  transform: translateY(40px) scale(0.95);
  opacity: 0;

  transition: all 0.35s ease;
  position: relative;

  box-shadow: 0 20px 50px rgba(0,0,0,0.25);
}

.productModal.active .modalContent {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.productModal.closing .modalContent {
  transform: translateY(40px) scale(0.95);
  opacity: 0;
}

/* ================= CLOSE BUTTON ================= */
.closeModal {
  position: absolute;
  top: 10px;
  right: 12px;
  font-size: 26px;
  cursor: pointer;
  color: #333;
  transition: 0.3s;
}

.closeModal:hover {
  color: #ff4800;
  transform: scale(1.2);
}

/* ================= image ================= */
.modalContent img {
  width: 70%;
  border-radius: 12px;
  margin-bottom: 10px;
}

/* ================= QUANTITY ================= */
.qtyBox {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  margin: 15px 0;
}

.qtyBox button {
  width: 32px;
  height: 32px;
  border: none;
  background: #ff4800;
  color: white;
  font-size: 18px;
  cursor: pointer;
  border-radius: 6px;
}

.qtyValue {
  font-size: 18px;
  font-weight: bold;
}

/* ================= ADD BUTTON ================= */
.modalAddBtn {
  margin-top: 10px;
  padding: 12px;
  width: 100%;
  border: none;
  border-radius: 10px;

  background: #ff4800;
  color: white;
  font-weight: bold;
  cursor: pointer;

  transition: 0.3s;
}

.modalAddBtn:hover {
  background: #004221;
}

/* ================= RELATED MEALS ================= */
.relatedBox {
  margin-top: 18px;
  text-align: left;
}

.relatedBox h4 {
  margin-bottom: 8px;
}

.relatedList {
  display: flex;
  gap: 10px;
}

.relatedItem {
  width: 80px;
  cursor: pointer;
  text-align: center;
}

.relatedItem img {
  width: 100%;
  border-radius: 8px;
}

.relatedItem p {
  font-size: 10px;
}

/* Mobile */
@media (max-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  header{
    padding-left: 70px;
  }

  .nav-logo{
    position: relative;
    margin-left: -20%;
  }

  .nav-actions{
    padding-right: 10px;
  }

  .partners-slide img {
    height: 60px;
  }

  .ordernow{
    margin-top: -50%;
  }

  .ordernow h1{
    font-size: 60px;
  }

  .search-box{
    position: relative;
    margin-top: 3%;
    margin-bottom: 20%;
  }

  .search-box input{
    width: 100%;
  }

  .section2{
        overflow-x: hidden;
        justify-content: center;
    }

    .section2 .container{
      
    }

    .section2 .listProduct{
      grid-template-columns: repeat(2, 1fr);
      gap: 0;
      row-gap: 20px;
      width: 100%;
      padding: 0 2%;
    }

    .section2 .listProduct .item{
      width: 90%;
    }

    .section2 .listProduct .item .price-cart .price{
      font-size: 18px;
    }

    .section2 header{
        padding: 4% 7%;
    }

    .cartTab{
        width: 340px;
    }

    .cartTab h1{
        font-size: 30px;
    }

    .listCart .item img{
        width: 80%;
    }

    .listCart .item{
        padding-left: 4%;
    }

    .listCart .name{
        font-size: 15px;
    }

    .listCart .item{
        display: grid;
        grid-template-columns: 60px 130px 60px 1fr;
        gap: 0px;
        padding-left: 1%;
    }


    .listCart .totalPrice{
        font-size: 15px;
    }

    .sendOrderPopup{
        position: fixed;
        z-index: 10000;
        height: 100%;
    }

    .sendOrderPopup .popup-content{
        height: 20%;
    }


    .section2 .listProduct .item h2{
        font-size: 12px;
    }

    .section2 .listProduct .item .price{
        font-size: 12px;
    }

    .main-footer{
    height: 100%;
    }

    .footer-left{
    padding-top: 20%;
    padding-left: 0;
    text-align: center;
    }

    .footer-left .socials img{
      width: 30px;
    }

    .footer-left .socials{
      width: 100%;
      padding: 0% 30%;
      margin-bottom: 10%;
    }

    .footer-right{
      display: none;
    }

      .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
      }

      .footer-bottom{
        margin-top: 30px;
      }

      .partners-slide img {
        height: 60px;
      }


}



@media (min-width: 769px) and (max-width: 1024px) {

  #slider{
    height: 40vh;
  }

  .ordernow{
    margin-top: -35%;
  }

  .ordernow h1{
    font-size: 110px;
  }

  
   .cartTab{
        width: 510px;
    }

    .cartTab h1{
        font-size: 30px;
    }

    .listCart .item img{
        width: 80%;
    }

    .listCart .item{
        padding-left: 4%;
    }

    .listCart .name{
        font-size: 15px;
    }

    .listCart .item{
        display: grid;
        grid-template-columns: 70px 210px 70px 1fr;
    }


    .listCart .totalPrice{
        font-size: 15px;
    }

    .sendOrderPopup{
        position: fixed;
        z-index: 10000;
    }

    .sendOrderPopup .popup-content{
        height: 15%;
    }

    .section2 .listProduct{
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
        margin-top: 3rem;
        margin-bottom: 3rem;
        overflow-x: hidden;
    }

    .section2 .listProduct .item h2{
        font-size: 12px;
    }

    .section2 .listProduct .item p{
      font-size: 7px;
      margin-bottom: 2rem;
    }

    .section2 .listProduct .item .price{
        font-size: 10px;
    }

    .section2 .listProduct .item button{
        width: 40%;
        
    }

    .main-footer{
    height: 30vh;
  }


}




@media (min-width: 1025px) and (max-width: 1440px) {

  #slider{
    height: 65vh;
  }

  .main-footer{
    height: 45vh;
  }

}