/* ===== SPECIALTY TAGS ===== */
.specialty-tag {
  display: inline-block;
  padding: 8px 18px;
  border-radius: 25px;
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 500;
  margin: 5px 5px 5px 0;
  transition: transform 0.2s;
}

.specialty-tag:hover {
  transform: translateY(-2px);
}

.specialty-tag.included {
  background-color: #1a5f3f;
  color: white;
}

.specialty-tag.extra {
  background-color: #5a5a5a;
  color: white;
}

/* ===== SPECIALTY LEGEND ===== */
.specialty-legend {
  display: flex;
  gap: 25px;
  margin-top: 15px;
  font-size: 13px;
  color: #2d2d2d;
  align-items: center;
}

.legend-dot {
  display: inline-block;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  margin-right: 8px;
  vertical-align: middle;
}

.legend-dot.included {
  background-color: #1a5f3f;
}

.legend-dot.extra {
  background-color: #5a5a5a;
}

/* ===== AMENITIES LIST ===== */
.amenities-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.amenities-list span {
  background-color: #f8f9f7;
  border: 1px solid #cddfcf;
  border-radius: 6px;
  padding: 6px 12px;
  font-size: 15px;
  color: #03641c;
  font-weight: 500;
  transition: all 0.2s ease;
  cursor: default;
}

.amenities-list span:hover {
  background-color: #e7f6ea;
}

/* ===== RESPONSIVE (Specialty Tags, Amenities) ===== */
@media (max-width: 768px) {
  .specialty-tag {
    font-size: 12px;
    padding: 6px 14px;
  }

  .amenities-list {
    gap: 8px;
  }

  .amenities-list span {
    font-size: 14px;
    padding: 5px 10px;
  }
}

/* ===== PROPERTY INFO WIDGET ===== */
.property-info-widget {
  background-color: #000000;
  padding: 20px;
  border-radius: 8px;
  font-family: 'Poppins', sans-serif;
}

.property-info-item {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}

.property-info-item:last-child {
  margin-bottom: 0;
}

.location-item {
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid #e0e0e0;
}

.property-info-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.property-info-row .property-info-item {
  margin-bottom: 0;
}

.property-icon {
  color: #ffffff;
  flex-shrink: 0;
}

.property-text {
  color: #ffffff;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.5;
}

/* ===== RESPONSIVE (Property Info) ===== */
@media (max-width: 768px) {
  .property-info-widget {
    padding: 15px;
  }

  .property-info-row {
    gap: 15px;
  }

  .property-text {
    font-size: 14px;
  }

  .property-icon {
    width: 18px;
    height: 18px;
  }
}

@media (max-width: 480px) {
  .property-info-row {
    flex-direction: column;
    gap: 10px;
  }
}
