/* Shared front‑end styles for Estatify Elementor widgets */

/* ==========================================================================
   Property Details Widget
   ========================================================================== */

.estatify-property-details {
  width: 100%;
  box-sizing: border-box;
}

.estatify-property-details-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 40px;
}

.estatify-property-details-column {
  min-width: 0;
}

.estatify-property-details-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 10px;
  font-size: 14px;
  line-height: 1.6;
  border-bottom: 1px solid #e5e5e5;
  padding: 4px 0;
}

.estatify-property-details-row:last-child {
  border-bottom: none;
}

.estatify-property-details-label {
  color: #7a7a7a;
  font-weight: 400;
  margin-right: 12px;
}

.estatify-property-details-value {
  color: #1f2933;
  font-weight: 600;
}

/* Small screens: stack columns */
@media (max-width: 768px) {
  .estatify-property-details-grid {
    grid-template-columns: 1fr;
    row-gap: 20px;
  }
}

/* ==========================================================================
   Property Features V2 Widget
   ========================================================================== */

.estatify-property-features-v2 {
  width: 100%;
  box-sizing: border-box;
}
.estatify-property-features-v2 .epf2-heading {
  font-size: 1.05rem;
  font-weight: 600;
  margin: 0 0 12px;
}

.estatify-property-features-v2-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 16px;
}

.epf2-item {
  display: flex;
  align-items: center;
  padding: 10px 14px;
  border-radius: 8px;
  background-color: #f7f9fb;
  box-sizing: border-box;
}

.epf2-icon {
  color: #2e9b3a;
  font-size: 14px;
  margin-right: 8px;
  flex-shrink: 0;
}

.epf2-text {
  font-size: 14px;
  line-height: 1.5;
  color: #1f2933;
  display: flex;
  flex-wrap: wrap;
}

.epf2-label {
  font-weight: 600;
  margin-right: 2px;
}

.epf2-value {
  font-weight: 400;
}

.epf2-separator {
  font-weight: 600;
}

@media (max-width: 768px) {
  .estatify-property-features-v2-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   Quick Data Widget
   ========================================================================== */

.estatify-quick-data {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  column-gap: 18px;
  row-gap: 6px;
  font-size: 13px;
}

.estatify-quick-data .eqd-item {
  display: inline-flex;
  align-items: center;
  color: #555c66;
}

.estatify-quick-data .eqd-icon {
  margin-right: 6px;
  font-size: 13px;
  color: #c29b3a; /* default icon color, overridable via control */
}

.estatify-quick-data .eqd-text {
  white-space: nowrap;
}

@media (max-width: 640px) {
  .estatify-quick-data {
    justify-content: flex-start;
  }
}


