.lhi-boutiques {
  width: 100%;
  padding: 40px 20px;
  box-sizing: border-box;
}

.lhi-boutiques__container {
  max-width: 1400px;
  margin: 0 auto;
}

.lhi-boutiques__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 25px;
}

.lhi-card {
  background: #fff;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.18);
  display: flex;
  flex-direction: column;
  opacity: 0;
  transform: translateY(40px);
  transition: all .8s ease;
}

.lhi-card.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.lhi-card__head {
  padding: 20px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.lhi-card__title-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

.lhi-card__head h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 900;
  line-height: 1.2;
}

.lhi-card__rating-number {
  font-weight: 900;
  font-size: 16px;
  color: #111;
  white-space: nowrap;
}

.lhi-card__stars {
  font-size: 16px;
  letter-spacing: 2px;
  margin-bottom: 8px;
}

.lhi-card__stars span {
  color: #ddd;
}

.lhi-card__stars .active {
  color: #f28d20;
}

.lhi-card__hours {
  font-size: 14px;
  font-weight: 700;
}

.lhi-card__hours.is-open {
  color: #1a7f37;
}

.lhi-card__hours.is-closed {
  color: #c62828;
}

.lhi-card__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: 380px;
}

.lhi-card__photo-wrap {
  position: relative;
  overflow: hidden;
}

.lhi-card__photo {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.5s ease;
}

.lhi-card__photo-wrap:hover .lhi-card__photo {
  transform: scale(1.08);
}

.lhi-card__map {
  width: 100%;
  height: 100%;
  border: 0;
}

.lhi-card__actions {
  padding: 15px 20px 20px;
  display: flex;
  gap: 12px;
}

.lhi-btn {
  flex: 1;
  text-align: center;
  padding: 12px;
  border-radius: 14px;
  font-weight: 900;
  text-decoration: none !important;
  color: #fff !important;
  transition: .2s;
  line-height: 1.2;
}

.lhi-btn--primary {
  background: #f28d20;
}

.lhi-btn--dark {
  background: #111;
}

.lhi-btn--call {
  background: #333;
}

.lhi-btn:hover,
.lhi-btn:focus {
  transform: translateY(-3px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.18);
}

@media (max-width: 1000px) {
  .lhi-boutiques__grid {
    grid-template-columns: 1fr;
  }

  .lhi-card__row {
    grid-template-columns: 1fr;
    height: auto;
  }

  .lhi-card__photo-wrap {
    height: 250px;
  }

  .lhi-card__map {
    min-height: 300px;
  }
}

@media (max-width: 576px) {
  .lhi-boutiques {
    padding: 30px 12px;
  }

  .lhi-card__title-row,
  .lhi-card__actions {
    flex-direction: column;
    align-items: stretch;
  }
}
