/* ===== GENERAL ===== */
.listing-page {
  background: #f7f8fa;
}

.container {
  max-width: 1200px;
  margin: auto;
  padding: 15px;
}

/* ===== LAYOUT ===== */
.listing-layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 24px;
}

@media (max-width: 900px) {
  .listing-layout {
    grid-template-columns: 1fr;
  }
}

/* ===== IMAGES ===== */
.image-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 10px;
  margin-bottom: 20px;
}

.image-grid img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 10px;
}

/* ===== DESCRIPTION ===== */
.description {
  background: #fff;
  padding: 16px;
  border-radius: 10px;
  margin-bottom: 24px;
  line-height: 1.6;
}

/* ===== SIDEBAR ===== */
.listing-sidebar {
  position: sticky;
  top: 90px;
}

.price-box,
.details-box {
  background: #fff;
  padding: 16px;
  border-radius: 12px;
  margin-bottom: 16px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.06);
}

.price {
  font-size: 28px;
  font-weight: 700;
}

.price span {
  font-size: 14px;
  font-weight: 400;
  color: #666;
}

/* ===== BUTTONS ===== */
.buttons {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 12px;
}

.platform_button {
  padding: 12px;
  text-align: center;
  border-radius: 8px;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
}

.platform_button.airbnb { background: #ff385c; }
.platform_button.booking { background: #003580; }
.platform_button.agoda { background: #5c2d91; }

.platform_button.disabled {
  opacity: 0.4;
  pointer-events: none;
}

/* ===== SHARE ===== */
.share-icons a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-right: 10px;
  text-decoration: none;
  font-size: 14px;
}

/* ===== CALENDAR ===== */
#calendar {
  background: #fff;
  padding: 12px;
  border-radius: 12px;
}

/* ===== REVIEWS ===== */
.feedback .comment {
  background: #fff;
  padding: 12px;
  border-radius: 10px;
  margin-bottom: 12px;
}

.feedback textarea {
  width: 100%;
  min-height: 100px;
  padding: 10px;
  border-radius: 8px;
}
