
/* Etap 16 – filtre bar & form görünümü (turuncu tema ile uyumlu) */
.sv-filter-bar{
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(15,23,42,.10);
  border-radius: 18px;
  padding: 12px;
  box-shadow: 0 10px 24px rgba(2,6,23,.06);
}
.sv-filter-grid{
  display:grid;
  grid-template-columns: 1.2fr 1fr .7fr .7fr .9fr .6fr;
  gap: 10px;
  align-items:end;
}
@media (max-width: 1024px){
  .sv-filter-grid{grid-template-columns: 1fr 1fr;}
}
.sv-field label{
  display:block;
  font-size:12px;
  color: rgba(71,85,105,1);
  font-weight: 800;
  margin: 0 0 6px;
}
.sv-field input, .sv-field select{
  width:100%;
  height: 44px;
  border-radius: 14px;
  border: 1px solid rgba(15,23,42,.10);
  background: rgba(248,250,252,.9);
  padding: 0 12px;
  outline: none;
}
.sv-field input:focus, .sv-field select:focus{
  border-color: rgba(249,115,22,.35);
  box-shadow: 0 0 0 4px rgba(249,115,22,.12);
}


/* Favori butonu aktif */
.sv-fav-active{
  color: rgb(249 115 22);
}
.sv-fav-active svg{
  fill: rgba(249,115,22,.20);
}

/* Basit toast */
.sv-toast{
  position: fixed;
  right: 16px;
  top: 84px;
  z-index: 60;
  background: rgba(15,23,42,.92);
  color: #fff;
  padding: 10px 12px;
  border-radius: 14px;
  font-weight: 800;
  font-size: 13px;
  box-shadow: 0 14px 30px rgba(2,6,23,.22);
  transform: translateY(-10px);
  opacity: 0;
  transition: all .18s ease;
}
.sv-toast.sv-toast-in{
  transform: translateY(0);
  opacity: 1;
}
