/* Desire Gym Recent Sales Pop Up CSS */

#recent-order-popup {
    position: fixed;
    bottom: 20px;
    left: 20px;
    width: 320px;
    background: #ffffff;
    border: 1px solid #eeeeee;
    padding: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    z-index: 9999;
    border-radius: 12px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
    display: none; 
}

#recent-order-popup .popup-title {
    font-size: 14px;
    font-weight: 700;
    display: block;
    margin-bottom: 12px;
    color: #333;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

#recent-order-popup .popup-content {
    display: flex;
    align-items: center;
    gap: 12px;
}

#recent-order-popup .product-img {
    width: 64px;
    height: 64px;
    object-fit: cover;
    border-radius: 6px;
    flex-shrink: 0;
}

#recent-order-popup .product-info {
    line-height: 1.4;
}

#recent-order-popup .product-info a {
    font-weight: 600;
    text-decoration: none;
    color: #DA2128; 
    font-size: 14px;
    display: block;
    margin-bottom: 2px;
}

#recent-order-popup .product-info a:hover {
    text-decoration: underline;
}

#recent-order-popup .product-info small {
    color: #777777;
    font-size: 12px;
}