.property-detail {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: #333;
}

.property-hero {
  position: relative;
  width: 100%;
  height: 400px;
  overflow: hidden;
}

.property-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.75);
}

.property-hero .overlay {
  position: absolute;
  bottom: 30px;
  left: 40px;
  color: #fff;
}

.property-hero h1 {
  font-size: 2.5rem;
  margin: 0;
}

.property-hero .location {
  font-size: 1.2rem;
  opacity: 0.9;
}

.container {
  max-width: 1100px;
  margin: 30px auto;
  padding: 0 20px;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
  margin-bottom: 30px;
}

.info-item {
  background: #f8f9fa;
  padding: 20px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
}

.info-item h4 {
  font-size: 1rem;
  color: #666;
  margin-bottom: 8px;
}

.info-item p {
  font-size: 1.2rem;
  font-weight: 600;
}

.price {
  color: #e63946;
}

.description h2 {
  font-size: 1.6rem;
  margin-bottom: 10px;
  border-left: 4px solid #007bff;
  padding-left: 10px;
}

.description p {
  line-height: 1.6;
  font-size: 1rem;
  color: #444;
}

.loader {
  text-align: center;
  padding: 50px;
  font-size: 1.2rem;
}

.not-found {
  text-align: center;
  padding: 50px;
  color: #999;
}
