/**
 * FAB carrello mobile — rotondo, badge quantità in alto.
 */
.rv-cart-fab {
  position: fixed;
  left: max(0.7rem, env(safe-area-inset-left, 0px));
  bottom: max(0.7rem, env(safe-area-inset-bottom, 0px));
  z-index: 12040;
  display: none;
  width: 3.35rem;
  height: 3.35rem;
  border-radius: 999px;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #111;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.12);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.14);
  -webkit-tap-highlight-color: transparent;
}

.rv-cart-fab__ico {
  width: 1.35rem;
  height: 1.35rem;
  display: block;
}

.rv-cart-fab__badge {
  position: absolute;
  top: -0.15rem;
  right: -0.15rem;
  min-width: 1.15rem;
  height: 1.15rem;
  padding: 0 0.28rem;
  border-radius: 999px;
  background: #111;
  color: #fff;
  font-size: 0.62rem;
  font-weight: 700;
  line-height: 1.15rem;
  text-align: center;
  letter-spacing: 0;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.rv-cart-fab__badge[hidden] {
  display: none !important;
}

.rv-cart-fab:active {
  transform: scale(0.96);
}

body.rv-body--admin .rv-cart-fab,
body.rv-cart-page .rv-cart-fab {
  display: none !important;
}

@media (max-width: 720px) {
  .rv-cart-fab {
    display: inline-flex;
  }

  /* Evita sovrapposizione con Contattaci / dock a destra */
  body.rv-float-dock-on {
    padding-left: 0;
  }
}
