/* =========================================
   CART NOTIFICATION
========================================= */

.orders-show {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 999999;

    display: flex;
    align-items: center;
    justify-content: center;

    min-width: 280px;
    max-width: 430px;
    min-height: 58px;

    padding: 15px 22px;

    background: linear-gradient(135deg, #16a34a, #15803d);
    color: #ffffff;

    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 14px;

    box-shadow:
        0 18px 45px rgba(0, 0, 0, 0.28),
        0 0 0 1px rgba(255, 255, 255, 0.04);

    font-size: 15px;
    font-weight: 700;
    line-height: 1.5;
    text-align: right;

    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    transform: translateY(35px) scale(0.96);

    transition:
        opacity 0.3s ease,
        visibility 0.3s ease,
        transform 0.3s ease;
}

.orders-show.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

#ordersShowText {
    display: block;
    width: 100%;
}

/* Mobile */
@media (max-width: 600px) {
    .orders-show {
        right: 12px;
        left: 12px;
        bottom: 16px;

        min-width: 0;
        max-width: none;

        padding: 14px 16px;
        text-align: center;
    }
}