  .popular-homes-section {
      background-color: var(--nepalibnb-light-gray);
  }
.circle-card {
  display: block;
  cursor: pointer;
  text-decoration: none;
  color: #222;
  position: relative;
}

.circle-card__image-wrapper {
  position: relative;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: #f7f7f7;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.circle-card__image-wrapper img {
  max-width: 60%;
  max-height: 60%;
  display: block;
  pointer-events: none;
  user-select: none;
}

.circle-card:hover .circle-card__image-wrapper {
  transform: translateY(-6px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.15);
}

.circle-card__badge {
  position: absolute;
  top: 5px;
  right: 15px;
  background: #de1c3e;
  color: white;
  font-weight: 600;
  font-size: 0.75rem;
  padding: 4px 7px;
  border-radius: 50px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
  user-select: none;
}

.circle-card__title {
  margin-top: 8px;
  font-size: 0.9rem;
  font-weight: 500;
  text-align: center;
  color: #222;
  user-select: none;
}

@media (max-width: 576px) {
  .circle-card__image-wrapper {
    width: 70px;
    height: 70px;
  }

  .circle-card__badge {
    font-size: 0.65rem;
    padding: 3px 6px;
  }

  .circle-card__title {
    font-size: 0.8rem;
  }
}
