.estacas-toast {
    position: fixed;
    bottom: 20px;
    z-index: 9999;
    background: rgb(32 46 59 / 64%);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 25px;
    padding: 15px;
    color: white;
    display: flex;
    align-items: center;
    max-width: 400px;
    transition: all 0.3s ease;
    flex-direction: row;
}

.toast-text h3 {
    color: white !important;
    font-weight: bold;
}

.toast-horizontal{
    flex-direction: row;
    display: flex;
    gap: 10px;
    align-items: center;
}

.toast-vertical{
    flex-direction: column;
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.estacas-toast.right { right: 20px; }
.estacas-toast.left { left: 20px; }

.toast-thumb img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #7ed321;
}

.status { color: #7ed321; font-size: 10px; font-weight: bold; }
.toast-text h3 { margin: 5px 0; font-size: 16px; text-transform: uppercase; }
.toast-text p { margin: 0; font-size: 12px; opacity: 0.8; }

.toast-btn {
    background: #7ed321;
    color: black;
    text-decoration: none;
    padding: 8px 15px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 12px;
}

.close-toast {
    position: absolute;
    top: 5px;
    right: 15px;
    cursor: pointer;
    font-size: 20px;
}

.estacas-toast {
    opacity: 0;
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1), opacity 0.6s ease;
}

.estacas-toast.right.toast-hidden {
    transform: translateX(120%);
}

.estacas-toast.left.toast-hidden {
    transform: translateX(-120%);
}

.estacas-toast.toast-visible {
    opacity: 1;
    transform: translateX(0) !important;
}

.estacas-toast.toast-closing.right { transform: translateX(120%); opacity: 0; }
.estacas-toast.toast-closing.left { transform: translateX(-120%); opacity: 0; }

/* Móvil */
@media (max-width: 768px) {
    .estacas-toast {
        width: fit-content !important;
        bottom: 10px;
    }
}