.card {
  border: none;
  border-radius: 10px;


}

.card {
  position: relative;
  height: 220px;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.5);


}



.text-overlay {
  position: absolute;

  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.5);
  padding: 5px 10px;
  border-radius: 5px;

  z-index: 2;
  width: 100%;



}



.pic {
  border-radius: 10px 10px 0px 0px;

}


.dot {
  list-style: none;
}



@media(min-width:992px) and (max-width:1200px) {
  .last {
    padding-left: 250px;
    padding-right: 250px;

  }
}

@media(min-width:1200px) and (max-width:1400px) {
  .last {
    padding-left: 250px;
    padding-right: 250px;

  }
}

@media(min-width:1400px) and (max-width:1600px) {
  .last {
    padding-left: 250px;
    padding-right: 250px;

  }
}



/* .review-container {
  width: 500px;
  background: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
} */
.review {
  margin-bottom: 15px;
  padding-bottom: 10px;
  /* border-bottom: 1px solid #ddd; */
}
.review-header {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}
.profile-img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-right: 10px;
  object-fit: cover;
}
.review-content {
  flex: 1;
}
.stars {
  color: gold;
  font-size: 18px;
}
.review-text {
  color: #555;
}
.hidden-text {
  display: none;
}
/* .view-more, .view-images {
  color: blue;
  cursor: pointer;
  display: inline-block;
  margin-top: 5px;

} */




.review {
  position: relative;
  max-width: 600px;
  padding: 10px;
  /* border: 1px solid #ddd; */
  border-radius: 8px;
  margin-bottom: 15px;
}

.review-header {
  display: flex;
  align-items: center;
  gap: 10px;
}

.profile-img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
}

.review-text {
  display: inline;
  font-size: 16px;
}

.hidden-text {
  display: none;
}

.view-more {
  display: inline;
  padding-left: 10px;
  margin-left: 10px;
  /* color: blue; */
  cursor: pointer;
  /* text-decoration: underline; */
  font-size: 14px;
}

.view-images {
  display: block;
  margin-top: 5px;
  color: black ;
  cursor: pointer;
  /* text-decoration: underline; */
  font-size: 14px;
}

.review-images {
  display: none;
  margin-top: 10px;
}

.review-images img {
  width: 100px;
  height: auto;
  margin-right: 5px;
  cursor: pointer;
}


  /* .view-more, .view-images{
    display: block;
    width: 100%; 
    text-align: center; 
    padding: 10px; 
    background-color: #7D1C4A; 
    color: white;
    border-radius: 5px; 
    text-decoration: none; 
    font-weight: bold;
    letter-spacing: 0.03em;
    text-transform: uppercase;
  
  }
  
  .view-more, .view-images:hover{
    display: block; 
    width: 100%; 
    text-align: center;
    background-color: #D69ADE; 
    color: white;
    border-radius: 5px;
    text-decoration: none; 
    font-weight: bold;
    letter-spacing: 0.03em;
    text-transform: uppercase;
  
  } */

/* .review-images {
  display: none;
  margin-top: 10px;
}
.review-images img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  margin-right: 5px;
  cursor: pointer;
  transition: transform 0.3s;
}
.review-images img:hover {
  transform: scale(1.1);
} */

/* Lightbox Popup */
.lightbox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  justify-content: center;
  align-items: center;
  z-index: 10;
}
.lightbox img {
  max-width: 80%;
  max-height: 80%;
  border-radius: 10px;
}
.lightbox .close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 30px;
  color: white;
  cursor: pointer;
}

.review-container {
  max-height: 600px;
  overflow-y: auto; 
  scrollbar-width: none; /* For Firefox */
  -ms-overflow-style: none; 
  /* background: white; */
  /* padding: 20px; */
  /* border-radius: 10px; */
  /* box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); */
}



.custom-slider {
  width: 700px;  
  height: 300px; 
  overflow: hidden;
  position: relative;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.custom-slide {
  /* width: 100%;
  height: 100%; */
  object-fit: cover; 
  position: absolute;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.custom-slide.active {
  opacity: 1;
}


/* Review Form Styling */
.review-form {
   
  
  max-width: 100%;
  padding: 20px;

  border: 2px solid #ffffff;
  /* border: 2px solid #ff7230; */
  /* background-image: linear-gradient(#fff, #fff), var(--border-gradient); */
   /* background-image: linear-gradient(#f5d19e, #fdf6ec, #f5d19e), linear-gradient(135deg, #dc3c0a, #ffb013); */

  background-origin: border-box;
  background-clip: padding-box, border-box;
  border-radius: 8px;
}

.review-form h2 {
  text-align: center;
  margin-bottom: 15px;
}

.review-form input,
.review-form select,
.review-form textarea {
  width: 100%;
  padding: 12px;
  margin: 10px 0;
 
  font-size: 16px;


  border: 2px solid transparent;
  background-image: linear-gradient(#fff, #fff), var(--border-gradient);
  background-origin: border-box;
  background-clip: padding-box, border-box;
  border-radius: 8px;
}

.review-form input[type="file"] {
  padding: 10px;
  
  border: 2px solid transparent;
  background-image: linear-gradient(#fff, #fff), var(--border-gradient);
  background-origin: border-box;
  background-clip: padding-box, border-box;
  border-radius: 8px;
}

.review-form button {
  width: 100%;
  padding: 12px;
  background-color: #007BFF;
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
  margin-top: 10px;
}

.review-form button:hover {
  background-color: #0056b3;
}


.menu-container {
  max-width: 500px;
  margin: auto;
}
.menu-item {
  display: flex;
  justify-content: space-between;
  /* border-bottom: 1px solid #ddd; */
  padding: 8px 0;
  font-size: 16px;
}
.food-name {
  flex: 1;
  text-align: left;
}
.price {
  flex: 0 0 80px;
  text-align: right;
  font-weight: bold;
  color: #ffffff;
  /* color: #d9534f; */
}

.review p{
  margin: 0 0 -1px 0;
  color: var(--body-color);
  line-height: 1.7;
}