.dyco-sprinkler-filter{
  max-width:1200px!important;
  margin:70px auto!important;
  padding:55px 28px!important;
  background:
    radial-gradient(circle at top right,rgba(241,90,36,.12),transparent 35%),
    #fff!important;
  border-radius:32px!important;
  box-shadow:0 22px 55px rgba(17,24,39,.08)!important;
  border:1px solid rgba(40,49,127,.08)!important;
  text-align:center!important;
}

.dyco-filter-head span{
  display:inline-block;
  padding:8px 18px;
  border-radius:999px;
  background:rgba(241,90,36,.12);
  color:var(--dyco-orange);
  border:1px solid rgba(241,90,36,.28);
  font-size:13px;
  font-weight:900;
  letter-spacing:1px;
  margin-bottom:16px;
}

.dyco-filter-head h2{
  color:var(--dyco-blue);
  font-size:clamp(30px,4vw,48px);
  font-weight:900;
  margin-bottom:12px;
}

.dyco-filter-head p{
  color:#666;
  font-size:17px;
  margin-bottom:34px;
}

.dyco-filter-box{
  display:grid;
  grid-template-columns:repeat(6,1fr);
  gap:14px;
}

.dyco-filter-box select{
  height:52px;
  border-radius:16px;
  border:1px solid rgba(40,49,127,.12);
  background:#f6f7fb;
  padding:0 14px;
  font-weight:800;
  color:var(--dyco-blue);
  outline:none;
}

.dyco-filter-box select:focus{
  border-color:var(--dyco-orange);
  box-shadow:0 0 0 4px rgba(241,90,36,.12);
}

.dyco-filter-box button{
  height:52px;
  border:0;
  border-radius:16px;
  background:var(--dyco-orange);
  color:#fff;
  font-weight:900;
  cursor:pointer;
  box-shadow:0 14px 30px rgba(241,90,36,.28);
  transition:.3s ease;
}

.dyco-filter-box button:hover{
  transform:translateY(-3px);
  background:#ff6a2e;
}

@media(max-width:900px){
  .dyco-filter-box{
    grid-template-columns:repeat(2,1fr);
  }
}

@media(max-width:600px){
  .dyco-filter-box{
    grid-template-columns:1fr;
  }
}