
  
.sale-banner {
  text-align: center;
  font-size: 20px;
  font-weight: bold;
  color: #fff;
  background: linear-gradient(90deg, #ff0000, #ff9900, #ff0000);
 
  margin: 20px 0;
  animation: flash 1s infinite;
  font-family: 'Sora', sans-serif;
}




    .floating-socials {
      position: fixed;
      left: 10px;
      bottom: 4px;
      display:flex;
      flex-direction:column;
      gap:9px;
      z-index: var(--floater-z); /* lower than navbar */
      transition: transform .25s, opacity .18s;
      will-change:transform,opacity;
    }
    .floating-socials a{
      width:46px; height:46px; display:inline-grid; place-items:center; border-radius:50%;
       box-shadow:0 10px 22px rgba(0,0,0,.08);
      overflow:hidden;
    }
    .floating-socials a img{ width:48px; height:48px; display:block; object-fit:contain }


    .floating-order {
      position: fixed;
      right: 18px;
      bottom: 10px;
      z-index: var(--floater-z);
      transition: transform .18s, opacity .18s;
      will-change:transform,opacity;
      display:inline-block;
    }
    .floating-order img{
     
      animation: pulse 1800ms infinite ease-in-out;
      width: 80px;
      height: 80px;
    }


    
@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.1); }
  100% { transform: scale(1); }
}
