/* Property Details Page Styles */

.prop-detail-gallery {
  border-radius: 12px;
  overflow: hidden;
  background: #e9ecef;
}
.prop-detail-hero {
  width: 100%;
  height: 500px;
  object-fit: cover;
  display: block;
}
@media (max-width: 768px) {
  .prop-detail-hero { height: 300px; }
}

.prop-detail-thumbs {
  display: flex;
  gap: 8px;
  margin-top: 8px;
}
.prop-detail-thumb {
  width: 20%;
  height: 100px;
  overflow: hidden;
  border-radius: 8px;
  cursor: pointer;
  position: relative;
  transition: opacity 0.2s;
}
.prop-detail-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.prop-detail-thumb:hover { opacity: 0.9; }
.prop-detail-thumb-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  border-radius: 8px;
}

/* Badges */
.prop-badge {
  display: inline-block;
  padding: 4px 14px;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 600;
  color: #fff;
}
.prop-badge-sale { background: #4CAF50; }
.prop-badge-rent { background: #2196F3; }
.prop-badge-category { background: #555; }
.prop-badge-exclusive { background: #FF9800; }

/* Price */
.prop-price {
  color: #95B935;
  font-weight: 700;
  margin-bottom: 0;
}
.prop-price-suffix {
  font-size: 16px;
  font-weight: 400;
  color: #888;
}

/* Agent Card */
.prop-agent-card {
  background: #fff;
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}
.prop-agent-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}
.prop-agent-avatar-placeholder {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #e9ecef;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #888;
}
.prop-whatsapp-btn {
  display: block;
  width: 100%;
  padding: 12px 0;
  background: #25D366;
  color: #fff;
  text-align: center;
  border-radius: 8px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  margin-bottom: 12px;
  transition: background 0.2s;
}
.prop-whatsapp-btn:hover {
  background: #1da851;
  color: #fff;
}
.prop-call-btn {
  display: block;
  width: 100%;
  padding: 12px 0;
  background: #fff;
  color: #333;
  text-align: center;
  border-radius: 8px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  border: 1px solid #ddd;
  transition: background 0.2s, border-color 0.2s;
}
.prop-call-btn:hover {
  background: #f8f9fa;
  border-color: #95B935;
  color: #333;
}
.prop-contact-link {
  color: #333;
  font-size: 14px;
  text-decoration: none;
}
.prop-contact-link:hover { color: #95B935; }
.prop-contact-link i {
  margin-right: 4px;
  color: #95B935;
}

/* Spec Strip */
.prop-spec-icon {
  font-size: 28px;
  margin-bottom: 4px;
  color: #95B935;
}
.prop-spec-value {
  font-weight: 700;
  margin-bottom: 2px;
}
.prop-spec-label {
  color: #888;
  font-size: 13px;
  margin: 0;
}

/* Amenity check items */
.prop-check-item {
  margin-bottom: 8px;
}
.prop-check-item i {
  color: #95B935;
  margin-right: 8px;
}

/* Similar Properties */
.prop-similar-section {
  background: #f8f9fa;
  padding: 48px 0;
}
.prop-similar-card {
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  transition: transform 0.2s, box-shadow 0.2s;
}
.prop-similar-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}
.prop-similar-img {
  height: 180px;
  overflow: hidden;
  background: #e9ecef;
}
.prop-similar-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.prop-similar-body {
  padding: 16px;
}
.prop-similar-name {
  font-weight: 600;
  margin-bottom: 4px;
  font-size: 14px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.prop-similar-name a {
  color: #333;
  text-decoration: none;
}
.prop-similar-price {
  color: #95B935;
  font-weight: 700;
  font-size: 15px;
  margin-bottom: 4px;
}
.prop-similar-location {
  color: #888;
  font-size: 12px;
  margin: 0;
}

/* Lightbox */
.prop-lightbox {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: rgba(0,0,0,0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: zoom-out;
}
.prop-lightbox img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 4px;
}
.prop-lightbox-close {
  position: absolute;
  top: 20px;
  right: 24px;
  color: #fff;
  font-size: 32px;
  cursor: pointer;
  background: none;
  border: none;
  z-index: 100000;
}
.prop-lightbox-close:hover { color: #95B935; }
.prop-lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: #fff;
  font-size: 40px;
  cursor: pointer;
  background: rgba(0,0,0,0.3);
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.prop-lightbox-nav:hover { background: rgba(149,185,53,0.7); }
.prop-lightbox-prev { left: 20px; }
.prop-lightbox-next { right: 20px; }
.prop-lightbox-counter {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  font-size: 14px;
}
.prop-detail-hero { cursor: zoom-in; }

/* No images placeholder */
.prop-no-images {
  height: 300px;
  border-radius: 12px;
  background: #e9ecef;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #888;
}
