/* Container principale Toast Notification */
#nc-sales-toast {
    position: fixed;
    bottom: 24px;
    left: 24px;
    z-index: 999999;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 14px;
    padding: 12px 14px;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12), 0 2px 6px rgba(0, 0, 0, 0.04);
    max-width: 350px;
    width: calc(100% - 48px);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease;
    box-sizing: border-box;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

/* Stato nascosto/animato */
#nc-sales-toast.nc-toast-hidden {
    transform: translateY(120%) scale(0.95);
    opacity: 0;
    pointer-events: none;
}

/* Link flessibile all'interno */
.nc-toast-link {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: inherit;
}

/* Immagine Prodotto */
.nc-toast-image-wrapper {
    width: 54px;
    height: 54px;
    flex-shrink: 0;
    border-radius: 10px;
    overflow: hidden;
    background-color: #f7f7f7;
}

.nc-toast-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Contenuto Testuale */
.nc-toast-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
    padding-right: 12px;
}

.nc-toast-header {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    color: #666666;
    margin-bottom: 2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Indicatori e pallino animato "Live" */
.nc-toast-badge {
    width: 6px;
    height: 6px;
    background-color: #10b981;
    border-radius: 50%;
    display: inline-block;
    flex-shrink: 0;
    box-shadow: 0 0 0 2px rgba(16, 185, 129, 0.2);
}

.nc-toast-location strong {
    color: #111827;
    font-weight: 600;
}

.nc-toast-title {
    font-size: 13px;
    font-weight: 600;
    color: #111827;
    line-height: 1.3;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 3px;
}

.nc-toast-meta {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
}

.nc-toast-price {
    font-weight: 700;
    color: #2563eb; /* Colore d'accento elegante per il prezzo */
}

.nc-toast-time {
    color: #9ca3af;
    font-size: 11px;
}

/* Pulsante di chiusura */
.nc-toast-close {
    position: absolute;
    top: 6px;
    right: 8px;
    background: transparent;
    border: none;
    font-size: 16px;
    line-height: 1;
    color: #9ca3af;
    cursor: pointer;
    padding: 4px;
    transition: color 0.2s ease;
}

.nc-toast-close:hover {
    color: #111827;
}

/* Adattamento Mobile */
@media (max-width: 480px) {
    #nc-sales-toast {
        bottom: 16px;
        left: 16px;
        width: calc(100% - 32px);
    }
}