/*@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&display=swap");
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  list-style-type: none;
  text-decoration: none;
}*/
.carousel-container {
  width: 100%;
  height: 80vh;
  position: relative;
  overflow: hidden; /* Prevents overflow of images */
}
.carousel {
  position: relative;
  width: 100%;
  height: 300%; /* Three images in the carousel */
}
.carousel-item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 80vh; /* Each image takes full screen height */
  object-fit: contain;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transform: translateY(100%); /* Start offscreen */
  transition: opacity 1s ease-in-out; /* Smooth fade and slide */
}
.carousel-item.active {
  opacity: 1; /* Make active items visible */

  transform: translateY(0); /* Slide in */
}
.image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  background-size: cover;
  background-position: center;
  transition: transform 10s ease-in-out; /* Smooth zoom effect */
}
/* Text overlay */
.overlay {
  position: absolute;
  top: 30%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 1000;
  opacity: 1 !important;
  transition: opacity 0.3s ease-in-out;
  display: flex;
  flex-direction: column;
  align-items: center; /* Center content horizontally */
  justify-content: center; /* Center content vertically */
  width: 100%;
}
.overlay h2,
.overlay h4 {
  margin: 5px 0;
  color: white;
}
.overlay h2 {
  font-size: 44px;
  font-weight: 700;
  font-family: "Varela Round", sans-serif;
  font-optical-sizing: auto;
  opacity: 1 !important;
}
.overlay h4 {
  font-size: 20px;
  font-weight: 500;
  opacity: 1 !important;
  transition: opacity 1s ease-in-out 0.5s; /* Delay for paragraph */
  font-family: "Varela Round", sans-serif;
  font-optical-sizing: auto;
}
.product-heading {
  display: flex;
  background-color: rgb(249, 230, 207);

  justify-content: center;
  align-items: center;
  text-align: center;
}
.family h2 {
  font-family: "Varela Round", sans-serif;
  font-size: 44px;
  font-weight: 700;
}
.family h4 {
  font-family: "Varela Round", sans-serif;
  font-size: 20px;
  font-weight: 500;
  color: white;
}

:root {
  --primary: #ec994b;
  --white: #ffffff;
  --bg: #f5f5f5;
}

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;
}

#tranding {
  font-size: 1.6rem;
  background: var(--bg);
}

.container {
  max-width: 124rem;
  padding: 0 1rem;
  margin: 0 auto;
}

.text-center {
  text-align: center;
}

.section-heading {
  font-size: 3rem;
  color: var(--primary);
  padding: 2rem 0;
}

#tranding {
  padding: 4rem 0;
}

@media (max-width: 1440px) {
  #tranding {
    padding: 7rem 0;
  }
}

#tranding .tranding-slider {
  height: 52rem;
  padding: 2rem 0;
  position: relative;
}

@media (max-width: 500px) {
  #tranding .tranding-slider {
    height: 45rem;
  }
}

.tranding-slide {
  width: 37rem;
  height: 42rem;
  position: relative;
}

@media (max-width: 500px) {
  .tranding-slide {
    width: 28rem !important;
    height: 36rem !important;
  }
  .tranding-slide .tranding-slide-img img {
    width: 28rem !important;
    height: 36rem !important;
  }
}

.tranding-slide .tranding-slide-img img {
  width: 37rem;
  height: 42rem;
  border-radius: 2rem;
  object-fit: cover;
}

.tranding-slide .tranding-slide-content {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
}

.tranding-slide-content .food-price {
  position: absolute;
  top: 2rem;
  right: 2rem;
  color: var(--white);
}

.tranding-slide-content .tranding-slide-content-bottom {
  position: absolute;
  bottom: 2rem;
  left: 2rem;
  color: var(--white);
}

.food-rating {
  padding-top: 1rem;
  display: flex;
  gap: 1rem;
}

.rating ion-icon {
  color: var(--primary);
}

.swiper-slide-shadow-left,
.swiper-slide-shadow-right {
  display: none;
}

.tranding-slider-control {
  position: relative;
  bottom: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tranding-slider-control .swiper-button-next {
  left: 58% !important;
  transform: translateX(-58%) !important;
}

@media (max-width: 990px) {
  .tranding-slider-control .swiper-button-next {
    left: 70% !important;
    transform: translateX(-70%) !important;
  }
}

@media (max-width: 450px) {
  .tranding-slider-control .swiper-button-next {
    left: 80% !important;
    transform: translateX(-80%) !important;
  }
}

@media (max-width: 990px) {
  .tranding-slider-control .swiper-button-prev {
    left: 30% !important;
    transform: translateX(-30%) !important;
  }
}

@media (max-width: 450px) {
  .tranding-slider-control .swiper-button-prev {
    left: 20% !important;
    transform: translateX(-20%) !important;
  }
}

.tranding-slider-control .slider-arrow {
  background: var(--white);
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  left: 42%;
  transform: translateX(-42%);
  filter: drop-shadow(0px 8px 24px rgba(18, 28, 53, 0.1));
}

.tranding-slider-control .slider-arrow ion-icon {
  font-size: 2rem;
  color: #222224;
}

.tranding-slider-control .slider-arrow::after {
  content: "";
}

.tranding-slider-control .swiper-pagination {
  position: relative;
  width: 15rem;
  bottom: 1rem;
}

.tranding-slider-control .swiper-pagination .swiper-pagination-bullet {
  filter: drop-shadow(0px 8px 24px rgba(18, 28, 53, 0.1));
}

.tranding-slider-control .swiper-pagination .swiper-pagination-bullet-active {
  background: var(--primary);
}
h2.food-name {
  font-size: 30px;
  font-weight: bold;
}
.book-container {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}
.book {
  width: 500px;
  height: 600px;
  border: 2px solid #6b4226;
  perspective: 1000px;
  margin-bottom: 40px;
  box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.2);
}
.page {
  width: 100%;
  height: 100%;
  position: absolute;
  backface-visibility: hidden;
  transition: transform 0.6s ease;
  transform-origin: right;
  background: white;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  opacity: 0;
  z-index: 0;
}
.page.active {
  opacity: 1;
  z-index: 10;
}

.page img {
  width: 100%;
  height: 100%;
}
.page-flip {
  transform: rotateY(-180deg);
}
.page-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
}
.nav-btns {
  margin-top: 20px;
}

.text-dummy h2 {
  font-size: 32px;
}

.product-grid {
  width: 100%;
  max-width: 1200px;
  margin: auto;
  padding: 20px;
  box-sizing: border-box;
}

.product-row {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 20px 0;
  flex-wrap: wrap;
}

.row3 .product-item {
  flex: 1 1 30%;
  max-width: 30%;
  margin: 10px;
  text-align: center;
}

.row2 .product-item {
  flex: 1 1 45%;
  max-width: 45%;
  margin: 10px;
  text-align: center;
}

.product-item img {
  width: 200px;
  height: 200px;
  object-fit: contain;
}

.product-item h2 {
  font-size: 1.9rem;
  margin-top: 20px;
}

/* Responsive tweaks */
@media (max-width: 768px) {
  .row3 .product-item,
  .row2 .product-item {
    max-width: 90%;
    flex: 1 1 90%;
  }
}

.product {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.5s ease;
}

.product.visible {
  opacity: 1;
  transform: translateY(0);
}
.collage-wrapper {
  display: flex;
  max-width: 600px;
  margin: auto;
  gap: 5px;
  transform: scale(0.95);
}

.left-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
  animation: slideInLeft 1s ease-in-out;
}

.left-img {
  flex: 1;
}

.right-imgs {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.right-imgs img {
  width: 100%;
  height: 50%;
  object-fit: cover;
  border-radius: 10px;
  animation: fadeIn 1s ease-in-out;
}

/* Animations */
@keyframes slideInLeft {
  from {
    transform: translateX(-30px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    transform: scale(0.95);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}
.offer-heading-wrapper {
  display: flex;
  align-items: end;
  justify-content: flex-start;
  padding: 0 !important;
  margin: 0 !important;
  height: 100%;
  max-height: 250px;
}
.offer-heading-wrapper h2 {
  font-size: 4rem;
  font-weight: 700;
  color: #5a6ca5;
  position: relative;
  margin: 0;
  padding-bottom: 10px;
}

.offer-heading-wrapper h2::after {
  content: "";
  width: 40px;
  height: 3px;
  background-color: #d65a31;
  position: absolute;
  bottom: 0;
  left: 0;
  border-radius: 2px;
}

.offer-heading-wrapper .tagline {
  font-size: 1.4rem; /* = 14px */
  color: #444;
  max-width: 50rem;
  line-height: 1.6;
}

.dietary-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 1rem;
}

.tag-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: #f7f7f7;
  padding: 1rem 1.5rem;
  border-radius: 0.8rem;
  box-shadow: 0 0.2rem 0.4rem rgba(0, 0, 0, 0.05);
  transition: background 0.2s ease;
}

.tag-item img {
  width: 2.8rem;
  height: 2.8rem;
  object-fit: contain;
}

.tag-item span {
  font-size: 1.6rem;
  font-weight: 500;
  color: #333;
}

.tag-item:hover {
  background: #fff3ee;
}
@media (max-width: 766px) {
  .marginmobile {
    margin-bottom: 50px;
  }
  .footc {
    margin-top: 150px !important;
  }
}
