
#sqft-filters {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 15px 20px;
  margin-bottom: 25px;
  align-items: end;
  background: #f9f9f9;
  padding: 20px;
  border-radius: 8px;
}

#sqft-filters label {
  font-weight: bold;
  display: block;
  margin-bottom: 4px;
  font-size: 14px;
}

#sqft-filters select,
#sqft-filters input[type="text"],
#sqft-filters input[type="number"] {
  padding: 8px;
  font-size: 14px;
  width: 100%;
  border: 1px solid #ccc;
  border-radius: 4px;
}

#sqft-filters input[type="number"]::placeholder {
  font-size: 12px;
  color: #999;
}

#sqft-filter-btn,
#sqft-reset-btn {
  padding: 10px 16px;
  font-weight: bold;
  border-radius: 4px;
  font-size: 14px;
  cursor: pointer;
  margin-top: 24px;
}

#sqft-filter-btn {
  background: #000;
  color: #fff;
  border: none;
}
#sqft-filter-btn:hover {
  background: #333;
}

#sqft-reset-btn {
  background: #ccc;
  color: #fff;
  border: none;
}
#sqft-reset-btn:hover {
  background: #999;
}

#sqft-results-count {
  margin-bottom: 15px;
  font-size: 14px;
  font-style: italic;
}

#sqft-load-more {
  margin-top: 20px;
  padding: 10px 20px;
  font-weight: bold;
  background: none;
  border: 2px solid #222;
  color: #222;
  border-radius: 4px;
  cursor: pointer;
}
#sqft-load-more:hover {
  background: #222;
  color: #fff;
}

/* Card grid from before stays the same */
.sqft-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}
.sqft-card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 14px rgba(0,0,0,0.08);
  display: flex;
  flex-direction: column;
  transition: transform 0.2s;
}
.sqft-card:hover {
  transform: translateY(-4px);
}
.sqft-thumb-wrap {
  position: relative;
  height: 200px;
  background-size: cover;
  background-position: center;
}
.sqft-ribbon {
  position: absolute;
  top: 10px;
  left: 10px;
  background: #111;
  color: #fff;
  padding: 4px 10px;
  font-size: 12px;
  font-weight: 600;
  border-radius: 4px;
  text-transform: uppercase;
}
.sqft-content {
  padding: 15px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.sqft-title {
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 10px;
}
.sqft-title a {
  color: #333;
  text-decoration: none;
}
.sqft-button {
  align-self: flex-start;
  padding: 6px 12px;
  background: none;
  border: 1px solid #333;
  color: #333;
  text-decoration: none;
  font-weight: bold;
  border-radius: 4px;
  transition: 0.2s;
}
.sqft-button:hover {
  background: #333;
  color: #fff;
}
