.res-container {
  flex-wrap: wrap;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
  padding-bottom: 20px;
  display: flex;
}

.res-card {
  background: #fff8f1;
  border-radius: 10px;
  width: 250px;
  min-height: 360px;
  margin: 15px;
  padding: 10px;
  transition: transform .2s, box-shadow .3s ease-in-out;
  box-shadow: 0 0 0 2px #f3f3f3;
}

.res-card:hover {
  background: #fff;
  transform: scale(.95);
  box-shadow: 0 0 0 2px #ff4d0095;
}

.res-img {
  object-fit: cover;
  border-radius: 8px;
  width: 100%;
  height: 200px;
  margin-bottom: 5px;
}

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

.res-info {
  justify-content: space-between;
  margin: 4px 0;
  display: flex;
}

.res-name {
  font-size: 1.2rem;
  font-weight: bold;
}

.res-rating {
  color: #fff;
  background-color: #32cd32;
  border-radius: 6px;
  align-items: center;
  gap: 4px;
  padding: 4px 6px;
  font-size: .85rem;
  font-weight: bold;
  display: flex;
}

.res-distance, .res-price {
  color: #333;
  font-size: .85rem;
}

.res-cuisine, .res-location {
  color: #555;
  padding: 5px;
  font-size: .8rem;
}

.shimmer-wrapper {
  flex-wrap: wrap;
  justify-content: space-evenly;
  gap: 10px;
  max-width: 1200px;
  margin: 80px auto 0;
  display: flex;
}

.shimmer-card {
  background-color: #f0f0f0;
  border-radius: 10px;
  flex-direction: column;
  width: 250px;
  height: 360px;
  margin-block: 20px;
  padding: 10px;
  display: flex;
  box-shadow: 0 2px 5px #0000001a;
}

.shimmer-img {
  background: linear-gradient(90deg, #e0e0e0 25%, #d4d4d4 50%, #e0e0e0 75%);
  border-radius: 10px;
  width: 100%;
  height: 200px;
  animation: 1.5s linear infinite shimmerAnimation;
}

.shimmer-text {
  background: linear-gradient(90deg, #e0e0e0 25%, #d4d4d4 50%, #e0e0e0 75%) 0 0 / 200% 100%;
  border-radius: 5px;
  height: 15px;
  margin-top: 10px;
  animation: 1.5s linear infinite shimmerAnimation;
}

.shimmer-text.short {
  width: 60%;
  height: 12px;
}

.shimmer-text.medium {
  width: 80%;
}

.shimmer-text.long {
  width: 100%;
  height: 20px;
}

@keyframes shimmerAnimation {
  0% {
    background-position: -200% 0;
  }

  100% {
    background-position: 200% 0;
  }
}

.search {
  justify-content: center;
  align-items: center;
  gap: 10px;
  width: 100%;
  margin: 20px auto;
  padding-top: 20px;
  display: flex;
}

.search input {
  border: 2px solid #ccc;
  border-radius: 5px;
  outline: none;
  width: 250px;
  padding: 10px;
  font-size: 16px;
}

.search button {
  color: #fff;
  cursor: pointer;
  background-color: #f60;
  border: none;
  border-radius: 5px;
  padding: 10px 15px;
  font-size: 16px;
  transition: all .3s ease-in-out;
}

.search-btn::placeholder {
  color: gray;
  opacity: .7;
  font-size: 14px;
  font-style: italic;
}

.search button:hover {
  background-color: #c50;
}

@media (width <= 768px) {
  .search {
    flex-direction: column;
  }

  .search input {
    width: 80%;
  }

  .search button {
    width: 50%;
  }
}

.title-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 0 15px 20px;
}

.title {
  color: #434343;
  font-family: Poppins, sans-serif;
  font-size: 1.5rem;
  font-weight: bold;
}

.user-card {
  border: 1px solid #ccc;
  border-radius: 4px;
  margin: 10px;
  padding: 10px;
}

.about-class {
  background-color: #a8a8a8;
}

.about-container {
  color: #333;
  background-color: #fff8f1;
  justify-content: space-between;
  align-items: center;
  padding: 40px 20px 40px 80px;
  font-family: Poppins, sans-serif;
  display: flex;
}

.about-detail {
  width: 60%;
}

.about-detail h1 {
  font-size: 2.5rem;
  font-weight: bold;
  line-height: 1.2;
}

.about-detail h1 span {
  color: #fff;
  background-color: #f60;
  border-radius: 15px;
  padding: 0 10px;
}

.about-detail .tag {
  color: #fff;
  font-size: 3rem;
  font-weight: bold;
}

.about-detail h4 {
  color: #666;
  margin-top: 10px;
  font-size: 1.2rem;
  font-style: italic;
}

.about-detail p {
  margin-top: 15px;
  font-size: 1rem;
  line-height: 1.5;
}

.about-detail ul {
  margin-top: 15px;
  padding: 0;
  list-style: none;
}

.about-detail ul li {
  align-items: center;
  margin: 5px 0;
  font-size: 1rem;
  display: flex;
}

.about-detail ul li:before {
  content: "✔";
  color: #28a745;
  margin-right: 10px;
  font-weight: bold;
}

.about-detail h3 {
  color: #ff5733;
  margin-top: 20px;
  font-size: 1.2rem;
}

.about-img {
  justify-content: center;
  width: 40%;
  display: flex;
}

.about-img .image {
  object-fit: contain;
  width: 100%;
  max-width: 450px;
  animation: 3s ease-in-out infinite float;
}

@media (width <= 780px) {
  .about-container {
    text-align: center;
    flex-direction: column;
    padding: 30px 15px;
  }

  .about-detail {
    width: 100%;
  }

  .about-img {
    width: 100%;
    margin-top: 20px;
  }

  .about-img .image {
    max-width: 300px;
  }
}

@media (width <= 480px) {
  .about-container {
    padding: 20px;
  }

  .about-detail h1 {
    font-size: 1.8rem;
  }

  .about-detail .tag {
    font-size: 2.2rem;
  }

  .about-detail h4 {
    font-size: 1rem;
  }

  .about-detail p, .about-detail ul li {
    font-size: .9rem;
  }

  .about-detail h3 {
    font-size: 1rem;
  }

  .about-img .image {
    max-width: 250px;
  }
}

.contact-container {
  text-align: center;
  background-color: #fff8f1;
  border-radius: 10px;
  max-width: 800px;
  margin: 43px auto;
  padding: 10px;
  box-shadow: 0 4px 10px #0000001a;
}

.contact-us {
  color: #ff5733;
  font-size: 2.5rem;
}

.description, .contact-card p {
  color: #333;
  margin-bottom: 20px;
  font-size: 1.1rem;
}

.contact-info {
  justify-content: space-between;
  margin: 20px 0;
  display: flex;
}

.contact-card {
  text-align: center;
  background: #ffebcc;
  border-radius: 10px;
  width: 30%;
  padding: 15px;
  box-shadow: 2px 2px 10px #0000001a;
}

.contact-card h2 {
  color: #ff5733;
  font-size: 1.4rem;
}

.contact-form {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 15px;
  width: 750px;
  margin: 20px auto;
  padding: 10px;
  display: flex;
}

.contact-form input, .contact-form textarea {
  border: 2px solid #ff9f43;
  border-radius: 5px;
  width: 50%;
  padding: 10px;
  font-size: 1rem;
}

.contact-form button {
  color: #fff;
  cursor: pointer;
  background-color: #ff5733;
  border: none;
  border-radius: 5px;
  width: 20%;
  padding: 10px;
  font-size: 1.2rem;
}

.contact-form button:hover {
  background-color: #e04e2a;
}

@media (width <= 780px) {
  .contact-info {
    flex-direction: column;
    align-items: center;
  }

  .contact-card {
    width: 90%;
  }

  .contact-form {
    width: 95%;
  }
}

@media (width <= 480px) {
  .contact-us {
    font-size: 1.8rem;
  }

  .contact-container {
    padding: 15px;
  }

  .contact-card h2 {
    font-size: 1rem;
  }

  .contact-card p, .contact-form input, .contact-form textarea {
    font-size: .9rem;
  }

  .contact-form button {
    font-size: 1rem;
  }
}

.restaurant-container {
  background: #fff;
  border-radius: 12px;
  max-width: 750px;
  margin: 0 auto;
  padding: 20px;
  font-family: Arial, sans-serif;
  box-shadow: 0 4px 10px #0000001a;
}

.restaurant-header {
  background-color: #fff;
  border: 1px solid #e2e2e2;
  border-radius: 12px;
  align-items: center;
  width: 100%;
  margin-bottom: 15px;
  padding: 20px;
  display: flex;
  overflow: hidden;
  box-shadow: 0 2px 8px #00000014;
}

.restaurant-header img {
  object-fit: cover;
  border-radius: 8px;
  width: 100px;
  height: 100px;
  margin-right: 20px;
}

.res-header-details {
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  display: flex;
}

.res-header-details h1 {
  font-size: 20px;
  font-weight: bold;
}

.res-header-details h3 {
  color: #666;
  font-size: 14px;
}

.res-header-details p {
  font-size: 14px;
}

.info {
  color: #444;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: bold;
  display: flex;
}

.star {
  background-color: #32cd32;
  border-radius: 6px;
  padding: 2px 8px 2px 4px;
  display: flex;
}

.cuisines {
  color: #ff5e00;
  font-size: 14px;
  font-weight: bold;
}

.menu-items {
  background: #fff;
  border: 1px solid #e2e2e2;
  border-radius: 12px;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
  padding: 15px;
  display: flex;
  box-shadow: 0 2px 8px #0000001a;
}

.left {
  flex: 1;
}

.left h2 {
  color: #333;
  margin-bottom: 5px;
  font-size: 18px;
  font-weight: bold;
}

.left h4 {
  color: #666;
  margin-bottom: 5px;
  font-size: 16px;
}

.left p {
  color: #777;
  max-width: 300px;
  font-size: 14px;
}

.rating {
  color: #444;
  align-items: center;
  gap: 5px;
  font-size: 14px;
  font-weight: bold;
  display: flex;
}

.right {
  flex-direction: column;
  align-items: center;
  display: flex;
}

.right img {
  object-fit: cover;
  border-radius: 8px;
  width: 100px;
  height: 100px;
  margin-bottom: 8px;
}

.add-btn {
  color: #fff;
  cursor: pointer;
  background: #f60;
  border: none;
  border-radius: 6px;
  padding: 6px 12px;
  font-size: 14px;
  font-weight: bold;
  transition: background .3s;
}

.add-btn:hover {
  background: #e55a00;
}
/*# sourceMappingURL=BiteSwift.aa436662.css.map */
