#wcgbn-toast-wrap {
    position: fixed;
    bottom: 20vh;
    right: 10vw;
    z-index: 999999;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.wcgbn-toast {
    min-width: 280px;
    max-width: 420px;
    background: #fff;
	font-style: normal;
    font-weight: 700;
    color: #111;
    border-radius: 16px;
    padding: 14px 16px;
    box-shadow: 0 15px 40px rgba(0,0,0,.15);
    opacity: 0;
    transform: translateY(-10px);
    transition: all .25s ease;
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.wcgbn-toast.show {
    opacity: 1;
    transform: none;
}

.wcgbn-toast.success { border-left: 4px solid #16a34a; background:#f0fdf4; }
.wcgbn-toast.error   { border-left: 4px solid #dc2626; background:#fff7f7; }
.wcgbn-toast.info    { border-left: 4px solid #0ea5e9; }

.wcgbn-toast button {
    background: none;
    border: 0;
    font-size: 20px;
    cursor: pointer;
    line-height: 1;
}
/* ховає оригінальний banner у блоці (щоб не було дублювання) */
.wcgbn-hide-original {
  display: none !important;
  visibility: hidden !important;
  pointer-events: none !important;
}
