/**
 * Midlife Method – Cart Toast Styles
 * File: assets/css/mlm-cart-toast.css
 */

#mlm-cart-toast {
    position: fixed;
    bottom: 1.75rem;
    left: 50%;
    transform: translateX(-50%) translateY(120%);
    z-index: 99999;

    display: flex;
    align-items: center;
    gap: 0.75rem;

    background: #1a1a1a;
    color: #ffffff;
    border-radius: 50px;
    padding: 0.75rem 1.1rem 0.75rem 1rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.22);

    font-size: 0.9rem;
    font-weight: 400;
    white-space: nowrap;
    max-width: calc(100vw - 2rem);

    transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1),
                opacity  0.35s ease;
    opacity: 0;
    pointer-events: none;
}

/* Visible state */
#mlm-cart-toast.mlm-toast--visible {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
    pointer-events: auto;
}

/* Hidden state (after dismissal – no bounce on the way out) */
#mlm-cart-toast.mlm-toast--hidden {
    transform: translateX(-50%) translateY(120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.25s ease, opacity 0.25s ease;
}

/* ── Checkmark icon ─────────────────────────────────────────────────────── */
.mlm-toast__icon {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    background: #e8567a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

/* ── Message text ───────────────────────────────────────────────────────── */
.mlm-toast__message {
    flex: 1;
    color: #fff;
    font-size: 0.88rem;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* ── View cart link ─────────────────────────────────────────────────────── */
.mlm-toast__link {
    flex-shrink: 0;
    color: #e8567a;
    font-size: 0.85rem;
    font-weight: 500;
    text-decoration: none;
    border-left: 1px solid rgba(255, 255, 255, 0.15);
    padding-left: 0.75rem;
    margin-left: 0.25rem;
    transition: color 0.15s ease;
}

.mlm-toast__link:hover {
    color: #f48fb1;
}

/* ── Dismiss button ─────────────────────────────────────────────────────── */
.mlm-toast__close {
    flex-shrink: 0;
    background: none;
    border: none;
    padding: 0 0 0 0.25rem;
    color: rgba(255, 255, 255, 0.45);
    cursor: pointer;
    line-height: 1;
    transition: color 0.15s ease;
    display: flex;
    align-items: center;
}

.mlm-toast__close:hover {
    color: rgba(255, 255, 255, 0.9);
}

/* ── Mobile: full-width pill at bottom ──────────────────────────────────── */
@media (max-width: 540px) {
    #mlm-cart-toast {
        left: 1rem;
        right: 1rem;
        bottom: 1rem;
        transform: translateY(120%);
        white-space: normal;
        border-radius: 14px;
    }

    #mlm-cart-toast.mlm-toast--visible {
        transform: translateY(0);
    }

    #mlm-cart-toast.mlm-toast--hidden {
        transform: translateY(120%);
    }
}
