.property-card {
  min-width: 0;
  height: 100%;
}

.property-card__link {
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  border: 1px solid #e5e7eb;
  border-radius: 20px;
  background: #ffffff;
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.055);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
  text-decoration: none;
  color: inherit;
}

.property-card__link:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 34px rgba(15, 23, 42, 0.11);
  border-color: #dbe1ea;
  text-decoration: none;
  color: inherit;
}

.property-card__media {
  position: relative;
  background: #f1f5f9;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.property-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .55s ease;
}

.property-card__link:hover .property-card__img {
  transform: scale(1.04);
}

.property-card__badge-wrap {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
}

.property-card__badge {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(17, 24, 39, 0.94);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  box-shadow: 0 6px 16px rgba(15, 23, 42, 0.16);
}

.property-card__body {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  gap: 5px;
  padding: 12px 13px 11px;
}

.property-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6px;
}

.property-card__price-wrap {
  min-width: 0;
}

.property-card__price {
  font-size: 14px;
  line-height: 1;
  font-weight: 800;
  color: #111827;
  letter-spacing: -0.01em;
}

.property-card__price-unit {
  font-size: 11px;
  font-weight: 700;
  color: #6b7280;
  margin-left: 3px;
}

.property-card__fav {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  border: 1px solid #d1d5db;
  background: #fff;
  color: #374151;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all .2s ease;
  flex: 0 0 auto;
  box-shadow: 0 5px 12px rgba(15, 23, 42, 0.05);
}

.property-card__fav:hover {
  border-color: #111827;
  color: #111827;
  transform: translateY(-1px);
}

.property-card__fav iconify-icon {
  width: 20px;
  height: 20px;
}

.property-card__title {
  margin: 0;
  font-size: 14px;
  line-height: 1.32;
  font-weight: 700;
  color: #111827;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 37px;
}

.property-card__meta-line {
  margin: 0;
  font-size: 11px;
  line-height: 1.35;
  color: #6b7280;
  display: flex;
  flex-wrap: wrap;
  gap: 3px;
  align-items: center;
}

.property-card__sku {
  font-weight: 600;
  color: #4b5563;
}

.property-card__dot {
  color: #9ca3af;
}

.property-card__location {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.property-card__facts {
  margin-top: auto;
  padding-top: 7px;
  border-top: 1px solid #eef2f7;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  color: #4b5563;
}

.property-card__fact {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  line-height: 1;
  color: #4b5563;
}

.property-card__fact img {
  width: 16px;
  height: 16px;
  object-fit: contain;
  display: block;
  opacity: .9;
}

.property-card-login {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.property-card-login.is-open {
  display: flex;
}

.property-card-login__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.62);
  backdrop-filter: blur(4px);
}

.property-card-login__dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 560px);
  border-radius: 28px;
  background: #ffffff;
  padding: 28px;
  box-shadow: 0 30px 90px rgba(15, 23, 42, 0.24);
}

.property-card-login__close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 42px;
  height: 42px;
  border: 1px solid #e5e7eb;
  border-radius: 999px;
  background: #ffffff;
  color: #374151;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.property-card-login__close iconify-icon {
  width: 20px;
  height: 20px;
}

.property-card-login__title {
  margin: 0 48px 8px 0;
  font-size: 28px;
  line-height: 1.2;
  font-weight: 800;
  color: #111827;
}

.property-card-login__desc {
  margin: 0;
  font-size: 15px;
  line-height: 1.7;
  color: #6b7280;
}

.property-card-login__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.property-card-login__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid #d1d5db;
  background: #fff;
  color: #111827;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  transition: all .2s ease;
}

.property-card-login__btn:hover {
  text-decoration: none;
  color: #111827;
  transform: translateY(-1px);
}

.property-card-login__btn--primary {
  background: #111827;
  border-color: #111827;
  color: #fff;
}

.property-card-login__btn--primary:hover {
  color: #fff;
  background: #0b1220;
  border-color: #0b1220;
}

@media (max-width: 767.98px) {
  .property-card__body {
    padding: 11px 11px 10px;
    gap: 5px;
  }

  .property-card__price {
    font-size: 13px;
  }

  .property-card__title {
    font-size: 13px;
    min-height: auto;
  }

  .property-card__fav {
    width: 36px;
    height: 36px;
  }

  .property-card__facts {
    gap: 8px;
    padding-top: 6px;
  }

  .property-card-login__dialog {
    padding: 22px 18px;
    border-radius: 22px;
  }

  .property-card-login__title {
    font-size: 22px;
  }
}
