/* style/forsale_style.css */

.hero-forsale {
  background:
    radial-gradient(circle at 18% 12%, rgba(198, 161, 91, .34), transparent 28%),
    radial-gradient(circle at 85% 20%, rgba(9, 68, 45, .42), transparent 30%),
    linear-gradient(135deg, #071b2d 0%, #0b1f33 45%, #0a3a2a 100%);
}

.forsale-pattern {
  background-image:
    linear-gradient(45deg, rgba(255,255,255,.08) 25%, transparent 25%),
    linear-gradient(-45deg, rgba(255,255,255,.06) 25%, transparent 25%);
  background-size: 38px 38px;
}

.quick-chip {
  background: rgba(255,255,255,.78);
  border: 1px solid rgba(198,161,91,.35);
  color: var(--money-ink, #0b1f33);
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}

.quick-chip:hover,
.quick-chip.active {
  background: #0b1f33;
  color: #fff;
  border-color: rgba(198,161,91,.8);
  transform: translateY(-1px);
}

.filter-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .75rem;
  cursor: pointer;
  padding: .7rem .75rem;
  border-radius: .9rem;
  border: 1px solid transparent;
  transition: background .18s ease, border-color .18s ease, transform .18s ease;
}

.filter-row:hover {
  background: rgba(198,161,91,.12);
  border-color: rgba(198,161,91,.26);
  transform: translateX(2px);
}

.filter-row input {
  width: 1rem;
  height: 1rem;
  margin-right: .65rem;
  accent-color: #0a3a2a;
}

.filter-row span:last-child {
  background: #fff;
  border: 1px solid rgba(198,161,91,.32);
  border-radius: .55rem;
  min-width: 2rem;
  padding: .15rem .45rem;
  text-align: center;
  font-size: .75rem;
  color: rgba(11,31,51,.65);
}

.condition-pill span {
  display: block;
  border: 1px solid rgba(198,161,91,.35);
  border-radius: .9rem;
  background: rgba(255,255,255,.78);
  padding: .75rem .5rem;
  text-align: center;
  transition: all .18s ease;
}

.condition-pill input:checked + span {
  background: #0a3a2a;
  border-color: #0a3a2a;
  color: #fff;
}

.region-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #fff;
  padding: 1rem;
  border-radius: .9rem;
  font-weight: 800;
  box-shadow: 0 10px 24px rgba(0,0,0,.14);
  transition: filter .18s ease, transform .18s ease;
}

.region-btn:hover {
  filter: brightness(1.08);
  transform: translateY(-1px);
}

.region-btn span:last-child {
  background: rgba(255,255,255,.2);
  padding: .15rem .55rem;
  border-radius: .5rem;
  font-size: .75rem;
}

.item-card {
  border: 1px solid rgba(198,161,91,.32);
  background: rgba(255,255,255,.86);
  box-shadow: 0 12px 30px rgba(11,31,51,.08);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.item-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 42px rgba(11,31,51,.13);
  border-color: rgba(198,161,91,.62);
}

.item-photo-wrap {
  background: linear-gradient(135deg, #f7f0df, #e9dcc1);
}

.no-item-photo {
  background:
    radial-gradient(circle at 30% 20%, rgba(198,161,91,.22), transparent 30%),
    linear-gradient(135deg, #f7f0df, #e7dcc3);
}

.mobile-check {
  display: flex;
  align-items: center;
  gap: .75rem;
  background: #fff;
  border: 1px solid rgba(198,161,91,.22);
  border-radius: .9rem;
  padding: .85rem;
  box-shadow: 0 6px 16px rgba(11,31,51,.05);
}

.mobile-check input {
  width: 1.15rem;
  height: 1.15rem;
  accent-color: #0a3a2a;
}

.footer-card {
  background: rgba(11,31,51,.6);
  border: 1px solid rgba(198,161,91,.2);
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: 0 0 15px rgba(198,161,91,.08);
  transition: border-color .25s ease, box-shadow .25s ease;
}

.footer-card:hover {
  border-color: rgba(198,161,91,.42);
  box-shadow: 0 0 25px rgba(198,161,91,.22);
}
