.motionew-private-cart {
    max-width: 1000px;
    margin: 0 auto;
}

.motionew-cart-item {
    display: grid;
    grid-template-columns: 110px 1fr 100px 90px;
    gap: 24px;
    align-items: center;

    padding: 22px 0;
    border-bottom: 1px solid #e5e5e5;
}

.motionew-cart-image img {
    width: 100px;
    height: 100px;
    object-fit: contain;
}

.motionew-cart-name {
    display: block;
    font-size: 17px;
    margin-bottom: 6px;
}

.motionew-cart-variation {
    font-size: 14px;
    opacity: 0.75;
    margin-bottom: 5px;
}

.motionew-cart-price {
    font-weight: 600;
}

.motionew-cart-quantity input {
    width: 70px;
}

.motionew-cart-remove {
    border: 0;
    background: transparent;
    cursor: pointer;
    text-decoration: underline;
}

.motionew-cart-actions {
    margin-top: 30px;

    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.motionew-cart-toast {
    position: fixed;
    right: 25px;
    bottom: 25px;

    z-index: 999999;

    padding: 14px 20px;

    background: #111;
    color: #fff;

    border-radius: 4px;

    opacity: 0;
    transform: translateY(10px);

    pointer-events: none;

    transition:
        opacity 0.2s ease,
        transform 0.2s ease;
}

.motionew-cart-toast.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 700px) {

    .motionew-cart-item {
        grid-template-columns: 80px 1fr;
    }

    .motionew-cart-image img {
        width: 70px;
        height: 70px;
    }

    .motionew-cart-quantity,
    .motionew-cart-remove {
        grid-column: 2;
    }
}
