.orders-web-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.order-web-card {
    cursor:pointer;
    align-items: center;
    padding: 12px 13px;
    background: #fff;
    border: 1px solid #e9e9e9;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
    color: inherit;
}

    .order-web-card:hover {
        border-color: #dcdcdc;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
        transform: translateY(-1px);
    }

.order-web-card__image-wrap {
    width: 92px;
    height: 92px;
    border-radius: 16px;
    background: #f8f8f8;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.order-web-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.order-web-card__image-placeholder {
    font-size: 28px;
}

.order-web-card__content {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
    width:100%;
}

.order-web-card__head {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    align-items: flex-start;
}

.order-web-card__number {
    font-size: 18px;
    font-weight: 600;
    line-height: 1.2;
    color: #1f1f1f;
}

.order-web-card__date {
    margin-top: 4px;
    font-size: 14px;
    color: #7a7a7a;
}

.order-web-card__amount {
    font-size: 20px;
    font-weight: 700;
    white-space: nowrap;
    color: #1f1f1f;
}

.order-web-card__meta {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    align-items: center;
}

.order-web-card__product {
    min-width: 0;
    max-width: 360px;
    font-size: 14px;
    color: #666;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    text-align: right;
}

.order-web-card__arrow {
    color: #8a8a8a;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}




