
/* Property Modal Styles - Clean and Simple */
.property-modal-content {
  display: flex;
  flex-direction: column;
  max-width: 1200px;
  margin: 0 auto;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  max-height: 90vh;
}

.property-modal-body {
  display: flex;
  flex: 1;
  overflow: hidden;
}

.main-content {
  flex: 2;
  padding: 24px;
  overflow-y: auto;
}

.booking-sidebar {
  flex: 1;
  padding: 24px;
  border-left: 1px solid #eee;
  background: #f8f9fa;
}

.property-modal-header h2 {
  font-size: 26px;
  margin-bottom: 8px;
}

.header-details {
  color: #666;
  margin-bottom: 20px;
}

.photo-gallery {
  margin-bottom: 24px;
  border-radius: 12px;
  overflow: hidden;
}

.main-photo-container {
  position: relative;
  height: 400px;
}

.main-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.photo-counter {
  position: absolute;
  bottom: 16px;
  right: 16px;
  background: rgba(0, 0, 0, 0.6);
  color: white;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 14px;
}

.gallery-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: white;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.gallery-nav.prev {
  left: 16px;
}

.gallery-nav.next {
  right: 16px;
}

.property-description-section {
  margin-bottom: 32px;
}

.property-description-section h3 {
  font-size: 22px;
  margin-bottom: 12px;
}

.property-details-section {
  margin-bottom: 32px;
}

.property-details-section h3 {
  font-size: 22px;
  margin-bottom: 16px;
}

.property-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.property-feature {
  display: flex;
  align-items: center;
  padding: 12px;
  background: #f8f9fa;
  border-radius: 8px;
}

.feature-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #008489;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 12px;
}

.feature-text {
  display: flex;
  flex-direction: column;
}

.feature-name {
  font-size: 14px;
  color: #666;
}

.feature-value {
  font-size: 16px;
  font-weight: 600;
}

.map-location-section {
  margin-bottom: 32px;
}

.map-location-section h3 {
  font-size: 22px;
  margin-bottom: 16px;
}

.map-container {
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 16px;
  height: 300px;
}

.map-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.map-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.show-map-btn {
  padding: 10px 20px;
  background: white;
  border: 1px solid #ddd;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 500;
}

.location-info {
  display: flex;
  align-items: center;
  margin-bottom: 8px;
}

.location-info i {
  color: #008489;
  margin-right: 8px;
}

.host-chat-section {
  margin-bottom: 32px;
}

.host-chat-section h3 {
  font-size: 22px;
  margin-bottom: 16px;
}

.host-chat-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.host-info {
  display: flex;
  align-items: center;
}

.host-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 16px;
}

.host-logo {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.host-details h4 {
  font-size: 18px;
  margin-bottom: 4px;
}

.host-details p {
  font-size: 14px;
  color: #666;
}

.chat-actions {
  display: flex;
  gap: 12px;
}

.chat-host-btn, .call-host-btn {
  padding: 10px 16px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  font-weight: 500;
  display: flex;
  align-items: center;
}

.chat-host-btn {
  background: #222;
  color: white;
}

.call-host-btn {
  background: white;
  color: #222;
  border: 1px solid #ddd;
}

.chat-host-btn i, .call-host-btn i {
  margin-right: 6px;
}

.host-response-time {
  display: flex;
  align-items: center;
  font-size: 14px;
  color: #666;
}

.host-response-time i {
  margin-right: 8px;
  color: #008489;
}

.reviews-section h3 {
  font-size: 22px;
  margin-bottom: 16px;
}

.reviews-rating {
  display: flex;
  align-items: center;
  margin-bottom: 16px;
}

.reviews-rating-number {
  font-size: 24px;
  font-weight: 600;
  margin-right: 12px;
}

.star-rating {
  color: #FFB400;
}

.booking-box {
  position: sticky;
  top: 24px;
}

.price {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 16px;
}

.booking-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 16px;
}

.booking-form input {
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 8px;
}

.reserve-btn {
  padding: 12px;
  background: #FF5A5F;
  color: white;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
}

.total-price {
  font-size: 14px;
  color: #666;
  text-align: center;
}

/* Responsive styles */
@media (max-width: 768px) {
  .property-modal-body {
    flex-direction: column;
  }

  .booking-sidebar {
    border-left: none;
    border-top: 1px solid #eee;
  }

  .property-features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .host-chat-container {
    flex-direction: column;
    align-items: flex-start;
  }

  .chat-actions {
    width: 100%;
    margin-top: 12px;
  }
}
