.main-header {
  background: #fff !important;
  z-index: 1030;
}
body {
  background: #f6f8fb;
}

.wishlist-page-body {
  padding-bottom: 6rem;
}

.wishlist-empty .fa-heart {
  opacity: 0.35;
}

.compare-bar {
  z-index: 1040;
  color: #fff;
}

.compare-bar .small {
  color: rgba(255, 255, 255, 0.75);
}

.wishlist-remove:hover {
  text-decoration: underline !important;
}

/* PAGE HEADER */
.page-header {
  background: linear-gradient(180deg, #ffffff 0%, #f9fbff 100%);
  padding: 18px 0;
  border-bottom: 1px solid #eee;
}

.wishlist-header-wrap {
  max-width: 1200px;
}

.wishlist-header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.wishlist-title {
  font-size: 1.55rem;
  letter-spacing: 0.01em;
  color: #102a43;
}

.wishlist-header-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid #ffd4de;
  color: #b4235b;
  background: #fff0f5;
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 0.82rem;
  font-weight: 700;
  flex-shrink: 0;
}

.wishlist-header-chip i {
  font-size: 0.8rem;
}

/* CARD */
.wishlist-page .property-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #e8e8e8;
  transition: 0.3s;
}
.wishlist-page .property-card:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.wishlist-page .property-card-link {
  position: absolute;
  inset: 0;
  z-index: 1;
  cursor: pointer;
  border-radius: inherit;
  text-decoration: none;
}

.wishlist-page .property-card-link:focus {
  outline: 2px solid #0d6efd;
  outline-offset: 2px;
}

.wishlist-page .wishlist-card-interactive {
  position: relative;
  z-index: 2;
  pointer-events: auto;
}

/* IMAGE */
.img-box {
  position: relative;
}
.img-box img,
.img-box .img-placeholder {
  width: 100%;
  height: 210px;
  display: block;
}

.img-box img {
  object-fit: cover;
}

.img-box .img-placeholder {
  background: #f1f5f9;
}

/* Updated premium card comparison look */
.compare-premium-shield {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(4px);
    border: 1.5px solid #edf2f7;
    padding: 6px 12px;
    border-radius: 99px;
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 20;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.04);
}

.pd-premium-lock {
    width: 22px;
    height: 22px;
    background: #f0f7ff;
    border: 1px solid #e0efff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: inset 0 0 4px rgba(43, 120, 165, 0.05);
}

.pd-premium-lock i {
    font-size: 11px;
    color: #2b78a5;
    opacity: 0.8;
}

/* HEART */
.heart {
  position: absolute;
  top: 12px;
  right: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.text-white {
    color: white !important;
}

.heart.wishlist-added,
.heart.wishlist-added i,
.heart.wishlist-added svg,
.heart.wishlist-added svg path {
  color: #dc3545 !important;
  fill: #dc3545 !important;
}

.heart.wishlist-added i.bi-heart-fill,
.heart.wishlist-added i.fa-solid.fa-heart,
.heart.wishlist-added i.fas.fa-heart {
  color: #dc3545 !important;
  fill: #dc3545 !important;
}

.heart.wishlist-added svg path {
  fill: #dc3545 !important;
}

/* BADGE */
.status {
  position: absolute;
  bottom: 12px;
  left: 12px;
  padding: 4px 10px;
  font-size: 12px;
  border-radius: 6px;
  color: #fff;
}
.ready {
  background: #28a745;
}
.construct {
  background: #f4b400;
  color: #000;
}

/* TEXT */
.price {
  font-size: 20px;
  font-weight: 700;
}
.small {
  font-size: 13px;
  color: #777;
}

/* ICON ROW */
.icon-row {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: #555;
}

/* BUTTON */
.btn-contact {
  background: #0b2a4a;
  color: #fff;
}
.btn-details {
  border: 1px solid #ccc;
}

/* SIMILAR SECTION */
.wishlist-similar-section {
  margin-top: 26px;
  padding-top: 18px;
  border-top: 1px solid #e5e7eb;
}

.wishlist-similar-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 12px;
  margin-bottom: 4px;
}

.wishlist-similar-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: #102a43;
}

.wishlist-similar-subtitle {
  font-size: 0.88rem;
  color: #64748b;
}

/* BOTTOM BAR */
.compare-bar {
  position: fixed;
  bottom: 0;
  width: 100%;
  background: rgba(0,0,0,0.4);
  padding: 15px 40px;
  border-top: 1px solid #ddd;
  display: none;
  justify-content: space-between;
  align-items: center;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .page-header {
    padding: 14px 0;
  }

  .wishlist-header-content {
    align-items: flex-start;
    flex-direction: column;
  }

  .wishlist-title {
    font-size: 1.3rem;
  }

  .wishlist-header-chip {
    padding: 6px 10px;
    font-size: 0.74rem;
  }

  .wishlist-similar-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }
}

