/* Floating cart (modern UI) */
.floating-cart{
  position: fixed;
  right: 30px;
  bottom: 9vh;
  z-index: 9999;

  width: 58px;
  height: 58px;
  border-radius: 16px;

  display: grid;
  place-items: center;

  background: rgba(255,255,255,.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  border: 1px solid rgba(0,0,0,.08);
  box-shadow: 0 14px 40px rgba(0,0,0,.18);

  color: #111;
  text-decoration: none;

  transform: translateY(0);
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

.floating-cart:hover{
  transform: translateY(-2px);
  box-shadow: 0 18px 48px rgba(0,0,0,.22);
  background: rgba(255,255,255,.96);
}

.floating-cart__icon{
  width: 26px;
  height: 26px;
  display: block;
  color: #D62D2B;
}

.floating-cart__icon svg{
  width: 26px;
  height: 26px;
}

.floating-cart__badge{
  position: absolute;
  top: -8px;
  right: -8px;

  min-width: 22px;
  height: 22px;
  padding: 0 6px;

  display: grid;
  place-items: center;

  border-radius: 999px;
  background: #111;
  color: #fff;

  font: 600 12px/1 "Montserrat", system-ui, -apple-system, Segoe UI, Roboto, Arial;
  box-shadow: 0 10px 22px rgba(0,0,0,.25);
}



.qty__input{
    width: 4vw;
    height: 42px;
    border: 1px solid #ccc;
    outline: none;
    text-align: center;
    background: transparent;
    color: rgb(0 0 0 / 92%);
    font-weight: 850;
    font-size: 14px;
    border-radius: 27px
}

@media (max-width: 768px){
  .floating-cart{
    right: 30px;
    bottom: 9vh;
    width: 54px;
    height: 54px;
    border-radius: 15px;
  }

  .qty__input{
    width: 20vw;
  }
}
