/* Shahin Bazar — global button restyle: transparent + black border by
   default, brand gold gradient fill on hover. Applies to every Elementor
   button widget site-wide (.elementor-button) via one override, plus the
   custom Hot Deals "Buy Now" button, so there is one consistent CTA system
   rather than per-section styling. */
.elementor-button{
  background:transparent!important;
  background-color:transparent!important;
  border:2px solid #1A1A1A!important;
  color:#1A1A1A!important;
  transition:background .25s ease,border-color .25s ease,color .25s ease!important;
}
.elementor-button:hover{
  background:linear-gradient(135deg,#C8901E,#F2B84B)!important;
  border-color:#C8901E!important;
  color:#FFFFFF!important;
}
.elementor-button:hover .elementor-button-text{color:#FFFFFF!important}

.sb-deal-buy{
  background:transparent!important;
  border:2px solid #1A1A1A;
  color:#1A1A1A!important;
  transition:background .25s ease,border-color .25s ease,color .25s ease;
}
.sb-deal-buy:hover{
  background:linear-gradient(135deg,#C8901E,#F2B84B)!important;
  border-color:#C8901E;
  color:#FFFFFF!important;
}