/* 4ustyle Payment Guard — Modal-style Toast in Bildschirmmitte */
.fourustyle-pg-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.45);
    z-index: 99998;
    animation: fourustyle-pg-fade .2s ease-out;
}
.fourustyle-pg-toast {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 99999;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    max-width: 560px;
    width: calc(100% - 40px);
    background: #fff;
    color: #1a1a1a;
    border-top: 6px solid #d97706; /* default = warning (Pink/Orange) */
    box-shadow: 0 20px 50px rgba(0,0,0,.35);
    border-radius: 10px;
    padding: 24px 26px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-size: 16px;
    line-height: 1.5;
    animation: fourustyle-pg-pop .3s cubic-bezier(.2,.9,.4,1.2);
}
.fourustyle-pg-toast--success {
    border-top-color: #22c55e; /* grün */
}
.fourustyle-pg-toast--warning {
    border-top-color: #d97706; /* orange */
}
.fourustyle-pg-toast--hide,
.fourustyle-pg-backdrop--hide {
    opacity: 0;
    transition: opacity .25s, transform .25s;
}
.fourustyle-pg-toast--hide {
    transform: translate(-50%, -45%);
}
.fourustyle-pg-toast__icon {
    font-size: 32px;
    line-height: 1;
    margin-top: 2px;
    flex-shrink: 0;
}
.fourustyle-pg-toast__msg {
    flex: 1;
}
.fourustyle-pg-toast__title {
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 6px;
    color: #b45309; /* default orange */
}
.fourustyle-pg-toast--success .fourustyle-pg-toast__title { color: #15803d; }
.fourustyle-pg-toast--warning .fourustyle-pg-toast__title { color: #b45309; }
.fourustyle-pg-toast__close {
    background: none;
    border: 0;
    font-size: 26px;
    line-height: 1;
    color: #888;
    cursor: pointer;
    padding: 2px 6px;
    margin-left: 4px;
    flex-shrink: 0;
}
.fourustyle-pg-toast__close:hover {
    color: #222;
}
@keyframes fourustyle-pg-pop {
    0%   { opacity: 0; transform: translate(-50%, -45%) scale(.92); }
    100% { opacity: 1; transform: translate(-50%, -50%) scale(1); }
}
@keyframes fourustyle-pg-fade {
    from { opacity: 0; }
    to   { opacity: 1; }
}
@media (max-width: 640px) {
    .fourustyle-pg-toast {
        font-size: 15px;
        padding: 20px 22px;
    }
    .fourustyle-pg-toast__title { font-size: 16px; }
}
