/* Floating Cart Button styles */
.fcb-button{
  position:fixed;
  right:15px;
  bottom:172px;
  width:56px;
  height:56px;
  background:#ffffff;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  text-decoration:none;
  box-shadow:0 4px 12px rgba(0,0,0,0.25);
  z-index:999999;
  border:1px solid rgba(0,0,0,0.12);
}
.fcb-button .fcb-icon{
  display:block;
}
.fcb-button:focus{
  outline:2px solid #000;
  outline-offset:2px;
}
@media (prefers-reduced-motion:no-preference){
  .fcb-button{ transition: transform .15s ease, box-shadow .15s ease; }
  .fcb-button:hover{ transform: translateY(-2px); box-shadow:0 6px 16px rgba(0,0,0,.3); }
}
