/* Container fixo de toasts - canto superior direito */
.add-to-cart-toast-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 99999;
    display: flex;
    flex-direction: column;
    gap: 10px;
    pointer-events: none;
    max-width: calc(100vw - 40px);
}

/* Toast individual */
.add-to-cart-toast {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12), 0 0 1px rgba(0, 0, 0, 0.08);
    min-width: 280px;
    max-width: 380px;
    opacity: 0;
    transform: translateX(100%);
    transition: opacity 0.35s ease, transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    border-left: 4px solid #003686;
    pointer-events: auto;
    font-family: "Outfit", sans-serif;
    font-size: 14px;
    line-height: 1.4;
    color: #333;
}

.add-to-cart-toast-visible {
    opacity: 1;
    transform: translateX(0);
}

.add-to-cart-toast-icon {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 54, 134, 0.1);
    border-radius: 50%;
    color: #003686;
}

.add-to-cart-toast-message {
    flex: 1;
}

@media (max-width: 480px) {
    .add-to-cart-toast-container {
        top: 12px;
        right: 12px;
        left: 12px;
        max-width: none;
    }
    .add-to-cart-toast {
        min-width: 0;
        max-width: none;
    }
}
