.home-vendor-filter-section {
  width: 100%;
  margin-bottom: 60px;
}

.home-vendor-filter-section .vendor-title-wrap {
  display: flex;
  justify-content: space-between;
  align-items: end;
  flex-wrap: wrap;
  margin-bottom: 40px;
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-color: transparent transparent;
  scrollbar-width: thin;
}

.home-vendor-filter-section .vendor-title-wrap::-webkit-scrollbar {
  width: 6px;
  height: 6px;
  background: transparent;
}

.home-vendor-filter-section .vendor-title-wrap::-webkit-scrollbar-thumb {
  background: transparent;
}

.home-vendor-filter-section .tabs {
  display: flex;
  gap: 40px;
  cursor: pointer;
  width: max-content;
}

.home-vendor-filter-section .tabs .tab {
  font-size: 18px;
  font-weight: 500;
  text-transform: capitalize;
  position: relative;
  color: #000;
}

.home-vendor-filter-section .tabs .tab::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 100%;
  height: 2px;
  background: #000;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.home-vendor-filter-section .tabs .tab:hover::after,
.home-vendor-filter-section .tabs .tab.active::after {
  transform: scaleX(1);
  background-color: #C69E50;
}

.home-vendor-filter-section .tabs .tab.active {
  color: #C69E50;
}

.home-vendor-filter-section .tab-content {
  display: none;
  gap: 30px;
  grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 1024px) {
  .home-vendor-filter-section .tab-content {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .home-vendor-filter-section .tab-content {
    grid-template-columns: 1fr;
  }
}

.home-vendor-filter-section .tab-content.active {
  display: grid;
}

.vendor-card {
  width: 100%;
  max-width: 100%;
  border: 1px solid #ddd;
  overflow: hidden;
  background: #fff;
  flex-shrink: 0;
}
.vendor-card-details img.phone-icon {
    width: 24px !important;
    margin-right: 7px;
}
.vendor-image {
  position: relative;
}

.vendor-image a figure {
  padding-bottom: 65%;
  background: #f0f0f0;
  margin: 0;
  position: relative;
}

.vendor-image a img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.vendor-card-details img.phone-icon {
    width: 24px !important;
    margin-right: 7px;
}
.vendor-image a img:hover {
  transform: scale(1.05);
}

.vendor-card-details {
  padding: 20px;
}

.vendor-card-details h3 {
  font-size: 24px;
  margin-bottom: 15px;
  line-height: 1.2;
  font-weight: 600;
}

.vendor-card-details p {
  font-size: 16px;
  color: #656565;
  line-height: 1.5;
  margin-bottom: 16px;
}

.vendor-card-details .read-more {
  font-size: 16px;
  font-weight: 500;
  color: #000000;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
}

.vendor-card-details .read-more:hover {
  text-decoration: underline;
  color: #C69E50;
}

.viewmore-btn-wrap {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}

.viewmore-btn {
  font-size: 16px;
  font-weight: 500;
  color: #C69E50;
  border: 1px solid #C69E50;
  padding: 14px 40px;
  text-transform: uppercase;
  transition: all 0.3s ease;
  text-decoration: none;
}

.viewmore-btn:hover {
  background: #5f2376;
  color: #fff;
}
.vendor-card-details img.phone-icon {
    width: 24px !important;
    margin-right: 7px;
}

@media(max-width:768px){
  .home-vendor-filter-section .tabs { 
    gap: 20px;
  }
}
