/* Floating WhatsApp + cart helper */

.volta-wa-float {
  position: fixed;
  right: 20px;
  bottom: 24px;
  z-index: 90;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #0B1D3A;
  color: #C9A962;
  border: 2px solid #C9A962;
  box-shadow: 0 8px 24px rgba(11, 29, 58, 0.35);
  text-decoration: none;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.volta-wa-float:hover {
  background: #C9A962;
  color: #0B1D3A;
  transform: translateY(-2px);
}

.volta-wa-float svg {
  width: 26px;
  height: 26px;
}

.volta-cart-wa {
  margin-top: 12px;
}

.volta-cart-wa .btn--whatsapp {
  width: 100%;
  justify-content: center;
}

/* Keep clear of sticky checkout bars on small screens */
@media (max-width: 767px) {
  .volta-wa-float {
    right: 14px;
    bottom: 18px;
    width: 52px;
    height: 52px;
  }

  body.woocommerce-cart .volta-wa-float {
    bottom: 88px;
  }
}
