/* ==========================
   GSD Product Search Bar
   ========================== */

.gsd-ps{
  display:flex;
  align-items:center;
  width:100%;
  max-width: 38%;       /* adjust as you like */
  margin: 0 auto;
  gap: 5px;
}

/* Input */
.gsd-ps-input{
  flex:1 1 auto;
  width:100%;
  height: 50px;            /* ✅ consistent height */
  border: 0;
  outline: none;
  padding: 10px;
  font-size: 22px;         /* ✅ smaller than before */
  line-height: 1;
  border-radius: 10px;
  background: #fff;
  color: #2a2a2a;
  box-shadow: 0 10px 24px rgba(0,0,0,.10);
}

.gsd-ps-input::placeholder{
  color:#9a9a9a;
}

/* Button */
.gsd-ps-btn{
  flex:0 0 auto;
  width: auto;             /* ✅ no huge min width */
  height: 50px;
  border: 0;
  cursor: pointer;
  border-radius: 10px;
  background: #2f6b4f;
  display:flex;
  align-items:center;
  justify-content:center;
  box-shadow: 0 10px 24px rgba(0,0,0,.10);
	padding:10px !important;
}

.gsd-ps-btn:hover{
  filter: brightness(1.02);
}

.gsd-ps-btn:focus{
  outline: 3px solid rgba(0,0,0,.25);
  outline-offset: 3px;
}

/* Icon image */
.gsd-ps-icon-img{
  width: 28px;
  height: 28px;
  display:block;
}

/* Optional label (if you ever use button_label) */
.gsd-ps-btn-label{
  margin-left: 10px;
  font-weight: 700;
  font-size: 16px;
  color: #fff;
}

/* Responsive */
@media (max-width: 900px){
  
  
  
}

@media (max-width: 600px){
 
 .gsd-ps{
    max-width: 100%;
    padding: 10px;
	  gap: 5px;
  }
}