
/* Opto Zero v3.63 — floating homepage cart, PC + phones */

.oc-home-floating-cart{
  position:fixed;
  right:18px;
  bottom:20px;
  z-index:9300;
  min-width:126px;
  height:48px;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  padding:0 10px 0 8px;
  border:1px solid rgba(255,255,255,.78);
  border-radius:15px;
  background:#0d5de6;
  color:#fff!important;
  box-shadow:
    0 12px 30px rgba(13,93,230,.24),
    0 3px 8px rgba(31,47,73,.10);
  text-decoration:none!important;
  -webkit-tap-highlight-color:transparent;
  touch-action:manipulation;
  transform:translateY(0);
  opacity:1;
  transition:
    transform .18s ease,
    opacity .18s ease,
    box-shadow .18s ease,
    background .18s ease;
}

.oc-home-floating-cart[hidden]{
  display:none!important;
}

.oc-home-floating-cart:hover{
  background:#0b52ca;
  color:#fff!important;
  transform:translateY(-2px);
  box-shadow:
    0 15px 34px rgba(13,93,230,.28),
    0 4px 10px rgba(31,47,73,.12);
}

.oc-home-floating-cart:active{
  transform:scale(.98);
}

.oc-home-floating-cart-icon{
  width:31px;
  height:31px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:10px;
  background:rgba(255,255,255,.15);
  color:#fff;
  font-size:15px;
}

.oc-home-floating-cart-label{
  font-size:10.5px;
  line-height:1;
  font-weight:900;
  white-space:nowrap;
}

.oc-home-floating-cart-count{
  min-width:23px;
  height:23px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:0 6px;
  border-radius:999px;
  background:#fff;
  color:#0d5de6;
  font-size:9.5px;
  line-height:1;
  font-weight:950;
}

.oc-home-floating-cart.is-updated{
  animation:ocHomeCartPulse .36s ease;
}

@keyframes ocHomeCartPulse{
  0%{transform:scale(1)}
  45%{transform:scale(1.08)}
  100%{transform:scale(1)}
}

/* Phones: compact pill in bottom-right, follows the user while scrolling. */
@media(max-width:767px){
  .oc-home-floating-cart{
    right:9px;
    bottom:calc(12px + env(safe-area-inset-bottom, 0px));
    min-width:0;
    width:auto;
    height:47px;
    gap:6px;
    padding:0 8px;
    border-radius:15px;
    box-shadow:
      0 10px 27px rgba(13,93,230,.27),
      0 3px 8px rgba(31,47,73,.12);
  }

  .oc-home-floating-cart-icon{
    width:31px;
    height:31px;
    border-radius:10px;
    font-size:15px;
  }

  .oc-home-floating-cart-label{
    display:none;
  }

  .oc-home-floating-cart-count{
    min-width:24px;
    height:24px;
    padding:0 6px;
    font-size:10px;
  }
}

@media(max-width:380px){
  .oc-home-floating-cart{
    right:7px;
    height:45px;
    padding:0 7px;
  }
}
