.vendor-hero {
  background: url("../images/image1-1.jpg") no-repeat center center/cover;
  height: 450px;
  position: relative;
  color: var(--white);
}
.vendor-hero hr {
  height: 4px;
  border-radius: 10px;
  background-color: #fff;
}
.vendors-filter {
  height: 50px;
  background-color: #fff;
  border-bottom: 1px solid #ededed;
}
.vendors-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 100px;
}
.vandor-card {
  padding: 55px;
  position: relative;
  height: 370px;
  align-content: center;
}
.vandor-card h3 {
  width: 70%;
  color: #fff;
  font-size: 36px;
  font-weight: 500;
}

/* column layout  */

.vendors-sec-col {
  flex-direction: column;
  gap: 100px;
  margin: 60px 0 100px;
}

.catering-card {
  flex-direction: column;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.01);
  overflow: hidden;
  background: #fff;
}

.catering-card img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.catering-content {
  padding: 40px;
}

.stars {
  color: #ffc107;
  font-size: 24px;
  margin-bottom: 8px;
}

.catering-content h3 {
  font-size: 30px;
  font-weight: 500;
}

p {
  font-size: 14px;
  color: #666;
  margin: 10px 0 16px;
}

.meta {
  justify-content: space-between;
  align-items: center;
  font-size: 20px;
}

.location {
  color: #888;
  /* font-size: 14px; */
}

.search-container {
  width: 100%;
  box-shadow: 0px 0px 20px 10px rgba(0, 0, 0, 0.2);
  background: rgb(0 0 0 / 20%);
}
.search-top,
.search-bottom {
  gap: 1px;
  background-color: #d2d8dd;
}

.search-input,
.search-input input,
.search-input select {
  border: none;
}
a.venue-card {
  overflow: hidden;
  height: 460px;
  flex: 0 0 30%;
  opacity: 1;
}
.venue-image {
  height: 40%;
}
.venue-text {
  height: 43%;
}
.rate-person {
  font-size: 14px;
  color: #999999;
}
span.grcolor {
  font-weight: 600;
  color: #32a067;
}

.venue-card-bottom {
  flex-direction: column;
  justify-content: flex-end;
  /* text-align: end; */
  text-align: left;
  width: 45%;
  margin-left: auto;
  padding: 3px;
  line-height: 1.3;
}

.venue-card-bottom span {
  font-size: 10px;
  font-weight: 300;
  color: #3358d4;
}
.venue-card-bottom .rating span {
  color: #ffc107;
  font-size: 18px;
  font-weight: 600;
}
.venue-stars {
  align-content: flex-end;
  padding-left: 8px;
}
/* .venue-stars svg {
  width: 15px !important;
  height: 15px !important;
} */
.venue-card-bottom strong {
  font-weight: 500;
  color: #666;
  font-size: 14px;
}
.rating {
  line-height: 1.5;
  word-spacing: -5px;
}
/* Responsive layout */
@media (min-width: 768px) {
  .catering-card {
    flex-direction: row;
    align-items: stretch;
  }

   .catering-card img {
        max-height: 300px;
        flex: 1 1 30%;
    }

  .catering-content {
    width: 55%;
  }
}

/* filter button */
.filter-bar {
  justify-content: space-between;
  align-items: center;
  margin: 40px 0 20px;
  flex-wrap: wrap;
}

.filter-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.filter-actions .view-toggle {
  border: 1px solid #ccc;
  background: white;
  padding: 6px 10px;
  border-radius: 4px;
  cursor: pointer;
}

.view-toggle.active {
  background-color: #000;
  color: white;
}
