/* Ballero - Toast bij add-to-cart */
#ballero-toast-wrap { position: fixed; left: 0; right: 0; bottom: 18px; z-index: 999999; pointer-events: none; }
#ballero-toast {
  width: max-content;
  max-width: calc(100vw - 28px);
  margin: 0 auto;
  background: rgba(18,18,18,0.92);
  color: #fff;
  border-radius: 14px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.25);
  padding: 12px 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  opacity: 0;
  transform: translateY(10px) scale(0.98);
  transition: opacity 220ms ease, transform 220ms ease;
  pointer-events: auto;
  font-family: inherit;
}

#ballero-toast.is-visible { opacity: 1; transform: translateY(0) scale(1); }

#ballero-toast .bt-text {
  font-size: 14px;
  line-height: 1.25;
  font-weight: 700;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

#ballero-toast .bt-actions { display:flex; align-items:center; gap: 10px; }

#ballero-toast .bt-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 9px 12px;
  border-radius: 999px;
  background: #ff49b6; /* Ballero pink */
  color: #fff;
  font-weight: 800;
  font-size: 13px;
  text-decoration: none;
  border: 0;
}

#ballero-toast .bt-btn:focus { outline: 2px solid rgba(255,255,255,0.35); outline-offset: 2px; }

#ballero-toast .bt-close {
  width: 34px; height: 34px;
  border-radius: 10px;
  border: 0;
  background: rgba(255,255,255,0.12);
  color: #fff;
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
}

#ballero-toast .bt-close:hover { background: rgba(255,255,255,0.18); }

/* Verberg het “oogje / bekijk”-linkje dat na add-to-cart verschijnt (WC standard: .added_to_cart.wc-forward) */
.woocommerce a.added_to_cart,
.woocommerce a.added_to_cart.wc-forward {
  display: none !important;
}
